PHP 8.2.30
Preview: sample_data.sql Size: 10.93 MB
//var/softaculous/magento246/sample_data.sql

-- MySQL dump 10.13  Distrib 8.0.43, for Linux (x86_64)
--
-- Host: localhost    Database: mage246p13sd
-- ------------------------------------------------------
-- Server version	8.0.37

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `[[dbprefix]]admin_adobe_ims_webapi`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_adobe_ims_webapi`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_adobe_ims_webapi` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Admin User Id',
  `access_token_hash` varchar(255) DEFAULT NULL COMMENT 'Access Token Hash',
  `access_token` text COMMENT 'Access Token',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `last_check_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Last check time',
  `access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]ADMIN_ADOBE_IMS_WEBAPI_ACCESS_TOKEN_HASH` (`access_token_hash`),
  KEY `[[DBPREFIX]]ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `[[DBPREFIX]]ADM_ADOBE_IMS_WEBAPI_ADM_USR_ID_[[DBPREFIX]]ADM_USR_USR_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin Adobe IMS Webapi';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_adobe_ims_webapi`
--

LOCK TABLES `[[dbprefix]]admin_adobe_ims_webapi` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_adobe_ims_webapi` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_adobe_ims_webapi` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_analytics_usage_version_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_analytics_usage_version_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_analytics_usage_version_log` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_analytics_usage_version_log`
--

LOCK TABLES `[[dbprefix]]admin_analytics_usage_version_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_analytics_usage_version_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_analytics_usage_version_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_passwords`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_passwords` (
  `password_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password ID',
  `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `expires` int unsigned NOT NULL DEFAULT '0' COMMENT 'Deprecated',
  `last_updated` int unsigned NOT NULL DEFAULT '0' COMMENT 'Last Updated',
  PRIMARY KEY (`password_id`),
  KEY `[[DBPREFIX]]ADMIN_PASSWORDS_USER_ID` (`user_id`),
  CONSTRAINT `[[DBPREFIX]]ADMIN_PASSWORDS_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Passwords';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_passwords`
--

LOCK TABLES `[[dbprefix]]admin_passwords` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_passwords` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]admin_passwords` VALUES (1,1,'[[admin_pass]]',0,[[timestamp]]);
/*!40000 ALTER TABLE `[[dbprefix]]admin_passwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_system_messages`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_system_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_system_messages` (
  `identity` varchar(100) NOT NULL COMMENT 'Message ID',
  `severity` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date',
  PRIMARY KEY (`identity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin System Messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_system_messages`
--

LOCK TABLES `[[dbprefix]]admin_system_messages` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_system_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_system_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_user`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_user` (
  `user_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'User ID',
  `firstname` varchar(32) DEFAULT NULL COMMENT 'User First Name',
  `lastname` varchar(32) DEFAULT NULL COMMENT 'User Last Name',
  `email` varchar(128) DEFAULT NULL COMMENT 'User Email',
  `username` varchar(40) DEFAULT NULL COMMENT 'User Login',
  `password` varchar(255) NOT NULL COMMENT 'User Password',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'User Created Time',
  `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'User Modified Time',
  `logdate` timestamp NULL DEFAULT NULL COMMENT 'User Last Login Time',
  `lognum` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'User Login Number',
  `reload_acl_flag` smallint NOT NULL DEFAULT '0' COMMENT 'Reload ACL',
  `is_active` smallint NOT NULL DEFAULT '1' COMMENT 'User Is Active',
  `extra` text COMMENT 'User Extra Data',
  `rp_token` text COMMENT 'Reset Password Link Token',
  `rp_token_created_at` timestamp NULL DEFAULT NULL COMMENT 'Reset Password Link Token Creation Date',
  `interface_locale` varchar(16) NOT NULL DEFAULT 'en_US' COMMENT 'Backend interface locale',
  `failures_num` smallint DEFAULT '0' COMMENT 'Failure Number',
  `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates',
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `[[DBPREFIX]]ADMIN_USER_USERNAME` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin User Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_user`
--

LOCK TABLES `[[dbprefix]]admin_user` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]admin_user` VALUES (1,'[[admin_fname]]','[[admin_lname]]','[[admin_email]]','[[admin_username]]','[[admin_pass]]','[[regtime]]','[[regtime]]',NULL,0,0,1,NULL,NULL,NULL,'en_US',0,NULL,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_user_expiration`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_user_expiration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_user_expiration` (
  `user_id` int unsigned NOT NULL COMMENT 'User ID',
  `expires_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'User Expiration Date',
  PRIMARY KEY (`user_id`),
  CONSTRAINT `[[DBPREFIX]]ADMIN_USER_EXPIRATION_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin User expiration dates table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_user_expiration`
--

LOCK TABLES `[[dbprefix]]admin_user_expiration` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_expiration` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_expiration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]admin_user_session`
--

DROP TABLE IF EXISTS `[[dbprefix]]admin_user_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]admin_user_session` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
  `user_id` int unsigned DEFAULT NULL COMMENT 'Admin User ID',
  `status` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Current Session status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
  KEY `[[DBPREFIX]]ADMIN_USER_SESSION_USER_ID` (`user_id`),
  CONSTRAINT `[[DBPREFIX]]ADMIN_USER_SESSION_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin User sessions table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]admin_user_session`
--

LOCK TABLES `[[dbprefix]]admin_user_session` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]admin_user_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adminnotification_inbox`
--

DROP TABLE IF EXISTS `[[dbprefix]]adminnotification_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adminnotification_inbox` (
  `notification_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification ID',
  `severity` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type',
  `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `description` text COMMENT 'Description',
  `url` varchar(255) DEFAULT NULL COMMENT 'Url',
  `is_read` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification read',
  `is_remove` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification might be removed',
  PRIMARY KEY (`notification_id`),
  KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Adminnotification Inbox';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adminnotification_inbox`
--

LOCK TABLES `[[dbprefix]]adminnotification_inbox` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]adminnotification_inbox` VALUES (1,4,'[[regtime]]','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',0,0);
/*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_stock_asset`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_stock_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_stock_asset` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `media_gallery_id` int unsigned DEFAULT NULL COMMENT 'Media gallery ID',
  `category_id` int unsigned DEFAULT NULL COMMENT 'Category ID',
  `creator_id` int unsigned DEFAULT NULL COMMENT 'Creator ID',
  `is_licensed` int unsigned NOT NULL DEFAULT '0' COMMENT 'Is Licensed',
  `creation_date` varchar(255) DEFAULT NULL COMMENT 'Creation Date',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_MDA_GLR_ID_[[DBPREFIX]]MDA_GLR_ASSET_ID` (`media_gallery_id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_ID` (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_CATEGORY_ID` (`category_id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_ASSET_CREATOR_ID` (`creator_id`),
  CONSTRAINT `[[DBPREFIX]]ADOBE_STOCK_ASSET_CATEGORY_ID_[[DBPREFIX]]ADOBE_STOCK_CATEGORY_ID` FOREIGN KEY (`category_id`) REFERENCES `[[dbprefix]]adobe_stock_category` (`id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]ADOBE_STOCK_ASSET_CREATOR_ID_[[DBPREFIX]]ADOBE_STOCK_CREATOR_ID` FOREIGN KEY (`creator_id`) REFERENCES `[[dbprefix]]adobe_stock_creator` (`id`) ON DELETE SET NULL,
  CONSTRAINT `[[DBPREFIX]]ADOBE_STOCK_ASSET_MDA_GLR_ID_[[DBPREFIX]]MDA_GLR_ASSET_ID` FOREIGN KEY (`media_gallery_id`) REFERENCES `[[dbprefix]]media_gallery_asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe Stock Asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_stock_asset`
--

LOCK TABLES `[[dbprefix]]adobe_stock_asset` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_asset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_stock_category`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_stock_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_stock_category` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_CATEGORY_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe Stock Category';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_stock_category`
--

LOCK TABLES `[[dbprefix]]adobe_stock_category` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_stock_creator`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_stock_creator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_stock_creator` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Asset creator''s name',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_STOCK_CREATOR_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe Stock Creator';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_stock_creator`
--

LOCK TABLES `[[dbprefix]]adobe_stock_creator` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_creator` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_stock_creator` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]adobe_user_profile`
--

DROP TABLE IF EXISTS `[[dbprefix]]adobe_user_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]adobe_user_profile` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Admin User Id',
  `name` varchar(255) NOT NULL COMMENT 'Display Name',
  `email` varchar(255) NOT NULL COMMENT 'user profile email',
  `image` varchar(255) NOT NULL COMMENT 'user profile avatar',
  `account_type` varchar(255) DEFAULT NULL COMMENT 'Account Type',
  `access_token` text COMMENT 'Access Token',
  `refresh_token` text COMMENT 'Refresh Token',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]ADOBE_USER_PROFILE_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `[[DBPREFIX]]ADOBE_USER_PROFILE_ADMIN_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Adobe IMS User Profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]adobe_user_profile`
--

LOCK TABLES `[[dbprefix]]adobe_user_profile` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_user_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]adobe_user_profile` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]authorization_role`
--

DROP TABLE IF EXISTS `[[dbprefix]]authorization_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]authorization_role` (
  `role_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Role ID',
  `tree_level` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Role Tree Level',
  `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Role Sort Order',
  `role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type',
  `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `user_type` varchar(16) DEFAULT NULL COMMENT 'User Type',
  `role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name',
  PRIMARY KEY (`role_id`),
  KEY `[[DBPREFIX]]AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `[[DBPREFIX]]AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Role Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]authorization_role`
--

LOCK TABLES `[[dbprefix]]authorization_role` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]authorization_role` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]authorization_role` VALUES (1,0,1,1,'G',0,'2','Administrators'),(2,1,2,0,'U',1,'2','[[admin_username]]');
/*!40000 ALTER TABLE `[[dbprefix]]authorization_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]authorization_rule`
--

DROP TABLE IF EXISTS `[[dbprefix]]authorization_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]authorization_rule` (
  `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID',
  `role_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Role ID',
  `resource_id` varchar(255) DEFAULT NULL COMMENT 'Resource ID',
  `privileges` varchar(20) DEFAULT NULL COMMENT 'Privileges',
  `permission` varchar(10) DEFAULT NULL COMMENT 'Permission',
  PRIMARY KEY (`rule_id`),
  KEY `[[DBPREFIX]]AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `[[DBPREFIX]]AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `[[DBPREFIX]]AUTHORIZATION_RULE_ROLE_ID_[[DBPREFIX]]AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `[[dbprefix]]authorization_role` (`role_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Rule Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]authorization_rule`
--

LOCK TABLES `[[dbprefix]]authorization_rule` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]authorization_rule` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]authorization_rule` VALUES (1,1,'Magento_Backend::all',NULL,'allow');
/*!40000 ALTER TABLE `[[dbprefix]]authorization_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]braintree_credit_prices`
--

DROP TABLE IF EXISTS `[[dbprefix]]braintree_credit_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]braintree_credit_prices` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product Id',
  `term` int NOT NULL COMMENT 'Credit Term',
  `monthly_payment` decimal(12,2) NOT NULL COMMENT 'Monthly Payment',
  `instalment_rate` decimal(12,2) NOT NULL COMMENT 'Instalment Rate',
  `cost_of_purchase` decimal(12,2) NOT NULL COMMENT 'Cost of purchase',
  `total_inc_interest` decimal(12,2) NOT NULL COMMENT 'Total Inc Interest',
  PRIMARY KEY (`id`),
  UNIQUE KEY `[[DBPREFIX]]BRAINTREE_CREDIT_PRICES_PRODUCT_ID_TERM` (`product_id`,`term`),
  KEY `[[DBPREFIX]]BRAINTREE_CREDIT_PRICES_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Braintree credit rates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]braintree_credit_prices`
--

LOCK TABLES `[[dbprefix]]braintree_credit_prices` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_credit_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_credit_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]braintree_transaction_details`
--

DROP TABLE IF EXISTS `[[dbprefix]]braintree_transaction_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]braintree_transaction_details` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `order_id` int unsigned NOT NULL COMMENT 'Order Id',
  `transaction_source` varchar(12) DEFAULT NULL COMMENT 'Transaction Source',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]BRAINTREE_TRANSACTION_DETAILS_ORDER_ID` (`order_id`),
  CONSTRAINT `[[DBPREFIX]]BRAINTREE_TRANSACTION_DETAILS_ORDER_ID_SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Braintree transaction details table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]braintree_transaction_details`
--

LOCK TABLES `[[dbprefix]]braintree_transaction_details` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_transaction_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]braintree_transaction_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cache`
--

DROP TABLE IF EXISTS `[[dbprefix]]cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cache` (
  `id` varchar(200) NOT NULL COMMENT 'Cache Id',
  `data` mediumblob COMMENT 'Cache Data',
  `create_time` int DEFAULT NULL COMMENT 'Cache Creation Time',
  `update_time` int DEFAULT NULL COMMENT 'Time of Cache Updating',
  `expire_time` int DEFAULT NULL COMMENT 'Cache Expiration Time',
  PRIMARY KEY (`id`),
  KEY `[[DBPREFIX]]CACHE_EXPIRE_TIME` (`expire_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cache`
--

LOCK TABLES `[[dbprefix]]cache` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]cache_tag`
--

DROP TABLE IF EXISTS `[[dbprefix]]cache_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]cache_tag` (
  `tag` varchar(100) NOT NULL COMMENT 'Tag',
  `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id',
  PRIMARY KEY (`tag`,`cache_id`),
  KEY `[[DBPREFIX]]CACHE_TAG_CACHE_ID` (`cache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tag Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]cache_tag`
--

LOCK TABLES `[[dbprefix]]cache_tag` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]cache_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]cache_tag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]captcha_log`
--

DROP TABLE IF EXISTS `[[dbprefix]]captcha_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]captcha_log` (
  `type` varchar(32) NOT NULL COMMENT 'Type',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  `count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Count',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`type`,`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Count Login Attempts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]captcha_log`
--

LOCK TABLES `[[dbprefix]]captcha_log` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]captcha_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]captcha_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Category ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `path` varchar(255) NOT NULL COMMENT 'Tree Path',
  `position` int NOT NULL COMMENT 'Position',
  `level` int NOT NULL DEFAULT '0' COMMENT 'Tree Level',
  `children_count` int NOT NULL COMMENT 'Child Count',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_PATH` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_entity` VALUES (1,3,0,'[[regtime]]','[[regtime]]','1',0,0,39),(2,3,1,'[[regtime]]','[[regtime]]','1/2',1,1,38),(3,3,2,'[[regtime]]','[[regtime]]','1/2/3',4,2,3),(4,3,3,'[[regtime]]','[[regtime]]','1/2/3/4',1,3,0),(5,3,3,'[[regtime]]','[[regtime]]','1/2/3/5',2,3,0),(6,3,3,'[[regtime]]','[[regtime]]','1/2/3/6',3,3,0),(7,3,2,'[[regtime]]','[[regtime]]','1/2/7',5,2,6),(8,3,7,'[[regtime]]','[[regtime]]','1/2/7/8',1,3,0),(9,3,2,'[[regtime]]','[[regtime]]','1/2/9',5,2,1),(10,3,9,'[[regtime]]','[[regtime]]','1/2/9/10',1,3,0),(11,3,2,'[[regtime]]','[[regtime]]','1/2/11',3,2,8),(12,3,11,'[[regtime]]','[[regtime]]','1/2/11/12',1,3,4),(13,3,11,'[[regtime]]','[[regtime]]','1/2/11/13',2,3,2),(14,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/14',1,4,0),(15,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/15',2,4,0),(16,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/16',3,4,0),(17,3,12,'[[regtime]]','[[regtime]]','1/2/11/12/17',4,4,0),(18,3,13,'[[regtime]]','[[regtime]]','1/2/11/13/18',1,4,0),(19,3,13,'[[regtime]]','[[regtime]]','1/2/11/13/19',2,4,0),(20,3,2,'[[regtime]]','[[regtime]]','1/2/20',2,2,8),(21,3,20,'[[regtime]]','[[regtime]]','1/2/20/21',1,3,4),(22,3,20,'[[regtime]]','[[regtime]]','1/2/20/22',2,3,2),(23,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/23',1,4,0),(24,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/24',2,4,0),(25,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/25',3,4,0),(26,3,21,'[[regtime]]','[[regtime]]','1/2/20/21/26',4,4,0),(27,3,22,'[[regtime]]','[[regtime]]','1/2/20/22/27',1,4,0),(28,3,22,'[[regtime]]','[[regtime]]','1/2/20/22/28',2,4,0),(29,3,2,'[[regtime]]','[[regtime]]','1/2/29',6,2,4),(30,3,29,'[[regtime]]','[[regtime]]','1/2/29/30',1,3,0),(31,3,29,'[[regtime]]','[[regtime]]','1/2/29/31',2,3,0),(32,3,29,'[[regtime]]','[[regtime]]','1/2/29/32',3,3,0),(33,3,29,'[[regtime]]','[[regtime]]','1/2/29/33',4,3,0),(34,3,7,'[[regtime]]','[[regtime]]','1/2/7/34',2,3,0),(35,3,7,'[[regtime]]','[[regtime]]','1/2/7/35',3,3,0),(36,3,7,'[[regtime]]','[[regtime]]','1/2/7/36',4,3,0),(37,3,2,'[[regtime]]','[[regtime]]','1/2/37',6,2,0),(38,3,2,'[[regtime]]','[[regtime]]','1/2/38',1,2,0),(39,3,7,'[[regtime]]','[[regtime]]','1/2/7/39',5,3,0),(40,3,7,'[[regtime]]','[[regtime]]','1/2/7/40',6,3,0);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DTIME_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_datetime`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_DEC_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_decimal`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_INT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_INT_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_INT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_int`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_int` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_entity_int` VALUES (1,69,0,1,1),(2,69,0,2,1),(3,46,0,2,1),(4,69,0,3,1),(5,46,0,3,1),(6,54,0,3,0),(7,69,0,4,1),(8,46,0,4,1),(9,54,0,4,1),(10,69,0,5,1),(11,46,0,5,1),(12,54,0,5,1),(13,69,0,6,1),(14,46,0,6,1),(15,54,0,6,1),(16,69,0,7,0),(17,46,0,7,0),(18,54,0,7,0),(19,69,0,8,0),(20,46,0,8,1),(21,54,0,8,1),(22,69,0,9,1),(23,46,0,9,1),(24,54,0,9,0),(25,69,0,10,1),(26,46,0,10,1),(27,54,0,10,1),(28,69,0,11,1),(29,46,0,11,1),(30,54,0,11,0),(31,69,0,12,1),(32,46,0,12,1),(33,54,0,12,1),(34,69,0,13,1),(35,46,0,13,1),(36,54,0,13,1),(37,69,0,14,1),(38,46,0,14,1),(39,54,0,14,1),(40,69,0,15,1),(41,46,0,15,1),(42,54,0,15,1),(43,69,0,16,1),(44,46,0,16,1),(45,54,0,16,1),(46,69,0,17,1),(47,46,0,17,1),(48,54,0,17,1),(49,69,0,18,1),(50,46,0,18,1),(51,54,0,18,1),(52,69,0,19,1),(53,46,0,19,1),(54,54,0,19,1),(55,69,0,20,1),(56,46,0,20,1),(57,54,0,20,0),(58,69,0,21,1),(59,46,0,21,1),(60,54,0,21,1),(61,69,0,22,1),(62,46,0,22,1),(63,54,0,22,1),(64,69,0,23,1),(65,46,0,23,1),(66,54,0,23,1),(67,69,0,24,1),(68,46,0,24,1),(69,54,0,24,1),(70,69,0,25,1),(71,46,0,25,1),(72,54,0,25,1),(73,69,0,26,1),(74,46,0,26,1),(75,54,0,26,1),(76,69,0,27,1),(77,46,0,27,1),(78,54,0,27,1),(79,69,0,28,1),(80,46,0,28,1),(81,54,0,28,1),(82,69,0,29,0),(83,46,0,29,0),(84,54,0,29,0),(85,69,0,30,0),(86,46,0,30,1),(87,54,0,30,1),(88,69,0,31,0),(89,46,0,31,1),(90,54,0,31,1),(91,69,0,32,0),(92,46,0,32,1),(93,54,0,32,1),(94,69,0,33,0),(95,46,0,33,1),(96,54,0,33,1),(97,69,0,34,0),(98,46,0,34,1),(99,54,0,34,1),(100,69,0,35,0),(101,46,0,35,1),(102,54,0,35,1),(103,69,0,36,0),(104,46,0,36,1),(105,54,0,36,1),(106,69,0,37,1),(107,46,0,37,1),(108,54,0,37,0),(109,69,0,38,1),(110,46,0,38,1),(111,54,0,38,0),(112,69,0,39,0),(113,46,0,39,1),(114,54,0,39,0),(115,69,0,40,0),(116,46,0,40,1),(117,54,0,40,0);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_text`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_text` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` mediumtext COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_TEXT_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_TEXT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_TEXT_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_text`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_text` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_entity_varchar`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_entity_varchar` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_ENTT_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_ENTT_VCHR_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_entity_varchar`
--

LOCK TABLES `[[dbprefix]]catalog_category_entity_varchar` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_entity_varchar` VALUES (1,45,0,1,'Root Catalog'),(2,52,0,2,'PRODUCTS'),(3,45,0,2,'Default Category'),(4,52,0,3,'PAGE'),(5,45,0,3,'Gear'),(6,119,0,3,'gear'),(7,120,0,3,'gear'),(8,45,0,4,'Bags'),(9,119,0,4,'bags'),(10,120,0,4,'gear/bags'),(11,45,0,5,'Fitness Equipment'),(12,119,0,5,'fitness-equipment'),(13,120,0,5,'gear/fitness-equipment'),(14,45,0,6,'Watches'),(15,119,0,6,'watches'),(16,120,0,6,'gear/watches'),(17,52,0,7,'PAGE'),(18,45,0,7,'Collections'),(19,119,0,7,'collections'),(20,120,0,7,'collections'),(21,45,0,8,'New Luma Yoga Collection'),(22,119,0,8,'yoga-new'),(23,120,0,8,'collections/yoga-new'),(24,52,0,9,'PAGE'),(25,45,0,9,'Training'),(26,119,0,9,'training'),(27,120,0,9,'training'),(28,45,0,10,'Video Download'),(29,119,0,10,'training-video'),(30,120,0,10,'training/training-video'),(31,52,0,11,'PAGE'),(32,45,0,11,'Men'),(33,119,0,11,'men'),(34,120,0,11,'men'),(35,45,0,12,'Tops'),(36,119,0,12,'tops-men'),(37,120,0,12,'men/tops-men'),(38,45,0,13,'Bottoms'),(39,119,0,13,'bottoms-men'),(40,120,0,13,'men/bottoms-men'),(41,45,0,14,'Jackets'),(42,119,0,14,'jackets-men'),(43,120,0,14,'men/tops-men/jackets-men'),(44,45,0,15,'Hoodies & Sweatshirts'),(45,119,0,15,'hoodies-and-sweatshirts-men'),(46,120,0,15,'men/tops-men/hoodies-and-sweatshirts-men'),(47,45,0,16,'Tees'),(48,119,0,16,'tees-men'),(49,120,0,16,'men/tops-men/tees-men'),(50,45,0,17,'Tanks'),(51,119,0,17,'tanks-men'),(52,120,0,17,'men/tops-men/tanks-men'),(53,45,0,18,'Pants'),(54,119,0,18,'pants-men'),(55,120,0,18,'men/bottoms-men/pants-men'),(56,45,0,19,'Shorts'),(57,119,0,19,'shorts-men'),(58,120,0,19,'men/bottoms-men/shorts-men'),(59,52,0,20,'PAGE'),(60,45,0,20,'Women'),(61,119,0,20,'women'),(62,120,0,20,'women'),(63,45,0,21,'Tops'),(64,119,0,21,'tops-women'),(65,120,0,21,'women/tops-women'),(66,45,0,22,'Bottoms'),(67,119,0,22,'bottoms-women'),(68,120,0,22,'women/bottoms-women'),(69,45,0,23,'Jackets'),(70,119,0,23,'jackets-women'),(71,120,0,23,'women/tops-women/jackets-women'),(72,45,0,24,'Hoodies & Sweatshirts'),(73,119,0,24,'hoodies-and-sweatshirts-women'),(74,120,0,24,'women/tops-women/hoodies-and-sweatshirts-women'),(75,45,0,25,'Tees'),(76,119,0,25,'tees-women'),(77,120,0,25,'women/tops-women/tees-women'),(78,45,0,26,'Bras & Tanks'),(79,119,0,26,'tanks-women'),(80,120,0,26,'women/tops-women/tanks-women'),(81,45,0,27,'Pants'),(82,119,0,27,'pants-women'),(83,120,0,27,'women/bottoms-women/pants-women'),(84,45,0,28,'Shorts'),(85,119,0,28,'shorts-women'),(86,120,0,28,'women/bottoms-women/shorts-women'),(87,52,0,29,'PAGE'),(88,45,0,29,'Promotions'),(89,119,0,29,'promotions'),(90,120,0,29,'promotions'),(91,45,0,30,'Women Sale'),(92,119,0,30,'women-sale'),(93,120,0,30,'promotions/women-sale'),(94,45,0,31,'Men Sale'),(95,119,0,31,'men-sale'),(96,120,0,31,'promotions/men-sale'),(97,45,0,32,'Pants'),(98,119,0,32,'pants-all'),(99,120,0,32,'promotions/pants-all'),(100,45,0,33,'Tees'),(101,119,0,33,'tees-all'),(102,120,0,33,'promotions/tees-all'),(103,45,0,34,'Erin Recommends'),(104,119,0,34,'erin-recommends'),(105,120,0,34,'collections/erin-recommends'),(106,45,0,35,'Performance Fabrics'),(107,119,0,35,'performance-fabrics'),(108,120,0,35,'collections/performance-fabrics'),(109,45,0,36,'Eco Friendly'),(110,119,0,36,'eco-friendly'),(111,120,0,36,'collections/eco-friendly'),(112,52,0,37,'PAGE'),(113,45,0,37,'Sale'),(114,119,0,37,'sale'),(115,120,0,37,'sale'),(116,52,0,38,'PAGE'),(117,45,0,38,'What\'s New'),(118,119,0,38,'what-is-new'),(119,120,0,38,'what-is-new'),(120,52,0,39,'PAGE'),(121,45,0,39,'Performance Sportswear New'),(122,63,0,39,'1column'),(123,119,0,39,'performance-new'),(124,120,0,39,'collections/performance-new'),(125,52,0,40,'PAGE'),(126,45,0,40,'Eco Collection New'),(127,63,0,40,'1column'),(128,119,0,40,'eco-new'),(129,120,0,40,'collections/eco-new');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product` (
  `entity_id` int NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  PRIMARY KEY (`entity_id`,`category_id`,`product_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_PRD_CTGR_ID_[[DBPREFIX]]CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `[[dbprefix]]catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CTGR_PRD_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5166 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Category Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product`
--

LOCK TABLES `[[dbprefix]]catalog_category_product` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_product` VALUES (1,3,1,0),(2,4,1,0),(3,3,2,0),(4,7,2,0),(5,4,2,0),(6,3,3,0),(7,4,3,0),(8,3,4,0),(9,7,4,0),(10,4,4,0),(11,8,4,0),(12,3,5,0),(13,7,5,0),(14,4,5,0),(15,8,5,0),(16,3,6,0),(17,4,6,0),(18,3,7,0),(19,4,7,0),(20,3,8,0),(21,4,8,0),(22,3,9,0),(23,4,9,0),(24,3,10,0),(25,7,10,0),(26,4,10,0),(27,3,11,0),(28,7,11,0),(29,4,11,0),(30,3,12,0),(31,4,12,0),(32,3,13,0),(33,7,13,0),(34,4,13,0),(35,8,13,0),(36,3,14,0),(37,7,14,0),(38,4,14,0),(39,3,15,0),(40,5,15,0),(41,3,16,0),(42,7,16,0),(43,5,16,0),(44,3,17,0),(45,5,17,0),(46,3,18,0),(47,5,18,0),(48,3,19,0),(49,7,19,0),(50,5,19,0),(51,8,19,0),(52,3,20,0),(53,5,20,0),(54,3,21,0),(55,5,21,0),(56,3,22,0),(57,5,22,0),(58,3,23,0),(59,5,23,0),(60,3,24,0),(61,5,24,0),(62,3,25,0),(63,5,25,0),(64,3,26,0),(65,5,26,0),(66,3,27,0),(67,5,27,0),(68,3,28,0),(69,5,28,0),(70,3,29,0),(71,5,29,0),(72,3,30,0),(73,5,30,0),(74,3,31,0),(75,5,31,0),(76,3,32,0),(77,5,32,0),(78,3,33,0),(79,5,33,0),(80,3,34,0),(81,5,34,0),(82,3,35,0),(83,5,35,0),(84,3,36,0),(85,6,36,0),(86,3,37,0),(87,6,37,0),(88,3,38,0),(89,7,38,0),(90,6,38,0),(91,8,38,0),(92,3,39,0),(93,7,39,0),(94,6,39,0),(95,8,39,0),(96,3,40,0),(97,7,40,0),(98,6,40,0),(99,8,40,0),(100,3,41,0),(101,6,41,0),(102,3,42,0),(103,6,42,0),(104,3,43,0),(105,6,43,0),(106,3,44,0),(107,7,44,0),(108,6,44,0),(109,8,44,0),(110,3,45,0),(111,5,45,0),(112,3,46,0),(113,5,46,0),(114,15,47,-1),(115,36,47,-1),(116,2,47,-1),(117,15,48,-2),(118,36,48,-2),(119,2,48,-2),(120,15,49,-3),(121,36,49,-3),(122,2,49,-3),(123,15,50,-4),(124,36,50,-4),(125,2,50,-4),(126,15,51,-5),(127,36,51,-5),(128,2,51,-5),(129,15,52,-6),(130,36,52,-6),(131,2,52,-6),(132,15,53,-7),(133,36,53,-7),(134,2,53,-7),(135,15,54,-8),(136,36,54,-8),(137,2,54,-8),(138,15,55,-9),(139,36,55,-9),(140,2,55,-9),(141,15,56,-10),(142,36,56,-10),(143,2,56,-10),(144,15,57,-11),(145,36,57,-11),(146,2,57,-11),(147,15,58,-12),(148,36,58,-12),(149,2,58,-12),(150,15,59,-13),(151,36,59,-13),(152,2,59,-13),(153,15,60,-14),(154,36,60,-14),(155,2,60,-14),(156,15,61,-15),(157,36,61,-15),(158,2,61,-15),(159,15,62,-16),(160,36,62,-16),(161,2,62,-16),(162,15,63,-17),(163,15,64,-18),(164,15,65,-19),(165,15,66,-20),(166,15,67,-21),(167,15,68,-22),(168,15,69,-23),(169,15,70,-24),(170,15,71,-25),(171,15,72,-26),(172,15,73,-27),(173,15,74,-28),(174,15,75,-29),(175,15,76,-30),(176,15,77,-31),(177,15,78,-32),(178,15,79,-33),(179,36,79,-17),(180,2,79,-17),(181,15,80,-34),(182,36,80,-18),(183,2,80,-18),(184,15,81,-35),(185,36,81,-19),(186,2,81,-19),(187,15,82,-36),(188,36,82,-20),(189,2,82,-20),(190,15,83,-37),(191,36,83,-21),(192,2,83,-21),(193,15,84,-38),(194,36,84,-22),(195,2,84,-22),(196,15,85,-39),(197,36,85,-23),(198,2,85,-23),(199,15,86,-40),(200,36,86,-24),(201,2,86,-24),(202,15,87,-41),(203,36,87,-25),(204,2,87,-25),(205,15,88,-42),(206,36,88,-26),(207,2,88,-26),(208,15,89,-43),(209,36,89,-27),(210,2,89,-27),(211,15,90,-44),(212,36,90,-28),(213,2,90,-28),(214,15,91,-45),(215,36,91,-29),(216,2,91,-29),(217,15,92,-46),(218,36,92,-30),(219,2,92,-30),(220,15,93,-47),(221,36,93,-31),(222,2,93,-31),(223,15,94,-48),(224,36,94,-32),(225,2,94,-32),(226,15,95,-49),(227,36,95,-33),(228,2,95,-33),(229,15,96,-50),(230,36,96,-34),(231,2,96,-34),(232,15,97,-51),(233,36,97,-35),(234,2,97,-35),(235,15,98,-52),(236,36,98,-36),(237,2,98,-36),(238,15,99,-53),(239,36,99,-37),(240,2,99,-37),(241,15,100,-54),(242,36,100,-38),(243,2,100,-38),(244,15,101,-55),(245,36,101,-39),(246,2,101,-39),(247,15,102,-56),(248,36,102,-40),(249,2,102,-40),(250,15,103,-57),(251,36,103,-41),(252,2,103,-41),(253,15,104,-58),(254,36,104,-42),(255,2,104,-42),(256,15,105,-59),(257,36,105,-43),(258,2,105,-43),(259,15,106,-60),(260,36,106,-44),(261,2,106,-44),(262,15,107,-61),(263,36,107,-45),(264,2,107,-45),(265,15,108,-62),(266,36,108,-46),(267,2,108,-46),(268,15,109,-63),(269,36,109,-47),(270,2,109,-47),(271,15,110,-64),(272,36,110,-48),(273,2,110,-48),(274,15,111,-65),(275,15,112,-66),(276,15,113,-67),(277,15,114,-68),(278,15,115,-69),(279,15,116,-70),(280,15,117,-71),(281,15,118,-72),(282,15,119,-73),(283,15,120,-74),(284,15,121,-75),(285,15,122,-76),(286,15,123,-77),(287,15,124,-78),(288,15,125,-79),(289,15,126,-80),(290,15,127,-81),(291,15,128,-82),(292,15,129,-83),(293,15,130,-84),(294,15,131,-85),(295,15,132,-86),(296,15,133,-87),(297,15,134,-88),(298,15,135,-89),(299,15,136,-90),(300,15,137,-91),(301,15,138,-92),(302,15,139,-93),(303,15,140,-94),(304,15,141,-95),(305,15,142,-96),(306,15,143,-97),(307,15,144,-98),(308,15,145,-99),(309,15,146,-100),(310,15,147,-101),(311,15,148,-102),(312,15,149,-103),(313,15,150,-104),(314,15,151,-105),(315,15,152,-106),(316,15,153,-107),(317,15,154,-108),(318,15,155,-109),(319,15,156,-110),(320,15,157,-111),(321,15,158,-112),(322,15,159,-113),(323,15,160,-114),(324,15,161,-115),(325,15,162,-116),(326,15,163,-117),(327,15,164,-118),(328,15,165,-119),(329,15,166,-120),(330,15,167,-121),(331,15,168,-122),(332,15,169,-123),(333,15,170,-124),(334,15,171,-125),(335,15,172,-126),(336,15,173,-127),(337,15,174,-128),(338,15,175,-129),(339,15,176,-130),(340,15,177,-131),(341,15,178,-132),(342,15,179,-133),(343,15,180,-134),(344,15,181,-135),(345,15,182,-136),(346,15,183,-137),(347,15,184,-138),(348,15,185,-139),(349,15,186,-140),(350,15,187,-141),(351,15,188,-142),(352,15,189,-143),(353,15,190,-144),(354,15,191,-145),(355,15,192,-146),(356,15,193,-147),(357,15,194,-148),(358,15,195,-149),(359,15,196,-150),(360,15,197,-151),(361,15,198,-152),(362,15,199,-153),(363,15,200,-154),(364,15,201,-155),(365,15,202,-156),(366,15,203,-157),(367,15,204,-158),(368,15,205,-159),(369,15,206,-160),(370,15,207,-161),(371,15,208,-162),(372,15,209,-163),(373,15,210,-164),(374,15,211,-165),(375,15,212,-166),(376,15,213,-167),(377,15,214,-168),(378,15,215,-169),(379,15,216,-170),(380,15,217,-171),(381,15,218,-172),(382,15,219,-173),(383,15,220,-174),(384,15,221,-175),(385,15,222,-176),(386,15,223,-177),(387,15,224,-178),(388,15,225,-179),(389,15,226,-180),(390,15,227,-181),(391,15,228,-182),(392,15,229,-183),(393,15,230,-184),(394,15,231,-185),(395,15,232,-186),(396,15,233,-187),(397,15,234,-188),(398,15,235,-189),(399,15,236,-190),(400,15,237,-191),(401,15,238,-192),(402,15,239,-193),(403,15,240,-194),(404,15,241,-195),(405,15,242,-196),(406,15,243,-197),(407,15,244,-198),(408,15,245,-199),(409,15,246,-200),(410,15,247,-201),(411,15,248,-202),(412,15,249,-203),(413,15,250,-204),(414,15,251,-205),(415,15,252,-206),(416,15,253,-207),(417,15,254,-208),(418,14,255,-1),(419,14,256,-2),(420,14,257,-3),(421,14,258,-4),(422,14,259,-5),(423,14,260,-6),(424,14,261,-7),(425,14,262,-8),(426,14,263,-9),(427,14,264,-10),(428,14,265,-11),(429,14,266,-12),(430,14,267,-13),(431,14,268,-14),(432,14,269,-15),(433,14,270,-16),(434,14,271,-17),(435,14,272,-18),(436,14,273,-19),(437,14,274,-20),(438,14,275,-21),(439,14,276,-22),(440,14,277,-23),(441,14,278,-24),(442,14,279,-25),(443,14,280,-26),(444,14,281,-27),(445,14,282,-28),(446,14,283,-29),(447,14,284,-30),(448,14,285,-31),(449,14,286,-32),(450,14,287,-33),(451,36,287,-49),(452,2,287,-49),(453,14,288,-34),(454,36,288,-50),(455,2,288,-50),(456,14,289,-35),(457,36,289,-51),(458,2,289,-51),(459,14,290,-36),(460,36,290,-52),(461,2,290,-52),(462,14,291,-37),(463,36,291,-53),(464,2,291,-53),(465,14,292,-38),(466,36,292,-54),(467,2,292,-54),(468,14,293,-39),(469,36,293,-55),(470,2,293,-55),(471,14,294,-40),(472,36,294,-56),(473,2,294,-56),(474,14,295,-41),(475,36,295,-57),(476,2,295,-57),(477,14,296,-42),(478,36,296,-58),(479,2,296,-58),(480,14,297,-43),(481,36,297,-59),(482,2,297,-59),(483,14,298,-44),(484,36,298,-60),(485,2,298,-60),(486,14,299,-45),(487,36,299,-61),(488,2,299,-61),(489,14,300,-46),(490,36,300,-62),(491,2,300,-62),(492,14,301,-47),(493,36,301,-63),(494,2,301,-63),(495,14,302,-48),(496,36,302,-64),(497,2,302,-64),(498,14,303,-49),(499,14,304,-50),(500,14,305,-51),(501,14,306,-52),(502,14,307,-53),(503,14,308,-54),(504,14,309,-55),(505,14,310,-56),(506,14,311,-57),(507,14,312,-58),(508,14,313,-59),(509,14,314,-60),(510,14,315,-61),(511,14,316,-62),(512,14,317,-63),(513,14,318,-64),(514,14,319,-65),(515,14,320,-66),(516,14,321,-67),(517,14,322,-68),(518,14,323,-69),(519,14,324,-70),(520,14,325,-71),(521,14,326,-72),(522,14,327,-73),(523,14,328,-74),(524,14,329,-75),(525,14,330,-76),(526,14,331,-77),(527,14,332,-78),(528,14,333,-79),(529,14,334,-80),(530,14,335,-81),(531,14,336,-82),(532,14,337,-83),(533,14,338,-84),(534,14,339,-85),(535,14,340,-86),(536,14,341,-87),(537,14,342,-88),(538,14,343,-89),(539,14,344,-90),(540,14,345,-91),(541,14,346,-92),(542,14,347,-93),(543,14,348,-94),(544,14,349,-95),(545,14,350,-96),(546,14,351,-97),(547,14,352,-98),(548,14,353,-99),(549,14,354,-100),(550,14,355,-101),(551,14,356,-102),(552,14,357,-103),(553,14,358,-104),(554,14,359,-105),(555,14,360,-106),(556,14,361,-107),(557,14,362,-108),(558,14,363,-109),(559,14,364,-110),(560,14,365,-111),(561,14,366,-112),(562,14,367,-113),(563,14,368,-114),(564,14,369,-115),(565,14,370,-116),(566,14,371,-117),(567,14,372,-118),(568,14,373,-119),(569,14,374,-120),(570,14,375,-121),(571,14,376,-122),(572,14,377,-123),(573,14,378,-124),(574,14,379,-125),(575,14,380,-126),(576,14,381,-127),(577,14,382,-128),(578,14,383,-129),(579,36,383,-65),(580,2,383,-65),(581,14,384,-130),(582,36,384,-66),(583,2,384,-66),(584,14,385,-131),(585,36,385,-67),(586,2,385,-67),(587,14,386,-132),(588,36,386,-68),(589,2,386,-68),(590,14,387,-133),(591,36,387,-69),(592,2,387,-69),(593,14,388,-134),(594,36,388,-70),(595,2,388,-70),(596,14,389,-135),(597,36,389,-71),(598,2,389,-71),(599,14,390,-136),(600,36,390,-72),(601,2,390,-72),(602,14,391,-137),(603,36,391,-73),(604,2,391,-73),(605,14,392,-138),(606,36,392,-74),(607,2,392,-74),(608,14,393,-139),(609,36,393,-75),(610,2,393,-75),(611,14,394,-140),(612,36,394,-76),(613,2,394,-76),(614,14,395,-141),(615,36,395,-77),(616,2,395,-77),(617,14,396,-142),(618,36,396,-78),(619,2,396,-78),(620,14,397,-143),(621,36,397,-79),(622,2,397,-79),(623,14,398,-144),(624,36,398,-80),(625,2,398,-80),(626,14,399,-145),(627,14,400,-146),(628,14,401,-147),(629,14,402,-148),(630,14,403,-149),(631,14,404,-150),(632,14,405,-151),(633,14,406,-152),(634,14,407,-153),(635,14,408,-154),(636,14,409,-155),(637,14,410,-156),(638,14,411,-157),(639,14,412,-158),(640,14,413,-159),(641,14,414,-160),(642,14,415,-161),(643,14,416,-162),(644,14,417,-163),(645,14,418,-164),(646,14,419,-165),(647,14,420,-166),(648,14,421,-167),(649,14,422,-168),(650,14,423,-169),(651,14,424,-170),(652,14,425,-171),(653,14,426,-172),(654,14,427,-173),(655,14,428,-174),(656,14,429,-175),(657,14,430,-176),(658,16,431,-1),(659,16,432,-2),(660,16,433,-3),(661,16,434,-4),(662,16,435,-5),(663,16,436,-6),(664,16,437,-7),(665,16,438,-8),(666,16,439,-9),(667,16,440,-10),(668,16,441,-11),(669,16,442,-12),(670,16,443,-13),(671,16,444,-14),(672,16,445,-15),(673,16,446,-16),(674,16,447,-17),(675,36,447,-81),(676,2,447,-81),(677,16,448,-18),(678,36,448,-82),(679,2,448,-82),(680,16,449,-19),(681,36,449,-83),(682,2,449,-83),(683,16,450,-20),(684,36,450,-84),(685,2,450,-84),(686,16,451,-21),(687,36,451,-85),(688,2,451,-85),(689,16,452,-22),(690,36,452,-86),(691,2,452,-86),(692,16,453,-23),(693,36,453,-87),(694,2,453,-87),(695,16,454,-24),(696,36,454,-88),(697,2,454,-88),(698,16,455,-25),(699,36,455,-89),(700,2,455,-89),(701,16,456,-26),(702,36,456,-90),(703,2,456,-90),(704,16,457,-27),(705,36,457,-91),(706,2,457,-91),(707,16,458,-28),(708,36,458,-92),(709,2,458,-92),(710,16,459,-29),(711,36,459,-93),(712,2,459,-93),(713,16,460,-30),(714,36,460,-94),(715,2,460,-94),(716,16,461,-31),(717,36,461,-95),(718,2,461,-95),(719,16,462,-32),(720,36,462,-96),(721,2,462,-96),(722,16,463,-33),(723,16,464,-34),(724,16,465,-35),(725,16,466,-36),(726,16,467,-37),(727,16,468,-38),(728,16,469,-39),(729,16,470,-40),(730,16,471,-41),(731,16,472,-42),(732,16,473,-43),(733,16,474,-44),(734,16,475,-45),(735,16,476,-46),(736,16,477,-47),(737,16,478,-48),(738,16,479,-49),(739,16,480,-50),(740,16,481,-51),(741,16,482,-52),(742,16,483,-53),(743,16,484,-54),(744,16,485,-55),(745,16,486,-56),(746,16,487,-57),(747,16,488,-58),(748,16,489,-59),(749,16,490,-60),(750,16,491,-61),(751,16,492,-62),(752,16,493,-63),(753,16,494,-64),(754,16,495,-65),(755,16,496,-66),(756,16,497,-67),(757,16,498,-68),(758,16,499,-69),(759,16,500,-70),(760,16,501,-71),(761,16,502,-72),(762,16,503,-73),(763,16,504,-74),(764,16,505,-75),(765,16,506,-76),(766,16,507,-77),(767,16,508,-78),(768,16,509,-79),(769,16,510,-80),(770,16,511,-81),(771,16,512,-82),(772,16,513,-83),(773,16,514,-84),(774,16,515,-85),(775,16,516,-86),(776,16,517,-87),(777,16,518,-88),(778,16,519,-89),(779,16,520,-90),(780,16,521,-91),(781,16,522,-92),(782,16,523,-93),(783,16,524,-94),(784,16,525,-95),(785,16,526,-96),(786,16,527,-97),(787,16,528,-98),(788,16,529,-99),(789,16,530,-100),(790,16,531,-101),(791,16,532,-102),(792,16,533,-103),(793,16,534,-104),(794,16,535,-105),(795,16,536,-106),(796,16,537,-107),(797,16,538,-108),(798,16,539,-109),(799,16,540,-110),(800,16,541,-111),(801,16,542,-112),(802,16,543,-113),(803,16,544,-114),(804,16,545,-115),(805,16,546,-116),(806,16,547,-117),(807,16,548,-118),(808,16,549,-119),(809,16,550,-120),(810,16,551,-121),(811,16,552,-122),(812,16,553,-123),(813,16,554,-124),(814,16,555,-125),(815,16,556,-126),(816,16,557,-127),(817,16,558,-128),(818,16,559,-129),(819,16,560,-130),(820,16,561,-131),(821,16,562,-132),(822,16,563,-133),(823,16,564,-134),(824,16,565,-135),(825,16,566,-136),(826,16,567,-137),(827,16,568,-138),(828,16,569,-139),(829,16,570,-140),(830,16,571,-141),(831,16,572,-142),(832,16,573,-143),(833,16,574,-144),(834,16,575,-145),(835,16,576,-146),(836,16,577,-147),(837,16,578,-148),(838,16,579,-149),(839,16,580,-150),(840,16,581,-151),(841,16,582,-152),(842,16,583,-153),(843,16,584,-154),(844,16,585,-155),(845,16,586,-156),(846,16,587,-157),(847,16,588,-158),(848,16,589,-159),(849,16,590,-160),(850,16,591,-161),(851,16,592,-162),(852,16,593,-163),(853,16,594,-164),(854,16,595,-165),(855,16,596,-166),(856,16,597,-167),(857,16,598,-168),(858,16,599,-169),(859,16,600,-170),(860,16,601,-171),(861,16,602,-172),(862,16,603,-173),(863,16,604,-174),(864,16,605,-175),(865,16,606,-176),(866,16,607,-177),(867,16,608,-178),(868,16,609,-179),(869,16,610,-180),(870,16,611,-181),(871,16,612,-182),(872,16,613,-183),(873,16,614,-184),(874,16,615,-185),(875,16,616,-186),(876,16,617,-187),(877,16,618,-188),(878,16,619,-189),(879,16,620,-190),(880,16,621,-191),(881,16,622,-192),(882,17,623,-1),(883,17,624,-2),(884,17,625,-3),(885,17,626,-4),(886,17,627,-5),(887,17,628,-6),(888,17,629,-7),(889,17,630,-8),(890,17,631,-9),(891,17,632,-10),(892,17,633,-11),(893,17,634,-12),(894,17,635,-13),(895,17,636,-14),(896,17,637,-15),(897,17,638,-16),(898,17,639,-17),(899,17,640,-18),(900,17,641,-19),(901,17,642,-20),(902,17,643,-21),(903,17,644,-22),(904,17,645,-23),(905,17,646,-24),(906,17,647,-25),(907,17,648,-26),(908,17,649,-27),(909,17,650,-28),(910,17,651,-29),(911,17,652,-30),(912,17,653,-31),(913,17,654,-32),(914,17,655,-33),(915,17,656,-34),(916,17,657,-35),(917,17,658,-36),(918,17,659,-37),(919,17,660,-38),(920,17,661,-39),(921,17,662,-40),(922,17,663,-41),(923,17,664,-42),(924,17,665,-43),(925,17,666,-44),(926,17,667,-45),(927,17,668,-46),(928,17,669,-47),(929,17,670,-48),(930,17,671,-49),(931,17,672,-50),(932,17,673,-51),(933,17,674,-52),(934,17,675,-53),(935,17,676,-54),(936,17,677,-55),(937,17,678,-56),(938,17,679,-57),(939,17,680,-58),(940,17,681,-59),(941,17,682,-60),(942,17,683,-61),(943,17,684,-62),(944,17,685,-63),(945,17,686,-64),(946,17,687,-65),(947,17,688,-66),(948,17,689,-67),(949,36,689,-97),(950,2,689,-97),(951,17,690,-68),(952,36,690,-98),(953,2,690,-98),(954,17,691,-69),(955,36,691,-99),(956,2,691,-99),(957,17,692,-70),(958,36,692,-100),(959,2,692,-100),(960,17,693,-71),(961,36,693,-101),(962,2,693,-101),(963,17,694,-72),(964,36,694,-102),(965,2,694,-102),(966,17,695,-73),(967,17,696,-74),(968,17,697,-75),(969,17,698,-76),(970,17,699,-77),(971,17,700,-78),(972,17,701,-79),(973,17,702,-80),(974,17,703,-81),(975,17,704,-82),(976,17,705,-83),(977,17,706,-84),(978,17,707,-85),(979,17,708,-86),(980,17,709,-87),(981,17,710,-88),(982,17,711,-89),(983,17,712,-90),(984,17,713,-91),(985,36,713,-103),(986,2,713,-103),(987,17,714,-92),(988,36,714,-104),(989,2,714,-104),(990,17,715,-93),(991,36,715,-105),(992,2,715,-105),(993,17,716,-94),(994,36,716,-106),(995,2,716,-106),(996,17,717,-95),(997,36,717,-107),(998,2,717,-107),(999,17,718,-96),(1000,36,718,-108),(1001,2,718,-108),(1002,17,719,-97),(1003,17,720,-98),(1004,17,721,-99),(1005,17,722,-100),(1006,17,723,-101),(1007,17,724,-102),(1008,18,725,-1),(1009,32,725,-1),(1010,2,725,-109),(1011,18,726,-2),(1012,32,726,-2),(1013,2,726,-110),(1014,18,727,-3),(1015,32,727,-3),(1016,2,727,-111),(1017,18,728,-4),(1018,32,728,-4),(1019,2,728,-112),(1020,18,729,-5),(1021,32,729,-5),(1022,2,729,-113),(1023,18,730,-6),(1024,32,730,-6),(1025,2,730,-114),(1026,18,731,-7),(1027,32,731,-7),(1028,2,731,-115),(1029,18,732,-8),(1030,32,732,-8),(1031,2,732,-116),(1032,18,733,-9),(1033,32,733,-9),(1034,2,733,-117),(1035,18,734,-10),(1036,32,734,-10),(1037,2,734,-118),(1038,18,735,-11),(1039,32,735,-11),(1040,2,735,-119),(1041,18,736,-12),(1042,32,736,-12),(1043,2,736,-120),(1044,18,737,-13),(1045,32,737,-13),(1046,2,737,-121),(1047,18,738,-14),(1048,32,738,-14),(1049,35,738,-1),(1050,2,738,-122),(1051,18,739,-15),(1052,32,739,-15),(1053,35,739,-2),(1054,2,739,-123),(1055,18,740,-16),(1056,32,740,-16),(1057,35,740,-3),(1058,2,740,-124),(1059,18,741,-17),(1060,32,741,-17),(1061,35,741,-4),(1062,2,741,-125),(1063,18,742,-18),(1064,32,742,-18),(1065,35,742,-5),(1066,2,742,-126),(1067,18,743,-19),(1068,32,743,-19),(1069,35,743,-6),(1070,2,743,-127),(1071,18,744,-20),(1072,32,744,-20),(1073,35,744,-7),(1074,2,744,-128),(1075,18,745,-21),(1076,32,745,-21),(1077,35,745,-8),(1078,2,745,-129),(1079,18,746,-22),(1080,32,746,-22),(1081,35,746,-9),(1082,2,746,-130),(1083,18,747,-23),(1084,32,747,-23),(1085,35,747,-10),(1086,2,747,-131),(1087,18,748,-24),(1088,32,748,-24),(1089,35,748,-11),(1090,2,748,-132),(1091,18,749,-25),(1092,32,749,-25),(1093,35,749,-12),(1094,2,749,-133),(1095,18,750,-26),(1096,32,750,-26),(1097,35,750,-13),(1098,2,750,-134),(1099,18,751,-27),(1100,32,751,-27),(1101,8,751,-1),(1102,2,751,-135),(1103,18,752,-28),(1104,32,752,-28),(1105,8,752,-2),(1106,2,752,-136),(1107,18,753,-29),(1108,32,753,-29),(1109,8,753,-3),(1110,2,753,-137),(1111,18,754,-30),(1112,32,754,-30),(1113,8,754,-4),(1114,2,754,-138),(1115,18,755,-31),(1116,32,755,-31),(1117,8,755,-5),(1118,2,755,-139),(1119,18,756,-32),(1120,32,756,-32),(1121,8,756,-6),(1122,2,756,-140),(1123,18,757,-33),(1124,32,757,-33),(1125,8,757,-7),(1126,2,757,-141),(1127,18,758,-34),(1128,32,758,-34),(1129,8,758,-8),(1130,2,758,-142),(1131,18,759,-35),(1132,32,759,-35),(1133,8,759,-9),(1134,2,759,-143),(1135,18,760,-36),(1136,32,760,-36),(1137,8,760,-10),(1138,2,760,-144),(1139,18,761,-37),(1140,32,761,-37),(1141,8,761,-11),(1142,2,761,-145),(1143,18,762,-38),(1144,32,762,-38),(1145,8,762,-12),(1146,2,762,-146),(1147,18,763,-39),(1148,32,763,-39),(1149,8,763,-13),(1150,2,763,-147),(1151,18,764,-40),(1152,32,764,-40),(1153,2,764,-148),(1154,18,765,-41),(1155,32,765,-41),(1156,2,765,-149),(1157,18,766,-42),(1158,32,766,-42),(1159,2,766,-150),(1160,18,767,-43),(1161,32,767,-43),(1162,2,767,-151),(1163,18,768,-44),(1164,32,768,-44),(1165,2,768,-152),(1166,18,769,-45),(1167,32,769,-45),(1168,2,769,-153),(1169,18,770,-46),(1170,32,770,-46),(1171,2,770,-154),(1172,18,771,-47),(1173,32,771,-47),(1174,2,771,-155),(1175,18,772,-48),(1176,32,772,-48),(1177,2,772,-156),(1178,18,773,-49),(1179,32,773,-49),(1180,2,773,-157),(1181,18,774,-50),(1182,32,774,-50),(1183,2,774,-158),(1184,18,775,-51),(1185,32,775,-51),(1186,2,775,-159),(1187,18,776,-52),(1188,32,776,-52),(1189,2,776,-160),(1190,18,777,-53),(1191,32,777,-53),(1192,8,777,-14),(1193,2,777,-161),(1194,18,778,-54),(1195,32,778,-54),(1196,8,778,-15),(1197,2,778,-162),(1198,18,779,-55),(1199,32,779,-55),(1200,8,779,-16),(1201,2,779,-163),(1202,18,780,-56),(1203,32,780,-56),(1204,8,780,-17),(1205,2,780,-164),(1206,18,781,-57),(1207,32,781,-57),(1208,8,781,-18),(1209,2,781,-165),(1210,18,782,-58),(1211,32,782,-58),(1212,8,782,-19),(1213,2,782,-166),(1214,18,783,-59),(1215,32,783,-59),(1216,8,783,-20),(1217,2,783,-167),(1218,18,784,-60),(1219,32,784,-60),(1220,8,784,-21),(1221,2,784,-168),(1222,18,785,-61),(1223,32,785,-61),(1224,8,785,-22),(1225,2,785,-169),(1226,18,786,-62),(1227,32,786,-62),(1228,8,786,-23),(1229,2,786,-170),(1230,18,787,-63),(1231,32,787,-63),(1232,8,787,-24),(1233,2,787,-171),(1234,18,788,-64),(1235,32,788,-64),(1236,8,788,-25),(1237,2,788,-172),(1238,18,789,-65),(1239,32,789,-65),(1240,8,789,-26),(1241,2,789,-173),(1242,18,790,-66),(1243,32,790,-66),(1244,36,790,-109),(1245,2,790,-174),(1246,18,791,-67),(1247,32,791,-67),(1248,36,791,-110),(1249,2,791,-175),(1250,18,792,-68),(1251,32,792,-68),(1252,36,792,-111),(1253,2,792,-176),(1254,18,793,-69),(1255,32,793,-69),(1256,36,793,-112),(1257,2,793,-177),(1258,18,794,-70),(1259,32,794,-70),(1260,36,794,-113),(1261,2,794,-178),(1262,18,795,-71),(1263,32,795,-71),(1264,36,795,-114),(1265,2,795,-179),(1266,18,796,-72),(1267,32,796,-72),(1268,36,796,-115),(1269,2,796,-180),(1270,18,797,-73),(1271,32,797,-73),(1272,36,797,-116),(1273,2,797,-181),(1274,18,798,-74),(1275,32,798,-74),(1276,36,798,-117),(1277,2,798,-182),(1278,18,799,-75),(1279,32,799,-75),(1280,36,799,-118),(1281,2,799,-183),(1282,18,800,-76),(1283,32,800,-76),(1284,36,800,-119),(1285,2,800,-184),(1286,18,801,-77),(1287,32,801,-77),(1288,36,801,-120),(1289,2,801,-185),(1290,18,802,-78),(1291,32,802,-78),(1292,36,802,-121),(1293,2,802,-186),(1294,18,803,-79),(1295,32,803,-79),(1296,8,803,-27),(1297,2,803,-187),(1298,18,804,-80),(1299,32,804,-80),(1300,8,804,-28),(1301,2,804,-188),(1302,18,805,-81),(1303,32,805,-81),(1304,8,805,-29),(1305,2,805,-189),(1306,18,806,-82),(1307,32,806,-82),(1308,8,806,-30),(1309,2,806,-190),(1310,18,807,-83),(1311,32,807,-83),(1312,8,807,-31),(1313,2,807,-191),(1314,18,808,-84),(1315,32,808,-84),(1316,8,808,-32),(1317,2,808,-192),(1318,18,809,-85),(1319,32,809,-85),(1320,8,809,-33),(1321,2,809,-193),(1322,18,810,-86),(1323,32,810,-86),(1324,8,810,-34),(1325,2,810,-194),(1326,18,811,-87),(1327,32,811,-87),(1328,8,811,-35),(1329,2,811,-195),(1330,18,812,-88),(1331,32,812,-88),(1332,8,812,-36),(1333,2,812,-196),(1334,18,813,-89),(1335,32,813,-89),(1336,8,813,-37),(1337,2,813,-197),(1338,18,814,-90),(1339,32,814,-90),(1340,8,814,-38),(1341,2,814,-198),(1342,18,815,-91),(1343,32,815,-91),(1344,8,815,-39),(1345,2,815,-199),(1346,18,816,-92),(1347,32,816,-92),(1348,8,816,-40),(1349,2,816,-200),(1350,18,817,-93),(1351,32,817,-93),(1352,8,817,-41),(1353,2,817,-201),(1354,18,818,-94),(1355,32,818,-94),(1356,8,818,-42),(1357,2,818,-202),(1358,18,819,-95),(1359,32,819,-95),(1360,8,819,-43),(1361,2,819,-203),(1362,18,820,-96),(1363,32,820,-96),(1364,8,820,-44),(1365,2,820,-204),(1366,18,821,-97),(1367,32,821,-97),(1368,8,821,-45),(1369,2,821,-205),(1370,18,822,-98),(1371,32,822,-98),(1372,8,822,-46),(1373,2,822,-206),(1374,18,823,-99),(1375,32,823,-99),(1376,8,823,-47),(1377,2,823,-207),(1378,18,824,-100),(1379,32,824,-100),(1380,8,824,-48),(1381,2,824,-208),(1382,18,825,-101),(1383,32,825,-101),(1384,8,825,-49),(1385,2,825,-209),(1386,18,826,-102),(1387,32,826,-102),(1388,8,826,-50),(1389,2,826,-210),(1390,18,827,-103),(1391,32,827,-103),(1392,8,827,-51),(1393,2,827,-211),(1394,18,828,-104),(1395,32,828,-104),(1396,8,828,-52),(1397,2,828,-212),(1398,18,829,-105),(1399,32,829,-105),(1400,8,829,-53),(1401,34,829,-1),(1402,2,829,-213),(1403,18,830,-106),(1404,32,830,-106),(1405,8,830,-54),(1406,34,830,-2),(1407,2,830,-214),(1408,18,831,-107),(1409,32,831,-107),(1410,8,831,-55),(1411,34,831,-3),(1412,2,831,-215),(1413,18,832,-108),(1414,32,832,-108),(1415,8,832,-56),(1416,34,832,-4),(1417,2,832,-216),(1418,18,833,-109),(1419,32,833,-109),(1420,8,833,-57),(1421,34,833,-5),(1422,2,833,-217),(1423,18,834,-110),(1424,32,834,-110),(1425,8,834,-58),(1426,34,834,-6),(1427,2,834,-218),(1428,18,835,-111),(1429,32,835,-111),(1430,8,835,-59),(1431,34,835,-7),(1432,2,835,-219),(1433,18,836,-112),(1434,32,836,-112),(1435,8,836,-60),(1436,34,836,-8),(1437,2,836,-220),(1438,18,837,-113),(1439,32,837,-113),(1440,8,837,-61),(1441,34,837,-9),(1442,2,837,-221),(1443,18,838,-114),(1444,32,838,-114),(1445,8,838,-62),(1446,34,838,-10),(1447,2,838,-222),(1448,18,839,-115),(1449,32,839,-115),(1450,8,839,-63),(1451,34,839,-11),(1452,2,839,-223),(1453,18,840,-116),(1454,32,840,-116),(1455,8,840,-64),(1456,34,840,-12),(1457,2,840,-224),(1458,18,841,-117),(1459,32,841,-117),(1460,8,841,-65),(1461,34,841,-13),(1462,2,841,-225),(1463,18,842,-118),(1464,32,842,-118),(1465,34,842,-14),(1466,2,842,-226),(1467,18,843,-119),(1468,32,843,-119),(1469,34,843,-15),(1470,2,843,-227),(1471,18,844,-120),(1472,32,844,-120),(1473,34,844,-16),(1474,2,844,-228),(1475,18,845,-121),(1476,32,845,-121),(1477,34,845,-17),(1478,2,845,-229),(1479,18,846,-122),(1480,32,846,-122),(1481,34,846,-18),(1482,2,846,-230),(1483,18,847,-123),(1484,32,847,-123),(1485,34,847,-19),(1486,2,847,-231),(1487,18,848,-124),(1488,32,848,-124),(1489,34,848,-20),(1490,2,848,-232),(1491,18,849,-125),(1492,32,849,-125),(1493,34,849,-21),(1494,2,849,-233),(1495,18,850,-126),(1496,32,850,-126),(1497,34,850,-22),(1498,2,850,-234),(1499,18,851,-127),(1500,32,851,-127),(1501,34,851,-23),(1502,2,851,-235),(1503,18,852,-128),(1504,32,852,-128),(1505,34,852,-24),(1506,2,852,-236),(1507,18,853,-129),(1508,32,853,-129),(1509,34,853,-25),(1510,2,853,-237),(1511,18,854,-130),(1512,32,854,-130),(1513,34,854,-26),(1514,2,854,-238),(1515,18,855,-131),(1516,32,855,-131),(1517,34,855,-27),(1518,2,855,-239),(1519,18,856,-132),(1520,32,856,-132),(1521,34,856,-28),(1522,2,856,-240),(1523,18,857,-133),(1524,32,857,-133),(1525,34,857,-29),(1526,2,857,-241),(1527,18,858,-134),(1528,32,858,-134),(1529,34,858,-30),(1530,2,858,-242),(1531,18,859,-135),(1532,32,859,-135),(1533,34,859,-31),(1534,2,859,-243),(1535,18,860,-136),(1536,32,860,-136),(1537,34,860,-32),(1538,2,860,-244),(1539,18,861,-137),(1540,32,861,-137),(1541,34,861,-33),(1542,2,861,-245),(1543,18,862,-138),(1544,32,862,-138),(1545,34,862,-34),(1546,2,862,-246),(1547,18,863,-139),(1548,32,863,-139),(1549,34,863,-35),(1550,2,863,-247),(1551,18,864,-140),(1552,32,864,-140),(1553,34,864,-36),(1554,2,864,-248),(1555,18,865,-141),(1556,32,865,-141),(1557,34,865,-37),(1558,2,865,-249),(1559,18,866,-142),(1560,32,866,-142),(1561,34,866,-38),(1562,2,866,-250),(1563,18,867,-143),(1564,32,867,-143),(1565,34,867,-39),(1566,2,867,-251),(1567,18,868,-144),(1568,32,868,-144),(1569,2,868,-252),(1570,18,869,-145),(1571,32,869,-145),(1572,2,869,-253),(1573,18,870,-146),(1574,32,870,-146),(1575,2,870,-254),(1576,18,871,-147),(1577,32,871,-147),(1578,2,871,-255),(1579,18,872,-148),(1580,32,872,-148),(1581,2,872,-256),(1582,18,873,-149),(1583,32,873,-149),(1584,2,873,-257),(1585,18,874,-150),(1586,32,874,-150),(1587,2,874,-258),(1588,18,875,-151),(1589,32,875,-151),(1590,2,875,-259),(1591,18,876,-152),(1592,32,876,-152),(1593,2,876,-260),(1594,18,877,-153),(1595,32,877,-153),(1596,2,877,-261),(1597,18,878,-154),(1598,32,878,-154),(1599,2,878,-262),(1600,18,879,-155),(1601,32,879,-155),(1602,2,879,-263),(1603,18,880,-156),(1604,32,880,-156),(1605,2,880,-264),(1606,19,881,-1),(1607,34,881,-40),(1608,2,881,-265),(1609,19,882,-2),(1610,34,882,-41),(1611,2,882,-266),(1612,19,883,-3),(1613,34,883,-42),(1614,2,883,-267),(1615,19,884,-4),(1616,34,884,-43),(1617,2,884,-268),(1618,19,885,-5),(1619,34,885,-44),(1620,2,885,-269),(1621,19,886,-6),(1622,34,886,-45),(1623,2,886,-270),(1624,19,887,-7),(1625,34,887,-46),(1626,2,887,-271),(1627,19,888,-8),(1628,34,888,-47),(1629,2,888,-272),(1630,19,889,-9),(1631,34,889,-48),(1632,2,889,-273),(1633,19,890,-10),(1634,34,890,-49),(1635,2,890,-274),(1636,19,891,-11),(1637,34,891,-50),(1638,2,891,-275),(1639,19,892,-12),(1640,34,892,-51),(1641,2,892,-276),(1642,19,893,-13),(1643,34,893,-52),(1644,2,893,-277),(1645,19,894,-14),(1646,19,895,-15),(1647,19,896,-16),(1648,19,897,-17),(1649,19,898,-18),(1650,19,899,-19),(1651,35,899,-14),(1652,2,899,-278),(1653,19,900,-20),(1654,35,900,-15),(1655,2,900,-279),(1656,19,901,-21),(1657,35,901,-16),(1658,2,901,-280),(1659,19,902,-22),(1660,35,902,-17),(1661,2,902,-281),(1662,19,903,-23),(1663,35,903,-18),(1664,2,903,-282),(1665,19,904,-24),(1666,35,904,-19),(1667,2,904,-283),(1668,19,905,-25),(1669,35,905,-20),(1670,2,905,-284),(1671,19,906,-26),(1672,35,906,-21),(1673,2,906,-285),(1674,19,907,-27),(1675,35,907,-22),(1676,2,907,-286),(1677,19,908,-28),(1678,35,908,-23),(1679,2,908,-287),(1680,19,909,-29),(1681,35,909,-24),(1682,2,909,-288),(1683,19,910,-30),(1684,35,910,-25),(1685,2,910,-289),(1686,19,911,-31),(1687,35,911,-26),(1688,2,911,-290),(1689,19,912,-32),(1690,19,913,-33),(1691,19,914,-34),(1692,19,915,-35),(1693,19,916,-36),(1694,19,917,-37),(1695,19,918,-38),(1696,19,919,-39),(1697,19,920,-40),(1698,19,921,-41),(1699,19,922,-42),(1700,19,923,-43),(1701,19,924,-44),(1702,19,925,-45),(1703,35,925,-27),(1704,2,925,-291),(1705,19,926,-46),(1706,35,926,-28),(1707,2,926,-292),(1708,19,927,-47),(1709,35,927,-29),(1710,2,927,-293),(1711,19,928,-48),(1712,35,928,-30),(1713,2,928,-294),(1714,19,929,-49),(1715,35,929,-31),(1716,2,929,-295),(1717,19,930,-50),(1718,35,930,-32),(1719,2,930,-296),(1720,19,931,-51),(1721,35,931,-33),(1722,2,931,-297),(1723,19,932,-52),(1724,35,932,-34),(1725,2,932,-298),(1726,19,933,-53),(1727,35,933,-35),(1728,2,933,-299),(1729,19,934,-54),(1730,35,934,-36),(1731,2,934,-300),(1732,19,935,-55),(1733,35,935,-37),(1734,2,935,-301),(1735,19,936,-56),(1736,35,936,-38),(1737,2,936,-302),(1738,19,937,-57),(1739,35,937,-39),(1740,2,937,-303),(1741,19,938,-58),(1742,8,938,-66),(1743,2,938,-304),(1744,19,939,-59),(1745,8,939,-67),(1746,2,939,-305),(1747,19,940,-60),(1748,8,940,-68),(1749,2,940,-306),(1750,19,941,-61),(1751,8,941,-69),(1752,2,941,-307),(1753,19,942,-62),(1754,8,942,-70),(1755,2,942,-308),(1756,19,943,-63),(1757,8,943,-71),(1758,2,943,-309),(1759,19,944,-64),(1760,8,944,-72),(1761,2,944,-310),(1762,19,945,-65),(1763,8,945,-73),(1764,2,945,-311),(1765,19,946,-66),(1766,8,946,-74),(1767,2,946,-312),(1768,19,947,-67),(1769,8,947,-75),(1770,2,947,-313),(1771,19,948,-68),(1772,8,948,-76),(1773,2,948,-314),(1774,19,949,-69),(1775,8,949,-77),(1776,2,949,-315),(1777,19,950,-70),(1778,8,950,-78),(1779,2,950,-316),(1780,19,951,-71),(1781,31,951,-1),(1782,34,951,-53),(1783,2,951,-317),(1784,19,952,-72),(1785,31,952,-2),(1786,34,952,-54),(1787,2,952,-318),(1788,19,953,-73),(1789,31,953,-3),(1790,34,953,-55),(1791,2,953,-319),(1792,19,954,-74),(1793,31,954,-4),(1794,34,954,-56),(1795,2,954,-320),(1796,19,955,-75),(1797,31,955,-5),(1798,34,955,-57),(1799,2,955,-321),(1800,19,956,-76),(1801,31,956,-6),(1802,34,956,-58),(1803,2,956,-322),(1804,19,957,-77),(1805,31,957,-7),(1806,34,957,-59),(1807,2,957,-323),(1808,19,958,-78),(1809,31,958,-8),(1810,34,958,-60),(1811,2,958,-324),(1812,19,959,-79),(1813,31,959,-9),(1814,34,959,-61),(1815,2,959,-325),(1816,19,960,-80),(1817,31,960,-10),(1818,34,960,-62),(1819,2,960,-326),(1820,19,961,-81),(1821,31,961,-11),(1822,34,961,-63),(1823,2,961,-327),(1824,19,962,-82),(1825,31,962,-12),(1826,34,962,-64),(1827,2,962,-328),(1828,19,963,-83),(1829,31,963,-13),(1830,34,963,-65),(1831,2,963,-329),(1832,19,964,-84),(1833,31,964,-14),(1834,2,964,-330),(1835,19,965,-85),(1836,31,965,-15),(1837,2,965,-331),(1838,19,966,-86),(1839,31,966,-16),(1840,2,966,-332),(1841,19,967,-87),(1842,31,967,-17),(1843,2,967,-333),(1844,19,968,-88),(1845,31,968,-18),(1846,2,968,-334),(1847,19,969,-89),(1848,31,969,-19),(1849,2,969,-335),(1850,19,970,-90),(1851,31,970,-20),(1852,2,970,-336),(1853,19,971,-91),(1854,31,971,-21),(1855,2,971,-337),(1856,19,972,-92),(1857,31,972,-22),(1858,2,972,-338),(1859,19,973,-93),(1860,31,973,-23),(1861,2,973,-339),(1862,19,974,-94),(1863,31,974,-24),(1864,2,974,-340),(1865,19,975,-95),(1866,31,975,-25),(1867,2,975,-341),(1868,19,976,-96),(1869,31,976,-26),(1870,2,976,-342),(1871,19,977,-97),(1872,35,977,-40),(1873,2,977,-343),(1874,19,978,-98),(1875,35,978,-41),(1876,2,978,-344),(1877,19,979,-99),(1878,35,979,-42),(1879,2,979,-345),(1880,19,980,-100),(1881,35,980,-43),(1882,2,980,-346),(1883,19,981,-101),(1884,35,981,-44),(1885,2,981,-347),(1886,19,982,-102),(1887,35,982,-45),(1888,2,982,-348),(1889,19,983,-103),(1890,35,983,-46),(1891,2,983,-349),(1892,19,984,-104),(1893,35,984,-47),(1894,2,984,-350),(1895,19,985,-105),(1896,35,985,-48),(1897,2,985,-351),(1898,19,986,-106),(1899,35,986,-49),(1900,2,986,-352),(1901,19,987,-107),(1902,35,987,-50),(1903,2,987,-353),(1904,19,988,-108),(1905,35,988,-51),(1906,2,988,-354),(1907,19,989,-109),(1908,35,989,-52),(1909,2,989,-355),(1910,19,990,-110),(1911,8,990,-79),(1912,2,990,-356),(1913,19,991,-111),(1914,8,991,-80),(1915,2,991,-357),(1916,19,992,-112),(1917,8,992,-81),(1918,2,992,-358),(1919,19,993,-113),(1920,8,993,-82),(1921,2,993,-359),(1922,19,994,-114),(1923,8,994,-83),(1924,2,994,-360),(1925,19,995,-115),(1926,8,995,-84),(1927,2,995,-361),(1928,19,996,-116),(1929,8,996,-85),(1930,2,996,-362),(1931,19,997,-117),(1932,8,997,-86),(1933,2,997,-363),(1934,19,998,-118),(1935,8,998,-87),(1936,2,998,-364),(1937,19,999,-119),(1938,8,999,-88),(1939,2,999,-365),(1940,19,1000,-120),(1941,8,1000,-89),(1942,2,1000,-366),(1943,19,1001,-121),(1944,8,1001,-90),(1945,2,1001,-367),(1946,19,1002,-122),(1947,8,1002,-91),(1948,2,1002,-368),(1949,19,1003,-123),(1950,19,1004,-124),(1951,19,1005,-125),(1952,19,1006,-126),(1953,19,1007,-127),(1954,19,1008,-128),(1955,19,1009,-129),(1956,19,1010,-130),(1957,19,1011,-131),(1958,19,1012,-132),(1959,19,1013,-133),(1960,19,1014,-134),(1961,19,1015,-135),(1962,19,1016,-136),(1963,31,1016,-27),(1964,2,1016,-369),(1965,19,1017,-137),(1966,31,1017,-28),(1967,2,1017,-370),(1968,19,1018,-138),(1969,31,1018,-29),(1970,2,1018,-371),(1971,19,1019,-139),(1972,31,1019,-30),(1973,2,1019,-372),(1974,19,1020,-140),(1975,31,1020,-31),(1976,2,1020,-373),(1977,19,1021,-141),(1978,31,1021,-32),(1979,2,1021,-374),(1980,19,1022,-142),(1981,31,1022,-33),(1982,2,1022,-375),(1983,19,1023,-143),(1984,31,1023,-34),(1985,2,1023,-376),(1986,19,1024,-144),(1987,31,1024,-35),(1988,2,1024,-377),(1989,19,1025,-145),(1990,31,1025,-36),(1991,2,1025,-378),(1992,19,1026,-146),(1993,31,1026,-37),(1994,2,1026,-379),(1995,19,1027,-147),(1996,31,1027,-38),(1997,2,1027,-380),(1998,19,1028,-148),(1999,31,1028,-39),(2000,2,1028,-381),(2001,24,1029,-1),(2002,8,1029,-92),(2003,34,1029,-66),(2004,2,1029,-382),(2005,24,1030,-2),(2006,8,1030,-93),(2007,34,1030,-67),(2008,2,1030,-383),(2009,24,1031,-3),(2010,8,1031,-94),(2011,34,1031,-68),(2012,2,1031,-384),(2013,24,1032,-4),(2014,8,1032,-95),(2015,34,1032,-69),(2016,2,1032,-385),(2017,24,1033,-5),(2018,8,1033,-96),(2019,34,1033,-70),(2020,2,1033,-386),(2021,24,1034,-6),(2022,8,1034,-97),(2023,34,1034,-71),(2024,2,1034,-387),(2025,24,1035,-7),(2026,8,1035,-98),(2027,34,1035,-72),(2028,2,1035,-388),(2029,24,1036,-8),(2030,8,1036,-99),(2031,34,1036,-73),(2032,2,1036,-389),(2033,24,1037,-9),(2034,8,1037,-100),(2035,34,1037,-74),(2036,2,1037,-390),(2037,24,1038,-10),(2038,8,1038,-101),(2039,34,1038,-75),(2040,2,1038,-391),(2041,24,1039,-11),(2042,8,1039,-102),(2043,34,1039,-76),(2044,2,1039,-392),(2045,24,1040,-12),(2046,8,1040,-103),(2047,34,1040,-77),(2048,2,1040,-393),(2049,24,1041,-13),(2050,8,1041,-104),(2051,34,1041,-78),(2052,2,1041,-394),(2053,24,1042,-14),(2054,8,1042,-105),(2055,34,1042,-79),(2056,2,1042,-395),(2057,24,1043,-15),(2058,8,1043,-106),(2059,34,1043,-80),(2060,2,1043,-396),(2061,24,1044,-16),(2062,8,1044,-107),(2063,34,1044,-81),(2064,2,1044,-397),(2065,24,1045,-17),(2066,30,1045,-1),(2067,2,1045,-398),(2068,24,1046,-18),(2069,30,1046,-2),(2070,2,1046,-399),(2071,24,1047,-19),(2072,30,1047,-3),(2073,2,1047,-400),(2074,24,1048,-20),(2075,30,1048,-4),(2076,2,1048,-401),(2077,24,1049,-21),(2078,30,1049,-5),(2079,2,1049,-402),(2080,24,1050,-22),(2081,30,1050,-6),(2082,2,1050,-403),(2083,24,1051,-23),(2084,30,1051,-7),(2085,2,1051,-404),(2086,24,1052,-24),(2087,30,1052,-8),(2088,2,1052,-405),(2089,24,1053,-25),(2090,30,1053,-9),(2091,2,1053,-406),(2092,24,1054,-26),(2093,30,1054,-10),(2094,2,1054,-407),(2095,24,1055,-27),(2096,30,1055,-11),(2097,2,1055,-408),(2098,24,1056,-28),(2099,30,1056,-12),(2100,2,1056,-409),(2101,24,1057,-29),(2102,30,1057,-13),(2103,2,1057,-410),(2104,24,1058,-30),(2105,30,1058,-14),(2106,2,1058,-411),(2107,24,1059,-31),(2108,30,1059,-15),(2109,2,1059,-412),(2110,24,1060,-32),(2111,30,1060,-16),(2112,2,1060,-413),(2113,24,1061,-33),(2114,24,1062,-34),(2115,24,1063,-35),(2116,24,1064,-36),(2117,24,1065,-37),(2118,24,1066,-38),(2119,24,1067,-39),(2120,24,1068,-40),(2121,24,1069,-41),(2122,24,1070,-42),(2123,24,1071,-43),(2124,24,1072,-44),(2125,24,1073,-45),(2126,24,1074,-46),(2127,24,1075,-47),(2128,24,1076,-48),(2129,24,1077,-49),(2130,24,1078,-50),(2131,24,1079,-51),(2132,24,1080,-52),(2133,24,1081,-53),(2134,24,1082,-54),(2135,24,1083,-55),(2136,24,1084,-56),(2137,24,1085,-57),(2138,24,1086,-58),(2139,24,1087,-59),(2140,24,1088,-60),(2141,24,1089,-61),(2142,24,1090,-62),(2143,24,1091,-63),(2144,24,1092,-64),(2145,24,1093,-65),(2146,24,1094,-66),(2147,24,1095,-67),(2148,24,1096,-68),(2149,24,1097,-69),(2150,24,1098,-70),(2151,24,1099,-71),(2152,24,1100,-72),(2153,24,1101,-73),(2154,24,1102,-74),(2155,24,1103,-75),(2156,24,1104,-76),(2157,24,1105,-77),(2158,24,1106,-78),(2159,24,1107,-79),(2160,24,1108,-80),(2161,24,1109,-81),(2162,24,1110,-82),(2163,24,1111,-83),(2164,24,1112,-84),(2165,24,1113,-85),(2166,24,1114,-86),(2167,24,1115,-87),(2168,8,1115,-108),(2169,34,1115,-82),(2170,2,1115,-414),(2171,24,1116,-88),(2172,8,1116,-109),(2173,34,1116,-83),(2174,2,1116,-415),(2175,24,1117,-89),(2176,8,1117,-110),(2177,34,1117,-84),(2178,2,1117,-416),(2179,24,1118,-90),(2180,8,1118,-111),(2181,34,1118,-85),(2182,2,1118,-417),(2183,24,1119,-91),(2184,8,1119,-112),(2185,34,1119,-86),(2186,2,1119,-418),(2187,24,1120,-92),(2188,8,1120,-113),(2189,34,1120,-87),(2190,2,1120,-419),(2191,24,1121,-93),(2192,8,1121,-114),(2193,34,1121,-88),(2194,2,1121,-420),(2195,24,1122,-94),(2196,8,1122,-115),(2197,34,1122,-89),(2198,2,1122,-421),(2199,24,1123,-95),(2200,8,1123,-116),(2201,34,1123,-90),(2202,2,1123,-422),(2203,24,1124,-96),(2204,8,1124,-117),(2205,34,1124,-91),(2206,2,1124,-423),(2207,24,1125,-97),(2208,8,1125,-118),(2209,34,1125,-92),(2210,2,1125,-424),(2211,24,1126,-98),(2212,8,1126,-119),(2213,34,1126,-93),(2214,2,1126,-425),(2215,24,1127,-99),(2216,8,1127,-120),(2217,34,1127,-94),(2218,2,1127,-426),(2219,24,1128,-100),(2220,8,1128,-121),(2221,34,1128,-95),(2222,2,1128,-427),(2223,24,1129,-101),(2224,8,1129,-122),(2225,34,1129,-96),(2226,2,1129,-428),(2227,24,1130,-102),(2228,8,1130,-123),(2229,34,1130,-97),(2230,2,1130,-429),(2231,24,1131,-103),(2232,30,1131,-17),(2233,35,1131,-53),(2234,2,1131,-430),(2235,24,1132,-104),(2236,30,1132,-18),(2237,35,1132,-54),(2238,2,1132,-431),(2239,24,1133,-105),(2240,30,1133,-19),(2241,35,1133,-55),(2242,2,1133,-432),(2243,24,1134,-106),(2244,30,1134,-20),(2245,35,1134,-56),(2246,2,1134,-433),(2247,24,1135,-107),(2248,30,1135,-21),(2249,35,1135,-57),(2250,2,1135,-434),(2251,24,1136,-108),(2252,30,1136,-22),(2253,35,1136,-58),(2254,2,1136,-435),(2255,24,1137,-109),(2256,30,1137,-23),(2257,35,1137,-59),(2258,2,1137,-436),(2259,24,1138,-110),(2260,30,1138,-24),(2261,35,1138,-60),(2262,2,1138,-437),(2263,24,1139,-111),(2264,30,1139,-25),(2265,35,1139,-61),(2266,2,1139,-438),(2267,24,1140,-112),(2268,30,1140,-26),(2269,35,1140,-62),(2270,2,1140,-439),(2271,24,1141,-113),(2272,30,1141,-27),(2273,35,1141,-63),(2274,2,1141,-440),(2275,24,1142,-114),(2276,30,1142,-28),(2277,35,1142,-64),(2278,2,1142,-441),(2279,24,1143,-115),(2280,30,1143,-29),(2281,35,1143,-65),(2282,2,1143,-442),(2283,24,1144,-116),(2284,30,1144,-30),(2285,35,1144,-66),(2286,2,1144,-443),(2287,24,1145,-117),(2288,30,1145,-31),(2289,35,1145,-67),(2290,2,1145,-444),(2291,24,1146,-118),(2292,30,1146,-32),(2293,35,1146,-68),(2294,2,1146,-445),(2295,24,1147,-119),(2296,36,1147,-122),(2297,2,1147,-446),(2298,24,1148,-120),(2299,36,1148,-123),(2300,2,1148,-447),(2301,24,1149,-121),(2302,36,1149,-124),(2303,2,1149,-448),(2304,24,1150,-122),(2305,36,1150,-125),(2306,2,1150,-449),(2307,24,1151,-123),(2308,36,1151,-126),(2309,2,1151,-450),(2310,24,1152,-124),(2311,36,1152,-127),(2312,2,1152,-451),(2313,24,1153,-125),(2314,36,1153,-128),(2315,2,1153,-452),(2316,24,1154,-126),(2317,36,1154,-129),(2318,2,1154,-453),(2319,24,1155,-127),(2320,36,1155,-130),(2321,2,1155,-454),(2322,24,1156,-128),(2323,36,1156,-131),(2324,2,1156,-455),(2325,24,1157,-129),(2326,36,1157,-132),(2327,2,1157,-456),(2328,24,1158,-130),(2329,36,1158,-133),(2330,2,1158,-457),(2331,24,1159,-131),(2332,36,1159,-134),(2333,2,1159,-458),(2334,24,1160,-132),(2335,36,1160,-135),(2336,2,1160,-459),(2337,24,1161,-133),(2338,36,1161,-136),(2339,2,1161,-460),(2340,24,1162,-134),(2341,36,1162,-137),(2342,2,1162,-461),(2343,24,1163,-135),(2344,8,1163,-124),(2345,2,1163,-462),(2346,24,1164,-136),(2347,8,1164,-125),(2348,2,1164,-463),(2349,24,1165,-137),(2350,8,1165,-126),(2351,2,1165,-464),(2352,24,1166,-138),(2353,8,1166,-127),(2354,2,1166,-465),(2355,24,1167,-139),(2356,8,1167,-128),(2357,2,1167,-466),(2358,24,1168,-140),(2359,8,1168,-129),(2360,2,1168,-467),(2361,24,1169,-141),(2362,8,1169,-130),(2363,2,1169,-468),(2364,24,1170,-142),(2365,8,1170,-131),(2366,2,1170,-469),(2367,24,1171,-143),(2368,8,1171,-132),(2369,2,1171,-470),(2370,24,1172,-144),(2371,8,1172,-133),(2372,2,1172,-471),(2373,24,1173,-145),(2374,8,1173,-134),(2375,2,1173,-472),(2376,24,1174,-146),(2377,8,1174,-135),(2378,2,1174,-473),(2379,24,1175,-147),(2380,8,1175,-136),(2381,2,1175,-474),(2382,24,1176,-148),(2383,8,1176,-137),(2384,2,1176,-475),(2385,24,1177,-149),(2386,8,1177,-138),(2387,2,1177,-476),(2388,24,1178,-150),(2389,8,1178,-139),(2390,2,1178,-477),(2391,24,1179,-151),(2392,34,1179,-98),(2393,2,1179,-478),(2394,24,1180,-152),(2395,34,1180,-99),(2396,2,1180,-479),(2397,24,1181,-153),(2398,34,1181,-100),(2399,2,1181,-480),(2400,24,1182,-154),(2401,34,1182,-101),(2402,2,1182,-481),(2403,24,1183,-155),(2404,34,1183,-102),(2405,2,1183,-482),(2406,24,1184,-156),(2407,34,1184,-103),(2408,2,1184,-483),(2409,24,1185,-157),(2410,34,1185,-104),(2411,2,1185,-484),(2412,24,1186,-158),(2413,34,1186,-105),(2414,2,1186,-485),(2415,24,1187,-159),(2416,34,1187,-106),(2417,2,1187,-486),(2418,24,1188,-160),(2419,34,1188,-107),(2420,2,1188,-487),(2421,24,1189,-161),(2422,34,1189,-108),(2423,2,1189,-488),(2424,24,1190,-162),(2425,34,1190,-109),(2426,2,1190,-489),(2427,24,1191,-163),(2428,34,1191,-110),(2429,2,1191,-490),(2430,24,1192,-164),(2431,34,1192,-111),(2432,2,1192,-491),(2433,24,1193,-165),(2434,34,1193,-112),(2435,2,1193,-492),(2436,24,1194,-166),(2437,34,1194,-113),(2438,2,1194,-493),(2439,24,1195,-167),(2440,35,1195,-69),(2441,2,1195,-494),(2442,24,1196,-168),(2443,35,1196,-70),(2444,2,1196,-495),(2445,24,1197,-169),(2446,35,1197,-71),(2447,2,1197,-496),(2448,24,1198,-170),(2449,35,1198,-72),(2450,2,1198,-497),(2451,24,1199,-171),(2452,35,1199,-73),(2453,2,1199,-498),(2454,24,1200,-172),(2455,35,1200,-74),(2456,2,1200,-499),(2457,24,1201,-173),(2458,35,1201,-75),(2459,2,1201,-500),(2460,24,1202,-174),(2461,35,1202,-76),(2462,2,1202,-501),(2463,24,1203,-175),(2464,35,1203,-77),(2465,2,1203,-502),(2466,24,1204,-176),(2467,35,1204,-78),(2468,2,1204,-503),(2469,24,1205,-177),(2470,35,1205,-79),(2471,2,1205,-504),(2472,24,1206,-178),(2473,35,1206,-80),(2474,2,1206,-505),(2475,24,1207,-179),(2476,35,1207,-81),(2477,2,1207,-506),(2478,24,1208,-180),(2479,35,1208,-82),(2480,2,1208,-507),(2481,24,1209,-181),(2482,35,1209,-83),(2483,2,1209,-508),(2484,24,1210,-182),(2485,35,1210,-84),(2486,2,1210,-509),(2487,23,1211,-1),(2488,8,1211,-140),(2489,34,1211,-114),(2490,2,1211,-510),(2491,23,1212,-2),(2492,8,1212,-141),(2493,34,1212,-115),(2494,2,1212,-511),(2495,23,1213,-3),(2496,8,1213,-142),(2497,34,1213,-116),(2498,2,1213,-512),(2499,23,1214,-4),(2500,8,1214,-143),(2501,34,1214,-117),(2502,2,1214,-513),(2503,23,1215,-5),(2504,8,1215,-144),(2505,34,1215,-118),(2506,2,1215,-514),(2507,23,1216,-6),(2508,8,1216,-145),(2509,34,1216,-119),(2510,2,1216,-515),(2511,23,1217,-7),(2512,8,1217,-146),(2513,34,1217,-120),(2514,2,1217,-516),(2515,23,1218,-8),(2516,8,1218,-147),(2517,34,1218,-121),(2518,2,1218,-517),(2519,23,1219,-9),(2520,8,1219,-148),(2521,34,1219,-122),(2522,2,1219,-518),(2523,23,1220,-10),(2524,8,1220,-149),(2525,34,1220,-123),(2526,2,1220,-519),(2527,23,1221,-11),(2528,30,1221,-33),(2529,2,1221,-520),(2530,23,1222,-12),(2531,30,1222,-34),(2532,2,1222,-521),(2533,23,1223,-13),(2534,30,1223,-35),(2535,2,1223,-522),(2536,23,1224,-14),(2537,30,1224,-36),(2538,2,1224,-523),(2539,23,1225,-15),(2540,30,1225,-37),(2541,2,1225,-524),(2542,23,1226,-16),(2543,30,1226,-38),(2544,2,1226,-525),(2545,23,1227,-17),(2546,30,1227,-39),(2547,2,1227,-526),(2548,23,1228,-18),(2549,30,1228,-40),(2550,2,1228,-527),(2551,23,1229,-19),(2552,30,1229,-41),(2553,2,1229,-528),(2554,23,1230,-20),(2555,30,1230,-42),(2556,2,1230,-529),(2557,23,1231,-21),(2558,30,1231,-43),(2559,2,1231,-530),(2560,23,1232,-22),(2561,30,1232,-44),(2562,2,1232,-531),(2563,23,1233,-23),(2564,30,1233,-45),(2565,2,1233,-532),(2566,23,1234,-24),(2567,30,1234,-46),(2568,2,1234,-533),(2569,23,1235,-25),(2570,30,1235,-47),(2571,2,1235,-534),(2572,23,1236,-26),(2573,30,1236,-48),(2574,2,1236,-535),(2575,23,1237,-27),(2576,23,1238,-28),(2577,23,1239,-29),(2578,23,1240,-30),(2579,23,1241,-31),(2580,23,1242,-32),(2581,23,1243,-33),(2582,23,1244,-34),(2583,23,1245,-35),(2584,23,1246,-36),(2585,23,1247,-37),(2586,23,1248,-38),(2587,23,1249,-39),(2588,23,1250,-40),(2589,23,1251,-41),(2590,23,1252,-42),(2591,23,1253,-43),(2592,8,1253,-150),(2593,35,1253,-85),(2594,2,1253,-536),(2595,23,1254,-44),(2596,8,1254,-151),(2597,35,1254,-86),(2598,2,1254,-537),(2599,23,1255,-45),(2600,8,1255,-152),(2601,35,1255,-87),(2602,2,1255,-538),(2603,23,1256,-46),(2604,8,1256,-153),(2605,35,1256,-88),(2606,2,1256,-539),(2607,23,1257,-47),(2608,8,1257,-154),(2609,35,1257,-89),(2610,2,1257,-540),(2611,23,1258,-48),(2612,8,1258,-155),(2613,35,1258,-90),(2614,2,1258,-541),(2615,23,1259,-49),(2616,8,1259,-156),(2617,35,1259,-91),(2618,2,1259,-542),(2619,23,1260,-50),(2620,8,1260,-157),(2621,35,1260,-92),(2622,2,1260,-543),(2623,23,1261,-51),(2624,8,1261,-158),(2625,35,1261,-93),(2626,2,1261,-544),(2627,23,1262,-52),(2628,8,1262,-159),(2629,35,1262,-94),(2630,2,1262,-545),(2631,23,1263,-53),(2632,8,1263,-160),(2633,35,1263,-95),(2634,2,1263,-546),(2635,23,1264,-54),(2636,8,1264,-161),(2637,35,1264,-96),(2638,2,1264,-547),(2639,23,1265,-55),(2640,8,1265,-162),(2641,35,1265,-97),(2642,2,1265,-548),(2643,23,1266,-56),(2644,8,1266,-163),(2645,35,1266,-98),(2646,2,1266,-549),(2647,23,1267,-57),(2648,8,1267,-164),(2649,35,1267,-99),(2650,2,1267,-550),(2651,23,1268,-58),(2652,8,1268,-165),(2653,35,1268,-100),(2654,2,1268,-551),(2655,23,1269,-59),(2656,23,1270,-60),(2657,23,1271,-61),(2658,23,1272,-62),(2659,23,1273,-63),(2660,23,1274,-64),(2661,23,1275,-65),(2662,23,1276,-66),(2663,23,1277,-67),(2664,23,1278,-68),(2665,23,1279,-69),(2666,23,1280,-70),(2667,23,1281,-71),(2668,23,1282,-72),(2669,23,1283,-73),(2670,23,1284,-74),(2671,23,1285,-75),(2672,23,1286,-76),(2673,23,1287,-77),(2674,23,1288,-78),(2675,23,1289,-79),(2676,23,1290,-80),(2677,23,1291,-81),(2678,23,1292,-82),(2679,23,1293,-83),(2680,23,1294,-84),(2681,23,1295,-85),(2682,23,1296,-86),(2683,23,1297,-87),(2684,23,1298,-88),(2685,23,1299,-89),(2686,23,1300,-90),(2687,23,1301,-91),(2688,30,1301,-49),(2689,34,1301,-124),(2690,2,1301,-552),(2691,23,1302,-92),(2692,30,1302,-50),(2693,34,1302,-125),(2694,2,1302,-553),(2695,23,1303,-93),(2696,30,1303,-51),(2697,34,1303,-126),(2698,2,1303,-554),(2699,23,1304,-94),(2700,30,1304,-52),(2701,34,1304,-127),(2702,2,1304,-555),(2703,23,1305,-95),(2704,30,1305,-53),(2705,34,1305,-128),(2706,2,1305,-556),(2707,23,1306,-96),(2708,30,1306,-54),(2709,34,1306,-129),(2710,2,1306,-557),(2711,23,1307,-97),(2712,30,1307,-55),(2713,34,1307,-130),(2714,2,1307,-558),(2715,23,1308,-98),(2716,30,1308,-56),(2717,34,1308,-131),(2718,2,1308,-559),(2719,23,1309,-99),(2720,30,1309,-57),(2721,34,1309,-132),(2722,2,1309,-560),(2723,23,1310,-100),(2724,30,1310,-58),(2725,34,1310,-133),(2726,2,1310,-561),(2727,23,1311,-101),(2728,30,1311,-59),(2729,34,1311,-134),(2730,2,1311,-562),(2731,23,1312,-102),(2732,30,1312,-60),(2733,34,1312,-135),(2734,2,1312,-563),(2735,23,1313,-103),(2736,30,1313,-61),(2737,34,1313,-136),(2738,2,1313,-564),(2739,23,1314,-104),(2740,30,1314,-62),(2741,34,1314,-137),(2742,2,1314,-565),(2743,23,1315,-105),(2744,30,1315,-63),(2745,34,1315,-138),(2746,2,1315,-566),(2747,23,1316,-106),(2748,30,1316,-64),(2749,34,1316,-139),(2750,2,1316,-567),(2751,23,1317,-107),(2752,34,1317,-140),(2753,2,1317,-568),(2754,23,1318,-108),(2755,34,1318,-141),(2756,2,1318,-569),(2757,23,1319,-109),(2758,34,1319,-142),(2759,2,1319,-570),(2760,23,1320,-110),(2761,34,1320,-143),(2762,2,1320,-571),(2763,23,1321,-111),(2764,34,1321,-144),(2765,2,1321,-572),(2766,23,1322,-112),(2767,34,1322,-145),(2768,2,1322,-573),(2769,23,1323,-113),(2770,34,1323,-146),(2771,2,1323,-574),(2772,23,1324,-114),(2773,34,1324,-147),(2774,2,1324,-575),(2775,23,1325,-115),(2776,34,1325,-148),(2777,2,1325,-576),(2778,23,1326,-116),(2779,34,1326,-149),(2780,2,1326,-577),(2781,23,1327,-117),(2782,34,1327,-150),(2783,2,1327,-578),(2784,23,1328,-118),(2785,34,1328,-151),(2786,2,1328,-579),(2787,23,1329,-119),(2788,34,1329,-152),(2789,2,1329,-580),(2790,23,1330,-120),(2791,34,1330,-153),(2792,2,1330,-581),(2793,23,1331,-121),(2794,34,1331,-154),(2795,2,1331,-582),(2796,23,1332,-122),(2797,34,1332,-155),(2798,2,1332,-583),(2799,23,1333,-123),(2800,8,1333,-166),(2801,35,1333,-101),(2802,2,1333,-584),(2803,23,1334,-124),(2804,8,1334,-167),(2805,35,1334,-102),(2806,2,1334,-585),(2807,23,1335,-125),(2808,8,1335,-168),(2809,35,1335,-103),(2810,2,1335,-586),(2811,23,1336,-126),(2812,8,1336,-169),(2813,35,1336,-104),(2814,2,1336,-587),(2815,23,1337,-127),(2816,8,1337,-170),(2817,35,1337,-105),(2818,2,1337,-588),(2819,23,1338,-128),(2820,8,1338,-171),(2821,35,1338,-106),(2822,2,1338,-589),(2823,23,1339,-129),(2824,8,1339,-172),(2825,35,1339,-107),(2826,2,1339,-590),(2827,23,1340,-130),(2828,8,1340,-173),(2829,35,1340,-108),(2830,2,1340,-591),(2831,23,1341,-131),(2832,8,1341,-174),(2833,35,1341,-109),(2834,2,1341,-592),(2835,23,1342,-132),(2836,8,1342,-175),(2837,35,1342,-110),(2838,2,1342,-593),(2839,23,1343,-133),(2840,8,1343,-176),(2841,35,1343,-111),(2842,2,1343,-594),(2843,23,1344,-134),(2844,8,1344,-177),(2845,35,1344,-112),(2846,2,1344,-595),(2847,23,1345,-135),(2848,8,1345,-178),(2849,35,1345,-113),(2850,2,1345,-596),(2851,23,1346,-136),(2852,8,1346,-179),(2853,35,1346,-114),(2854,2,1346,-597),(2855,23,1347,-137),(2856,8,1347,-180),(2857,35,1347,-115),(2858,2,1347,-598),(2859,23,1348,-138),(2860,8,1348,-181),(2861,35,1348,-116),(2862,2,1348,-599),(2863,23,1349,-139),(2864,8,1349,-182),(2865,2,1349,-600),(2866,23,1350,-140),(2867,8,1350,-183),(2868,2,1350,-601),(2869,23,1351,-141),(2870,8,1351,-184),(2871,2,1351,-602),(2872,23,1352,-142),(2873,8,1352,-185),(2874,2,1352,-603),(2875,23,1353,-143),(2876,8,1353,-186),(2877,2,1353,-604),(2878,23,1354,-144),(2879,8,1354,-187),(2880,2,1354,-605),(2881,23,1355,-145),(2882,8,1355,-188),(2883,2,1355,-606),(2884,23,1356,-146),(2885,8,1356,-189),(2886,2,1356,-607),(2887,23,1357,-147),(2888,8,1357,-190),(2889,2,1357,-608),(2890,23,1358,-148),(2891,8,1358,-191),(2892,2,1358,-609),(2893,23,1359,-149),(2894,8,1359,-192),(2895,2,1359,-610),(2896,23,1360,-150),(2897,8,1360,-193),(2898,2,1360,-611),(2899,23,1361,-151),(2900,8,1361,-194),(2901,2,1361,-612),(2902,23,1362,-152),(2903,8,1362,-195),(2904,2,1362,-613),(2905,23,1363,-153),(2906,8,1363,-196),(2907,2,1363,-614),(2908,23,1364,-154),(2909,8,1364,-197),(2910,2,1364,-615),(2911,23,1365,-155),(2912,30,1365,-65),(2913,35,1365,-117),(2914,2,1365,-616),(2915,23,1366,-156),(2916,30,1366,-66),(2917,35,1366,-118),(2918,2,1366,-617),(2919,23,1367,-157),(2920,30,1367,-67),(2921,35,1367,-119),(2922,2,1367,-618),(2923,23,1368,-158),(2924,30,1368,-68),(2925,35,1368,-120),(2926,2,1368,-619),(2927,23,1369,-159),(2928,30,1369,-69),(2929,35,1369,-121),(2930,2,1369,-620),(2931,23,1370,-160),(2932,30,1370,-70),(2933,35,1370,-122),(2934,2,1370,-621),(2935,23,1371,-161),(2936,30,1371,-71),(2937,35,1371,-123),(2938,2,1371,-622),(2939,23,1372,-162),(2940,30,1372,-72),(2941,35,1372,-124),(2942,2,1372,-623),(2943,23,1373,-163),(2944,30,1373,-73),(2945,35,1373,-125),(2946,2,1373,-624),(2947,23,1374,-164),(2948,30,1374,-74),(2949,35,1374,-126),(2950,2,1374,-625),(2951,23,1375,-165),(2952,30,1375,-75),(2953,35,1375,-127),(2954,2,1375,-626),(2955,23,1376,-166),(2956,30,1376,-76),(2957,35,1376,-128),(2958,2,1376,-627),(2959,23,1377,-167),(2960,30,1377,-77),(2961,35,1377,-129),(2962,2,1377,-628),(2963,23,1378,-168),(2964,30,1378,-78),(2965,35,1378,-130),(2966,2,1378,-629),(2967,23,1379,-169),(2968,30,1379,-79),(2969,35,1379,-131),(2970,2,1379,-630),(2971,23,1380,-170),(2972,30,1380,-80),(2973,35,1380,-132),(2974,2,1380,-631),(2975,23,1381,-171),(2976,30,1381,-81),(2977,35,1381,-133),(2978,2,1381,-632),(2979,23,1382,-172),(2980,30,1382,-82),(2981,35,1382,-134),(2982,2,1382,-633),(2983,23,1383,-173),(2984,30,1383,-83),(2985,35,1383,-135),(2986,2,1383,-634),(2987,23,1384,-174),(2988,30,1384,-84),(2989,35,1384,-136),(2990,2,1384,-635),(2991,23,1385,-175),(2992,30,1385,-85),(2993,35,1385,-137),(2994,2,1385,-636),(2995,23,1386,-176),(2996,30,1386,-86),(2997,35,1386,-138),(2998,2,1386,-637),(2999,23,1387,-177),(3000,30,1387,-87),(3001,35,1387,-139),(3002,2,1387,-638),(3003,23,1388,-178),(3004,30,1388,-88),(3005,35,1388,-140),(3006,2,1388,-639),(3007,23,1389,-179),(3008,30,1389,-89),(3009,35,1389,-141),(3010,2,1389,-640),(3011,23,1390,-180),(3012,30,1390,-90),(3013,35,1390,-142),(3014,2,1390,-641),(3015,23,1391,-181),(3016,30,1391,-91),(3017,35,1391,-143),(3018,2,1391,-642),(3019,23,1392,-182),(3020,30,1392,-92),(3021,35,1392,-144),(3022,2,1392,-643),(3023,23,1393,-183),(3024,30,1393,-93),(3025,35,1393,-145),(3026,2,1393,-644),(3027,23,1394,-184),(3028,30,1394,-94),(3029,35,1394,-146),(3030,2,1394,-645),(3031,23,1395,-185),(3032,30,1395,-95),(3033,35,1395,-147),(3034,2,1395,-646),(3035,23,1396,-186),(3036,30,1396,-96),(3037,35,1396,-148),(3038,2,1396,-647),(3039,25,1397,-1),(3040,33,1397,-1),(3041,8,1397,-198),(3042,2,1397,-648),(3043,25,1398,-2),(3044,33,1398,-2),(3045,8,1398,-199),(3046,2,1398,-649),(3047,25,1399,-3),(3048,33,1399,-3),(3049,8,1399,-200),(3050,2,1399,-650),(3051,25,1400,-4),(3052,33,1400,-4),(3053,8,1400,-201),(3054,2,1400,-651),(3055,25,1401,-5),(3056,33,1401,-5),(3057,8,1401,-202),(3058,2,1401,-652),(3059,25,1402,-6),(3060,33,1402,-6),(3061,8,1402,-203),(3062,2,1402,-653),(3063,25,1403,-7),(3064,33,1403,-7),(3065,8,1403,-204),(3066,2,1403,-654),(3067,25,1404,-8),(3068,33,1404,-8),(3069,8,1404,-205),(3070,2,1404,-655),(3071,25,1405,-9),(3072,33,1405,-9),(3073,8,1405,-206),(3074,2,1405,-656),(3075,25,1406,-10),(3076,33,1406,-10),(3077,8,1406,-207),(3078,2,1406,-657),(3079,25,1407,-11),(3080,33,1407,-11),(3081,8,1407,-208),(3082,2,1407,-658),(3083,25,1408,-12),(3084,33,1408,-12),(3085,8,1408,-209),(3086,2,1408,-659),(3087,25,1409,-13),(3088,33,1409,-13),(3089,8,1409,-210),(3090,2,1409,-660),(3091,25,1410,-14),(3092,33,1410,-14),(3093,8,1410,-211),(3094,2,1410,-661),(3095,25,1411,-15),(3096,33,1411,-15),(3097,8,1411,-212),(3098,2,1411,-662),(3099,25,1412,-16),(3100,33,1412,-16),(3101,8,1412,-213),(3102,2,1412,-663),(3103,25,1413,-17),(3104,33,1413,-17),(3105,35,1413,-149),(3106,2,1413,-664),(3107,25,1414,-18),(3108,33,1414,-18),(3109,35,1414,-150),(3110,2,1414,-665),(3111,25,1415,-19),(3112,33,1415,-19),(3113,35,1415,-151),(3114,2,1415,-666),(3115,25,1416,-20),(3116,33,1416,-20),(3117,35,1416,-152),(3118,2,1416,-667),(3119,25,1417,-21),(3120,33,1417,-21),(3121,35,1417,-153),(3122,2,1417,-668),(3123,25,1418,-22),(3124,33,1418,-22),(3125,35,1418,-154),(3126,2,1418,-669),(3127,25,1419,-23),(3128,33,1419,-23),(3129,35,1419,-155),(3130,2,1419,-670),(3131,25,1420,-24),(3132,33,1420,-24),(3133,35,1420,-156),(3134,2,1420,-671),(3135,25,1421,-25),(3136,33,1421,-25),(3137,35,1421,-157),(3138,2,1421,-672),(3139,25,1422,-26),(3140,33,1422,-26),(3141,35,1422,-158),(3142,2,1422,-673),(3143,25,1423,-27),(3144,33,1423,-27),(3145,35,1423,-159),(3146,2,1423,-674),(3147,25,1424,-28),(3148,33,1424,-28),(3149,35,1424,-160),(3150,2,1424,-675),(3151,25,1425,-29),(3152,33,1425,-29),(3153,35,1425,-161),(3154,2,1425,-676),(3155,25,1426,-30),(3156,33,1426,-30),(3157,35,1426,-162),(3158,2,1426,-677),(3159,25,1427,-31),(3160,33,1427,-31),(3161,35,1427,-163),(3162,2,1427,-678),(3163,25,1428,-32),(3164,33,1428,-32),(3165,35,1428,-164),(3166,2,1428,-679),(3167,25,1429,-33),(3168,33,1429,-33),(3169,8,1429,-214),(3170,36,1429,-138),(3171,2,1429,-680),(3172,25,1430,-34),(3173,33,1430,-34),(3174,8,1430,-215),(3175,36,1430,-139),(3176,2,1430,-681),(3177,25,1431,-35),(3178,33,1431,-35),(3179,8,1431,-216),(3180,36,1431,-140),(3181,2,1431,-682),(3182,25,1432,-36),(3183,33,1432,-36),(3184,8,1432,-217),(3185,36,1432,-141),(3186,2,1432,-683),(3187,25,1433,-37),(3188,33,1433,-37),(3189,8,1433,-218),(3190,36,1433,-142),(3191,2,1433,-684),(3192,25,1434,-38),(3193,33,1434,-38),(3194,8,1434,-219),(3195,36,1434,-143),(3196,2,1434,-685),(3197,25,1435,-39),(3198,33,1435,-39),(3199,8,1435,-220),(3200,36,1435,-144),(3201,2,1435,-686),(3202,25,1436,-40),(3203,33,1436,-40),(3204,8,1436,-221),(3205,36,1436,-145),(3206,2,1436,-687),(3207,25,1437,-41),(3208,33,1437,-41),(3209,8,1437,-222),(3210,36,1437,-146),(3211,2,1437,-688),(3212,25,1438,-42),(3213,33,1438,-42),(3214,8,1438,-223),(3215,36,1438,-147),(3216,2,1438,-689),(3217,25,1439,-43),(3218,33,1439,-43),(3219,8,1439,-224),(3220,36,1439,-148),(3221,2,1439,-690),(3222,25,1440,-44),(3223,33,1440,-44),(3224,8,1440,-225),(3225,36,1440,-149),(3226,2,1440,-691),(3227,25,1441,-45),(3228,33,1441,-45),(3229,8,1441,-226),(3230,36,1441,-150),(3231,2,1441,-692),(3232,25,1442,-46),(3233,33,1442,-46),(3234,8,1442,-227),(3235,36,1442,-151),(3236,2,1442,-693),(3237,25,1443,-47),(3238,33,1443,-47),(3239,8,1443,-228),(3240,36,1443,-152),(3241,2,1443,-694),(3242,25,1444,-48),(3243,33,1444,-48),(3244,8,1444,-229),(3245,36,1444,-153),(3246,2,1444,-695),(3247,25,1445,-49),(3248,33,1445,-49),(3249,8,1445,-230),(3250,36,1445,-154),(3251,2,1445,-696),(3252,25,1446,-50),(3253,33,1446,-50),(3254,8,1446,-231),(3255,36,1446,-155),(3256,2,1446,-697),(3257,25,1447,-51),(3258,33,1447,-51),(3259,8,1447,-232),(3260,36,1447,-156),(3261,2,1447,-698),(3262,25,1448,-52),(3263,33,1448,-52),(3264,8,1448,-233),(3265,36,1448,-157),(3266,2,1448,-699),(3267,25,1449,-53),(3268,33,1449,-53),(3269,8,1449,-234),(3270,36,1449,-158),(3271,2,1449,-700),(3272,25,1450,-54),(3273,33,1450,-54),(3274,8,1450,-235),(3275,36,1450,-159),(3276,2,1450,-701),(3277,25,1451,-55),(3278,33,1451,-55),(3279,8,1451,-236),(3280,36,1451,-160),(3281,2,1451,-702),(3282,25,1452,-56),(3283,33,1452,-56),(3284,8,1452,-237),(3285,36,1452,-161),(3286,2,1452,-703),(3287,25,1453,-57),(3288,33,1453,-57),(3289,8,1453,-238),(3290,36,1453,-162),(3291,2,1453,-704),(3292,25,1454,-58),(3293,33,1454,-58),(3294,8,1454,-239),(3295,36,1454,-163),(3296,2,1454,-705),(3297,25,1455,-59),(3298,33,1455,-59),(3299,8,1455,-240),(3300,36,1455,-164),(3301,2,1455,-706),(3302,25,1456,-60),(3303,33,1456,-60),(3304,8,1456,-241),(3305,36,1456,-165),(3306,2,1456,-707),(3307,25,1457,-61),(3308,33,1457,-61),(3309,8,1457,-242),(3310,36,1457,-166),(3311,2,1457,-708),(3312,25,1458,-62),(3313,33,1458,-62),(3314,8,1458,-243),(3315,36,1458,-167),(3316,2,1458,-709),(3317,25,1459,-63),(3318,33,1459,-63),(3319,8,1459,-244),(3320,36,1459,-168),(3321,2,1459,-710),(3322,25,1460,-64),(3323,33,1460,-64),(3324,8,1460,-245),(3325,36,1460,-169),(3326,2,1460,-711),(3327,25,1461,-65),(3328,33,1461,-65),(3329,8,1461,-246),(3330,34,1461,-156),(3331,2,1461,-712),(3332,25,1462,-66),(3333,33,1462,-66),(3334,8,1462,-247),(3335,34,1462,-157),(3336,2,1462,-713),(3337,25,1463,-67),(3338,33,1463,-67),(3339,8,1463,-248),(3340,34,1463,-158),(3341,2,1463,-714),(3342,25,1464,-68),(3343,33,1464,-68),(3344,8,1464,-249),(3345,34,1464,-159),(3346,2,1464,-715),(3347,25,1465,-69),(3348,33,1465,-69),(3349,8,1465,-250),(3350,34,1465,-160),(3351,2,1465,-716),(3352,25,1466,-70),(3353,33,1466,-70),(3354,8,1466,-251),(3355,34,1466,-161),(3356,2,1466,-717),(3357,25,1467,-71),(3358,33,1467,-71),(3359,8,1467,-252),(3360,34,1467,-162),(3361,2,1467,-718),(3362,25,1468,-72),(3363,33,1468,-72),(3364,8,1468,-253),(3365,34,1468,-163),(3366,2,1468,-719),(3367,25,1469,-73),(3368,33,1469,-73),(3369,8,1469,-254),(3370,34,1469,-164),(3371,2,1469,-720),(3372,25,1470,-74),(3373,33,1470,-74),(3374,8,1470,-255),(3375,34,1470,-165),(3376,2,1470,-721),(3377,25,1471,-75),(3378,33,1471,-75),(3379,8,1471,-256),(3380,34,1471,-166),(3381,2,1471,-722),(3382,25,1472,-76),(3383,33,1472,-76),(3384,8,1472,-257),(3385,34,1472,-167),(3386,2,1472,-723),(3387,25,1473,-77),(3388,33,1473,-77),(3389,8,1473,-258),(3390,34,1473,-168),(3391,2,1473,-724),(3392,25,1474,-78),(3393,33,1474,-78),(3394,8,1474,-259),(3395,34,1474,-169),(3396,2,1474,-725),(3397,25,1475,-79),(3398,33,1475,-79),(3399,8,1475,-260),(3400,34,1475,-170),(3401,2,1475,-726),(3402,25,1476,-80),(3403,33,1476,-80),(3404,8,1476,-261),(3405,34,1476,-171),(3406,2,1476,-727),(3407,25,1477,-81),(3408,33,1477,-81),(3409,30,1477,-97),(3410,2,1477,-728),(3411,25,1478,-82),(3412,33,1478,-82),(3413,30,1478,-98),(3414,2,1478,-729),(3415,25,1479,-83),(3416,33,1479,-83),(3417,30,1479,-99),(3418,2,1479,-730),(3419,25,1480,-84),(3420,33,1480,-84),(3421,30,1480,-100),(3422,2,1480,-731),(3423,25,1481,-85),(3424,33,1481,-85),(3425,30,1481,-101),(3426,2,1481,-732),(3427,25,1482,-86),(3428,33,1482,-86),(3429,30,1482,-102),(3430,2,1482,-733),(3431,25,1483,-87),(3432,33,1483,-87),(3433,30,1483,-103),(3434,2,1483,-734),(3435,25,1484,-88),(3436,33,1484,-88),(3437,30,1484,-104),(3438,2,1484,-735),(3439,25,1485,-89),(3440,33,1485,-89),(3441,30,1485,-105),(3442,2,1485,-736),(3443,25,1486,-90),(3444,33,1486,-90),(3445,30,1486,-106),(3446,2,1486,-737),(3447,25,1487,-91),(3448,33,1487,-91),(3449,30,1487,-107),(3450,2,1487,-738),(3451,25,1488,-92),(3452,33,1488,-92),(3453,30,1488,-108),(3454,2,1488,-739),(3455,25,1489,-93),(3456,33,1489,-93),(3457,30,1489,-109),(3458,2,1489,-740),(3459,25,1490,-94),(3460,33,1490,-94),(3461,30,1490,-110),(3462,2,1490,-741),(3463,25,1491,-95),(3464,33,1491,-95),(3465,30,1491,-111),(3466,2,1491,-742),(3467,25,1492,-96),(3468,33,1492,-96),(3469,30,1492,-112),(3470,2,1492,-743),(3471,25,1493,-97),(3472,33,1493,-97),(3473,30,1493,-113),(3474,36,1493,-170),(3475,2,1493,-744),(3476,25,1494,-98),(3477,33,1494,-98),(3478,30,1494,-114),(3479,36,1494,-171),(3480,2,1494,-745),(3481,25,1495,-99),(3482,33,1495,-99),(3483,30,1495,-115),(3484,36,1495,-172),(3485,2,1495,-746),(3486,25,1496,-100),(3487,33,1496,-100),(3488,30,1496,-116),(3489,36,1496,-173),(3490,2,1496,-747),(3491,25,1497,-101),(3492,33,1497,-101),(3493,30,1497,-117),(3494,36,1497,-174),(3495,2,1497,-748),(3496,25,1498,-102),(3497,33,1498,-102),(3498,30,1498,-118),(3499,36,1498,-175),(3500,2,1498,-749),(3501,25,1499,-103),(3502,33,1499,-103),(3503,30,1499,-119),(3504,36,1499,-176),(3505,2,1499,-750),(3506,25,1500,-104),(3507,33,1500,-104),(3508,30,1500,-120),(3509,36,1500,-177),(3510,2,1500,-751),(3511,25,1501,-105),(3512,33,1501,-105),(3513,30,1501,-121),(3514,36,1501,-178),(3515,2,1501,-752),(3516,25,1502,-106),(3517,33,1502,-106),(3518,30,1502,-122),(3519,36,1502,-179),(3520,2,1502,-753),(3521,25,1503,-107),(3522,33,1503,-107),(3523,30,1503,-123),(3524,36,1503,-180),(3525,2,1503,-754),(3526,25,1504,-108),(3527,33,1504,-108),(3528,30,1504,-124),(3529,36,1504,-181),(3530,2,1504,-755),(3531,25,1505,-109),(3532,33,1505,-109),(3533,30,1505,-125),(3534,36,1505,-182),(3535,2,1505,-756),(3536,25,1506,-110),(3537,33,1506,-110),(3538,30,1506,-126),(3539,36,1506,-183),(3540,2,1506,-757),(3541,25,1507,-111),(3542,33,1507,-111),(3543,30,1507,-127),(3544,36,1507,-184),(3545,2,1507,-758),(3546,25,1508,-112),(3547,33,1508,-112),(3548,30,1508,-128),(3549,36,1508,-185),(3550,2,1508,-759),(3551,25,1509,-113),(3552,33,1509,-113),(3553,35,1509,-165),(3554,2,1509,-760),(3555,25,1510,-114),(3556,33,1510,-114),(3557,35,1510,-166),(3558,2,1510,-761),(3559,25,1511,-115),(3560,33,1511,-115),(3561,35,1511,-167),(3562,2,1511,-762),(3563,25,1512,-116),(3564,33,1512,-116),(3565,35,1512,-168),(3566,2,1512,-763),(3567,25,1513,-117),(3568,33,1513,-117),(3569,35,1513,-169),(3570,2,1513,-764),(3571,25,1514,-118),(3572,33,1514,-118),(3573,35,1514,-170),(3574,2,1514,-765),(3575,25,1515,-119),(3576,33,1515,-119),(3577,35,1515,-171),(3578,2,1515,-766),(3579,25,1516,-120),(3580,33,1516,-120),(3581,35,1516,-172),(3582,2,1516,-767),(3583,25,1517,-121),(3584,33,1517,-121),(3585,35,1517,-173),(3586,2,1517,-768),(3587,25,1518,-122),(3588,33,1518,-122),(3589,35,1518,-174),(3590,2,1518,-769),(3591,25,1519,-123),(3592,33,1519,-123),(3593,35,1519,-175),(3594,2,1519,-770),(3595,25,1520,-124),(3596,33,1520,-124),(3597,35,1520,-176),(3598,2,1520,-771),(3599,25,1521,-125),(3600,33,1521,-125),(3601,35,1521,-177),(3602,2,1521,-772),(3603,25,1522,-126),(3604,33,1522,-126),(3605,35,1522,-178),(3606,2,1522,-773),(3607,25,1523,-127),(3608,33,1523,-127),(3609,35,1523,-179),(3610,2,1523,-774),(3611,25,1524,-128),(3612,33,1524,-128),(3613,35,1524,-180),(3614,2,1524,-775),(3615,25,1525,-129),(3616,33,1525,-129),(3617,30,1525,-129),(3618,34,1525,-172),(3619,2,1525,-776),(3620,25,1526,-130),(3621,33,1526,-130),(3622,30,1526,-130),(3623,34,1526,-173),(3624,2,1526,-777),(3625,25,1527,-131),(3626,33,1527,-131),(3627,30,1527,-131),(3628,34,1527,-174),(3629,2,1527,-778),(3630,25,1528,-132),(3631,33,1528,-132),(3632,30,1528,-132),(3633,34,1528,-175),(3634,2,1528,-779),(3635,25,1529,-133),(3636,33,1529,-133),(3637,30,1529,-133),(3638,34,1529,-176),(3639,2,1529,-780),(3640,25,1530,-134),(3641,33,1530,-134),(3642,30,1530,-134),(3643,34,1530,-177),(3644,2,1530,-781),(3645,25,1531,-135),(3646,33,1531,-135),(3647,30,1531,-135),(3648,34,1531,-178),(3649,2,1531,-782),(3650,25,1532,-136),(3651,33,1532,-136),(3652,30,1532,-136),(3653,34,1532,-179),(3654,2,1532,-783),(3655,25,1533,-137),(3656,33,1533,-137),(3657,30,1533,-137),(3658,34,1533,-180),(3659,2,1533,-784),(3660,25,1534,-138),(3661,33,1534,-138),(3662,30,1534,-138),(3663,34,1534,-181),(3664,2,1534,-785),(3665,25,1535,-139),(3666,33,1535,-139),(3667,30,1535,-139),(3668,34,1535,-182),(3669,2,1535,-786),(3670,25,1536,-140),(3671,33,1536,-140),(3672,30,1536,-140),(3673,34,1536,-183),(3674,2,1536,-787),(3675,25,1537,-141),(3676,33,1537,-141),(3677,30,1537,-141),(3678,34,1537,-184),(3679,2,1537,-788),(3680,25,1538,-142),(3681,33,1538,-142),(3682,30,1538,-142),(3683,34,1538,-185),(3684,2,1538,-789),(3685,25,1539,-143),(3686,33,1539,-143),(3687,30,1539,-143),(3688,34,1539,-186),(3689,2,1539,-790),(3690,25,1540,-144),(3691,33,1540,-144),(3692,30,1540,-144),(3693,34,1540,-187),(3694,2,1540,-791),(3695,25,1541,-145),(3696,33,1541,-145),(3697,35,1541,-181),(3698,2,1541,-792),(3699,25,1542,-146),(3700,33,1542,-146),(3701,35,1542,-182),(3702,2,1542,-793),(3703,25,1543,-147),(3704,33,1543,-147),(3705,35,1543,-183),(3706,2,1543,-794),(3707,25,1544,-148),(3708,33,1544,-148),(3709,35,1544,-184),(3710,2,1544,-795),(3711,25,1545,-149),(3712,33,1545,-149),(3713,35,1545,-185),(3714,2,1545,-796),(3715,25,1546,-150),(3716,33,1546,-150),(3717,35,1546,-186),(3718,2,1546,-797),(3719,25,1547,-151),(3720,33,1547,-151),(3721,35,1547,-187),(3722,2,1547,-798),(3723,25,1548,-152),(3724,33,1548,-152),(3725,35,1548,-188),(3726,2,1548,-799),(3727,25,1549,-153),(3728,33,1549,-153),(3729,35,1549,-189),(3730,2,1549,-800),(3731,25,1550,-154),(3732,33,1550,-154),(3733,35,1550,-190),(3734,2,1550,-801),(3735,25,1551,-155),(3736,33,1551,-155),(3737,35,1551,-191),(3738,2,1551,-802),(3739,25,1552,-156),(3740,33,1552,-156),(3741,35,1552,-192),(3742,2,1552,-803),(3743,25,1553,-157),(3744,33,1553,-157),(3745,35,1553,-193),(3746,2,1553,-804),(3747,25,1554,-158),(3748,33,1554,-158),(3749,35,1554,-194),(3750,2,1554,-805),(3751,25,1555,-159),(3752,33,1555,-159),(3753,35,1555,-195),(3754,2,1555,-806),(3755,25,1556,-160),(3756,33,1556,-160),(3757,35,1556,-196),(3758,2,1556,-807),(3759,25,1557,-161),(3760,33,1557,-161),(3761,2,1557,-808),(3762,25,1558,-162),(3763,33,1558,-162),(3764,2,1558,-809),(3765,25,1559,-163),(3766,33,1559,-163),(3767,2,1559,-810),(3768,25,1560,-164),(3769,33,1560,-164),(3770,2,1560,-811),(3771,25,1561,-165),(3772,33,1561,-165),(3773,2,1561,-812),(3774,25,1562,-166),(3775,33,1562,-166),(3776,2,1562,-813),(3777,25,1563,-167),(3778,33,1563,-167),(3779,2,1563,-814),(3780,25,1564,-168),(3781,33,1564,-168),(3782,2,1564,-815),(3783,25,1565,-169),(3784,33,1565,-169),(3785,2,1565,-816),(3786,25,1566,-170),(3787,33,1566,-170),(3788,2,1566,-817),(3789,25,1567,-171),(3790,33,1567,-171),(3791,2,1567,-818),(3792,25,1568,-172),(3793,33,1568,-172),(3794,2,1568,-819),(3795,25,1569,-173),(3796,33,1569,-173),(3797,2,1569,-820),(3798,25,1570,-174),(3799,33,1570,-174),(3800,2,1570,-821),(3801,25,1571,-175),(3802,33,1571,-175),(3803,2,1571,-822),(3804,25,1572,-176),(3805,33,1572,-176),(3806,2,1572,-823),(3807,25,1573,-177),(3808,33,1573,-177),(3809,2,1573,-824),(3810,25,1574,-178),(3811,33,1574,-178),(3812,2,1574,-825),(3813,25,1575,-179),(3814,33,1575,-179),(3815,2,1575,-826),(3816,25,1576,-180),(3817,33,1576,-180),(3818,2,1576,-827),(3819,25,1577,-181),(3820,33,1577,-181),(3821,2,1577,-828),(3822,25,1578,-182),(3823,33,1578,-182),(3824,2,1578,-829),(3825,25,1579,-183),(3826,33,1579,-183),(3827,2,1579,-830),(3828,25,1580,-184),(3829,33,1580,-184),(3830,2,1580,-831),(3831,25,1581,-185),(3832,33,1581,-185),(3833,2,1581,-832),(3834,25,1582,-186),(3835,33,1582,-186),(3836,2,1582,-833),(3837,25,1583,-187),(3838,33,1583,-187),(3839,2,1583,-834),(3840,25,1584,-188),(3841,33,1584,-188),(3842,2,1584,-835),(3843,25,1585,-189),(3844,33,1585,-189),(3845,2,1585,-836),(3846,25,1586,-190),(3847,33,1586,-190),(3848,2,1586,-837),(3849,25,1587,-191),(3850,33,1587,-191),(3851,2,1587,-838),(3852,25,1588,-192),(3853,33,1588,-192),(3854,2,1588,-839),(3855,26,1589,-1),(3856,30,1589,-145),(3857,36,1589,-186),(3858,2,1589,-840),(3859,26,1590,-2),(3860,30,1590,-146),(3861,36,1590,-187),(3862,2,1590,-841),(3863,26,1591,-3),(3864,30,1591,-147),(3865,36,1591,-188),(3866,2,1591,-842),(3867,26,1592,-4),(3868,30,1592,-148),(3869,36,1592,-189),(3870,2,1592,-843),(3871,26,1593,-5),(3872,30,1593,-149),(3873,36,1593,-190),(3874,2,1593,-844),(3875,26,1594,-6),(3876,30,1594,-150),(3877,36,1594,-191),(3878,2,1594,-845),(3879,26,1595,-7),(3880,30,1595,-151),(3881,36,1595,-192),(3882,2,1595,-846),(3883,26,1596,-8),(3884,30,1596,-152),(3885,36,1596,-193),(3886,2,1596,-847),(3887,26,1597,-9),(3888,30,1597,-153),(3889,36,1597,-194),(3890,2,1597,-848),(3891,26,1598,-10),(3892,30,1598,-154),(3893,36,1598,-195),(3894,2,1598,-849),(3895,26,1599,-11),(3896,30,1599,-155),(3897,36,1599,-196),(3898,2,1599,-850),(3899,26,1600,-12),(3900,30,1600,-156),(3901,36,1600,-197),(3902,2,1600,-851),(3903,26,1601,-13),(3904,30,1601,-157),(3905,36,1601,-198),(3906,2,1601,-852),(3907,26,1602,-14),(3908,30,1602,-158),(3909,36,1602,-199),(3910,2,1602,-853),(3911,26,1603,-15),(3912,30,1603,-159),(3913,36,1603,-200),(3914,2,1603,-854),(3915,26,1604,-16),(3916,30,1604,-160),(3917,36,1604,-201),(3918,2,1604,-855),(3919,26,1605,-17),(3920,26,1606,-18),(3921,26,1607,-19),(3922,26,1608,-20),(3923,26,1609,-21),(3924,26,1610,-22),(3925,26,1611,-23),(3926,26,1612,-24),(3927,26,1613,-25),(3928,26,1614,-26),(3929,26,1615,-27),(3930,26,1616,-28),(3931,26,1617,-29),(3932,26,1618,-30),(3933,26,1619,-31),(3934,26,1620,-32),(3935,26,1621,-33),(3936,8,1621,-262),(3937,35,1621,-197),(3938,2,1621,-856),(3939,26,1622,-34),(3940,8,1622,-263),(3941,35,1622,-198),(3942,2,1622,-857),(3943,26,1623,-35),(3944,8,1623,-264),(3945,35,1623,-199),(3946,2,1623,-858),(3947,26,1624,-36),(3948,8,1624,-265),(3949,35,1624,-200),(3950,2,1624,-859),(3951,26,1625,-37),(3952,8,1625,-266),(3953,35,1625,-201),(3954,2,1625,-860),(3955,26,1626,-38),(3956,8,1626,-267),(3957,35,1626,-202),(3958,2,1626,-861),(3959,26,1627,-39),(3960,8,1627,-268),(3961,35,1627,-203),(3962,2,1627,-862),(3963,26,1628,-40),(3964,8,1628,-269),(3965,35,1628,-204),(3966,2,1628,-863),(3967,26,1629,-41),(3968,8,1629,-270),(3969,35,1629,-205),(3970,2,1629,-864),(3971,26,1630,-42),(3972,8,1630,-271),(3973,35,1630,-206),(3974,2,1630,-865),(3975,26,1631,-43),(3976,8,1631,-272),(3977,35,1631,-207),(3978,2,1631,-866),(3979,26,1632,-44),(3980,8,1632,-273),(3981,35,1632,-208),(3982,2,1632,-867),(3983,26,1633,-45),(3984,8,1633,-274),(3985,35,1633,-209),(3986,2,1633,-868),(3987,26,1634,-46),(3988,8,1634,-275),(3989,35,1634,-210),(3990,2,1634,-869),(3991,26,1635,-47),(3992,8,1635,-276),(3993,35,1635,-211),(3994,2,1635,-870),(3995,26,1636,-48),(3996,8,1636,-277),(3997,35,1636,-212),(3998,2,1636,-871),(3999,26,1637,-49),(4000,26,1638,-50),(4001,26,1639,-51),(4002,26,1640,-52),(4003,26,1641,-53),(4004,26,1642,-54),(4005,26,1643,-55),(4006,26,1644,-56),(4007,26,1645,-57),(4008,26,1646,-58),(4009,26,1647,-59),(4010,26,1648,-60),(4011,26,1649,-61),(4012,26,1650,-62),(4013,26,1651,-63),(4014,26,1652,-64),(4015,26,1653,-65),(4016,26,1654,-66),(4017,26,1655,-67),(4018,26,1656,-68),(4019,26,1657,-69),(4020,26,1658,-70),(4021,26,1659,-71),(4022,26,1660,-72),(4023,26,1661,-73),(4024,26,1662,-74),(4025,26,1663,-75),(4026,26,1664,-76),(4027,26,1665,-77),(4028,26,1666,-78),(4029,26,1667,-79),(4030,26,1668,-80),(4031,26,1669,-81),(4032,36,1669,-202),(4033,2,1669,-872),(4034,26,1670,-82),(4035,36,1670,-203),(4036,2,1670,-873),(4037,26,1671,-83),(4038,36,1671,-204),(4039,2,1671,-874),(4040,26,1672,-84),(4041,36,1672,-205),(4042,2,1672,-875),(4043,26,1673,-85),(4044,36,1673,-206),(4045,2,1673,-876),(4046,26,1674,-86),(4047,36,1674,-207),(4048,2,1674,-877),(4049,26,1675,-87),(4050,36,1675,-208),(4051,2,1675,-878),(4052,26,1676,-88),(4053,36,1676,-209),(4054,2,1676,-879),(4055,26,1677,-89),(4056,36,1677,-210),(4057,2,1677,-880),(4058,26,1678,-90),(4059,36,1678,-211),(4060,2,1678,-881),(4061,26,1679,-91),(4062,36,1679,-212),(4063,2,1679,-882),(4064,26,1680,-92),(4065,36,1680,-213),(4066,2,1680,-883),(4067,26,1681,-93),(4068,36,1681,-214),(4069,2,1681,-884),(4070,26,1682,-94),(4071,36,1682,-215),(4072,2,1682,-885),(4073,26,1683,-95),(4074,36,1683,-216),(4075,2,1683,-886),(4076,26,1684,-96),(4077,36,1684,-217),(4078,2,1684,-887),(4079,26,1685,-97),(4080,26,1686,-98),(4081,26,1687,-99),(4082,26,1688,-100),(4083,26,1689,-101),(4084,26,1690,-102),(4085,26,1691,-103),(4086,26,1692,-104),(4087,26,1693,-105),(4088,26,1694,-106),(4089,26,1695,-107),(4090,26,1696,-108),(4091,26,1697,-109),(4092,26,1698,-110),(4093,26,1699,-111),(4094,26,1700,-112),(4095,26,1701,-113),(4096,8,1701,-278),(4097,34,1701,-188),(4098,2,1701,-888),(4099,26,1702,-114),(4100,8,1702,-279),(4101,34,1702,-189),(4102,2,1702,-889),(4103,26,1703,-115),(4104,8,1703,-280),(4105,34,1703,-190),(4106,2,1703,-890),(4107,26,1704,-116),(4108,8,1704,-281),(4109,34,1704,-191),(4110,2,1704,-891),(4111,26,1705,-117),(4112,8,1705,-282),(4113,34,1705,-192),(4114,2,1705,-892),(4115,26,1706,-118),(4116,8,1706,-283),(4117,34,1706,-193),(4118,2,1706,-893),(4119,26,1707,-119),(4120,8,1707,-284),(4121,34,1707,-194),(4122,2,1707,-894),(4123,26,1708,-120),(4124,8,1708,-285),(4125,34,1708,-195),(4126,2,1708,-895),(4127,26,1709,-121),(4128,8,1709,-286),(4129,34,1709,-196),(4130,2,1709,-896),(4131,26,1710,-122),(4132,8,1710,-287),(4133,34,1710,-197),(4134,2,1710,-897),(4135,26,1711,-123),(4136,8,1711,-288),(4137,34,1711,-198),(4138,2,1711,-898),(4139,26,1712,-124),(4140,8,1712,-289),(4141,34,1712,-199),(4142,2,1712,-899),(4143,26,1713,-125),(4144,8,1713,-290),(4145,34,1713,-200),(4146,2,1713,-900),(4147,26,1714,-126),(4148,8,1714,-291),(4149,34,1714,-201),(4150,2,1714,-901),(4151,26,1715,-127),(4152,8,1715,-292),(4153,34,1715,-202),(4154,2,1715,-902),(4155,26,1716,-128),(4156,8,1716,-293),(4157,34,1716,-203),(4158,2,1716,-903),(4159,26,1717,-129),(4160,35,1717,-213),(4161,2,1717,-904),(4162,26,1718,-130),(4163,35,1718,-214),(4164,2,1718,-905),(4165,26,1719,-131),(4166,35,1719,-215),(4167,2,1719,-906),(4168,26,1720,-132),(4169,35,1720,-216),(4170,2,1720,-907),(4171,26,1721,-133),(4172,35,1721,-217),(4173,2,1721,-908),(4174,26,1722,-134),(4175,35,1722,-218),(4176,2,1722,-909),(4177,26,1723,-135),(4178,35,1723,-219),(4179,2,1723,-910),(4180,26,1724,-136),(4181,35,1724,-220),(4182,2,1724,-911),(4183,26,1725,-137),(4184,35,1725,-221),(4185,2,1725,-912),(4186,26,1726,-138),(4187,35,1726,-222),(4188,2,1726,-913),(4189,26,1727,-139),(4190,35,1727,-223),(4191,2,1727,-914),(4192,26,1728,-140),(4193,35,1728,-224),(4194,2,1728,-915),(4195,26,1729,-141),(4196,35,1729,-225),(4197,2,1729,-916),(4198,26,1730,-142),(4199,35,1730,-226),(4200,2,1730,-917),(4201,26,1731,-143),(4202,35,1731,-227),(4203,2,1731,-918),(4204,26,1732,-144),(4205,35,1732,-228),(4206,2,1732,-919),(4207,26,1733,-145),(4208,34,1733,-204),(4209,2,1733,-920),(4210,26,1734,-146),(4211,34,1734,-205),(4212,2,1734,-921),(4213,26,1735,-147),(4214,34,1735,-206),(4215,2,1735,-922),(4216,26,1736,-148),(4217,34,1736,-207),(4218,2,1736,-923),(4219,26,1737,-149),(4220,34,1737,-208),(4221,2,1737,-924),(4222,26,1738,-150),(4223,34,1738,-209),(4224,2,1738,-925),(4225,26,1739,-151),(4226,34,1739,-210),(4227,2,1739,-926),(4228,26,1740,-152),(4229,34,1740,-211),(4230,2,1740,-927),(4231,26,1741,-153),(4232,34,1741,-212),(4233,2,1741,-928),(4234,26,1742,-154),(4235,34,1742,-213),(4236,2,1742,-929),(4237,26,1743,-155),(4238,34,1743,-214),(4239,2,1743,-930),(4240,26,1744,-156),(4241,34,1744,-215),(4242,2,1744,-931),(4243,26,1745,-157),(4244,34,1745,-216),(4245,2,1745,-932),(4246,26,1746,-158),(4247,34,1746,-217),(4248,2,1746,-933),(4249,26,1747,-159),(4250,34,1747,-218),(4251,2,1747,-934),(4252,26,1748,-160),(4253,34,1748,-219),(4254,2,1748,-935),(4255,26,1749,-161),(4256,26,1750,-162),(4257,26,1751,-163),(4258,26,1752,-164),(4259,26,1753,-165),(4260,26,1754,-166),(4261,26,1755,-167),(4262,26,1756,-168),(4263,26,1757,-169),(4264,26,1758,-170),(4265,26,1759,-171),(4266,26,1760,-172),(4267,26,1761,-173),(4268,26,1762,-174),(4269,26,1763,-175),(4270,26,1764,-176),(4271,26,1765,-177),(4272,35,1765,-229),(4273,2,1765,-936),(4274,26,1766,-178),(4275,35,1766,-230),(4276,2,1766,-937),(4277,26,1767,-179),(4278,35,1767,-231),(4279,2,1767,-938),(4280,26,1768,-180),(4281,35,1768,-232),(4282,2,1768,-939),(4283,26,1769,-181),(4284,35,1769,-233),(4285,2,1769,-940),(4286,26,1770,-182),(4287,35,1770,-234),(4288,2,1770,-941),(4289,26,1771,-183),(4290,35,1771,-235),(4291,2,1771,-942),(4292,26,1772,-184),(4293,35,1772,-236),(4294,2,1772,-943),(4295,26,1773,-185),(4296,35,1773,-237),(4297,2,1773,-944),(4298,26,1774,-186),(4299,35,1774,-238),(4300,2,1774,-945),(4301,26,1775,-187),(4302,35,1775,-239),(4303,2,1775,-946),(4304,26,1776,-188),(4305,35,1776,-240),(4306,2,1776,-947),(4307,26,1777,-189),(4308,35,1777,-241),(4309,2,1777,-948),(4310,26,1778,-190),(4311,35,1778,-242),(4312,2,1778,-949),(4313,26,1779,-191),(4314,35,1779,-243),(4315,2,1779,-950),(4316,26,1780,-192),(4317,35,1780,-244),(4318,2,1780,-951),(4319,26,1781,-193),(4320,30,1781,-161),(4321,35,1781,-245),(4322,2,1781,-952),(4323,26,1782,-194),(4324,30,1782,-162),(4325,35,1782,-246),(4326,2,1782,-953),(4327,26,1783,-195),(4328,30,1783,-163),(4329,35,1783,-247),(4330,2,1783,-954),(4331,26,1784,-196),(4332,30,1784,-164),(4333,35,1784,-248),(4334,2,1784,-955),(4335,26,1785,-197),(4336,30,1785,-165),(4337,35,1785,-249),(4338,2,1785,-956),(4339,26,1786,-198),(4340,30,1786,-166),(4341,35,1786,-250),(4342,2,1786,-957),(4343,26,1787,-199),(4344,30,1787,-167),(4345,35,1787,-251),(4346,2,1787,-958),(4347,26,1788,-200),(4348,30,1788,-168),(4349,35,1788,-252),(4350,2,1788,-959),(4351,26,1789,-201),(4352,30,1789,-169),(4353,35,1789,-253),(4354,2,1789,-960),(4355,26,1790,-202),(4356,30,1790,-170),(4357,35,1790,-254),(4358,2,1790,-961),(4359,26,1791,-203),(4360,30,1791,-171),(4361,35,1791,-255),(4362,2,1791,-962),(4363,26,1792,-204),(4364,30,1792,-172),(4365,35,1792,-256),(4366,2,1792,-963),(4367,26,1793,-205),(4368,30,1793,-173),(4369,35,1793,-257),(4370,2,1793,-964),(4371,26,1794,-206),(4372,30,1794,-174),(4373,35,1794,-258),(4374,2,1794,-965),(4375,26,1795,-207),(4376,30,1795,-175),(4377,35,1795,-259),(4378,2,1795,-966),(4379,26,1796,-208),(4380,30,1796,-176),(4381,35,1796,-260),(4382,2,1796,-967),(4383,26,1797,-209),(4384,30,1797,-177),(4385,34,1797,-220),(4386,2,1797,-968),(4387,26,1798,-210),(4388,30,1798,-178),(4389,34,1798,-221),(4390,2,1798,-969),(4391,26,1799,-211),(4392,30,1799,-179),(4393,34,1799,-222),(4394,2,1799,-970),(4395,26,1800,-212),(4396,30,1800,-180),(4397,34,1800,-223),(4398,2,1800,-971),(4399,26,1801,-213),(4400,30,1801,-181),(4401,34,1801,-224),(4402,2,1801,-972),(4403,26,1802,-214),(4404,30,1802,-182),(4405,34,1802,-225),(4406,2,1802,-973),(4407,26,1803,-215),(4408,30,1803,-183),(4409,34,1803,-226),(4410,2,1803,-974),(4411,26,1804,-216),(4412,30,1804,-184),(4413,34,1804,-227),(4414,2,1804,-975),(4415,26,1805,-217),(4416,30,1805,-185),(4417,34,1805,-228),(4418,2,1805,-976),(4419,26,1806,-218),(4420,30,1806,-186),(4421,34,1806,-229),(4422,2,1806,-977),(4423,26,1807,-219),(4424,30,1807,-187),(4425,34,1807,-230),(4426,2,1807,-978),(4427,26,1808,-220),(4428,30,1808,-188),(4429,34,1808,-231),(4430,2,1808,-979),(4431,26,1809,-221),(4432,30,1809,-189),(4433,34,1809,-232),(4434,2,1809,-980),(4435,26,1810,-222),(4436,30,1810,-190),(4437,34,1810,-233),(4438,2,1810,-981),(4439,26,1811,-223),(4440,30,1811,-191),(4441,34,1811,-234),(4442,2,1811,-982),(4443,26,1812,-224),(4444,30,1812,-192),(4445,34,1812,-235),(4446,2,1812,-983),(4447,27,1813,-1),(4448,32,1813,-157),(4449,35,1813,-261),(4450,2,1813,-984),(4451,27,1814,-2),(4452,32,1814,-158),(4453,35,1814,-262),(4454,2,1814,-985),(4455,27,1815,-3),(4456,32,1815,-159),(4457,35,1815,-263),(4458,2,1815,-986),(4459,27,1816,-4),(4460,32,1816,-160),(4461,35,1816,-264),(4462,2,1816,-987),(4463,27,1817,-5),(4464,32,1817,-161),(4465,35,1817,-265),(4466,2,1817,-988),(4467,27,1818,-6),(4468,32,1818,-162),(4469,35,1818,-266),(4470,2,1818,-989),(4471,27,1819,-7),(4472,32,1819,-163),(4473,35,1819,-267),(4474,2,1819,-990),(4475,27,1820,-8),(4476,32,1820,-164),(4477,35,1820,-268),(4478,2,1820,-991),(4479,27,1821,-9),(4480,32,1821,-165),(4481,35,1821,-269),(4482,2,1821,-992),(4483,27,1822,-10),(4484,32,1822,-166),(4485,35,1822,-270),(4486,2,1822,-993),(4487,27,1823,-11),(4488,32,1823,-167),(4489,35,1823,-271),(4490,2,1823,-994),(4491,27,1824,-12),(4492,32,1824,-168),(4493,35,1824,-272),(4494,2,1824,-995),(4495,27,1825,-13),(4496,32,1825,-169),(4497,35,1825,-273),(4498,2,1825,-996),(4499,27,1826,-14),(4500,32,1826,-170),(4501,35,1826,-274),(4502,2,1826,-997),(4503,27,1827,-15),(4504,32,1827,-171),(4505,8,1827,-294),(4506,2,1827,-998),(4507,27,1828,-16),(4508,32,1828,-172),(4509,8,1828,-295),(4510,2,1828,-999),(4511,27,1829,-17),(4512,32,1829,-173),(4513,8,1829,-296),(4514,2,1829,-1000),(4515,27,1830,-18),(4516,32,1830,-174),(4517,8,1830,-297),(4518,2,1830,-1001),(4519,27,1831,-19),(4520,32,1831,-175),(4521,8,1831,-298),(4522,2,1831,-1002),(4523,27,1832,-20),(4524,32,1832,-176),(4525,8,1832,-299),(4526,2,1832,-1003),(4527,27,1833,-21),(4528,32,1833,-177),(4529,8,1833,-300),(4530,2,1833,-1004),(4531,27,1834,-22),(4532,32,1834,-178),(4533,2,1834,-1005),(4534,27,1835,-23),(4535,32,1835,-179),(4536,2,1835,-1006),(4537,27,1836,-24),(4538,32,1836,-180),(4539,2,1836,-1007),(4540,27,1837,-25),(4541,32,1837,-181),(4542,2,1837,-1008),(4543,27,1838,-26),(4544,32,1838,-182),(4545,2,1838,-1009),(4546,27,1839,-27),(4547,32,1839,-183),(4548,2,1839,-1010),(4549,27,1840,-28),(4550,32,1840,-184),(4551,2,1840,-1011),(4552,27,1841,-29),(4553,32,1841,-185),(4554,34,1841,-236),(4555,2,1841,-1012),(4556,27,1842,-30),(4557,32,1842,-186),(4558,34,1842,-237),(4559,2,1842,-1013),(4560,27,1843,-31),(4561,32,1843,-187),(4562,34,1843,-238),(4563,2,1843,-1014),(4564,27,1844,-32),(4565,32,1844,-188),(4566,34,1844,-239),(4567,2,1844,-1015),(4568,27,1845,-33),(4569,32,1845,-189),(4570,34,1845,-240),(4571,2,1845,-1016),(4572,27,1846,-34),(4573,32,1846,-190),(4574,34,1846,-241),(4575,2,1846,-1017),(4576,27,1847,-35),(4577,32,1847,-191),(4578,34,1847,-242),(4579,2,1847,-1018),(4580,27,1848,-36),(4581,32,1848,-192),(4582,34,1848,-243),(4583,2,1848,-1019),(4584,27,1849,-37),(4585,32,1849,-193),(4586,34,1849,-244),(4587,2,1849,-1020),(4588,27,1850,-38),(4589,32,1850,-194),(4590,34,1850,-245),(4591,2,1850,-1021),(4592,27,1851,-39),(4593,32,1851,-195),(4594,34,1851,-246),(4595,2,1851,-1022),(4596,27,1852,-40),(4597,32,1852,-196),(4598,34,1852,-247),(4599,2,1852,-1023),(4600,27,1853,-41),(4601,32,1853,-197),(4602,34,1853,-248),(4603,2,1853,-1024),(4604,27,1854,-42),(4605,32,1854,-198),(4606,34,1854,-249),(4607,2,1854,-1025),(4608,27,1855,-43),(4609,32,1855,-199),(4610,35,1855,-275),(4611,2,1855,-1026),(4612,27,1856,-44),(4613,32,1856,-200),(4614,35,1856,-276),(4615,2,1856,-1027),(4616,27,1857,-45),(4617,32,1857,-201),(4618,35,1857,-277),(4619,2,1857,-1028),(4620,27,1858,-46),(4621,32,1858,-202),(4622,35,1858,-278),(4623,2,1858,-1029),(4624,27,1859,-47),(4625,32,1859,-203),(4626,35,1859,-279),(4627,2,1859,-1030),(4628,27,1860,-48),(4629,32,1860,-204),(4630,35,1860,-280),(4631,2,1860,-1031),(4632,27,1861,-49),(4633,32,1861,-205),(4634,35,1861,-281),(4635,2,1861,-1032),(4636,27,1862,-50),(4637,32,1862,-206),(4638,2,1862,-1033),(4639,27,1863,-51),(4640,32,1863,-207),(4641,2,1863,-1034),(4642,27,1864,-52),(4643,32,1864,-208),(4644,2,1864,-1035),(4645,27,1865,-53),(4646,32,1865,-209),(4647,2,1865,-1036),(4648,27,1866,-54),(4649,32,1866,-210),(4650,2,1866,-1037),(4651,27,1867,-55),(4652,32,1867,-211),(4653,2,1867,-1038),(4654,27,1868,-56),(4655,32,1868,-212),(4656,2,1868,-1039),(4657,27,1869,-57),(4658,32,1869,-213),(4659,2,1869,-1040),(4660,27,1870,-58),(4661,32,1870,-214),(4662,2,1870,-1041),(4663,27,1871,-59),(4664,32,1871,-215),(4665,2,1871,-1042),(4666,27,1872,-60),(4667,32,1872,-216),(4668,2,1872,-1043),(4669,27,1873,-61),(4670,32,1873,-217),(4671,2,1873,-1044),(4672,27,1874,-62),(4673,32,1874,-218),(4674,2,1874,-1045),(4675,27,1875,-63),(4676,32,1875,-219),(4677,2,1875,-1046),(4678,27,1876,-64),(4679,32,1876,-220),(4680,36,1876,-218),(4681,2,1876,-1047),(4682,27,1877,-65),(4683,32,1877,-221),(4684,36,1877,-219),(4685,2,1877,-1048),(4686,27,1878,-66),(4687,32,1878,-222),(4688,36,1878,-220),(4689,2,1878,-1049),(4690,27,1879,-67),(4691,32,1879,-223),(4692,36,1879,-221),(4693,2,1879,-1050),(4694,27,1880,-68),(4695,32,1880,-224),(4696,36,1880,-222),(4697,2,1880,-1051),(4698,27,1881,-69),(4699,32,1881,-225),(4700,36,1881,-223),(4701,2,1881,-1052),(4702,27,1882,-70),(4703,32,1882,-226),(4704,36,1882,-224),(4705,2,1882,-1053),(4706,27,1883,-71),(4707,32,1883,-227),(4708,2,1883,-1054),(4709,27,1884,-72),(4710,32,1884,-228),(4711,2,1884,-1055),(4712,27,1885,-73),(4713,32,1885,-229),(4714,2,1885,-1056),(4715,27,1886,-74),(4716,32,1886,-230),(4717,2,1886,-1057),(4718,27,1887,-75),(4719,32,1887,-231),(4720,2,1887,-1058),(4721,27,1888,-76),(4722,32,1888,-232),(4723,2,1888,-1059),(4724,27,1889,-77),(4725,32,1889,-233),(4726,2,1889,-1060),(4727,27,1890,-78),(4728,32,1890,-234),(4729,35,1890,-282),(4730,2,1890,-1061),(4731,27,1891,-79),(4732,32,1891,-235),(4733,35,1891,-283),(4734,2,1891,-1062),(4735,27,1892,-80),(4736,32,1892,-236),(4737,35,1892,-284),(4738,2,1892,-1063),(4739,27,1893,-81),(4740,32,1893,-237),(4741,35,1893,-285),(4742,2,1893,-1064),(4743,27,1894,-82),(4744,32,1894,-238),(4745,35,1894,-286),(4746,2,1894,-1065),(4747,27,1895,-83),(4748,32,1895,-239),(4749,35,1895,-287),(4750,2,1895,-1066),(4751,27,1896,-84),(4752,32,1896,-240),(4753,35,1896,-288),(4754,2,1896,-1067),(4755,27,1897,-85),(4756,32,1897,-241),(4757,34,1897,-250),(4758,2,1897,-1068),(4759,27,1898,-86),(4760,32,1898,-242),(4761,34,1898,-251),(4762,2,1898,-1069),(4763,27,1899,-87),(4764,32,1899,-243),(4765,34,1899,-252),(4766,2,1899,-1070),(4767,27,1900,-88),(4768,32,1900,-244),(4769,34,1900,-253),(4770,2,1900,-1071),(4771,27,1901,-89),(4772,32,1901,-245),(4773,34,1901,-254),(4774,2,1901,-1072),(4775,27,1902,-90),(4776,32,1902,-246),(4777,34,1902,-255),(4778,2,1902,-1073),(4779,27,1903,-91),(4780,32,1903,-247),(4781,34,1903,-256),(4782,2,1903,-1074),(4783,28,1904,-1),(4784,8,1904,-301),(4785,36,1904,-225),(4786,2,1904,-1075),(4787,28,1905,-2),(4788,8,1905,-302),(4789,36,1905,-226),(4790,2,1905,-1076),(4791,28,1906,-3),(4792,8,1906,-303),(4793,36,1906,-227),(4794,2,1906,-1077),(4795,28,1907,-4),(4796,8,1907,-304),(4797,36,1907,-228),(4798,2,1907,-1078),(4799,28,1908,-5),(4800,8,1908,-305),(4801,36,1908,-229),(4802,2,1908,-1079),(4803,28,1909,-6),(4804,8,1909,-306),(4805,36,1909,-230),(4806,2,1909,-1080),(4807,28,1910,-7),(4808,8,1910,-307),(4809,36,1910,-231),(4810,2,1910,-1081),(4811,28,1911,-8),(4812,8,1911,-308),(4813,36,1911,-232),(4814,2,1911,-1082),(4815,28,1912,-9),(4816,8,1912,-309),(4817,36,1912,-233),(4818,2,1912,-1083),(4819,28,1913,-10),(4820,8,1913,-310),(4821,36,1913,-234),(4822,2,1913,-1084),(4823,28,1914,-11),(4824,8,1914,-311),(4825,36,1914,-235),(4826,2,1914,-1085),(4827,28,1915,-12),(4828,8,1915,-312),(4829,36,1915,-236),(4830,2,1915,-1086),(4831,28,1916,-13),(4832,8,1916,-313),(4833,36,1916,-237),(4834,2,1916,-1087),(4835,28,1917,-14),(4836,8,1917,-314),(4837,36,1917,-238),(4838,2,1917,-1088),(4839,28,1918,-15),(4840,8,1918,-315),(4841,36,1918,-239),(4842,2,1918,-1089),(4843,28,1919,-16),(4844,8,1919,-316),(4845,36,1919,-240),(4846,2,1919,-1090),(4847,28,1920,-17),(4848,30,1920,-193),(4849,2,1920,-1091),(4850,28,1921,-18),(4851,30,1921,-194),(4852,2,1921,-1092),(4853,28,1922,-19),(4854,30,1922,-195),(4855,2,1922,-1093),(4856,28,1923,-20),(4857,30,1923,-196),(4858,2,1923,-1094),(4859,28,1924,-21),(4860,30,1924,-197),(4861,2,1924,-1095),(4862,28,1925,-22),(4863,30,1925,-198),(4864,2,1925,-1096),(4865,28,1926,-23),(4866,30,1926,-199),(4867,2,1926,-1097),(4868,28,1927,-24),(4869,30,1927,-200),(4870,2,1927,-1098),(4871,28,1928,-25),(4872,30,1928,-201),(4873,2,1928,-1099),(4874,28,1929,-26),(4875,30,1929,-202),(4876,2,1929,-1100),(4877,28,1930,-27),(4878,30,1930,-203),(4879,2,1930,-1101),(4880,28,1931,-28),(4881,30,1931,-204),(4882,2,1931,-1102),(4883,28,1932,-29),(4884,30,1932,-205),(4885,2,1932,-1103),(4886,28,1933,-30),(4887,30,1933,-206),(4888,2,1933,-1104),(4889,28,1934,-31),(4890,30,1934,-207),(4891,2,1934,-1105),(4892,28,1935,-32),(4893,30,1935,-208),(4894,2,1935,-1106),(4895,28,1936,-33),(4896,8,1936,-317),(4897,35,1936,-289),(4898,2,1936,-1107),(4899,28,1937,-34),(4900,8,1937,-318),(4901,35,1937,-290),(4902,2,1937,-1108),(4903,28,1938,-35),(4904,8,1938,-319),(4905,35,1938,-291),(4906,2,1938,-1109),(4907,28,1939,-36),(4908,8,1939,-320),(4909,35,1939,-292),(4910,2,1939,-1110),(4911,28,1940,-37),(4912,8,1940,-321),(4913,35,1940,-293),(4914,2,1940,-1111),(4915,28,1941,-38),(4916,8,1941,-322),(4917,35,1941,-294),(4918,2,1941,-1112),(4919,28,1942,-39),(4920,8,1942,-323),(4921,35,1942,-295),(4922,2,1942,-1113),(4923,28,1943,-40),(4924,8,1943,-324),(4925,35,1943,-296),(4926,2,1943,-1114),(4927,28,1944,-41),(4928,8,1944,-325),(4929,35,1944,-297),(4930,2,1944,-1115),(4931,28,1945,-42),(4932,8,1945,-326),(4933,35,1945,-298),(4934,2,1945,-1116),(4935,28,1946,-43),(4936,8,1946,-327),(4937,35,1946,-299),(4938,2,1946,-1117),(4939,28,1947,-44),(4940,8,1947,-328),(4941,35,1947,-300),(4942,2,1947,-1118),(4943,28,1948,-45),(4944,8,1948,-329),(4945,35,1948,-301),(4946,2,1948,-1119),(4947,28,1949,-46),(4948,8,1949,-330),(4949,35,1949,-302),(4950,2,1949,-1120),(4951,28,1950,-47),(4952,8,1950,-331),(4953,35,1950,-303),(4954,2,1950,-1121),(4955,28,1951,-48),(4956,8,1951,-332),(4957,35,1951,-304),(4958,2,1951,-1122),(4959,28,1952,-49),(4960,28,1953,-50),(4961,28,1954,-51),(4962,28,1955,-52),(4963,28,1956,-53),(4964,28,1957,-54),(4965,28,1958,-55),(4966,28,1959,-56),(4967,28,1960,-57),(4968,28,1961,-58),(4969,28,1962,-59),(4970,28,1963,-60),(4971,28,1964,-61),(4972,28,1965,-62),(4973,28,1966,-63),(4974,28,1967,-64),(4975,28,1968,-65),(4976,30,1968,-209),(4977,2,1968,-1123),(4978,28,1969,-66),(4979,30,1969,-210),(4980,2,1969,-1124),(4981,28,1970,-67),(4982,30,1970,-211),(4983,2,1970,-1125),(4984,28,1971,-68),(4985,30,1971,-212),(4986,2,1971,-1126),(4987,28,1972,-69),(4988,30,1972,-213),(4989,2,1972,-1127),(4990,28,1973,-70),(4991,30,1973,-214),(4992,2,1973,-1128),(4993,28,1974,-71),(4994,30,1974,-215),(4995,2,1974,-1129),(4996,28,1975,-72),(4997,30,1975,-216),(4998,2,1975,-1130),(4999,28,1976,-73),(5000,30,1976,-217),(5001,2,1976,-1131),(5002,28,1977,-74),(5003,30,1977,-218),(5004,2,1977,-1132),(5005,28,1978,-75),(5006,30,1978,-219),(5007,2,1978,-1133),(5008,28,1979,-76),(5009,30,1979,-220),(5010,2,1979,-1134),(5011,28,1980,-77),(5012,30,1980,-221),(5013,2,1980,-1135),(5014,28,1981,-78),(5015,30,1981,-222),(5016,2,1981,-1136),(5017,28,1982,-79),(5018,30,1982,-223),(5019,2,1982,-1137),(5020,28,1983,-80),(5021,30,1983,-224),(5022,2,1983,-1138),(5023,28,1984,-81),(5024,28,1985,-82),(5025,28,1986,-83),(5026,28,1987,-84),(5027,28,1988,-85),(5028,28,1989,-86),(5029,28,1990,-87),(5030,28,1991,-88),(5031,8,1991,-333),(5032,2,1991,-1139),(5033,28,1992,-89),(5034,8,1992,-334),(5035,2,1992,-1140),(5036,28,1993,-90),(5037,8,1993,-335),(5038,2,1993,-1141),(5039,28,1994,-91),(5040,8,1994,-336),(5041,2,1994,-1142),(5042,28,1995,-92),(5043,8,1995,-337),(5044,2,1995,-1143),(5045,28,1996,-93),(5046,8,1996,-338),(5047,2,1996,-1144),(5048,28,1997,-94),(5049,8,1997,-339),(5050,2,1997,-1145),(5051,28,1998,-95),(5052,35,1998,-305),(5053,2,1998,-1146),(5054,28,1999,-96),(5055,35,1999,-306),(5056,2,1999,-1147),(5057,28,2000,-97),(5058,35,2000,-307),(5059,2,2000,-1148),(5060,28,2001,-98),(5061,35,2001,-308),(5062,2,2001,-1149),(5063,28,2002,-99),(5064,35,2002,-309),(5065,2,2002,-1150),(5066,28,2003,-100),(5067,35,2003,-310),(5068,2,2003,-1151),(5069,28,2004,-101),(5070,28,2005,-102),(5071,28,2006,-103),(5072,28,2007,-104),(5073,28,2008,-105),(5074,28,2009,-106),(5075,28,2010,-107),(5076,28,2011,-108),(5077,36,2011,-241),(5078,2,2011,-1152),(5079,28,2012,-109),(5080,36,2012,-242),(5081,2,2012,-1153),(5082,28,2013,-110),(5083,36,2013,-243),(5084,2,2013,-1154),(5085,28,2014,-111),(5086,36,2014,-244),(5087,2,2014,-1155),(5088,28,2015,-112),(5089,36,2015,-245),(5090,2,2015,-1156),(5091,28,2016,-113),(5092,36,2016,-246),(5093,2,2016,-1157),(5094,28,2017,-114),(5095,36,2017,-247),(5096,2,2017,-1158),(5097,28,2018,-115),(5098,34,2018,-257),(5099,2,2018,-1159),(5100,28,2019,-116),(5101,34,2019,-258),(5102,2,2019,-1160),(5103,28,2020,-117),(5104,34,2020,-259),(5105,2,2020,-1161),(5106,28,2021,-118),(5107,34,2021,-260),(5108,2,2021,-1162),(5109,28,2022,-119),(5110,34,2022,-261),(5111,2,2022,-1163),(5112,28,2023,-120),(5113,34,2023,-262),(5114,2,2023,-1164),(5115,28,2024,-121),(5116,34,2024,-263),(5117,2,2024,-1165),(5118,28,2025,-122),(5119,34,2025,-264),(5120,2,2025,-1166),(5121,28,2026,-123),(5122,34,2026,-265),(5123,2,2026,-1167),(5124,28,2027,-124),(5125,34,2027,-266),(5126,2,2027,-1168),(5127,28,2028,-125),(5128,34,2028,-267),(5129,2,2028,-1169),(5130,28,2029,-126),(5131,34,2029,-268),(5132,2,2029,-1170),(5133,28,2030,-127),(5134,34,2030,-269),(5135,2,2030,-1171),(5136,28,2031,-128),(5137,34,2031,-270),(5138,2,2031,-1172),(5139,28,2032,-129),(5140,34,2032,-271),(5141,2,2032,-1173),(5142,28,2033,-130),(5143,34,2033,-272),(5144,2,2033,-1174),(5145,28,2034,-131),(5146,34,2034,-273),(5147,2,2034,-1175),(5148,28,2035,-132),(5149,34,2035,-274),(5150,2,2035,-1176),(5151,28,2036,-133),(5152,34,2036,-275),(5153,2,2036,-1177),(5154,28,2037,-134),(5155,34,2037,-276),(5156,2,2037,-1178),(5157,28,2038,-135),(5158,34,2038,-277),(5159,2,2038,-1179),(5160,28,2039,-136),(5161,34,2039,-278),(5162,2,2039,-1180),(5163,28,2040,-137),(5164,34,2040,-279),(5165,2,2040,-1181);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_BB4A590114301ED9D94C8239D3EF6DA8` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_replica` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_BB4A590114301ED9D94C8239D3EF6DA8` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_replica`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_store1`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_store1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_store1` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_EAA97D781ECAB4B7D46CE05989FB5FCE` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Prmg Catalog Category Product Index Store1';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_store1`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_store1` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_product_index_store1` VALUES (2,2040,-1181,1,1,4),(2,2024,-1165,1,1,4),(2,2017,-1158,1,1,4),(2,2003,-1151,1,1,4),(2,1997,-1145,1,1,4),(2,1983,-1138,1,1,4),(2,1951,-1122,1,1,4),(2,1935,-1106,1,1,4),(2,1919,-1090,1,1,4),(2,1903,-1074,1,1,4),(2,1896,-1067,1,1,4),(2,1889,-1060,1,1,4),(2,1882,-1053,1,1,4),(2,1875,-1046,1,1,4),(2,1868,-1039,1,1,4),(2,1861,-1032,1,1,4),(2,1854,-1025,1,1,4),(2,1847,-1018,1,1,4),(2,1840,-1011,1,1,4),(2,1833,-1004,1,1,4),(2,1826,-997,1,1,4),(2,1819,-990,1,1,4),(2,1812,-983,1,1,4),(2,1796,-967,1,1,4),(2,1780,-951,1,1,4),(2,1748,-935,1,1,4),(2,1732,-919,1,1,4),(2,1716,-903,1,1,4),(2,1684,-887,1,1,4),(2,1636,-871,1,1,4),(2,1604,-855,1,1,4),(2,1588,-839,1,1,4),(2,1572,-823,1,1,4),(2,1556,-807,1,1,4),(2,1540,-791,1,1,4),(2,1524,-775,1,1,4),(2,1508,-759,1,1,4),(2,1492,-743,1,1,4),(2,1476,-727,1,1,4),(2,1460,-711,1,1,4),(2,1444,-695,1,1,4),(2,1428,-679,1,1,4),(2,1412,-663,1,1,4),(2,1396,-647,1,1,4),(2,1380,-631,1,1,4),(2,1364,-615,1,1,4),(2,1348,-599,1,1,4),(2,1332,-583,1,1,4),(2,1316,-567,1,1,4),(2,1268,-551,1,1,4),(2,1236,-535,1,1,4),(2,1220,-519,1,1,4),(2,1210,-509,1,1,4),(2,1194,-493,1,1,4),(2,1178,-477,1,1,4),(2,1162,-461,1,1,4),(2,1146,-445,1,1,4),(2,1130,-429,1,1,4),(2,1060,-413,1,1,4),(2,1044,-397,1,1,4),(2,1028,-381,1,1,4),(2,1002,-368,1,1,4),(2,989,-355,1,1,4),(2,976,-342,1,1,4),(2,963,-329,1,1,4),(2,950,-316,1,1,4),(2,937,-303,1,1,4),(2,911,-290,1,1,4),(2,893,-277,1,1,4),(2,880,-264,1,1,4),(2,867,-251,1,1,4),(2,854,-238,1,1,4),(2,841,-225,1,1,4),(2,828,-212,1,1,4),(2,254,-208,1,1,4),(2,815,-199,1,1,4),(2,238,-192,1,1,4),(2,622,-192,1,1,4),(2,802,-186,1,1,4),(2,222,-176,1,1,4),(2,430,-176,1,1,4),(2,606,-176,1,1,4),(2,1764,-176,1,1,4),(2,789,-173,1,1,4),(2,206,-160,1,1,4),(2,414,-160,1,1,4),(2,590,-160,1,1,4),(2,776,-160,1,1,4),(2,763,-147,1,1,4),(2,190,-144,1,1,4),(2,398,-144,1,1,4),(2,574,-144,1,1,4),(2,1015,-135,1,1,4),(2,750,-134,1,1,4),(2,174,-128,1,1,4),(2,382,-128,1,1,4),(2,558,-128,1,1,4),(2,737,-121,1,1,4),(2,158,-112,1,1,4),(2,366,-112,1,1,4),(2,542,-112,1,1,4),(2,1700,-112,1,1,4),(2,718,-108,1,1,4),(2,2010,-107,1,1,4),(2,694,-102,1,1,4),(2,724,-102,1,1,4),(2,142,-96,1,1,4),(2,350,-96,1,1,4),(2,462,-96,1,1,4),(2,526,-96,1,1,4),(2,712,-90,1,1,4),(2,1300,-90,1,1,4),(2,1990,-87,1,1,4),(2,1114,-86,1,1,4),(2,706,-84,1,1,4),(2,126,-80,1,1,4),(2,334,-80,1,1,4),(2,510,-80,1,1,4),(2,1108,-80,1,1,4),(2,1668,-80,1,1,4),(2,700,-78,1,1,4),(2,1284,-74,1,1,4),(2,688,-66,1,1,4),(2,110,-64,1,1,4),(2,302,-64,1,1,4),(2,318,-64,1,1,4),(2,494,-64,1,1,4),(2,1092,-64,1,1,4),(2,1652,-64,1,1,4),(2,1967,-64,1,1,4),(2,682,-60,1,1,4),(2,676,-54,1,1,4),(2,94,-48,1,1,4),(2,478,-48,1,1,4),(2,670,-48,1,1,4),(2,1076,-48,1,1,4),(2,924,-44,1,1,4),(2,1252,-42,1,1,4),(2,78,-32,1,1,4),(2,286,-32,1,1,4),(2,654,-32,1,1,4),(2,1620,-32,1,1,4),(2,898,-18,1,1,4),(2,62,-16,1,1,4),(2,270,-16,1,1,4),(2,446,-16,1,1,4),(2,638,-16,1,1,4),(2,1,0,1,1,4),(2,2,0,1,1,4),(2,3,0,1,1,4),(2,4,0,1,1,4),(2,5,0,1,1,4),(2,6,0,1,1,4),(2,7,0,1,1,4),(2,8,0,1,1,4),(2,9,0,1,1,4),(2,10,0,1,1,4),(2,11,0,1,1,4),(2,12,0,1,1,4),(2,13,0,1,1,4),(2,14,0,1,1,4),(2,15,0,1,1,4),(2,16,0,1,1,4),(2,17,0,1,1,4),(2,18,0,1,1,4),(2,19,0,1,1,4),(2,20,0,1,1,4),(2,21,0,1,1,4),(2,22,0,1,1,4),(2,23,0,1,1,4),(2,36,0,1,1,4),(2,37,0,1,1,4),(2,38,0,1,1,4),(2,39,0,1,1,4),(2,40,0,1,1,4),(2,41,0,1,1,4),(2,42,0,1,1,4),(2,43,0,1,1,4),(2,44,0,1,1,4),(2,45,0,1,1,4),(2,46,0,1,1,4),(3,1,0,1,1,4),(3,2,0,1,1,4),(3,3,0,1,1,4),(3,4,0,1,1,4),(3,5,0,1,1,4),(3,6,0,1,1,4),(3,7,0,1,1,4),(3,8,0,1,1,4),(3,9,0,1,1,4),(3,10,0,1,1,4),(3,11,0,1,1,4),(3,12,0,1,1,4),(3,13,0,1,1,4),(3,14,0,1,1,4),(3,15,0,1,1,4),(3,16,0,1,1,4),(3,17,0,1,1,4),(3,18,0,1,1,4),(3,19,0,1,1,4),(3,20,0,1,1,4),(3,21,0,1,1,4),(3,22,0,1,1,4),(3,23,0,1,1,4),(3,36,0,1,1,4),(3,37,0,1,1,4),(3,38,0,1,1,4),(3,39,0,1,1,4),(3,40,0,1,1,4),(3,41,0,1,1,4),(3,42,0,1,1,4),(3,43,0,1,1,4),(3,44,0,1,1,4),(3,45,0,1,1,4),(3,46,0,1,1,4),(4,1,0,1,1,4),(4,2,0,1,1,4),(4,3,0,1,1,4),(4,4,0,1,1,4),(4,5,0,1,1,4),(4,6,0,1,1,4),(4,7,0,1,1,4),(4,8,0,1,1,4),(4,9,0,1,1,4),(4,10,0,1,1,4),(4,11,0,1,1,4),(4,12,0,1,1,4),(4,13,0,1,1,4),(4,14,0,1,1,4),(5,15,0,1,1,4),(5,16,0,1,1,4),(5,17,0,1,1,4),(5,18,0,1,1,4),(5,19,0,1,1,4),(5,20,0,1,1,4),(5,21,0,1,1,4),(5,22,0,1,1,4),(5,23,0,1,1,4),(5,45,0,1,1,4),(5,46,0,1,1,4),(6,36,0,1,1,4),(6,37,0,1,1,4),(6,38,0,1,1,4),(6,39,0,1,1,4),(6,40,0,1,1,4),(6,41,0,1,1,4),(6,42,0,1,1,4),(6,43,0,1,1,4),(6,44,0,1,1,4),(7,2,0,1,1,4),(7,4,0,1,1,4),(7,5,0,1,1,4),(7,10,0,1,1,4),(7,11,0,1,1,4),(7,13,0,1,1,4),(7,14,0,1,1,4),(7,16,0,1,1,4),(7,19,0,1,1,4),(7,38,0,1,1,4),(7,39,0,1,1,4),(7,40,0,1,1,4),(7,44,0,1,1,4),(8,1997,-339,1,1,4),(8,1951,-332,1,1,4),(8,1919,-316,1,1,4),(8,1833,-300,1,1,4),(8,1716,-293,1,1,4),(8,1636,-277,1,1,4),(8,1476,-261,1,1,4),(8,1460,-245,1,1,4),(8,1444,-229,1,1,4),(8,1412,-213,1,1,4),(8,1364,-197,1,1,4),(8,1348,-181,1,1,4),(8,1268,-165,1,1,4),(8,1220,-149,1,1,4),(8,1178,-139,1,1,4),(8,1130,-123,1,1,4),(8,1044,-107,1,1,4),(8,1002,-91,1,1,4),(8,950,-78,1,1,4),(8,841,-65,1,1,4),(8,828,-52,1,1,4),(8,815,-39,1,1,4),(8,789,-26,1,1,4),(8,763,-13,1,1,4),(8,4,0,1,1,4),(8,5,0,1,1,4),(8,13,0,1,1,4),(8,19,0,1,1,4),(8,38,0,1,1,4),(8,39,0,1,1,4),(8,40,0,1,1,4),(8,44,0,1,1,4),(12,254,9792,0,1,4),(12,238,9808,0,1,4),(12,622,9808,0,1,4),(12,222,9824,0,1,4),(12,430,9824,0,1,4),(12,606,9824,0,1,4),(12,206,9840,0,1,4),(12,414,9840,0,1,4),(12,590,9840,0,1,4),(12,190,9856,0,1,4),(12,398,9856,0,1,4),(12,574,9856,0,1,4),(12,174,9872,0,1,4),(12,382,9872,0,1,4),(12,558,9872,0,1,4),(12,158,9888,0,1,4),(12,366,9888,0,1,4),(12,542,9888,0,1,4),(12,724,9898,0,1,4),(12,142,9904,0,1,4),(12,350,9904,0,1,4),(12,526,9904,0,1,4),(12,718,9904,0,1,4),(12,712,9910,0,1,4),(12,706,9916,0,1,4),(12,126,9920,0,1,4),(12,334,9920,0,1,4),(12,510,9920,0,1,4),(12,700,9922,0,1,4),(12,694,9928,0,1,4),(12,688,9934,0,1,4),(12,110,9936,0,1,4),(12,318,9936,0,1,4),(12,494,9936,0,1,4),(12,682,9940,0,1,4),(12,676,9946,0,1,4),(12,94,9952,0,1,4),(12,302,9952,0,1,4),(12,478,9952,0,1,4),(12,670,9952,0,1,4),(12,78,9968,0,1,4),(12,286,9968,0,1,4),(12,462,9968,0,1,4),(12,654,9968,0,1,4),(12,62,9984,0,1,4),(12,270,9984,0,1,4),(12,446,9984,0,1,4),(12,638,9984,0,1,4),(13,880,9844,0,1,4),(13,1028,9852,0,1,4),(13,867,9857,0,1,4),(13,1015,9865,0,1,4),(13,854,9870,0,1,4),(13,1002,9878,0,1,4),(13,841,9883,0,1,4),(13,989,9891,0,1,4),(13,828,9896,0,1,4),(13,976,9904,0,1,4),(13,815,9909,0,1,4),(13,963,9917,0,1,4),(13,802,9922,0,1,4),(13,950,9930,0,1,4),(13,789,9935,0,1,4),(13,937,9943,0,1,4),(13,776,9948,0,1,4),(13,924,9956,0,1,4),(13,763,9961,0,1,4),(13,911,9969,0,1,4),(13,750,9974,0,1,4),(13,898,9982,0,1,4),(13,737,9987,0,1,4),(13,893,9987,0,1,4),(14,430,-176,1,1,4),(14,414,-160,1,1,4),(14,398,-144,1,1,4),(14,382,-128,1,1,4),(14,366,-112,1,1,4),(14,350,-96,1,1,4),(14,334,-80,1,1,4),(14,318,-64,1,1,4),(14,302,-48,1,1,4),(14,286,-32,1,1,4),(14,270,-16,1,1,4),(15,254,-208,1,1,4),(15,238,-192,1,1,4),(15,222,-176,1,1,4),(15,206,-160,1,1,4),(15,190,-144,1,1,4),(15,174,-128,1,1,4),(15,158,-112,1,1,4),(15,142,-96,1,1,4),(15,126,-80,1,1,4),(15,110,-64,1,1,4),(15,94,-48,1,1,4),(15,78,-32,1,1,4),(15,62,-16,1,1,4),(16,622,-192,1,1,4),(16,606,-176,1,1,4),(16,590,-160,1,1,4),(16,574,-144,1,1,4),(16,558,-128,1,1,4),(16,542,-112,1,1,4),(16,526,-96,1,1,4),(16,510,-80,1,1,4),(16,494,-64,1,1,4),(16,478,-48,1,1,4),(16,462,-32,1,1,4),(16,446,-16,1,1,4),(17,724,-102,1,1,4),(17,718,-96,1,1,4),(17,712,-90,1,1,4),(17,706,-84,1,1,4),(17,700,-78,1,1,4),(17,694,-72,1,1,4),(17,688,-66,1,1,4),(17,682,-60,1,1,4),(17,676,-54,1,1,4),(17,670,-48,1,1,4),(17,654,-32,1,1,4),(17,638,-16,1,1,4),(18,880,-156,1,1,4),(18,867,-143,1,1,4),(18,854,-130,1,1,4),(18,841,-117,1,1,4),(18,828,-104,1,1,4),(18,815,-91,1,1,4),(18,802,-78,1,1,4),(18,789,-65,1,1,4),(18,776,-52,1,1,4),(18,763,-39,1,1,4),(18,750,-26,1,1,4),(18,737,-13,1,1,4),(19,1028,-148,1,1,4),(19,1015,-135,1,1,4),(19,1002,-122,1,1,4),(19,989,-109,1,1,4),(19,976,-96,1,1,4),(19,963,-83,1,1,4),(19,950,-70,1,1,4),(19,937,-57,1,1,4),(19,924,-44,1,1,4),(19,911,-31,1,1,4),(19,898,-18,1,1,4),(19,893,-13,1,1,4),(21,1812,9776,0,1,4),(21,1796,9792,0,1,4),(21,1588,9808,0,1,4),(21,1780,9808,0,1,4),(21,1396,9814,0,1,4),(21,1210,9818,0,1,4),(21,1572,9824,0,1,4),(21,1764,9824,0,1,4),(21,1380,9830,0,1,4),(21,1194,9834,0,1,4),(21,1556,9840,0,1,4),(21,1748,9840,0,1,4),(21,1364,9846,0,1,4),(21,1178,9850,0,1,4),(21,1540,9856,0,1,4),(21,1732,9856,0,1,4),(21,1348,9862,0,1,4),(21,1162,9866,0,1,4),(21,1524,9872,0,1,4),(21,1716,9872,0,1,4),(21,1332,9878,0,1,4),(21,1146,9882,0,1,4),(21,1508,9888,0,1,4),(21,1700,9888,0,1,4),(21,1316,9894,0,1,4),(21,1130,9898,0,1,4),(21,1492,9904,0,1,4),(21,1684,9904,0,1,4),(21,1300,9910,0,1,4),(21,1114,9914,0,1,4),(21,1108,9920,0,1,4),(21,1476,9920,0,1,4),(21,1668,9920,0,1,4),(21,1284,9926,0,1,4),(21,1092,9936,0,1,4),(21,1460,9936,0,1,4),(21,1652,9936,0,1,4),(21,1268,9942,0,1,4),(21,1076,9952,0,1,4),(21,1444,9952,0,1,4),(21,1636,9952,0,1,4),(21,1252,9958,0,1,4),(21,1060,9968,0,1,4),(21,1428,9968,0,1,4),(21,1620,9968,0,1,4),(21,1236,9974,0,1,4),(21,1044,9984,0,1,4),(21,1412,9984,0,1,4),(21,1604,9984,0,1,4),(21,1220,9990,0,1,4),(22,2040,9863,0,1,4),(22,2024,9879,0,1,4),(22,2017,9886,0,1,4),(22,2010,9893,0,1,4),(22,2003,9900,0,1,4),(22,1997,9906,0,1,4),(22,1903,9909,0,1,4),(22,1990,9913,0,1,4),(22,1896,9916,0,1,4),(22,1983,9920,0,1,4),(22,1889,9923,0,1,4),(22,1882,9930,0,1,4),(22,1967,9936,0,1,4),(22,1875,9937,0,1,4),(22,1868,9944,0,1,4),(22,1861,9951,0,1,4),(22,1951,9952,0,1,4),(22,1854,9958,0,1,4),(22,1847,9965,0,1,4),(22,1935,9968,0,1,4),(22,1840,9972,0,1,4),(22,1833,9979,0,1,4),(22,1919,9984,0,1,4),(22,1826,9986,0,1,4),(22,1819,9993,0,1,4),(23,1396,-186,1,1,4),(23,1380,-170,1,1,4),(23,1364,-154,1,1,4),(23,1348,-138,1,1,4),(23,1332,-122,1,1,4),(23,1316,-106,1,1,4),(23,1300,-90,1,1,4),(23,1284,-74,1,1,4),(23,1268,-58,1,1,4),(23,1252,-42,1,1,4),(23,1236,-26,1,1,4),(23,1220,-10,1,1,4),(24,1210,-182,1,1,4),(24,1194,-166,1,1,4),(24,1178,-150,1,1,4),(24,1162,-134,1,1,4),(24,1146,-118,1,1,4),(24,1130,-102,1,1,4),(24,1114,-86,1,1,4),(24,1108,-80,1,1,4),(24,1092,-64,1,1,4),(24,1076,-48,1,1,4),(24,1060,-32,1,1,4),(24,1044,-16,1,1,4),(25,1588,-192,1,1,4),(25,1572,-176,1,1,4),(25,1556,-160,1,1,4),(25,1540,-144,1,1,4),(25,1524,-128,1,1,4),(25,1508,-112,1,1,4),(25,1492,-96,1,1,4),(25,1476,-80,1,1,4),(25,1460,-64,1,1,4),(25,1444,-48,1,1,4),(25,1428,-32,1,1,4),(25,1412,-16,1,1,4),(26,1812,-224,1,1,4),(26,1796,-208,1,1,4),(26,1780,-192,1,1,4),(26,1764,-176,1,1,4),(26,1748,-160,1,1,4),(26,1732,-144,1,1,4),(26,1716,-128,1,1,4),(26,1700,-112,1,1,4),(26,1684,-96,1,1,4),(26,1668,-80,1,1,4),(26,1652,-64,1,1,4),(26,1636,-48,1,1,4),(26,1620,-32,1,1,4),(26,1604,-16,1,1,4),(27,1903,-91,1,1,4),(27,1896,-84,1,1,4),(27,1889,-77,1,1,4),(27,1882,-70,1,1,4),(27,1875,-63,1,1,4),(27,1868,-56,1,1,4),(27,1861,-49,1,1,4),(27,1854,-42,1,1,4),(27,1847,-35,1,1,4),(27,1840,-28,1,1,4),(27,1833,-21,1,1,4),(27,1826,-14,1,1,4),(27,1819,-7,1,1,4),(28,2040,-137,1,1,4),(28,2024,-121,1,1,4),(28,2017,-114,1,1,4),(28,2010,-107,1,1,4),(28,2003,-100,1,1,4),(28,1997,-94,1,1,4),(28,1990,-87,1,1,4),(28,1983,-80,1,1,4),(28,1967,-64,1,1,4),(28,1951,-48,1,1,4),(28,1935,-32,1,1,4),(28,1919,-16,1,1,4),(30,1983,-224,1,1,4),(30,1935,-208,1,1,4),(30,1812,-192,1,1,4),(30,1796,-176,1,1,4),(30,1604,-160,1,1,4),(30,1540,-144,1,1,4),(30,1508,-128,1,1,4),(30,1492,-112,1,1,4),(30,1396,-96,1,1,4),(30,1380,-80,1,1,4),(30,1316,-64,1,1,4),(30,1236,-48,1,1,4),(30,1146,-32,1,1,4),(30,1060,-16,1,1,4),(31,1028,-39,1,1,4),(31,976,-26,1,1,4),(31,963,-13,1,1,4),(32,1903,-247,1,1,4),(32,1896,-240,1,1,4),(32,1889,-233,1,1,4),(32,1882,-226,1,1,4),(32,1875,-219,1,1,4),(32,1868,-212,1,1,4),(32,1861,-205,1,1,4),(32,1854,-198,1,1,4),(32,1847,-191,1,1,4),(32,1840,-184,1,1,4),(32,1833,-177,1,1,4),(32,1826,-170,1,1,4),(32,1819,-163,1,1,4),(32,880,-156,1,1,4),(32,867,-143,1,1,4),(32,854,-130,1,1,4),(32,841,-117,1,1,4),(32,828,-104,1,1,4),(32,815,-91,1,1,4),(32,802,-78,1,1,4),(32,789,-65,1,1,4),(32,776,-52,1,1,4),(32,763,-39,1,1,4),(32,750,-26,1,1,4),(32,737,-13,1,1,4),(33,1588,-192,1,1,4),(33,1572,-176,1,1,4),(33,1556,-160,1,1,4),(33,1540,-144,1,1,4),(33,1524,-128,1,1,4),(33,1508,-112,1,1,4),(33,1492,-96,1,1,4),(33,1476,-80,1,1,4),(33,1460,-64,1,1,4),(33,1444,-48,1,1,4),(33,1428,-32,1,1,4),(33,1412,-16,1,1,4),(34,2040,-279,1,1,4),(34,2024,-263,1,1,4),(34,1903,-256,1,1,4),(34,1854,-249,1,1,4),(34,1847,-242,1,1,4),(34,1812,-235,1,1,4),(34,1748,-219,1,1,4),(34,1716,-203,1,1,4),(34,1540,-187,1,1,4),(34,1476,-171,1,1,4),(34,1332,-155,1,1,4),(34,1316,-139,1,1,4),(34,1220,-123,1,1,4),(34,1194,-113,1,1,4),(34,1130,-97,1,1,4),(34,1044,-81,1,1,4),(34,963,-65,1,1,4),(34,893,-52,1,1,4),(34,867,-39,1,1,4),(34,854,-26,1,1,4),(34,841,-13,1,1,4),(35,2003,-310,1,1,4),(35,1951,-304,1,1,4),(35,1896,-288,1,1,4),(35,1861,-281,1,1,4),(35,1826,-274,1,1,4),(35,1819,-267,1,1,4),(35,1796,-260,1,1,4),(35,1780,-244,1,1,4),(35,1732,-228,1,1,4),(35,1636,-212,1,1,4),(35,1556,-196,1,1,4),(35,1524,-180,1,1,4),(35,1428,-164,1,1,4),(35,1396,-148,1,1,4),(35,1380,-132,1,1,4),(35,1348,-116,1,1,4),(35,1268,-100,1,1,4),(35,1210,-84,1,1,4),(35,1146,-68,1,1,4),(35,989,-52,1,1,4),(35,937,-39,1,1,4),(35,911,-26,1,1,4),(35,750,-13,1,1,4),(36,2017,-247,1,1,4),(36,1919,-240,1,1,4),(36,1882,-224,1,1,4),(36,1684,-217,1,1,4),(36,1604,-201,1,1,4),(36,1508,-185,1,1,4),(36,1460,-169,1,1,4),(36,1444,-153,1,1,4),(36,1162,-137,1,1,4),(36,802,-121,1,1,4),(36,718,-108,1,1,4),(36,694,-102,1,1,4),(36,462,-96,1,1,4),(36,398,-80,1,1,4),(36,302,-64,1,1,4),(36,110,-48,1,1,4),(36,94,-32,1,1,4),(36,62,-16,1,1,4);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_store1_replica`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_store1_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_store1_replica` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `position` int DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `IDX_6FBAC0A8825789D69AB86505B4914089` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_8F15547F72AF00C7861A223EC6C69052` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Prmg Catalog Category Product Index Store1 Replica';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_store1_replica`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_store1_replica` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1_replica` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_category_product_index_store1_replica` VALUES (2,2040,-1181,1,1,4),(2,2024,-1165,1,1,4),(2,2017,-1158,1,1,4),(2,2003,-1151,1,1,4),(2,1997,-1145,1,1,4),(2,1983,-1138,1,1,4),(2,1951,-1122,1,1,4),(2,1935,-1106,1,1,4),(2,1919,-1090,1,1,4),(2,1903,-1074,1,1,4),(2,1896,-1067,1,1,4),(2,1889,-1060,1,1,4),(2,1882,-1053,1,1,4),(2,1875,-1046,1,1,4),(2,1868,-1039,1,1,4),(2,1861,-1032,1,1,4),(2,1854,-1025,1,1,4),(2,1847,-1018,1,1,4),(2,1840,-1011,1,1,4),(2,1833,-1004,1,1,4),(2,1826,-997,1,1,4),(2,1819,-990,1,1,4),(2,1812,-983,1,1,4),(2,1796,-967,1,1,4),(2,1780,-951,1,1,4),(2,1748,-935,1,1,4),(2,1732,-919,1,1,4),(2,1716,-903,1,1,4),(2,1684,-887,1,1,4),(2,1636,-871,1,1,4),(2,1604,-855,1,1,4),(2,1588,-839,1,1,4),(2,1572,-823,1,1,4),(2,1556,-807,1,1,4),(2,1540,-791,1,1,4),(2,1524,-775,1,1,4),(2,1508,-759,1,1,4),(2,1492,-743,1,1,4),(2,1476,-727,1,1,4),(2,1460,-711,1,1,4),(2,1444,-695,1,1,4),(2,1428,-679,1,1,4),(2,1412,-663,1,1,4),(2,1396,-647,1,1,4),(2,1380,-631,1,1,4),(2,1364,-615,1,1,4),(2,1348,-599,1,1,4),(2,1332,-583,1,1,4),(2,1316,-567,1,1,4),(2,1268,-551,1,1,4),(2,1236,-535,1,1,4),(2,1220,-519,1,1,4),(2,1210,-509,1,1,4),(2,1194,-493,1,1,4),(2,1178,-477,1,1,4),(2,1162,-461,1,1,4),(2,1146,-445,1,1,4),(2,1130,-429,1,1,4),(2,1060,-413,1,1,4),(2,1044,-397,1,1,4),(2,1028,-381,1,1,4),(2,1002,-368,1,1,4),(2,989,-355,1,1,4),(2,976,-342,1,1,4),(2,963,-329,1,1,4),(2,950,-316,1,1,4),(2,937,-303,1,1,4),(2,911,-290,1,1,4),(2,893,-277,1,1,4),(2,880,-264,1,1,4),(2,867,-251,1,1,4),(2,854,-238,1,1,4),(2,841,-225,1,1,4),(2,828,-212,1,1,4),(2,254,-208,1,1,4),(2,815,-199,1,1,4),(2,238,-192,1,1,4),(2,622,-192,1,1,4),(2,802,-186,1,1,4),(2,222,-176,1,1,4),(2,430,-176,1,1,4),(2,606,-176,1,1,4),(2,1764,-176,1,1,4),(2,789,-173,1,1,4),(2,206,-160,1,1,4),(2,414,-160,1,1,4),(2,590,-160,1,1,4),(2,776,-160,1,1,4),(2,763,-147,1,1,4),(2,190,-144,1,1,4),(2,398,-144,1,1,4),(2,574,-144,1,1,4),(2,1015,-135,1,1,4),(2,750,-134,1,1,4),(2,174,-128,1,1,4),(2,382,-128,1,1,4),(2,558,-128,1,1,4),(2,737,-121,1,1,4),(2,158,-112,1,1,4),(2,366,-112,1,1,4),(2,542,-112,1,1,4),(2,1700,-112,1,1,4),(2,718,-108,1,1,4),(2,2010,-107,1,1,4),(2,694,-102,1,1,4),(2,724,-102,1,1,4),(2,142,-96,1,1,4),(2,350,-96,1,1,4),(2,462,-96,1,1,4),(2,526,-96,1,1,4),(2,712,-90,1,1,4),(2,1300,-90,1,1,4),(2,1990,-87,1,1,4),(2,1114,-86,1,1,4),(2,706,-84,1,1,4),(2,126,-80,1,1,4),(2,334,-80,1,1,4),(2,510,-80,1,1,4),(2,1108,-80,1,1,4),(2,1668,-80,1,1,4),(2,700,-78,1,1,4),(2,1284,-74,1,1,4),(2,688,-66,1,1,4),(2,110,-64,1,1,4),(2,302,-64,1,1,4),(2,318,-64,1,1,4),(2,494,-64,1,1,4),(2,1092,-64,1,1,4),(2,1652,-64,1,1,4),(2,1967,-64,1,1,4),(2,682,-60,1,1,4),(2,676,-54,1,1,4),(2,94,-48,1,1,4),(2,478,-48,1,1,4),(2,670,-48,1,1,4),(2,1076,-48,1,1,4),(2,924,-44,1,1,4),(2,1252,-42,1,1,4),(2,78,-32,1,1,4),(2,286,-32,1,1,4),(2,654,-32,1,1,4),(2,1620,-32,1,1,4),(2,898,-18,1,1,4),(2,62,-16,1,1,4),(2,270,-16,1,1,4),(2,446,-16,1,1,4),(2,638,-16,1,1,4),(2,1,0,1,1,4),(2,2,0,1,1,4),(2,3,0,1,1,4),(2,4,0,1,1,4),(2,5,0,1,1,4),(2,6,0,1,1,4),(2,7,0,1,1,4),(2,8,0,1,1,4),(2,9,0,1,1,4),(2,10,0,1,1,4),(2,11,0,1,1,4),(2,12,0,1,1,4),(2,13,0,1,1,4),(2,14,0,1,1,4),(2,15,0,1,1,4),(2,16,0,1,1,4),(2,17,0,1,1,4),(2,18,0,1,1,4),(2,19,0,1,1,4),(2,20,0,1,1,4),(2,21,0,1,1,4),(2,22,0,1,1,4),(2,23,0,1,1,4),(2,36,0,1,1,4),(2,37,0,1,1,4),(2,38,0,1,1,4),(2,39,0,1,1,4),(2,40,0,1,1,4),(2,41,0,1,1,4),(2,42,0,1,1,4),(2,43,0,1,1,4),(2,44,0,1,1,4),(2,45,0,1,1,4),(2,46,0,1,1,4),(3,1,0,1,1,4),(3,2,0,1,1,4),(3,3,0,1,1,4),(3,4,0,1,1,4),(3,5,0,1,1,4),(3,6,0,1,1,4),(3,7,0,1,1,4),(3,8,0,1,1,4),(3,9,0,1,1,4),(3,10,0,1,1,4),(3,11,0,1,1,4),(3,12,0,1,1,4),(3,13,0,1,1,4),(3,14,0,1,1,4),(3,15,0,1,1,4),(3,16,0,1,1,4),(3,17,0,1,1,4),(3,18,0,1,1,4),(3,19,0,1,1,4),(3,20,0,1,1,4),(3,21,0,1,1,4),(3,22,0,1,1,4),(3,23,0,1,1,4),(3,36,0,1,1,4),(3,37,0,1,1,4),(3,38,0,1,1,4),(3,39,0,1,1,4),(3,40,0,1,1,4),(3,41,0,1,1,4),(3,42,0,1,1,4),(3,43,0,1,1,4),(3,44,0,1,1,4),(3,45,0,1,1,4),(3,46,0,1,1,4),(4,1,0,1,1,4),(4,2,0,1,1,4),(4,3,0,1,1,4),(4,4,0,1,1,4),(4,5,0,1,1,4),(4,6,0,1,1,4),(4,7,0,1,1,4),(4,8,0,1,1,4),(4,9,0,1,1,4),(4,10,0,1,1,4),(4,11,0,1,1,4),(4,12,0,1,1,4),(4,13,0,1,1,4),(4,14,0,1,1,4),(5,15,0,1,1,4),(5,16,0,1,1,4),(5,17,0,1,1,4),(5,18,0,1,1,4),(5,19,0,1,1,4),(5,20,0,1,1,4),(5,21,0,1,1,4),(5,22,0,1,1,4),(5,23,0,1,1,4),(5,45,0,1,1,4),(5,46,0,1,1,4),(6,36,0,1,1,4),(6,37,0,1,1,4),(6,38,0,1,1,4),(6,39,0,1,1,4),(6,40,0,1,1,4),(6,41,0,1,1,4),(6,42,0,1,1,4),(6,43,0,1,1,4),(6,44,0,1,1,4),(7,2,0,1,1,4),(7,4,0,1,1,4),(7,5,0,1,1,4),(7,10,0,1,1,4),(7,11,0,1,1,4),(7,13,0,1,1,4),(7,14,0,1,1,4),(7,16,0,1,1,4),(7,19,0,1,1,4),(7,38,0,1,1,4),(7,39,0,1,1,4),(7,40,0,1,1,4),(7,44,0,1,1,4),(8,1997,-339,1,1,4),(8,1951,-332,1,1,4),(8,1919,-316,1,1,4),(8,1833,-300,1,1,4),(8,1716,-293,1,1,4),(8,1636,-277,1,1,4),(8,1476,-261,1,1,4),(8,1460,-245,1,1,4),(8,1444,-229,1,1,4),(8,1412,-213,1,1,4),(8,1364,-197,1,1,4),(8,1348,-181,1,1,4),(8,1268,-165,1,1,4),(8,1220,-149,1,1,4),(8,1178,-139,1,1,4),(8,1130,-123,1,1,4),(8,1044,-107,1,1,4),(8,1002,-91,1,1,4),(8,950,-78,1,1,4),(8,841,-65,1,1,4),(8,828,-52,1,1,4),(8,815,-39,1,1,4),(8,789,-26,1,1,4),(8,763,-13,1,1,4),(8,4,0,1,1,4),(8,5,0,1,1,4),(8,13,0,1,1,4),(8,19,0,1,1,4),(8,38,0,1,1,4),(8,39,0,1,1,4),(8,40,0,1,1,4),(8,44,0,1,1,4),(12,254,9792,0,1,4),(12,238,9808,0,1,4),(12,622,9808,0,1,4),(12,222,9824,0,1,4),(12,430,9824,0,1,4),(12,606,9824,0,1,4),(12,206,9840,0,1,4),(12,414,9840,0,1,4),(12,590,9840,0,1,4),(12,190,9856,0,1,4),(12,398,9856,0,1,4),(12,574,9856,0,1,4),(12,174,9872,0,1,4),(12,382,9872,0,1,4),(12,558,9872,0,1,4),(12,158,9888,0,1,4),(12,366,9888,0,1,4),(12,542,9888,0,1,4),(12,724,9898,0,1,4),(12,142,9904,0,1,4),(12,350,9904,0,1,4),(12,526,9904,0,1,4),(12,718,9904,0,1,4),(12,712,9910,0,1,4),(12,706,9916,0,1,4),(12,126,9920,0,1,4),(12,334,9920,0,1,4),(12,510,9920,0,1,4),(12,700,9922,0,1,4),(12,694,9928,0,1,4),(12,688,9934,0,1,4),(12,110,9936,0,1,4),(12,318,9936,0,1,4),(12,494,9936,0,1,4),(12,682,9940,0,1,4),(12,676,9946,0,1,4),(12,94,9952,0,1,4),(12,302,9952,0,1,4),(12,478,9952,0,1,4),(12,670,9952,0,1,4),(12,78,9968,0,1,4),(12,286,9968,0,1,4),(12,462,9968,0,1,4),(12,654,9968,0,1,4),(12,62,9984,0,1,4),(12,270,9984,0,1,4),(12,446,9984,0,1,4),(12,638,9984,0,1,4),(13,880,9844,0,1,4),(13,1028,9852,0,1,4),(13,867,9857,0,1,4),(13,1015,9865,0,1,4),(13,854,9870,0,1,4),(13,1002,9878,0,1,4),(13,841,9883,0,1,4),(13,989,9891,0,1,4),(13,828,9896,0,1,4),(13,976,9904,0,1,4),(13,815,9909,0,1,4),(13,963,9917,0,1,4),(13,802,9922,0,1,4),(13,950,9930,0,1,4),(13,789,9935,0,1,4),(13,937,9943,0,1,4),(13,776,9948,0,1,4),(13,924,9956,0,1,4),(13,763,9961,0,1,4),(13,911,9969,0,1,4),(13,750,9974,0,1,4),(13,898,9982,0,1,4),(13,737,9987,0,1,4),(13,893,9987,0,1,4),(14,430,-176,1,1,4),(14,414,-160,1,1,4),(14,398,-144,1,1,4),(14,382,-128,1,1,4),(14,366,-112,1,1,4),(14,350,-96,1,1,4),(14,334,-80,1,1,4),(14,318,-64,1,1,4),(14,302,-48,1,1,4),(14,286,-32,1,1,4),(14,270,-16,1,1,4),(15,254,-208,1,1,4),(15,238,-192,1,1,4),(15,222,-176,1,1,4),(15,206,-160,1,1,4),(15,190,-144,1,1,4),(15,174,-128,1,1,4),(15,158,-112,1,1,4),(15,142,-96,1,1,4),(15,126,-80,1,1,4),(15,110,-64,1,1,4),(15,94,-48,1,1,4),(15,78,-32,1,1,4),(15,62,-16,1,1,4),(16,622,-192,1,1,4),(16,606,-176,1,1,4),(16,590,-160,1,1,4),(16,574,-144,1,1,4),(16,558,-128,1,1,4),(16,542,-112,1,1,4),(16,526,-96,1,1,4),(16,510,-80,1,1,4),(16,494,-64,1,1,4),(16,478,-48,1,1,4),(16,462,-32,1,1,4),(16,446,-16,1,1,4),(17,724,-102,1,1,4),(17,718,-96,1,1,4),(17,712,-90,1,1,4),(17,706,-84,1,1,4),(17,700,-78,1,1,4),(17,694,-72,1,1,4),(17,688,-66,1,1,4),(17,682,-60,1,1,4),(17,676,-54,1,1,4),(17,670,-48,1,1,4),(17,654,-32,1,1,4),(17,638,-16,1,1,4),(18,880,-156,1,1,4),(18,867,-143,1,1,4),(18,854,-130,1,1,4),(18,841,-117,1,1,4),(18,828,-104,1,1,4),(18,815,-91,1,1,4),(18,802,-78,1,1,4),(18,789,-65,1,1,4),(18,776,-52,1,1,4),(18,763,-39,1,1,4),(18,750,-26,1,1,4),(18,737,-13,1,1,4),(19,1028,-148,1,1,4),(19,1015,-135,1,1,4),(19,1002,-122,1,1,4),(19,989,-109,1,1,4),(19,976,-96,1,1,4),(19,963,-83,1,1,4),(19,950,-70,1,1,4),(19,937,-57,1,1,4),(19,924,-44,1,1,4),(19,911,-31,1,1,4),(19,898,-18,1,1,4),(19,893,-13,1,1,4),(21,1812,9776,0,1,4),(21,1796,9792,0,1,4),(21,1588,9808,0,1,4),(21,1780,9808,0,1,4),(21,1396,9814,0,1,4),(21,1210,9818,0,1,4),(21,1572,9824,0,1,4),(21,1764,9824,0,1,4),(21,1380,9830,0,1,4),(21,1194,9834,0,1,4),(21,1556,9840,0,1,4),(21,1748,9840,0,1,4),(21,1364,9846,0,1,4),(21,1178,9850,0,1,4),(21,1540,9856,0,1,4),(21,1732,9856,0,1,4),(21,1348,9862,0,1,4),(21,1162,9866,0,1,4),(21,1524,9872,0,1,4),(21,1716,9872,0,1,4),(21,1332,9878,0,1,4),(21,1146,9882,0,1,4),(21,1508,9888,0,1,4),(21,1700,9888,0,1,4),(21,1316,9894,0,1,4),(21,1130,9898,0,1,4),(21,1492,9904,0,1,4),(21,1684,9904,0,1,4),(21,1300,9910,0,1,4),(21,1114,9914,0,1,4),(21,1108,9920,0,1,4),(21,1476,9920,0,1,4),(21,1668,9920,0,1,4),(21,1284,9926,0,1,4),(21,1092,9936,0,1,4),(21,1460,9936,0,1,4),(21,1652,9936,0,1,4),(21,1268,9942,0,1,4),(21,1076,9952,0,1,4),(21,1444,9952,0,1,4),(21,1636,9952,0,1,4),(21,1252,9958,0,1,4),(21,1060,9968,0,1,4),(21,1428,9968,0,1,4),(21,1620,9968,0,1,4),(21,1236,9974,0,1,4),(21,1044,9984,0,1,4),(21,1412,9984,0,1,4),(21,1604,9984,0,1,4),(21,1220,9990,0,1,4),(22,2040,9863,0,1,4),(22,2024,9879,0,1,4),(22,2017,9886,0,1,4),(22,2010,9893,0,1,4),(22,2003,9900,0,1,4),(22,1997,9906,0,1,4),(22,1903,9909,0,1,4),(22,1990,9913,0,1,4),(22,1896,9916,0,1,4),(22,1983,9920,0,1,4),(22,1889,9923,0,1,4),(22,1882,9930,0,1,4),(22,1967,9936,0,1,4),(22,1875,9937,0,1,4),(22,1868,9944,0,1,4),(22,1861,9951,0,1,4),(22,1951,9952,0,1,4),(22,1854,9958,0,1,4),(22,1847,9965,0,1,4),(22,1935,9968,0,1,4),(22,1840,9972,0,1,4),(22,1833,9979,0,1,4),(22,1919,9984,0,1,4),(22,1826,9986,0,1,4),(22,1819,9993,0,1,4),(23,1396,-186,1,1,4),(23,1380,-170,1,1,4),(23,1364,-154,1,1,4),(23,1348,-138,1,1,4),(23,1332,-122,1,1,4),(23,1316,-106,1,1,4),(23,1300,-90,1,1,4),(23,1284,-74,1,1,4),(23,1268,-58,1,1,4),(23,1252,-42,1,1,4),(23,1236,-26,1,1,4),(23,1220,-10,1,1,4),(24,1210,-182,1,1,4),(24,1194,-166,1,1,4),(24,1178,-150,1,1,4),(24,1162,-134,1,1,4),(24,1146,-118,1,1,4),(24,1130,-102,1,1,4),(24,1114,-86,1,1,4),(24,1108,-80,1,1,4),(24,1092,-64,1,1,4),(24,1076,-48,1,1,4),(24,1060,-32,1,1,4),(24,1044,-16,1,1,4),(25,1588,-192,1,1,4),(25,1572,-176,1,1,4),(25,1556,-160,1,1,4),(25,1540,-144,1,1,4),(25,1524,-128,1,1,4),(25,1508,-112,1,1,4),(25,1492,-96,1,1,4),(25,1476,-80,1,1,4),(25,1460,-64,1,1,4),(25,1444,-48,1,1,4),(25,1428,-32,1,1,4),(25,1412,-16,1,1,4),(26,1812,-224,1,1,4),(26,1796,-208,1,1,4),(26,1780,-192,1,1,4),(26,1764,-176,1,1,4),(26,1748,-160,1,1,4),(26,1732,-144,1,1,4),(26,1716,-128,1,1,4),(26,1700,-112,1,1,4),(26,1684,-96,1,1,4),(26,1668,-80,1,1,4),(26,1652,-64,1,1,4),(26,1636,-48,1,1,4),(26,1620,-32,1,1,4),(26,1604,-16,1,1,4),(27,1903,-91,1,1,4),(27,1896,-84,1,1,4),(27,1889,-77,1,1,4),(27,1882,-70,1,1,4),(27,1875,-63,1,1,4),(27,1868,-56,1,1,4),(27,1861,-49,1,1,4),(27,1854,-42,1,1,4),(27,1847,-35,1,1,4),(27,1840,-28,1,1,4),(27,1833,-21,1,1,4),(27,1826,-14,1,1,4),(27,1819,-7,1,1,4),(28,2040,-137,1,1,4),(28,2024,-121,1,1,4),(28,2017,-114,1,1,4),(28,2010,-107,1,1,4),(28,2003,-100,1,1,4),(28,1997,-94,1,1,4),(28,1990,-87,1,1,4),(28,1983,-80,1,1,4),(28,1967,-64,1,1,4),(28,1951,-48,1,1,4),(28,1935,-32,1,1,4),(28,1919,-16,1,1,4),(30,1983,-224,1,1,4),(30,1935,-208,1,1,4),(30,1812,-192,1,1,4),(30,1796,-176,1,1,4),(30,1604,-160,1,1,4),(30,1540,-144,1,1,4),(30,1508,-128,1,1,4),(30,1492,-112,1,1,4),(30,1396,-96,1,1,4),(30,1380,-80,1,1,4),(30,1316,-64,1,1,4),(30,1236,-48,1,1,4),(30,1146,-32,1,1,4),(30,1060,-16,1,1,4),(31,1028,-39,1,1,4),(31,976,-26,1,1,4),(31,963,-13,1,1,4),(32,1903,-247,1,1,4),(32,1896,-240,1,1,4),(32,1889,-233,1,1,4),(32,1882,-226,1,1,4),(32,1875,-219,1,1,4),(32,1868,-212,1,1,4),(32,1861,-205,1,1,4),(32,1854,-198,1,1,4),(32,1847,-191,1,1,4),(32,1840,-184,1,1,4),(32,1833,-177,1,1,4),(32,1826,-170,1,1,4),(32,1819,-163,1,1,4),(32,880,-156,1,1,4),(32,867,-143,1,1,4),(32,854,-130,1,1,4),(32,841,-117,1,1,4),(32,828,-104,1,1,4),(32,815,-91,1,1,4),(32,802,-78,1,1,4),(32,789,-65,1,1,4),(32,776,-52,1,1,4),(32,763,-39,1,1,4),(32,750,-26,1,1,4),(32,737,-13,1,1,4),(33,1588,-192,1,1,4),(33,1572,-176,1,1,4),(33,1556,-160,1,1,4),(33,1540,-144,1,1,4),(33,1524,-128,1,1,4),(33,1508,-112,1,1,4),(33,1492,-96,1,1,4),(33,1476,-80,1,1,4),(33,1460,-64,1,1,4),(33,1444,-48,1,1,4),(33,1428,-32,1,1,4),(33,1412,-16,1,1,4),(34,2040,-279,1,1,4),(34,2024,-263,1,1,4),(34,1903,-256,1,1,4),(34,1854,-249,1,1,4),(34,1847,-242,1,1,4),(34,1812,-235,1,1,4),(34,1748,-219,1,1,4),(34,1716,-203,1,1,4),(34,1540,-187,1,1,4),(34,1476,-171,1,1,4),(34,1332,-155,1,1,4),(34,1316,-139,1,1,4),(34,1220,-123,1,1,4),(34,1194,-113,1,1,4),(34,1130,-97,1,1,4),(34,1044,-81,1,1,4),(34,963,-65,1,1,4),(34,893,-52,1,1,4),(34,867,-39,1,1,4),(34,854,-26,1,1,4),(34,841,-13,1,1,4),(35,2003,-310,1,1,4),(35,1951,-304,1,1,4),(35,1896,-288,1,1,4),(35,1861,-281,1,1,4),(35,1826,-274,1,1,4),(35,1819,-267,1,1,4),(35,1796,-260,1,1,4),(35,1780,-244,1,1,4),(35,1732,-228,1,1,4),(35,1636,-212,1,1,4),(35,1556,-196,1,1,4),(35,1524,-180,1,1,4),(35,1428,-164,1,1,4),(35,1396,-148,1,1,4),(35,1380,-132,1,1,4),(35,1348,-116,1,1,4),(35,1268,-100,1,1,4),(35,1210,-84,1,1,4),(35,1146,-68,1,1,4),(35,989,-52,1,1,4),(35,937,-39,1,1,4),(35,911,-26,1,1,4),(35,750,-13,1,1,4),(36,2017,-247,1,1,4),(36,1919,-240,1,1,4),(36,1882,-224,1,1,4),(36,1684,-217,1,1,4),(36,1604,-201,1,1,4),(36,1508,-185,1,1,4),(36,1460,-169,1,1,4),(36,1444,-153,1,1,4),(36,1162,-137,1,1,4),(36,802,-121,1,1,4),(36,718,-108,1,1,4),(36,694,-102,1,1,4),(36,462,-96,1,1,4),(36,398,-80,1,1,4),(36,302,-64,1,1,4),(36,110,-48,1,1,4),(36,94,-32,1,1,4),(36,62,-16,1,1,4);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_store1_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_category_product_index_tmp`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_category_product_index_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_category_product_index_tmp` (
  `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `[[DBPREFIX]]CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Indexer temporary table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_category_product_index_tmp`
--

LOCK TABLES `[[dbprefix]]catalog_category_product_index_tmp` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_category_product_index_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_compare_item`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_compare_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_compare_item` (
  `catalog_compare_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare Item ID',
  `visitor_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Visitor ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',
  `list_id` int unsigned DEFAULT NULL COMMENT 'List ID',
  PRIMARY KEY (`catalog_compare_item_id`),
  KEY `[[DBPREFIX]]CAT_CMP_ITEM_LIST_ID_[[DBPREFIX]]CAT_CMP_LIST_LIST_ID` (`list_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_ITEM_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_ITEM_LIST_ID_[[DBPREFIX]]CAT_CMP_LIST_LIST_ID` FOREIGN KEY (`list_id`) REFERENCES `[[dbprefix]]catalog_compare_list` (`list_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_ITEM_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_COMPARE_ITEM_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Compare Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_compare_item`
--

LOCK TABLES `[[dbprefix]]catalog_compare_item` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_compare_list`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_compare_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_compare_list` (
  `list_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare List ID',
  `list_id_mask` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`list_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_COMPARE_LIST_CUSTOMER_ID` (`customer_id`),
  KEY `[[DBPREFIX]]CATALOG_COMPARE_LIST_LIST_ID_MASK` (`list_id_mask`),
  CONSTRAINT `[[DBPREFIX]]CAT_CMP_LIST_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Compare List with hash Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_compare_list`
--

LOCK TABLES `[[dbprefix]]catalog_compare_list` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_list` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_compare_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_eav_attribute`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_eav_attribute` (
  `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID',
  `frontend_input_renderer` varchar(255) DEFAULT NULL COMMENT 'Frontend Input Renderer',
  `is_global` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Global',
  `is_visible` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible',
  `is_searchable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable',
  `is_filterable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable',
  `is_comparable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Comparable',
  `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `is_html_allowed_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is HTML Allowed On Front',
  `is_used_for_price_rules` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Price Rules',
  `is_filterable_in_search` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable In Search',
  `used_in_product_listing` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used In Product Listing',
  `used_for_sort_by` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Sorting',
  `apply_to` varchar(255) DEFAULT NULL COMMENT 'Apply To',
  `is_visible_in_advanced_search` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible In Advanced Search',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_wysiwyg_enabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is WYSIWYG Enabled',
  `is_used_for_promo_rules` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Promo Rules',
  `is_required_in_admin_store` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Required In Admin Store',
  `is_used_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid',
  `search_weight` float NOT NULL DEFAULT '1' COMMENT 'Search Weight',
  `is_pagebuilder_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is PageBuilder Enabled',
  `additional_data` text COMMENT 'Additional swatch attributes data',
  PRIMARY KEY (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  KEY `[[DBPREFIX]]CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`),
  CONSTRAINT `[[DBPREFIX]]CAT_EAV_ATTR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog EAV Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_eav_attribute`
--

LOCK TABLES `[[dbprefix]]catalog_eav_attribute` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_eav_attribute` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_eav_attribute` VALUES (45,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(46,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(47,NULL,0,1,0,0,0,0,1,0,0,0,0,NULL,0,0,1,0,0,0,0,0,1,0,NULL),(48,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(49,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(50,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(51,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(52,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(53,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(54,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(55,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(56,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(57,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(58,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(59,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(60,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(61,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(62,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(63,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(64,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(65,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(66,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(67,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\Available',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(68,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\DefaultSortby',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(69,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(70,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(71,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(72,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(73,NULL,0,1,1,0,0,0,0,0,0,1,1,NULL,1,0,0,0,0,0,0,0,5,0,NULL),(74,NULL,1,1,1,0,1,0,0,0,0,0,0,NULL,1,0,0,1,0,0,0,0,6,0,NULL),(75,NULL,0,1,1,0,1,0,1,0,0,0,0,NULL,1,0,1,0,0,0,0,0,1,1,NULL),(76,NULL,0,1,1,0,1,0,1,0,0,1,0,NULL,1,0,1,0,0,1,0,0,1,0,NULL),(77,NULL,1,1,1,1,0,0,0,0,0,1,1,'simple,virtual,bundle,downloadable,configurable',1,0,0,0,0,0,0,0,1,0,NULL),(78,NULL,1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(79,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,0,NULL),(80,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,0,NULL),(81,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable',0,0,0,0,0,1,0,1,1,0,NULL),(82,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight',1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(83,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,configurable',1,0,0,0,0,1,0,1,1,0,NULL),(84,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(85,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(86,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(87,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(88,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(89,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(90,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(91,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(92,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(93,NULL,1,1,0,1,0,0,1,0,0,1,0,'simple,virtual,configurable',0,0,0,1,0,1,0,1,1,0,'{\"swatch_input_type\":\"visual\",\"update_product_preview_image\":1,\"use_product_image_for_swatch\":0}'),(94,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(95,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(96,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(97,'Magento\\Framework\\Data\\Form\\Element\\Hidden',2,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,1,0,0,0,1,0,NULL),(98,NULL,0,0,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,0,0,0,1,0,NULL),(99,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,1,0,0,0,1,0,NULL),(100,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(101,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(102,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(103,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(104,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(105,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Category',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(106,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(107,NULL,1,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(108,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(109,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(110,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(111,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(112,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(113,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(114,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable,grouped',0,0,0,0,0,1,0,1,1,0,NULL),(115,'Magento\\CatalogInventory\\Block\\Adminhtml\\Form\\Field\\Stock',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(116,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(117,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(118,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(119,NULL,0,1,1,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(120,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(121,NULL,0,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(122,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(123,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type',1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(124,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price',2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,0,0,0,1,0,NULL),(125,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(126,NULL,1,1,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(127,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(128,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(129,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(130,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(131,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(132,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(133,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(134,NULL,2,1,1,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(135,NULL,1,1,0,1,1,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(136,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(137,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(138,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(139,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(140,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(141,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(142,NULL,1,1,0,1,0,0,1,0,0,1,0,NULL,0,0,0,1,0,0,0,0,1,0,'{\"swatch_input_type\":\"text\",\"update_product_preview_image\":1,\"use_product_image_for_swatch\":0}'),(143,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(144,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(145,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(146,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(147,NULL,1,1,0,1,0,0,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(148,'Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(149,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(150,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(151,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(152,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(153,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(154,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(155,NULL,1,1,0,1,0,1,1,0,0,0,0,NULL,0,0,0,1,0,0,0,0,1,0,NULL),(156,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_option`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_option` (
  `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `parent_id` int unsigned NOT NULL COMMENT 'Parent ID',
  `required` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Required',
  `position` int unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  `type` varchar(255) DEFAULT NULL COMMENT 'Type',
  PRIMARY KEY (`option_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_OPT_PARENT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_option`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_option` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_bundle_option` VALUES (1,45,1,1,'radio'),(2,45,1,2,'radio'),(3,45,1,3,'radio'),(4,45,1,4,'radio');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_option_value`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_option_value` (
  `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `option_id` int unsigned NOT NULL COMMENT 'Option ID',
  `store_id` smallint unsigned NOT NULL COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_BNDL_OPT_VAL_OPT_ID_PARENT_PRD_ID_STORE_ID` (`option_id`,`parent_product_id`,`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_OPT_VAL_OPT_ID_[[DBPREFIX]]CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_option_value`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_option_value` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option_value` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_bundle_option_value` VALUES (1,1,0,'Sprite Stasis Ball',45),(2,2,0,'Sprite Foam Yoga Brick',45),(3,3,0,'Sprite Yoga Strap',45),(4,4,0,'Sprite Foam Roller',45);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_price_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_price_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_price_index` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID',
  `min_price` decimal(20,6) NOT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) NOT NULL COMMENT 'Max Price',
  PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `FK_8DB5B8954D6EEC1C9A89C61D561C2D39` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_PRICE_IDX_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Price Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_price_index`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_price_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_price_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_price_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_selection`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_selection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_selection` (
  `selection_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Selection ID',
  `option_id` int unsigned NOT NULL COMMENT 'Option ID',
  `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID',
  `product_id` int unsigned NOT NULL COMMENT 'Product ID',
  `position` int unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_default` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default',
  `selection_price_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Selection Price Value',
  `selection_qty` decimal(12,4) DEFAULT NULL COMMENT 'Selection Qty',
  `selection_can_change_qty` smallint NOT NULL DEFAULT '0' COMMENT 'Selection Can Change Qty',
  PRIMARY KEY (`selection_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_SELECTION_OPT_ID_[[DBPREFIX]]CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `[[dbprefix]]catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_SELECTION_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Selection';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_selection`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_selection` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_bundle_selection` VALUES (1,1,45,26,1,1,0,0.0000,1.0000,1),(2,1,45,29,2,0,0,0.0000,1.0000,1),(3,1,45,32,3,0,0,0.0000,1.0000,1),(4,2,45,21,1,1,0,0.0000,1.0000,1),(5,3,45,33,1,1,0,0.0000,1.0000,1),(6,3,45,34,2,0,0,0.0000,1.0000,1),(7,3,45,35,3,0,0,0.0000,1.0000,1),(8,4,45,22,1,1,0,0.0000,1.0000,1);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_selection_price`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_selection_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_selection_price` (
  `selection_id` int unsigned NOT NULL COMMENT 'Selection ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `selection_price_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Selection Price Value',
  `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_48A0D40A08C88AC5E40947636D598C57` FOREIGN KEY (`selection_id`) REFERENCES `[[dbprefix]]catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Selection Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_selection_price`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_selection_price` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_selection_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_bundle_stock_index`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_bundle_stock_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_bundle_stock_index` (
  `entity_id` int unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID',
  `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `stock_status` smallint DEFAULT '0' COMMENT 'Stock Status',
  PRIMARY KEY (`entity_id`,`website_id`,`stock_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Stock Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_bundle_stock_index`
--

LOCK TABLES `[[dbprefix]]catalog_product_bundle_stock_index` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_stock_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_bundle_stock_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity` (
  `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `type_id` varchar(32) NOT NULL DEFAULT 'simple' COMMENT 'Type ID',
  `sku` varchar(64) NOT NULL COMMENT 'SKU',
  `has_options` smallint NOT NULL DEFAULT '0' COMMENT 'Has Options',
  `required_options` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Required Options',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_SKU` (`sku`)
) ENGINE=InnoDB AUTO_INCREMENT=2041 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity` VALUES (1,15,'simple','24-MB01',0,0,'[[regtime]]','[[regtime]]'),(2,15,'simple','24-MB04',0,0,'[[regtime]]','[[regtime]]'),(3,15,'simple','24-MB03',0,0,'[[regtime]]','[[regtime]]'),(4,15,'simple','24-MB05',0,0,'[[regtime]]','[[regtime]]'),(5,15,'simple','24-MB06',0,0,'[[regtime]]','[[regtime]]'),(6,15,'simple','24-MB02',0,0,'[[regtime]]','[[regtime]]'),(7,15,'simple','24-UB02',0,0,'[[regtime]]','[[regtime]]'),(8,15,'simple','24-WB01',0,0,'[[regtime]]','[[regtime]]'),(9,15,'simple','24-WB02',0,0,'[[regtime]]','[[regtime]]'),(10,15,'simple','24-WB05',0,0,'[[regtime]]','[[regtime]]'),(11,15,'simple','24-WB06',0,0,'[[regtime]]','[[regtime]]'),(12,15,'simple','24-WB03',0,0,'[[regtime]]','[[regtime]]'),(13,15,'simple','24-WB07',0,0,'[[regtime]]','[[regtime]]'),(14,15,'simple','24-WB04',0,0,'[[regtime]]','[[regtime]]'),(15,11,'simple','24-UG06',0,0,'[[regtime]]','[[regtime]]'),(16,11,'simple','24-UG07',0,0,'[[regtime]]','[[regtime]]'),(17,11,'simple','24-UG04',0,0,'[[regtime]]','[[regtime]]'),(18,11,'simple','24-UG02',0,0,'[[regtime]]','[[regtime]]'),(19,11,'simple','24-UG05',0,0,'[[regtime]]','[[regtime]]'),(20,11,'simple','24-UG01',0,0,'[[regtime]]','[[regtime]]'),(21,11,'simple','24-WG084',0,0,'[[regtime]]','[[regtime]]'),(22,11,'simple','24-WG088',0,0,'[[regtime]]','[[regtime]]'),(23,11,'simple','24-UG03',0,0,'[[regtime]]','[[regtime]]'),(24,12,'simple','24-WG081-gray',0,0,'[[regtime]]','[[regtime]]'),(25,12,'simple','24-WG081-pink',0,0,'[[regtime]]','[[regtime]]'),(26,12,'simple','24-WG081-blue',0,0,'[[regtime]]','[[regtime]]'),(27,12,'simple','24-WG082-gray',0,0,'[[regtime]]','[[regtime]]'),(28,12,'simple','24-WG082-pink',0,0,'[[regtime]]','[[regtime]]'),(29,12,'simple','24-WG082-blue',0,0,'[[regtime]]','[[regtime]]'),(30,12,'simple','24-WG083-gray',0,0,'[[regtime]]','[[regtime]]'),(31,12,'simple','24-WG083-pink',0,0,'[[regtime]]','[[regtime]]'),(32,12,'simple','24-WG083-blue',0,0,'[[regtime]]','[[regtime]]'),(33,13,'simple','24-WG085',0,0,'[[regtime]]','[[regtime]]'),(34,13,'simple','24-WG086',0,0,'[[regtime]]','[[regtime]]'),(35,13,'simple','24-WG087',0,0,'[[regtime]]','[[regtime]]'),(36,11,'simple','24-MG04',0,0,'[[regtime]]','[[regtime]]'),(37,11,'simple','24-MG01',0,0,'[[regtime]]','[[regtime]]'),(38,11,'simple','24-MG03',0,0,'[[regtime]]','[[regtime]]'),(39,11,'simple','24-MG05',0,0,'[[regtime]]','[[regtime]]'),(40,11,'simple','24-MG02',0,0,'[[regtime]]','[[regtime]]'),(41,11,'simple','24-WG09',0,0,'[[regtime]]','[[regtime]]'),(42,11,'simple','24-WG01',0,0,'[[regtime]]','[[regtime]]'),(43,11,'simple','24-WG03',0,0,'[[regtime]]','[[regtime]]'),(44,11,'simple','24-WG02',0,0,'[[regtime]]','[[regtime]]'),(45,11,'bundle','24-WG080',1,1,'[[regtime]]','[[regtime]]'),(46,11,'grouped','24-WG085_Group',0,0,'[[regtime]]','[[regtime]]'),(47,9,'simple','MH01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(48,9,'simple','MH01-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(49,9,'simple','MH01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(50,9,'simple','MH01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(51,9,'simple','MH01-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(52,9,'simple','MH01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(53,9,'simple','MH01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(54,9,'simple','MH01-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(55,9,'simple','MH01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(56,9,'simple','MH01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(57,9,'simple','MH01-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(58,9,'simple','MH01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(59,9,'simple','MH01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(60,9,'simple','MH01-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(61,9,'simple','MH01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(62,9,'configurable','MH01',1,0,'[[regtime]]','[[regtime]]'),(63,9,'simple','MH02-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(64,9,'simple','MH02-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(65,9,'simple','MH02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(66,9,'simple','MH02-S-Black',0,0,'[[regtime]]','[[regtime]]'),(67,9,'simple','MH02-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(68,9,'simple','MH02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(69,9,'simple','MH02-M-Black',0,0,'[[regtime]]','[[regtime]]'),(70,9,'simple','MH02-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(71,9,'simple','MH02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(72,9,'simple','MH02-L-Black',0,0,'[[regtime]]','[[regtime]]'),(73,9,'simple','MH02-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(74,9,'simple','MH02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(75,9,'simple','MH02-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(76,9,'simple','MH02-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(77,9,'simple','MH02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(78,9,'configurable','MH02',1,0,'[[regtime]]','[[regtime]]'),(79,9,'simple','MH03-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(80,9,'simple','MH03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(81,9,'simple','MH03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(82,9,'simple','MH03-S-Black',0,0,'[[regtime]]','[[regtime]]'),(83,9,'simple','MH03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(84,9,'simple','MH03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(85,9,'simple','MH03-M-Black',0,0,'[[regtime]]','[[regtime]]'),(86,9,'simple','MH03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(87,9,'simple','MH03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(88,9,'simple','MH03-L-Black',0,0,'[[regtime]]','[[regtime]]'),(89,9,'simple','MH03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(90,9,'simple','MH03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(91,9,'simple','MH03-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(92,9,'simple','MH03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(93,9,'simple','MH03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(94,9,'configurable','MH03',1,0,'[[regtime]]','[[regtime]]'),(95,9,'simple','MH04-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(96,9,'simple','MH04-XS-White',0,0,'[[regtime]]','[[regtime]]'),(97,9,'simple','MH04-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(98,9,'simple','MH04-S-Green',0,0,'[[regtime]]','[[regtime]]'),(99,9,'simple','MH04-S-White',0,0,'[[regtime]]','[[regtime]]'),(100,9,'simple','MH04-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(101,9,'simple','MH04-M-Green',0,0,'[[regtime]]','[[regtime]]'),(102,9,'simple','MH04-M-White',0,0,'[[regtime]]','[[regtime]]'),(103,9,'simple','MH04-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(104,9,'simple','MH04-L-Green',0,0,'[[regtime]]','[[regtime]]'),(105,9,'simple','MH04-L-White',0,0,'[[regtime]]','[[regtime]]'),(106,9,'simple','MH04-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(107,9,'simple','MH04-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(108,9,'simple','MH04-XL-White',0,0,'[[regtime]]','[[regtime]]'),(109,9,'simple','MH04-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(110,9,'configurable','MH04',1,0,'[[regtime]]','[[regtime]]'),(111,9,'simple','MH05-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(112,9,'simple','MH05-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(113,9,'simple','MH05-XS-White',0,0,'[[regtime]]','[[regtime]]'),(114,9,'simple','MH05-S-Green',0,0,'[[regtime]]','[[regtime]]'),(115,9,'simple','MH05-S-Red',0,0,'[[regtime]]','[[regtime]]'),(116,9,'simple','MH05-S-White',0,0,'[[regtime]]','[[regtime]]'),(117,9,'simple','MH05-M-Green',0,0,'[[regtime]]','[[regtime]]'),(118,9,'simple','MH05-M-Red',0,0,'[[regtime]]','[[regtime]]'),(119,9,'simple','MH05-M-White',0,0,'[[regtime]]','[[regtime]]'),(120,9,'simple','MH05-L-Green',0,0,'[[regtime]]','[[regtime]]'),(121,9,'simple','MH05-L-Red',0,0,'[[regtime]]','[[regtime]]'),(122,9,'simple','MH05-L-White',0,0,'[[regtime]]','[[regtime]]'),(123,9,'simple','MH05-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(124,9,'simple','MH05-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(125,9,'simple','MH05-XL-White',0,0,'[[regtime]]','[[regtime]]'),(126,9,'configurable','MH05',1,0,'[[regtime]]','[[regtime]]'),(127,9,'simple','MH06-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(128,9,'simple','MH06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(129,9,'simple','MH06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(130,9,'simple','MH06-S-Black',0,0,'[[regtime]]','[[regtime]]'),(131,9,'simple','MH06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(132,9,'simple','MH06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(133,9,'simple','MH06-M-Black',0,0,'[[regtime]]','[[regtime]]'),(134,9,'simple','MH06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(135,9,'simple','MH06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(136,9,'simple','MH06-L-Black',0,0,'[[regtime]]','[[regtime]]'),(137,9,'simple','MH06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(138,9,'simple','MH06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(139,9,'simple','MH06-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(140,9,'simple','MH06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(141,9,'simple','MH06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(142,9,'configurable','MH06',1,0,'[[regtime]]','[[regtime]]'),(143,9,'simple','MH07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(144,9,'simple','MH07-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(145,9,'simple','MH07-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(146,9,'simple','MH07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(147,9,'simple','MH07-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(148,9,'simple','MH07-S-Green',0,0,'[[regtime]]','[[regtime]]'),(149,9,'simple','MH07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(150,9,'simple','MH07-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(151,9,'simple','MH07-M-Green',0,0,'[[regtime]]','[[regtime]]'),(152,9,'simple','MH07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(153,9,'simple','MH07-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(154,9,'simple','MH07-L-Green',0,0,'[[regtime]]','[[regtime]]'),(155,9,'simple','MH07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(156,9,'simple','MH07-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(157,9,'simple','MH07-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(158,9,'configurable','MH07',1,0,'[[regtime]]','[[regtime]]'),(159,9,'simple','MH08-XS-Brown',0,0,'[[regtime]]','[[regtime]]'),(160,9,'simple','MH08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(161,9,'simple','MH08-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(162,9,'simple','MH08-S-Brown',0,0,'[[regtime]]','[[regtime]]'),(163,9,'simple','MH08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(164,9,'simple','MH08-S-Red',0,0,'[[regtime]]','[[regtime]]'),(165,9,'simple','MH08-M-Brown',0,0,'[[regtime]]','[[regtime]]'),(166,9,'simple','MH08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(167,9,'simple','MH08-M-Red',0,0,'[[regtime]]','[[regtime]]'),(168,9,'simple','MH08-L-Brown',0,0,'[[regtime]]','[[regtime]]'),(169,9,'simple','MH08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(170,9,'simple','MH08-L-Red',0,0,'[[regtime]]','[[regtime]]'),(171,9,'simple','MH08-XL-Brown',0,0,'[[regtime]]','[[regtime]]'),(172,9,'simple','MH08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(173,9,'simple','MH08-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(174,9,'configurable','MH08',1,0,'[[regtime]]','[[regtime]]'),(175,9,'simple','MH09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(176,9,'simple','MH09-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(177,9,'simple','MH09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(178,9,'simple','MH09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(179,9,'simple','MH09-S-Green',0,0,'[[regtime]]','[[regtime]]'),(180,9,'simple','MH09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(181,9,'simple','MH09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(182,9,'simple','MH09-M-Green',0,0,'[[regtime]]','[[regtime]]'),(183,9,'simple','MH09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(184,9,'simple','MH09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(185,9,'simple','MH09-L-Green',0,0,'[[regtime]]','[[regtime]]'),(186,9,'simple','MH09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(187,9,'simple','MH09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(188,9,'simple','MH09-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(189,9,'simple','MH09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(190,9,'configurable','MH09',1,0,'[[regtime]]','[[regtime]]'),(191,9,'simple','MH10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(192,9,'simple','MH10-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(193,9,'simple','MH10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(194,9,'simple','MH10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(195,9,'simple','MH10-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(196,9,'simple','MH10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(197,9,'simple','MH10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(198,9,'simple','MH10-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(199,9,'simple','MH10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(200,9,'simple','MH10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(201,9,'simple','MH10-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(202,9,'simple','MH10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(203,9,'simple','MH10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(204,9,'simple','MH10-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(205,9,'simple','MH10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(206,9,'configurable','MH10',1,0,'[[regtime]]','[[regtime]]'),(207,9,'simple','MH11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(208,9,'simple','MH11-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(209,9,'simple','MH11-XS-White',0,0,'[[regtime]]','[[regtime]]'),(210,9,'simple','MH11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(211,9,'simple','MH11-S-Red',0,0,'[[regtime]]','[[regtime]]'),(212,9,'simple','MH11-S-White',0,0,'[[regtime]]','[[regtime]]'),(213,9,'simple','MH11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(214,9,'simple','MH11-M-Red',0,0,'[[regtime]]','[[regtime]]'),(215,9,'simple','MH11-M-White',0,0,'[[regtime]]','[[regtime]]'),(216,9,'simple','MH11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(217,9,'simple','MH11-L-Red',0,0,'[[regtime]]','[[regtime]]'),(218,9,'simple','MH11-L-White',0,0,'[[regtime]]','[[regtime]]'),(219,9,'simple','MH11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(220,9,'simple','MH11-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(221,9,'simple','MH11-XL-White',0,0,'[[regtime]]','[[regtime]]'),(222,9,'configurable','MH11',1,0,'[[regtime]]','[[regtime]]'),(223,9,'simple','MH12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(224,9,'simple','MH12-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(225,9,'simple','MH12-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(226,9,'simple','MH12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(227,9,'simple','MH12-S-Green',0,0,'[[regtime]]','[[regtime]]'),(228,9,'simple','MH12-S-Red',0,0,'[[regtime]]','[[regtime]]'),(229,9,'simple','MH12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(230,9,'simple','MH12-M-Green',0,0,'[[regtime]]','[[regtime]]'),(231,9,'simple','MH12-M-Red',0,0,'[[regtime]]','[[regtime]]'),(232,9,'simple','MH12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(233,9,'simple','MH12-L-Green',0,0,'[[regtime]]','[[regtime]]'),(234,9,'simple','MH12-L-Red',0,0,'[[regtime]]','[[regtime]]'),(235,9,'simple','MH12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(236,9,'simple','MH12-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(237,9,'simple','MH12-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(238,9,'configurable','MH12',1,0,'[[regtime]]','[[regtime]]'),(239,9,'simple','MH13-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(240,9,'simple','MH13-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(241,9,'simple','MH13-XS-Lavender',0,0,'[[regtime]]','[[regtime]]'),(242,9,'simple','MH13-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(243,9,'simple','MH13-S-Green',0,0,'[[regtime]]','[[regtime]]'),(244,9,'simple','MH13-S-Lavender',0,0,'[[regtime]]','[[regtime]]'),(245,9,'simple','MH13-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(246,9,'simple','MH13-M-Green',0,0,'[[regtime]]','[[regtime]]'),(247,9,'simple','MH13-M-Lavender',0,0,'[[regtime]]','[[regtime]]'),(248,9,'simple','MH13-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(249,9,'simple','MH13-L-Green',0,0,'[[regtime]]','[[regtime]]'),(250,9,'simple','MH13-L-Lavender',0,0,'[[regtime]]','[[regtime]]'),(251,9,'simple','MH13-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(252,9,'simple','MH13-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(253,9,'simple','MH13-XL-Lavender',0,0,'[[regtime]]','[[regtime]]'),(254,9,'configurable','MH13',1,0,'[[regtime]]','[[regtime]]'),(255,9,'simple','MJ01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(256,9,'simple','MJ01-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(257,9,'simple','MJ01-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(258,9,'simple','MJ01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(259,9,'simple','MJ01-S-Red',0,0,'[[regtime]]','[[regtime]]'),(260,9,'simple','MJ01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(261,9,'simple','MJ01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(262,9,'simple','MJ01-M-Red',0,0,'[[regtime]]','[[regtime]]'),(263,9,'simple','MJ01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(264,9,'simple','MJ01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(265,9,'simple','MJ01-L-Red',0,0,'[[regtime]]','[[regtime]]'),(266,9,'simple','MJ01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(267,9,'simple','MJ01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(268,9,'simple','MJ01-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(269,9,'simple','MJ01-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(270,9,'configurable','MJ01',1,0,'[[regtime]]','[[regtime]]'),(271,9,'simple','MJ02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(272,9,'simple','MJ02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(273,9,'simple','MJ02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(274,9,'simple','MJ02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(275,9,'simple','MJ02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(276,9,'simple','MJ02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(277,9,'simple','MJ02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(278,9,'simple','MJ02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(279,9,'simple','MJ02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(280,9,'simple','MJ02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(281,9,'simple','MJ02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(282,9,'simple','MJ02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(283,9,'simple','MJ02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(284,9,'simple','MJ02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(285,9,'simple','MJ02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(286,9,'configurable','MJ02',1,0,'[[regtime]]','[[regtime]]'),(287,9,'simple','MJ04-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(288,9,'simple','MJ04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(289,9,'simple','MJ04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(290,9,'simple','MJ04-S-Black',0,0,'[[regtime]]','[[regtime]]'),(291,9,'simple','MJ04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(292,9,'simple','MJ04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(293,9,'simple','MJ04-M-Black',0,0,'[[regtime]]','[[regtime]]'),(294,9,'simple','MJ04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(295,9,'simple','MJ04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(296,9,'simple','MJ04-L-Black',0,0,'[[regtime]]','[[regtime]]'),(297,9,'simple','MJ04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(298,9,'simple','MJ04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(299,9,'simple','MJ04-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(300,9,'simple','MJ04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(301,9,'simple','MJ04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(302,9,'configurable','MJ04',1,0,'[[regtime]]','[[regtime]]'),(303,9,'simple','MJ07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(304,9,'simple','MJ07-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(305,9,'simple','MJ07-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(306,9,'simple','MJ07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(307,9,'simple','MJ07-S-Red',0,0,'[[regtime]]','[[regtime]]'),(308,9,'simple','MJ07-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(309,9,'simple','MJ07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(310,9,'simple','MJ07-M-Red',0,0,'[[regtime]]','[[regtime]]'),(311,9,'simple','MJ07-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(312,9,'simple','MJ07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(313,9,'simple','MJ07-L-Red',0,0,'[[regtime]]','[[regtime]]'),(314,9,'simple','MJ07-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(315,9,'simple','MJ07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(316,9,'simple','MJ07-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(317,9,'simple','MJ07-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(318,9,'configurable','MJ07',1,0,'[[regtime]]','[[regtime]]'),(319,9,'simple','MJ08-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(320,9,'simple','MJ08-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(321,9,'simple','MJ08-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(322,9,'simple','MJ08-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(323,9,'simple','MJ08-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(324,9,'simple','MJ08-S-Green',0,0,'[[regtime]]','[[regtime]]'),(325,9,'simple','MJ08-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(326,9,'simple','MJ08-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(327,9,'simple','MJ08-M-Green',0,0,'[[regtime]]','[[regtime]]'),(328,9,'simple','MJ08-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(329,9,'simple','MJ08-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(330,9,'simple','MJ08-L-Green',0,0,'[[regtime]]','[[regtime]]'),(331,9,'simple','MJ08-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(332,9,'simple','MJ08-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(333,9,'simple','MJ08-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(334,9,'configurable','MJ08',1,0,'[[regtime]]','[[regtime]]'),(335,9,'simple','MJ09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(336,9,'simple','MJ09-XS-White',0,0,'[[regtime]]','[[regtime]]'),(337,9,'simple','MJ09-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(338,9,'simple','MJ09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(339,9,'simple','MJ09-S-White',0,0,'[[regtime]]','[[regtime]]'),(340,9,'simple','MJ09-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(341,9,'simple','MJ09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(342,9,'simple','MJ09-M-White',0,0,'[[regtime]]','[[regtime]]'),(343,9,'simple','MJ09-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(344,9,'simple','MJ09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(345,9,'simple','MJ09-L-White',0,0,'[[regtime]]','[[regtime]]'),(346,9,'simple','MJ09-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(347,9,'simple','MJ09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(348,9,'simple','MJ09-XL-White',0,0,'[[regtime]]','[[regtime]]'),(349,9,'simple','MJ09-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(350,9,'configurable','MJ09',1,0,'[[regtime]]','[[regtime]]'),(351,9,'simple','MJ10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(352,9,'simple','MJ10-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(353,9,'simple','MJ10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(354,9,'simple','MJ10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(355,9,'simple','MJ10-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(356,9,'simple','MJ10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(357,9,'simple','MJ10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(358,9,'simple','MJ10-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(359,9,'simple','MJ10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(360,9,'simple','MJ10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(361,9,'simple','MJ10-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(362,9,'simple','MJ10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(363,9,'simple','MJ10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(364,9,'simple','MJ10-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(365,9,'simple','MJ10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(366,9,'configurable','MJ10',1,0,'[[regtime]]','[[regtime]]'),(367,9,'simple','MJ11-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(368,9,'simple','MJ11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(369,9,'simple','MJ11-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(370,9,'simple','MJ11-S-Black',0,0,'[[regtime]]','[[regtime]]'),(371,9,'simple','MJ11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(372,9,'simple','MJ11-S-Red',0,0,'[[regtime]]','[[regtime]]'),(373,9,'simple','MJ11-M-Black',0,0,'[[regtime]]','[[regtime]]'),(374,9,'simple','MJ11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(375,9,'simple','MJ11-M-Red',0,0,'[[regtime]]','[[regtime]]'),(376,9,'simple','MJ11-L-Black',0,0,'[[regtime]]','[[regtime]]'),(377,9,'simple','MJ11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(378,9,'simple','MJ11-L-Red',0,0,'[[regtime]]','[[regtime]]'),(379,9,'simple','MJ11-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(380,9,'simple','MJ11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(381,9,'simple','MJ11-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(382,9,'configurable','MJ11',1,0,'[[regtime]]','[[regtime]]'),(383,9,'simple','MJ06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(384,9,'simple','MJ06-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(385,9,'simple','MJ06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(386,9,'simple','MJ06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(387,9,'simple','MJ06-S-Green',0,0,'[[regtime]]','[[regtime]]'),(388,9,'simple','MJ06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(389,9,'simple','MJ06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(390,9,'simple','MJ06-M-Green',0,0,'[[regtime]]','[[regtime]]'),(391,9,'simple','MJ06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(392,9,'simple','MJ06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(393,9,'simple','MJ06-L-Green',0,0,'[[regtime]]','[[regtime]]'),(394,9,'simple','MJ06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(395,9,'simple','MJ06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(396,9,'simple','MJ06-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(397,9,'simple','MJ06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(398,9,'configurable','MJ06',1,0,'[[regtime]]','[[regtime]]'),(399,9,'simple','MJ03-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(400,9,'simple','MJ03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(401,9,'simple','MJ03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(402,9,'simple','MJ03-S-Black',0,0,'[[regtime]]','[[regtime]]'),(403,9,'simple','MJ03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(404,9,'simple','MJ03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(405,9,'simple','MJ03-M-Black',0,0,'[[regtime]]','[[regtime]]'),(406,9,'simple','MJ03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(407,9,'simple','MJ03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(408,9,'simple','MJ03-L-Black',0,0,'[[regtime]]','[[regtime]]'),(409,9,'simple','MJ03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(410,9,'simple','MJ03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(411,9,'simple','MJ03-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(412,9,'simple','MJ03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(413,9,'simple','MJ03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(414,9,'configurable','MJ03',1,0,'[[regtime]]','[[regtime]]'),(415,9,'simple','MJ12-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(416,9,'simple','MJ12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(417,9,'simple','MJ12-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(418,9,'simple','MJ12-S-Black',0,0,'[[regtime]]','[[regtime]]'),(419,9,'simple','MJ12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(420,9,'simple','MJ12-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(421,9,'simple','MJ12-M-Black',0,0,'[[regtime]]','[[regtime]]'),(422,9,'simple','MJ12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(423,9,'simple','MJ12-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(424,9,'simple','MJ12-L-Black',0,0,'[[regtime]]','[[regtime]]'),(425,9,'simple','MJ12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(426,9,'simple','MJ12-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(427,9,'simple','MJ12-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(428,9,'simple','MJ12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(429,9,'simple','MJ12-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(430,9,'configurable','MJ12',1,0,'[[regtime]]','[[regtime]]'),(431,9,'simple','MS04-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(432,9,'simple','MS04-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(433,9,'simple','MS04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(434,9,'simple','MS04-S-Black',0,0,'[[regtime]]','[[regtime]]'),(435,9,'simple','MS04-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(436,9,'simple','MS04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(437,9,'simple','MS04-M-Black',0,0,'[[regtime]]','[[regtime]]'),(438,9,'simple','MS04-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(439,9,'simple','MS04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(440,9,'simple','MS04-L-Black',0,0,'[[regtime]]','[[regtime]]'),(441,9,'simple','MS04-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(442,9,'simple','MS04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(443,9,'simple','MS04-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(444,9,'simple','MS04-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(445,9,'simple','MS04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(446,9,'configurable','MS04',1,0,'[[regtime]]','[[regtime]]'),(447,9,'simple','MS05-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(448,9,'simple','MS05-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(449,9,'simple','MS05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(450,9,'simple','MS05-S-Black',0,0,'[[regtime]]','[[regtime]]'),(451,9,'simple','MS05-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(452,9,'simple','MS05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(453,9,'simple','MS05-M-Black',0,0,'[[regtime]]','[[regtime]]'),(454,9,'simple','MS05-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(455,9,'simple','MS05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(456,9,'simple','MS05-L-Black',0,0,'[[regtime]]','[[regtime]]'),(457,9,'simple','MS05-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(458,9,'simple','MS05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(459,9,'simple','MS05-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(460,9,'simple','MS05-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(461,9,'simple','MS05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(462,9,'configurable','MS05',1,0,'[[regtime]]','[[regtime]]'),(463,9,'simple','MS09-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(464,9,'simple','MS09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(465,9,'simple','MS09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(466,9,'simple','MS09-S-Black',0,0,'[[regtime]]','[[regtime]]'),(467,9,'simple','MS09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(468,9,'simple','MS09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(469,9,'simple','MS09-M-Black',0,0,'[[regtime]]','[[regtime]]'),(470,9,'simple','MS09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(471,9,'simple','MS09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(472,9,'simple','MS09-L-Black',0,0,'[[regtime]]','[[regtime]]'),(473,9,'simple','MS09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(474,9,'simple','MS09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(475,9,'simple','MS09-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(476,9,'simple','MS09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(477,9,'simple','MS09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(478,9,'configurable','MS09',1,0,'[[regtime]]','[[regtime]]'),(479,9,'simple','MS11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(480,9,'simple','MS11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(481,9,'simple','MS11-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(482,9,'simple','MS11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(483,9,'simple','MS11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(484,9,'simple','MS11-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(485,9,'simple','MS11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(486,9,'simple','MS11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(487,9,'simple','MS11-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(488,9,'simple','MS11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(489,9,'simple','MS11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(490,9,'simple','MS11-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(491,9,'simple','MS11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(492,9,'simple','MS11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(493,9,'simple','MS11-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(494,9,'configurable','MS11',1,0,'[[regtime]]','[[regtime]]'),(495,9,'simple','MS12-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(496,9,'simple','MS12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(497,9,'simple','MS12-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(498,9,'simple','MS12-S-Black',0,0,'[[regtime]]','[[regtime]]'),(499,9,'simple','MS12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(500,9,'simple','MS12-S-Red',0,0,'[[regtime]]','[[regtime]]'),(501,9,'simple','MS12-M-Black',0,0,'[[regtime]]','[[regtime]]'),(502,9,'simple','MS12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(503,9,'simple','MS12-M-Red',0,0,'[[regtime]]','[[regtime]]'),(504,9,'simple','MS12-L-Black',0,0,'[[regtime]]','[[regtime]]'),(505,9,'simple','MS12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(506,9,'simple','MS12-L-Red',0,0,'[[regtime]]','[[regtime]]'),(507,9,'simple','MS12-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(508,9,'simple','MS12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(509,9,'simple','MS12-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(510,9,'configurable','MS12',1,0,'[[regtime]]','[[regtime]]'),(511,9,'simple','MS03-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(512,9,'simple','MS03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(513,9,'simple','MS03-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(514,9,'simple','MS03-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(515,9,'simple','MS03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(516,9,'simple','MS03-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(517,9,'simple','MS03-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(518,9,'simple','MS03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(519,9,'simple','MS03-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(520,9,'simple','MS03-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(521,9,'simple','MS03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(522,9,'simple','MS03-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(523,9,'simple','MS03-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(524,9,'simple','MS03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(525,9,'simple','MS03-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(526,9,'configurable','MS03',1,0,'[[regtime]]','[[regtime]]'),(527,9,'simple','MS06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(528,9,'simple','MS06-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(529,9,'simple','MS06-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(530,9,'simple','MS06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(531,9,'simple','MS06-S-Green',0,0,'[[regtime]]','[[regtime]]'),(532,9,'simple','MS06-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(533,9,'simple','MS06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(534,9,'simple','MS06-M-Green',0,0,'[[regtime]]','[[regtime]]'),(535,9,'simple','MS06-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(536,9,'simple','MS06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(537,9,'simple','MS06-L-Green',0,0,'[[regtime]]','[[regtime]]'),(538,9,'simple','MS06-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(539,9,'simple','MS06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(540,9,'simple','MS06-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(541,9,'simple','MS06-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(542,9,'configurable','MS06',1,0,'[[regtime]]','[[regtime]]'),(543,9,'simple','MS01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(544,9,'simple','MS01-XS-Brown',0,0,'[[regtime]]','[[regtime]]'),(545,9,'simple','MS01-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(546,9,'simple','MS01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(547,9,'simple','MS01-S-Brown',0,0,'[[regtime]]','[[regtime]]'),(548,9,'simple','MS01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(549,9,'simple','MS01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(550,9,'simple','MS01-M-Brown',0,0,'[[regtime]]','[[regtime]]'),(551,9,'simple','MS01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(552,9,'simple','MS01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(553,9,'simple','MS01-L-Brown',0,0,'[[regtime]]','[[regtime]]'),(554,9,'simple','MS01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(555,9,'simple','MS01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(556,9,'simple','MS01-XL-Brown',0,0,'[[regtime]]','[[regtime]]'),(557,9,'simple','MS01-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(558,9,'configurable','MS01',1,0,'[[regtime]]','[[regtime]]'),(559,9,'simple','MS02-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(560,9,'simple','MS02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(561,9,'simple','MS02-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(562,9,'simple','MS02-S-Black',0,0,'[[regtime]]','[[regtime]]'),(563,9,'simple','MS02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(564,9,'simple','MS02-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(565,9,'simple','MS02-M-Black',0,0,'[[regtime]]','[[regtime]]'),(566,9,'simple','MS02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(567,9,'simple','MS02-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(568,9,'simple','MS02-L-Black',0,0,'[[regtime]]','[[regtime]]'),(569,9,'simple','MS02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(570,9,'simple','MS02-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(571,9,'simple','MS02-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(572,9,'simple','MS02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(573,9,'simple','MS02-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(574,9,'configurable','MS02',1,0,'[[regtime]]','[[regtime]]'),(575,9,'simple','MS10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(576,9,'simple','MS10-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(577,9,'simple','MS10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(578,9,'simple','MS10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(579,9,'simple','MS10-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(580,9,'simple','MS10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(581,9,'simple','MS10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(582,9,'simple','MS10-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(583,9,'simple','MS10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(584,9,'simple','MS10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(585,9,'simple','MS10-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(586,9,'simple','MS10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(587,9,'simple','MS10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(588,9,'simple','MS10-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(589,9,'simple','MS10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(590,9,'configurable','MS10',1,0,'[[regtime]]','[[regtime]]'),(591,9,'simple','MS07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(592,9,'simple','MS07-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(593,9,'simple','MS07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(594,9,'simple','MS07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(595,9,'simple','MS07-S-Green',0,0,'[[regtime]]','[[regtime]]'),(596,9,'simple','MS07-S-White',0,0,'[[regtime]]','[[regtime]]'),(597,9,'simple','MS07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(598,9,'simple','MS07-M-Green',0,0,'[[regtime]]','[[regtime]]'),(599,9,'simple','MS07-M-White',0,0,'[[regtime]]','[[regtime]]'),(600,9,'simple','MS07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(601,9,'simple','MS07-L-Green',0,0,'[[regtime]]','[[regtime]]'),(602,9,'simple','MS07-L-White',0,0,'[[regtime]]','[[regtime]]'),(603,9,'simple','MS07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(604,9,'simple','MS07-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(605,9,'simple','MS07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(606,9,'configurable','MS07',1,0,'[[regtime]]','[[regtime]]'),(607,9,'simple','MS08-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(608,9,'simple','MS08-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(609,9,'simple','MS08-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(610,9,'simple','MS08-S-Black',0,0,'[[regtime]]','[[regtime]]'),(611,9,'simple','MS08-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(612,9,'simple','MS08-S-Red',0,0,'[[regtime]]','[[regtime]]'),(613,9,'simple','MS08-M-Black',0,0,'[[regtime]]','[[regtime]]'),(614,9,'simple','MS08-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(615,9,'simple','MS08-M-Red',0,0,'[[regtime]]','[[regtime]]'),(616,9,'simple','MS08-L-Black',0,0,'[[regtime]]','[[regtime]]'),(617,9,'simple','MS08-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(618,9,'simple','MS08-L-Red',0,0,'[[regtime]]','[[regtime]]'),(619,9,'simple','MS08-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(620,9,'simple','MS08-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(621,9,'simple','MS08-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(622,9,'configurable','MS08',1,0,'[[regtime]]','[[regtime]]'),(623,9,'simple','MT01-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(624,9,'simple','MT01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(625,9,'simple','MT01-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(626,9,'simple','MT01-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(627,9,'simple','MT01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(628,9,'simple','MT01-S-Red',0,0,'[[regtime]]','[[regtime]]'),(629,9,'simple','MT01-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(630,9,'simple','MT01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(631,9,'simple','MT01-M-Red',0,0,'[[regtime]]','[[regtime]]'),(632,9,'simple','MT01-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(633,9,'simple','MT01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(634,9,'simple','MT01-L-Red',0,0,'[[regtime]]','[[regtime]]'),(635,9,'simple','MT01-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(636,9,'simple','MT01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(637,9,'simple','MT01-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(638,9,'configurable','MT01',1,0,'[[regtime]]','[[regtime]]'),(639,9,'simple','MT02-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(640,9,'simple','MT02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(641,9,'simple','MT02-XS-White',0,0,'[[regtime]]','[[regtime]]'),(642,9,'simple','MT02-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(643,9,'simple','MT02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(644,9,'simple','MT02-S-White',0,0,'[[regtime]]','[[regtime]]'),(645,9,'simple','MT02-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(646,9,'simple','MT02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(647,9,'simple','MT02-M-White',0,0,'[[regtime]]','[[regtime]]'),(648,9,'simple','MT02-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(649,9,'simple','MT02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(650,9,'simple','MT02-L-White',0,0,'[[regtime]]','[[regtime]]'),(651,9,'simple','MT02-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(652,9,'simple','MT02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(653,9,'simple','MT02-XL-White',0,0,'[[regtime]]','[[regtime]]'),(654,9,'configurable','MT02',1,0,'[[regtime]]','[[regtime]]'),(655,9,'simple','MT03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(656,9,'simple','MT03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(657,9,'simple','MT03-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(658,9,'simple','MT03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(659,9,'simple','MT03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(660,9,'simple','MT03-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(661,9,'simple','MT03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(662,9,'simple','MT03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(663,9,'simple','MT03-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(664,9,'simple','MT03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(665,9,'simple','MT03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(666,9,'simple','MT03-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(667,9,'simple','MT03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(668,9,'simple','MT03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(669,9,'simple','MT03-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(670,9,'configurable','MT03',1,0,'[[regtime]]','[[regtime]]'),(671,9,'simple','MT04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(672,9,'simple','MT04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(673,9,'simple','MT04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(674,9,'simple','MT04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(675,9,'simple','MT04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(676,9,'configurable','MT04',1,0,'[[regtime]]','[[regtime]]'),(677,9,'simple','MT05-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(678,9,'simple','MT05-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(679,9,'simple','MT05-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(680,9,'simple','MT05-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(681,9,'simple','MT05-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(682,9,'configurable','MT05',1,0,'[[regtime]]','[[regtime]]'),(683,9,'simple','MT06-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(684,9,'simple','MT06-S-Black',0,0,'[[regtime]]','[[regtime]]'),(685,9,'simple','MT06-M-Black',0,0,'[[regtime]]','[[regtime]]'),(686,9,'simple','MT06-L-Black',0,0,'[[regtime]]','[[regtime]]'),(687,9,'simple','MT06-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(688,9,'configurable','MT06',1,0,'[[regtime]]','[[regtime]]'),(689,9,'simple','MT07-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(690,9,'simple','MT07-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(691,9,'simple','MT07-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(692,9,'simple','MT07-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(693,9,'simple','MT07-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(694,9,'configurable','MT07',1,0,'[[regtime]]','[[regtime]]'),(695,9,'simple','MT08-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(696,9,'simple','MT08-S-Green',0,0,'[[regtime]]','[[regtime]]'),(697,9,'simple','MT08-M-Green',0,0,'[[regtime]]','[[regtime]]'),(698,9,'simple','MT08-L-Green',0,0,'[[regtime]]','[[regtime]]'),(699,9,'simple','MT08-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(700,9,'configurable','MT08',1,0,'[[regtime]]','[[regtime]]'),(701,9,'simple','MT09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(702,9,'simple','MT09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(703,9,'simple','MT09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(704,9,'simple','MT09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(705,9,'simple','MT09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(706,9,'configurable','MT09',1,0,'[[regtime]]','[[regtime]]'),(707,9,'simple','MT10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(708,9,'simple','MT10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(709,9,'simple','MT10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(710,9,'simple','MT10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(711,9,'simple','MT10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(712,9,'configurable','MT10',1,0,'[[regtime]]','[[regtime]]'),(713,9,'simple','MT11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(714,9,'simple','MT11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(715,9,'simple','MT11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(716,9,'simple','MT11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(717,9,'simple','MT11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(718,9,'configurable','MT11',1,0,'[[regtime]]','[[regtime]]'),(719,9,'simple','MT12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(720,9,'simple','MT12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(721,9,'simple','MT12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(722,9,'simple','MT12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(723,9,'simple','MT12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(724,9,'configurable','MT12',1,0,'[[regtime]]','[[regtime]]'),(725,10,'simple','MP01-32-Black',0,0,'[[regtime]]','[[regtime]]'),(726,10,'simple','MP01-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(727,10,'simple','MP01-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(728,10,'simple','MP01-33-Black',0,0,'[[regtime]]','[[regtime]]'),(729,10,'simple','MP01-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(730,10,'simple','MP01-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(731,10,'simple','MP01-34-Black',0,0,'[[regtime]]','[[regtime]]'),(732,10,'simple','MP01-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(733,10,'simple','MP01-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(734,10,'simple','MP01-36-Black',0,0,'[[regtime]]','[[regtime]]'),(735,10,'simple','MP01-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(736,10,'simple','MP01-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(737,10,'configurable','MP01',1,0,'[[regtime]]','[[regtime]]'),(738,10,'simple','MP02-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(739,10,'simple','MP02-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(740,10,'simple','MP02-32-Red',0,0,'[[regtime]]','[[regtime]]'),(741,10,'simple','MP02-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(742,10,'simple','MP02-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(743,10,'simple','MP02-33-Red',0,0,'[[regtime]]','[[regtime]]'),(744,10,'simple','MP02-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(745,10,'simple','MP02-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(746,10,'simple','MP02-34-Red',0,0,'[[regtime]]','[[regtime]]'),(747,10,'simple','MP02-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(748,10,'simple','MP02-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(749,10,'simple','MP02-36-Red',0,0,'[[regtime]]','[[regtime]]'),(750,10,'configurable','MP02',1,0,'[[regtime]]','[[regtime]]'),(751,10,'simple','MP03-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(752,10,'simple','MP03-32-Green',0,0,'[[regtime]]','[[regtime]]'),(753,10,'simple','MP03-32-Red',0,0,'[[regtime]]','[[regtime]]'),(754,10,'simple','MP03-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(755,10,'simple','MP03-33-Green',0,0,'[[regtime]]','[[regtime]]'),(756,10,'simple','MP03-33-Red',0,0,'[[regtime]]','[[regtime]]'),(757,10,'simple','MP03-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(758,10,'simple','MP03-34-Green',0,0,'[[regtime]]','[[regtime]]'),(759,10,'simple','MP03-34-Red',0,0,'[[regtime]]','[[regtime]]'),(760,10,'simple','MP03-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(761,10,'simple','MP03-36-Green',0,0,'[[regtime]]','[[regtime]]'),(762,10,'simple','MP03-36-Red',0,0,'[[regtime]]','[[regtime]]'),(763,10,'configurable','MP03',1,0,'[[regtime]]','[[regtime]]'),(764,10,'simple','MP04-32-Black',0,0,'[[regtime]]','[[regtime]]'),(765,10,'simple','MP04-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(766,10,'simple','MP04-32-Green',0,0,'[[regtime]]','[[regtime]]'),(767,10,'simple','MP04-33-Black',0,0,'[[regtime]]','[[regtime]]'),(768,10,'simple','MP04-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(769,10,'simple','MP04-33-Green',0,0,'[[regtime]]','[[regtime]]'),(770,10,'simple','MP04-34-Black',0,0,'[[regtime]]','[[regtime]]'),(771,10,'simple','MP04-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(772,10,'simple','MP04-34-Green',0,0,'[[regtime]]','[[regtime]]'),(773,10,'simple','MP04-36-Black',0,0,'[[regtime]]','[[regtime]]'),(774,10,'simple','MP04-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(775,10,'simple','MP04-36-Green',0,0,'[[regtime]]','[[regtime]]'),(776,10,'configurable','MP04',1,0,'[[regtime]]','[[regtime]]'),(777,10,'simple','MP05-32-Black',0,0,'[[regtime]]','[[regtime]]'),(778,10,'simple','MP05-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(779,10,'simple','MP05-32-Green',0,0,'[[regtime]]','[[regtime]]'),(780,10,'simple','MP05-33-Black',0,0,'[[regtime]]','[[regtime]]'),(781,10,'simple','MP05-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(782,10,'simple','MP05-33-Green',0,0,'[[regtime]]','[[regtime]]'),(783,10,'simple','MP05-34-Black',0,0,'[[regtime]]','[[regtime]]'),(784,10,'simple','MP05-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(785,10,'simple','MP05-34-Green',0,0,'[[regtime]]','[[regtime]]'),(786,10,'simple','MP05-36-Black',0,0,'[[regtime]]','[[regtime]]'),(787,10,'simple','MP05-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(788,10,'simple','MP05-36-Green',0,0,'[[regtime]]','[[regtime]]'),(789,10,'configurable','MP05',1,0,'[[regtime]]','[[regtime]]'),(790,10,'simple','MP06-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(791,10,'simple','MP06-32-Green',0,0,'[[regtime]]','[[regtime]]'),(792,10,'simple','MP06-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(793,10,'simple','MP06-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(794,10,'simple','MP06-33-Green',0,0,'[[regtime]]','[[regtime]]'),(795,10,'simple','MP06-33-Orange',0,0,'[[regtime]]','[[regtime]]'),(796,10,'simple','MP06-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(797,10,'simple','MP06-34-Green',0,0,'[[regtime]]','[[regtime]]'),(798,10,'simple','MP06-34-Orange',0,0,'[[regtime]]','[[regtime]]'),(799,10,'simple','MP06-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(800,10,'simple','MP06-36-Green',0,0,'[[regtime]]','[[regtime]]'),(801,10,'simple','MP06-36-Orange',0,0,'[[regtime]]','[[regtime]]'),(802,10,'configurable','MP06',1,0,'[[regtime]]','[[regtime]]'),(803,10,'simple','MP07-32-Black',0,0,'[[regtime]]','[[regtime]]'),(804,10,'simple','MP07-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(805,10,'simple','MP07-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(806,10,'simple','MP07-33-Black',0,0,'[[regtime]]','[[regtime]]'),(807,10,'simple','MP07-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(808,10,'simple','MP07-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(809,10,'simple','MP07-34-Black',0,0,'[[regtime]]','[[regtime]]'),(810,10,'simple','MP07-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(811,10,'simple','MP07-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(812,10,'simple','MP07-36-Black',0,0,'[[regtime]]','[[regtime]]'),(813,10,'simple','MP07-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(814,10,'simple','MP07-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(815,10,'configurable','MP07',1,0,'[[regtime]]','[[regtime]]'),(816,10,'simple','MP08-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(817,10,'simple','MP08-32-Green',0,0,'[[regtime]]','[[regtime]]'),(818,10,'simple','MP08-32-Red',0,0,'[[regtime]]','[[regtime]]'),(819,10,'simple','MP08-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(820,10,'simple','MP08-33-Green',0,0,'[[regtime]]','[[regtime]]'),(821,10,'simple','MP08-33-Red',0,0,'[[regtime]]','[[regtime]]'),(822,10,'simple','MP08-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(823,10,'simple','MP08-34-Green',0,0,'[[regtime]]','[[regtime]]'),(824,10,'simple','MP08-34-Red',0,0,'[[regtime]]','[[regtime]]'),(825,10,'simple','MP08-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(826,10,'simple','MP08-36-Green',0,0,'[[regtime]]','[[regtime]]'),(827,10,'simple','MP08-36-Red',0,0,'[[regtime]]','[[regtime]]'),(828,10,'configurable','MP08',1,0,'[[regtime]]','[[regtime]]'),(829,10,'simple','MP09-32-Black',0,0,'[[regtime]]','[[regtime]]'),(830,10,'simple','MP09-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(831,10,'simple','MP09-32-Red',0,0,'[[regtime]]','[[regtime]]'),(832,10,'simple','MP09-33-Black',0,0,'[[regtime]]','[[regtime]]'),(833,10,'simple','MP09-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(834,10,'simple','MP09-33-Red',0,0,'[[regtime]]','[[regtime]]'),(835,10,'simple','MP09-34-Black',0,0,'[[regtime]]','[[regtime]]'),(836,10,'simple','MP09-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(837,10,'simple','MP09-34-Red',0,0,'[[regtime]]','[[regtime]]'),(838,10,'simple','MP09-36-Black',0,0,'[[regtime]]','[[regtime]]'),(839,10,'simple','MP09-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(840,10,'simple','MP09-36-Red',0,0,'[[regtime]]','[[regtime]]'),(841,10,'configurable','MP09',1,0,'[[regtime]]','[[regtime]]'),(842,10,'simple','MP10-32-Black',0,0,'[[regtime]]','[[regtime]]'),(843,10,'simple','MP10-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(844,10,'simple','MP10-32-Green',0,0,'[[regtime]]','[[regtime]]'),(845,10,'simple','MP10-33-Black',0,0,'[[regtime]]','[[regtime]]'),(846,10,'simple','MP10-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(847,10,'simple','MP10-33-Green',0,0,'[[regtime]]','[[regtime]]'),(848,10,'simple','MP10-34-Black',0,0,'[[regtime]]','[[regtime]]'),(849,10,'simple','MP10-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(850,10,'simple','MP10-34-Green',0,0,'[[regtime]]','[[regtime]]'),(851,10,'simple','MP10-36-Black',0,0,'[[regtime]]','[[regtime]]'),(852,10,'simple','MP10-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(853,10,'simple','MP10-36-Green',0,0,'[[regtime]]','[[regtime]]'),(854,10,'configurable','MP10',1,0,'[[regtime]]','[[regtime]]'),(855,10,'simple','MP11-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(856,10,'simple','MP11-32-Brown',0,0,'[[regtime]]','[[regtime]]'),(857,10,'simple','MP11-32-Green',0,0,'[[regtime]]','[[regtime]]'),(858,10,'simple','MP11-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(859,10,'simple','MP11-33-Brown',0,0,'[[regtime]]','[[regtime]]'),(860,10,'simple','MP11-33-Green',0,0,'[[regtime]]','[[regtime]]'),(861,10,'simple','MP11-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(862,10,'simple','MP11-34-Brown',0,0,'[[regtime]]','[[regtime]]'),(863,10,'simple','MP11-34-Green',0,0,'[[regtime]]','[[regtime]]'),(864,10,'simple','MP11-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(865,10,'simple','MP11-36-Brown',0,0,'[[regtime]]','[[regtime]]'),(866,10,'simple','MP11-36-Green',0,0,'[[regtime]]','[[regtime]]'),(867,10,'configurable','MP11',1,0,'[[regtime]]','[[regtime]]'),(868,10,'simple','MP12-32-Black',0,0,'[[regtime]]','[[regtime]]'),(869,10,'simple','MP12-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(870,10,'simple','MP12-32-Red',0,0,'[[regtime]]','[[regtime]]'),(871,10,'simple','MP12-33-Black',0,0,'[[regtime]]','[[regtime]]'),(872,10,'simple','MP12-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(873,10,'simple','MP12-33-Red',0,0,'[[regtime]]','[[regtime]]'),(874,10,'simple','MP12-34-Black',0,0,'[[regtime]]','[[regtime]]'),(875,10,'simple','MP12-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(876,10,'simple','MP12-34-Red',0,0,'[[regtime]]','[[regtime]]'),(877,10,'simple','MP12-36-Black',0,0,'[[regtime]]','[[regtime]]'),(878,10,'simple','MP12-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(879,10,'simple','MP12-36-Red',0,0,'[[regtime]]','[[regtime]]'),(880,10,'configurable','MP12',1,0,'[[regtime]]','[[regtime]]'),(881,10,'simple','MSH01-32-Black',0,0,'[[regtime]]','[[regtime]]'),(882,10,'simple','MSH01-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(883,10,'simple','MSH01-32-Red',0,0,'[[regtime]]','[[regtime]]'),(884,10,'simple','MSH01-33-Black',0,0,'[[regtime]]','[[regtime]]'),(885,10,'simple','MSH01-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(886,10,'simple','MSH01-33-Red',0,0,'[[regtime]]','[[regtime]]'),(887,10,'simple','MSH01-34-Black',0,0,'[[regtime]]','[[regtime]]'),(888,10,'simple','MSH01-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(889,10,'simple','MSH01-34-Red',0,0,'[[regtime]]','[[regtime]]'),(890,10,'simple','MSH01-36-Black',0,0,'[[regtime]]','[[regtime]]'),(891,10,'simple','MSH01-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(892,10,'simple','MSH01-36-Red',0,0,'[[regtime]]','[[regtime]]'),(893,10,'configurable','MSH01',1,0,'[[regtime]]','[[regtime]]'),(894,10,'simple','MSH02-32-Black',0,0,'[[regtime]]','[[regtime]]'),(895,10,'simple','MSH02-33-Black',0,0,'[[regtime]]','[[regtime]]'),(896,10,'simple','MSH02-34-Black',0,0,'[[regtime]]','[[regtime]]'),(897,10,'simple','MSH02-36-Black',0,0,'[[regtime]]','[[regtime]]'),(898,10,'configurable','MSH02',1,0,'[[regtime]]','[[regtime]]'),(899,10,'simple','MSH03-32-Black',0,0,'[[regtime]]','[[regtime]]'),(900,10,'simple','MSH03-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(901,10,'simple','MSH03-32-Green',0,0,'[[regtime]]','[[regtime]]'),(902,10,'simple','MSH03-33-Black',0,0,'[[regtime]]','[[regtime]]'),(903,10,'simple','MSH03-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(904,10,'simple','MSH03-33-Green',0,0,'[[regtime]]','[[regtime]]'),(905,10,'simple','MSH03-34-Black',0,0,'[[regtime]]','[[regtime]]'),(906,10,'simple','MSH03-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(907,10,'simple','MSH03-34-Green',0,0,'[[regtime]]','[[regtime]]'),(908,10,'simple','MSH03-36-Black',0,0,'[[regtime]]','[[regtime]]'),(909,10,'simple','MSH03-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(910,10,'simple','MSH03-36-Green',0,0,'[[regtime]]','[[regtime]]'),(911,10,'configurable','MSH03',1,0,'[[regtime]]','[[regtime]]'),(912,10,'simple','MSH04-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(913,10,'simple','MSH04-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(914,10,'simple','MSH04-32-Yellow',0,0,'[[regtime]]','[[regtime]]'),(915,10,'simple','MSH04-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(916,10,'simple','MSH04-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(917,10,'simple','MSH04-33-Yellow',0,0,'[[regtime]]','[[regtime]]'),(918,10,'simple','MSH04-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(919,10,'simple','MSH04-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(920,10,'simple','MSH04-34-Yellow',0,0,'[[regtime]]','[[regtime]]'),(921,10,'simple','MSH04-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(922,10,'simple','MSH04-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(923,10,'simple','MSH04-36-Yellow',0,0,'[[regtime]]','[[regtime]]'),(924,10,'configurable','MSH04',1,0,'[[regtime]]','[[regtime]]'),(925,10,'simple','MSH05-32-Black',0,0,'[[regtime]]','[[regtime]]'),(926,10,'simple','MSH05-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(927,10,'simple','MSH05-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(928,10,'simple','MSH05-33-Black',0,0,'[[regtime]]','[[regtime]]'),(929,10,'simple','MSH05-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(930,10,'simple','MSH05-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(931,10,'simple','MSH05-34-Black',0,0,'[[regtime]]','[[regtime]]'),(932,10,'simple','MSH05-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(933,10,'simple','MSH05-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(934,10,'simple','MSH05-36-Black',0,0,'[[regtime]]','[[regtime]]'),(935,10,'simple','MSH05-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(936,10,'simple','MSH05-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(937,10,'configurable','MSH05',1,0,'[[regtime]]','[[regtime]]'),(938,10,'simple','MSH06-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(939,10,'simple','MSH06-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(940,10,'simple','MSH06-32-Red',0,0,'[[regtime]]','[[regtime]]'),(941,10,'simple','MSH06-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(942,10,'simple','MSH06-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(943,10,'simple','MSH06-33-Red',0,0,'[[regtime]]','[[regtime]]'),(944,10,'simple','MSH06-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(945,10,'simple','MSH06-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(946,10,'simple','MSH06-34-Red',0,0,'[[regtime]]','[[regtime]]'),(947,10,'simple','MSH06-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(948,10,'simple','MSH06-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(949,10,'simple','MSH06-36-Red',0,0,'[[regtime]]','[[regtime]]'),(950,10,'configurable','MSH06',1,0,'[[regtime]]','[[regtime]]'),(951,10,'simple','MSH07-32-Black',0,0,'[[regtime]]','[[regtime]]'),(952,10,'simple','MSH07-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(953,10,'simple','MSH07-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(954,10,'simple','MSH07-33-Black',0,0,'[[regtime]]','[[regtime]]'),(955,10,'simple','MSH07-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(956,10,'simple','MSH07-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(957,10,'simple','MSH07-34-Black',0,0,'[[regtime]]','[[regtime]]'),(958,10,'simple','MSH07-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(959,10,'simple','MSH07-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(960,10,'simple','MSH07-36-Black',0,0,'[[regtime]]','[[regtime]]'),(961,10,'simple','MSH07-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(962,10,'simple','MSH07-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(963,10,'configurable','MSH07',1,0,'[[regtime]]','[[regtime]]'),(964,10,'simple','MSH08-32-Black',0,0,'[[regtime]]','[[regtime]]'),(965,10,'simple','MSH08-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(966,10,'simple','MSH08-32-Green',0,0,'[[regtime]]','[[regtime]]'),(967,10,'simple','MSH08-33-Black',0,0,'[[regtime]]','[[regtime]]'),(968,10,'simple','MSH08-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(969,10,'simple','MSH08-33-Green',0,0,'[[regtime]]','[[regtime]]'),(970,10,'simple','MSH08-34-Black',0,0,'[[regtime]]','[[regtime]]'),(971,10,'simple','MSH08-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(972,10,'simple','MSH08-34-Green',0,0,'[[regtime]]','[[regtime]]'),(973,10,'simple','MSH08-36-Black',0,0,'[[regtime]]','[[regtime]]'),(974,10,'simple','MSH08-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(975,10,'simple','MSH08-36-Green',0,0,'[[regtime]]','[[regtime]]'),(976,10,'configurable','MSH08',1,0,'[[regtime]]','[[regtime]]'),(977,10,'simple','MSH09-32-Black',0,0,'[[regtime]]','[[regtime]]'),(978,10,'simple','MSH09-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(979,10,'simple','MSH09-32-Green',0,0,'[[regtime]]','[[regtime]]'),(980,10,'simple','MSH09-33-Black',0,0,'[[regtime]]','[[regtime]]'),(981,10,'simple','MSH09-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(982,10,'simple','MSH09-33-Green',0,0,'[[regtime]]','[[regtime]]'),(983,10,'simple','MSH09-34-Black',0,0,'[[regtime]]','[[regtime]]'),(984,10,'simple','MSH09-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(985,10,'simple','MSH09-34-Green',0,0,'[[regtime]]','[[regtime]]'),(986,10,'simple','MSH09-36-Black',0,0,'[[regtime]]','[[regtime]]'),(987,10,'simple','MSH09-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(988,10,'simple','MSH09-36-Green',0,0,'[[regtime]]','[[regtime]]'),(989,10,'configurable','MSH09',1,0,'[[regtime]]','[[regtime]]'),(990,10,'simple','MSH10-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(991,10,'simple','MSH10-32-Green',0,0,'[[regtime]]','[[regtime]]'),(992,10,'simple','MSH10-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(993,10,'simple','MSH10-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(994,10,'simple','MSH10-33-Green',0,0,'[[regtime]]','[[regtime]]'),(995,10,'simple','MSH10-33-Purple',0,0,'[[regtime]]','[[regtime]]'),(996,10,'simple','MSH10-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(997,10,'simple','MSH10-34-Green',0,0,'[[regtime]]','[[regtime]]'),(998,10,'simple','MSH10-34-Purple',0,0,'[[regtime]]','[[regtime]]'),(999,10,'simple','MSH10-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(1000,10,'simple','MSH10-36-Green',0,0,'[[regtime]]','[[regtime]]'),(1001,10,'simple','MSH10-36-Purple',0,0,'[[regtime]]','[[regtime]]'),(1002,10,'configurable','MSH10',1,0,'[[regtime]]','[[regtime]]'),(1003,10,'simple','MSH11-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1004,10,'simple','MSH11-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(1005,10,'simple','MSH11-32-Red',0,0,'[[regtime]]','[[regtime]]'),(1006,10,'simple','MSH11-33-Black',0,0,'[[regtime]]','[[regtime]]'),(1007,10,'simple','MSH11-33-Blue',0,0,'[[regtime]]','[[regtime]]'),(1008,10,'simple','MSH11-33-Red',0,0,'[[regtime]]','[[regtime]]'),(1009,10,'simple','MSH11-34-Black',0,0,'[[regtime]]','[[regtime]]'),(1010,10,'simple','MSH11-34-Blue',0,0,'[[regtime]]','[[regtime]]'),(1011,10,'simple','MSH11-34-Red',0,0,'[[regtime]]','[[regtime]]'),(1012,10,'simple','MSH11-36-Black',0,0,'[[regtime]]','[[regtime]]'),(1013,10,'simple','MSH11-36-Blue',0,0,'[[regtime]]','[[regtime]]'),(1014,10,'simple','MSH11-36-Red',0,0,'[[regtime]]','[[regtime]]'),(1015,10,'configurable','MSH11',1,0,'[[regtime]]','[[regtime]]'),(1016,10,'simple','MSH12-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1017,10,'simple','MSH12-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(1018,10,'simple','MSH12-32-Red',0,0,'[[regtime]]','[[regtime]]'),(1019,10,'simple','MSH12-33-Black',0,0,'[[regtime]]','[[regtime]]'),(1020,10,'simple','MSH12-33-Gray',0,0,'[[regtime]]','[[regtime]]'),(1021,10,'simple','MSH12-33-Red',0,0,'[[regtime]]','[[regtime]]'),(1022,10,'simple','MSH12-34-Black',0,0,'[[regtime]]','[[regtime]]'),(1023,10,'simple','MSH12-34-Gray',0,0,'[[regtime]]','[[regtime]]'),(1024,10,'simple','MSH12-34-Red',0,0,'[[regtime]]','[[regtime]]'),(1025,10,'simple','MSH12-36-Black',0,0,'[[regtime]]','[[regtime]]'),(1026,10,'simple','MSH12-36-Gray',0,0,'[[regtime]]','[[regtime]]'),(1027,10,'simple','MSH12-36-Red',0,0,'[[regtime]]','[[regtime]]'),(1028,10,'configurable','MSH12',1,0,'[[regtime]]','[[regtime]]'),(1029,9,'simple','WH01-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1030,9,'simple','WH01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1031,9,'simple','WH01-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1032,9,'simple','WH01-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1033,9,'simple','WH01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1034,9,'simple','WH01-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1035,9,'simple','WH01-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1036,9,'simple','WH01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1037,9,'simple','WH01-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1038,9,'simple','WH01-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1039,9,'simple','WH01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1040,9,'simple','WH01-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1041,9,'simple','WH01-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1042,9,'simple','WH01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1043,9,'simple','WH01-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1044,9,'configurable','WH01',1,0,'[[regtime]]','[[regtime]]'),(1045,9,'simple','WH02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1046,9,'simple','WH02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1047,9,'simple','WH02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1048,9,'simple','WH02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1049,9,'simple','WH02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1050,9,'simple','WH02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1051,9,'simple','WH02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1052,9,'simple','WH02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1053,9,'simple','WH02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1054,9,'simple','WH02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1055,9,'simple','WH02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1056,9,'simple','WH02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1057,9,'simple','WH02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1058,9,'simple','WH02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1059,9,'simple','WH02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1060,9,'configurable','WH02',1,0,'[[regtime]]','[[regtime]]'),(1061,9,'simple','WH03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1062,9,'simple','WH03-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1063,9,'simple','WH03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1064,9,'simple','WH03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1065,9,'simple','WH03-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1066,9,'simple','WH03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1067,9,'simple','WH03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1068,9,'simple','WH03-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1069,9,'simple','WH03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1070,9,'simple','WH03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1071,9,'simple','WH03-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1072,9,'simple','WH03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1073,9,'simple','WH03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1074,9,'simple','WH03-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1075,9,'simple','WH03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1076,9,'configurable','WH03',1,0,'[[regtime]]','[[regtime]]'),(1077,9,'simple','WH04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1078,9,'simple','WH04-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1079,9,'simple','WH04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1080,9,'simple','WH04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1081,9,'simple','WH04-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1082,9,'simple','WH04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1083,9,'simple','WH04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1084,9,'simple','WH04-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1085,9,'simple','WH04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1086,9,'simple','WH04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1087,9,'simple','WH04-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1088,9,'simple','WH04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1089,9,'simple','WH04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1090,9,'simple','WH04-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1091,9,'simple','WH04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1092,9,'configurable','WH04',1,0,'[[regtime]]','[[regtime]]'),(1093,9,'simple','WH05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1094,9,'simple','WH05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1095,9,'simple','WH05-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1096,9,'simple','WH05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1097,9,'simple','WH05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1098,9,'simple','WH05-S-White',0,0,'[[regtime]]','[[regtime]]'),(1099,9,'simple','WH05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1100,9,'simple','WH05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1101,9,'simple','WH05-M-White',0,0,'[[regtime]]','[[regtime]]'),(1102,9,'simple','WH05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1103,9,'simple','WH05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1104,9,'simple','WH05-L-White',0,0,'[[regtime]]','[[regtime]]'),(1105,9,'simple','WH05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1106,9,'simple','WH05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1107,9,'simple','WH05-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1108,9,'configurable','WH05',1,0,'[[regtime]]','[[regtime]]'),(1109,9,'simple','WH06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1110,9,'simple','WH06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1111,9,'simple','WH06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1112,9,'simple','WH06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1113,9,'simple','WH06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1114,9,'configurable','WH06',1,0,'[[regtime]]','[[regtime]]'),(1115,9,'simple','WH07-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1116,9,'simple','WH07-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1117,9,'simple','WH07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1118,9,'simple','WH07-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1119,9,'simple','WH07-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1120,9,'simple','WH07-S-White',0,0,'[[regtime]]','[[regtime]]'),(1121,9,'simple','WH07-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1122,9,'simple','WH07-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1123,9,'simple','WH07-M-White',0,0,'[[regtime]]','[[regtime]]'),(1124,9,'simple','WH07-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1125,9,'simple','WH07-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1126,9,'simple','WH07-L-White',0,0,'[[regtime]]','[[regtime]]'),(1127,9,'simple','WH07-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1128,9,'simple','WH07-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1129,9,'simple','WH07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1130,9,'configurable','WH07',1,0,'[[regtime]]','[[regtime]]'),(1131,9,'simple','WH08-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1132,9,'simple','WH08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1133,9,'simple','WH08-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1134,9,'simple','WH08-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1135,9,'simple','WH08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1136,9,'simple','WH08-S-White',0,0,'[[regtime]]','[[regtime]]'),(1137,9,'simple','WH08-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1138,9,'simple','WH08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1139,9,'simple','WH08-M-White',0,0,'[[regtime]]','[[regtime]]'),(1140,9,'simple','WH08-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1141,9,'simple','WH08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1142,9,'simple','WH08-L-White',0,0,'[[regtime]]','[[regtime]]'),(1143,9,'simple','WH08-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1144,9,'simple','WH08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1145,9,'simple','WH08-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1146,9,'configurable','WH08',1,0,'[[regtime]]','[[regtime]]'),(1147,9,'simple','WH09-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1148,9,'simple','WH09-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1149,9,'simple','WH09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1150,9,'simple','WH09-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1151,9,'simple','WH09-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1152,9,'simple','WH09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1153,9,'simple','WH09-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1154,9,'simple','WH09-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1155,9,'simple','WH09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1156,9,'simple','WH09-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1157,9,'simple','WH09-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1158,9,'simple','WH09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1159,9,'simple','WH09-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1160,9,'simple','WH09-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1161,9,'simple','WH09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1162,9,'configurable','WH09',1,0,'[[regtime]]','[[regtime]]'),(1163,9,'simple','WH10-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1164,9,'simple','WH10-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1165,9,'simple','WH10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1166,9,'simple','WH10-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1167,9,'simple','WH10-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1168,9,'simple','WH10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1169,9,'simple','WH10-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1170,9,'simple','WH10-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1171,9,'simple','WH10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1172,9,'simple','WH10-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1173,9,'simple','WH10-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1174,9,'simple','WH10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1175,9,'simple','WH10-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1176,9,'simple','WH10-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1177,9,'simple','WH10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1178,9,'configurable','WH10',1,0,'[[regtime]]','[[regtime]]'),(1179,9,'simple','WH11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1180,9,'simple','WH11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1181,9,'simple','WH11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1182,9,'simple','WH11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1183,9,'simple','WH11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1184,9,'simple','WH11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1185,9,'simple','WH11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1186,9,'simple','WH11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1187,9,'simple','WH11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1188,9,'simple','WH11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1189,9,'simple','WH11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1190,9,'simple','WH11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1191,9,'simple','WH11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1192,9,'simple','WH11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1193,9,'simple','WH11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1194,9,'configurable','WH11',1,0,'[[regtime]]','[[regtime]]'),(1195,9,'simple','WH12-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1196,9,'simple','WH12-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1197,9,'simple','WH12-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1198,9,'simple','WH12-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1199,9,'simple','WH12-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1200,9,'simple','WH12-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1201,9,'simple','WH12-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1202,9,'simple','WH12-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1203,9,'simple','WH12-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1204,9,'simple','WH12-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1205,9,'simple','WH12-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1206,9,'simple','WH12-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1207,9,'simple','WH12-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1208,9,'simple','WH12-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1209,9,'simple','WH12-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1210,9,'configurable','WH12',1,0,'[[regtime]]','[[regtime]]'),(1211,9,'simple','WJ01-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1212,9,'simple','WJ01-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1213,9,'simple','WJ01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1214,9,'simple','WJ01-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1215,9,'simple','WJ01-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1216,9,'simple','WJ01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1217,9,'simple','WJ01-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1218,9,'simple','WJ01-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1219,9,'simple','WJ01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1220,9,'configurable','WJ01',1,0,'[[regtime]]','[[regtime]]'),(1221,9,'simple','WJ02-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1222,9,'simple','WJ02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1223,9,'simple','WJ02-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1224,9,'simple','WJ02-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1225,9,'simple','WJ02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1226,9,'simple','WJ02-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1227,9,'simple','WJ02-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1228,9,'simple','WJ02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1229,9,'simple','WJ02-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1230,9,'simple','WJ02-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1231,9,'simple','WJ02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1232,9,'simple','WJ02-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1233,9,'simple','WJ02-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1234,9,'simple','WJ02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1235,9,'simple','WJ02-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1236,9,'configurable','WJ02',1,0,'[[regtime]]','[[regtime]]'),(1237,9,'simple','WJ03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1238,9,'simple','WJ03-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1239,9,'simple','WJ03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1240,9,'simple','WJ03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1241,9,'simple','WJ03-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1242,9,'simple','WJ03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1243,9,'simple','WJ03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1244,9,'simple','WJ03-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1245,9,'simple','WJ03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1246,9,'simple','WJ03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1247,9,'simple','WJ03-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1248,9,'simple','WJ03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1249,9,'simple','WJ03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1250,9,'simple','WJ03-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1251,9,'simple','WJ03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1252,9,'configurable','WJ03',1,0,'[[regtime]]','[[regtime]]'),(1253,9,'simple','WJ04-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1254,9,'simple','WJ04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1255,9,'simple','WJ04-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1256,9,'simple','WJ04-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1257,9,'simple','WJ04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1258,9,'simple','WJ04-S-White',0,0,'[[regtime]]','[[regtime]]'),(1259,9,'simple','WJ04-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1260,9,'simple','WJ04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1261,9,'simple','WJ04-M-White',0,0,'[[regtime]]','[[regtime]]'),(1262,9,'simple','WJ04-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1263,9,'simple','WJ04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1264,9,'simple','WJ04-L-White',0,0,'[[regtime]]','[[regtime]]'),(1265,9,'simple','WJ04-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1266,9,'simple','WJ04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1267,9,'simple','WJ04-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1268,9,'configurable','WJ04',1,0,'[[regtime]]','[[regtime]]'),(1269,9,'simple','WJ05-XS-Brown',0,0,'[[regtime]]','[[regtime]]'),(1270,9,'simple','WJ05-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1271,9,'simple','WJ05-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1272,9,'simple','WJ05-S-Brown',0,0,'[[regtime]]','[[regtime]]'),(1273,9,'simple','WJ05-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1274,9,'simple','WJ05-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1275,9,'simple','WJ05-M-Brown',0,0,'[[regtime]]','[[regtime]]'),(1276,9,'simple','WJ05-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1277,9,'simple','WJ05-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1278,9,'simple','WJ05-L-Brown',0,0,'[[regtime]]','[[regtime]]'),(1279,9,'simple','WJ05-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1280,9,'simple','WJ05-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1281,9,'simple','WJ05-XL-Brown',0,0,'[[regtime]]','[[regtime]]'),(1282,9,'simple','WJ05-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1283,9,'simple','WJ05-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1284,9,'configurable','WJ05',1,0,'[[regtime]]','[[regtime]]'),(1285,9,'simple','WJ07-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1286,9,'simple','WJ07-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1287,9,'simple','WJ07-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1288,9,'simple','WJ07-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1289,9,'simple','WJ07-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1290,9,'simple','WJ07-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1291,9,'simple','WJ07-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1292,9,'simple','WJ07-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1293,9,'simple','WJ07-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1294,9,'simple','WJ07-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1295,9,'simple','WJ07-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1296,9,'simple','WJ07-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1297,9,'simple','WJ07-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1298,9,'simple','WJ07-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1299,9,'simple','WJ07-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1300,9,'configurable','WJ07',1,0,'[[regtime]]','[[regtime]]'),(1301,9,'simple','WJ08-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1302,9,'simple','WJ08-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1303,9,'simple','WJ08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1304,9,'simple','WJ08-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1305,9,'simple','WJ08-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1306,9,'simple','WJ08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1307,9,'simple','WJ08-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1308,9,'simple','WJ08-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1309,9,'simple','WJ08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1310,9,'simple','WJ08-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1311,9,'simple','WJ08-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1312,9,'simple','WJ08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1313,9,'simple','WJ08-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1314,9,'simple','WJ08-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1315,9,'simple','WJ08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1316,9,'configurable','WJ08',1,0,'[[regtime]]','[[regtime]]'),(1317,9,'simple','WJ09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1318,9,'simple','WJ09-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1319,9,'simple','WJ09-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1320,9,'simple','WJ09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1321,9,'simple','WJ09-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1322,9,'simple','WJ09-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1323,9,'simple','WJ09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1324,9,'simple','WJ09-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1325,9,'simple','WJ09-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1326,9,'simple','WJ09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1327,9,'simple','WJ09-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1328,9,'simple','WJ09-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1329,9,'simple','WJ09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1330,9,'simple','WJ09-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1331,9,'simple','WJ09-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1332,9,'configurable','WJ09',1,0,'[[regtime]]','[[regtime]]'),(1333,9,'simple','WJ10-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1334,9,'simple','WJ10-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1335,9,'simple','WJ10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1336,9,'simple','WJ10-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1337,9,'simple','WJ10-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1338,9,'simple','WJ10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1339,9,'simple','WJ10-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1340,9,'simple','WJ10-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1341,9,'simple','WJ10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1342,9,'simple','WJ10-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1343,9,'simple','WJ10-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1344,9,'simple','WJ10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1345,9,'simple','WJ10-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1346,9,'simple','WJ10-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1347,9,'simple','WJ10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1348,9,'configurable','WJ10',1,0,'[[regtime]]','[[regtime]]'),(1349,9,'simple','WJ11-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1350,9,'simple','WJ11-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1351,9,'simple','WJ11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1352,9,'simple','WJ11-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1353,9,'simple','WJ11-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1354,9,'simple','WJ11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1355,9,'simple','WJ11-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1356,9,'simple','WJ11-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1357,9,'simple','WJ11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1358,9,'simple','WJ11-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1359,9,'simple','WJ11-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1360,9,'simple','WJ11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1361,9,'simple','WJ11-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1362,9,'simple','WJ11-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1363,9,'simple','WJ11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1364,9,'configurable','WJ11',1,0,'[[regtime]]','[[regtime]]'),(1365,9,'simple','WJ06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1366,9,'simple','WJ06-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1367,9,'simple','WJ06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1368,9,'simple','WJ06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1369,9,'simple','WJ06-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1370,9,'simple','WJ06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1371,9,'simple','WJ06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1372,9,'simple','WJ06-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1373,9,'simple','WJ06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1374,9,'simple','WJ06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1375,9,'simple','WJ06-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1376,9,'simple','WJ06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1377,9,'simple','WJ06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1378,9,'simple','WJ06-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1379,9,'simple','WJ06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1380,9,'configurable','WJ06',1,0,'[[regtime]]','[[regtime]]'),(1381,9,'simple','WJ12-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1382,9,'simple','WJ12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1383,9,'simple','WJ12-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1384,9,'simple','WJ12-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1385,9,'simple','WJ12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1386,9,'simple','WJ12-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1387,9,'simple','WJ12-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1388,9,'simple','WJ12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1389,9,'simple','WJ12-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1390,9,'simple','WJ12-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1391,9,'simple','WJ12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1392,9,'simple','WJ12-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1393,9,'simple','WJ12-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1394,9,'simple','WJ12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1395,9,'simple','WJ12-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1396,9,'configurable','WJ12',1,0,'[[regtime]]','[[regtime]]'),(1397,9,'simple','WS02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1398,9,'simple','WS02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1399,9,'simple','WS02-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1400,9,'simple','WS02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1401,9,'simple','WS02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1402,9,'simple','WS02-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1403,9,'simple','WS02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1404,9,'simple','WS02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1405,9,'simple','WS02-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1406,9,'simple','WS02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1407,9,'simple','WS02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1408,9,'simple','WS02-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1409,9,'simple','WS02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1410,9,'simple','WS02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1411,9,'simple','WS02-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1412,9,'configurable','WS02',1,0,'[[regtime]]','[[regtime]]'),(1413,9,'simple','WS03-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1414,9,'simple','WS03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1415,9,'simple','WS03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1416,9,'simple','WS03-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1417,9,'simple','WS03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1418,9,'simple','WS03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1419,9,'simple','WS03-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1420,9,'simple','WS03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1421,9,'simple','WS03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1422,9,'simple','WS03-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1423,9,'simple','WS03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1424,9,'simple','WS03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1425,9,'simple','WS03-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1426,9,'simple','WS03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1427,9,'simple','WS03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1428,9,'configurable','WS03',1,0,'[[regtime]]','[[regtime]]'),(1429,9,'simple','WS04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1430,9,'simple','WS04-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1431,9,'simple','WS04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1432,9,'simple','WS04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1433,9,'simple','WS04-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1434,9,'simple','WS04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1435,9,'simple','WS04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1436,9,'simple','WS04-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1437,9,'simple','WS04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1438,9,'simple','WS04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1439,9,'simple','WS04-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1440,9,'simple','WS04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1441,9,'simple','WS04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1442,9,'simple','WS04-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1443,9,'simple','WS04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1444,9,'configurable','WS04',1,0,'[[regtime]]','[[regtime]]'),(1445,9,'simple','WS06-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1446,9,'simple','WS06-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1447,9,'simple','WS06-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1448,9,'simple','WS06-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1449,9,'simple','WS06-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1450,9,'simple','WS06-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1451,9,'simple','WS06-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1452,9,'simple','WS06-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1453,9,'simple','WS06-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1454,9,'simple','WS06-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1455,9,'simple','WS06-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1456,9,'simple','WS06-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1457,9,'simple','WS06-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1458,9,'simple','WS06-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1459,9,'simple','WS06-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1460,9,'configurable','WS06',1,0,'[[regtime]]','[[regtime]]'),(1461,9,'simple','WS07-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1462,9,'simple','WS07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1463,9,'simple','WS07-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1464,9,'simple','WS07-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1465,9,'simple','WS07-S-White',0,0,'[[regtime]]','[[regtime]]'),(1466,9,'simple','WS07-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1467,9,'simple','WS07-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1468,9,'simple','WS07-M-White',0,0,'[[regtime]]','[[regtime]]'),(1469,9,'simple','WS07-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1470,9,'simple','WS07-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1471,9,'simple','WS07-L-White',0,0,'[[regtime]]','[[regtime]]'),(1472,9,'simple','WS07-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1473,9,'simple','WS07-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1474,9,'simple','WS07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1475,9,'simple','WS07-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1476,9,'configurable','WS07',1,0,'[[regtime]]','[[regtime]]'),(1477,9,'simple','WS08-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1478,9,'simple','WS08-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1479,9,'simple','WS08-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1480,9,'simple','WS08-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1481,9,'simple','WS08-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1482,9,'simple','WS08-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1483,9,'simple','WS08-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1484,9,'simple','WS08-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1485,9,'simple','WS08-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1486,9,'simple','WS08-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1487,9,'simple','WS08-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1488,9,'simple','WS08-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1489,9,'simple','WS08-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1490,9,'simple','WS08-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1491,9,'simple','WS08-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1492,9,'configurable','WS08',1,0,'[[regtime]]','[[regtime]]'),(1493,9,'simple','WS09-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1494,9,'simple','WS09-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1495,9,'simple','WS09-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1496,9,'simple','WS09-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1497,9,'simple','WS09-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1498,9,'simple','WS09-S-White',0,0,'[[regtime]]','[[regtime]]'),(1499,9,'simple','WS09-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1500,9,'simple','WS09-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1501,9,'simple','WS09-M-White',0,0,'[[regtime]]','[[regtime]]'),(1502,9,'simple','WS09-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1503,9,'simple','WS09-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1504,9,'simple','WS09-L-White',0,0,'[[regtime]]','[[regtime]]'),(1505,9,'simple','WS09-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1506,9,'simple','WS09-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1507,9,'simple','WS09-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1508,9,'configurable','WS09',1,0,'[[regtime]]','[[regtime]]'),(1509,9,'simple','WS10-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1510,9,'simple','WS10-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1511,9,'simple','WS10-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1512,9,'simple','WS10-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1513,9,'simple','WS10-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1514,9,'simple','WS10-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1515,9,'simple','WS10-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1516,9,'simple','WS10-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1517,9,'simple','WS10-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1518,9,'simple','WS10-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1519,9,'simple','WS10-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1520,9,'simple','WS10-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1521,9,'simple','WS10-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1522,9,'simple','WS10-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1523,9,'simple','WS10-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1524,9,'configurable','WS10',1,0,'[[regtime]]','[[regtime]]'),(1525,9,'simple','WS11-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1526,9,'simple','WS11-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1527,9,'simple','WS11-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1528,9,'simple','WS11-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1529,9,'simple','WS11-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1530,9,'simple','WS11-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1531,9,'simple','WS11-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1532,9,'simple','WS11-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1533,9,'simple','WS11-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1534,9,'simple','WS11-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1535,9,'simple','WS11-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1536,9,'simple','WS11-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1537,9,'simple','WS11-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1538,9,'simple','WS11-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1539,9,'simple','WS11-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1540,9,'configurable','WS11',1,0,'[[regtime]]','[[regtime]]'),(1541,9,'simple','WS12-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1542,9,'simple','WS12-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1543,9,'simple','WS12-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1544,9,'simple','WS12-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1545,9,'simple','WS12-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1546,9,'simple','WS12-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1547,9,'simple','WS12-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1548,9,'simple','WS12-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1549,9,'simple','WS12-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1550,9,'simple','WS12-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1551,9,'simple','WS12-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1552,9,'simple','WS12-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1553,9,'simple','WS12-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1554,9,'simple','WS12-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1555,9,'simple','WS12-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1556,9,'configurable','WS12',1,0,'[[regtime]]','[[regtime]]'),(1557,9,'simple','WS01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1558,9,'simple','WS01-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1559,9,'simple','WS01-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1560,9,'simple','WS01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1561,9,'simple','WS01-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1562,9,'simple','WS01-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1563,9,'simple','WS01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1564,9,'simple','WS01-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1565,9,'simple','WS01-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1566,9,'simple','WS01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1567,9,'simple','WS01-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1568,9,'simple','WS01-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1569,9,'simple','WS01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1570,9,'simple','WS01-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1571,9,'simple','WS01-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1572,9,'configurable','WS01',1,0,'[[regtime]]','[[regtime]]'),(1573,9,'simple','WS05-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1574,9,'simple','WS05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1575,9,'simple','WS05-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1576,9,'simple','WS05-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1577,9,'simple','WS05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1578,9,'simple','WS05-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1579,9,'simple','WS05-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1580,9,'simple','WS05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1581,9,'simple','WS05-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1582,9,'simple','WS05-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1583,9,'simple','WS05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1584,9,'simple','WS05-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1585,9,'simple','WS05-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1586,9,'simple','WS05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1587,9,'simple','WS05-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1588,9,'configurable','WS05',1,0,'[[regtime]]','[[regtime]]'),(1589,9,'simple','WB01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1590,9,'simple','WB01-XS-Gray',0,0,'[[regtime]]','[[regtime]]'),(1591,9,'simple','WB01-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1592,9,'simple','WB01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1593,9,'simple','WB01-S-Gray',0,0,'[[regtime]]','[[regtime]]'),(1594,9,'simple','WB01-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1595,9,'simple','WB01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1596,9,'simple','WB01-M-Gray',0,0,'[[regtime]]','[[regtime]]'),(1597,9,'simple','WB01-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1598,9,'simple','WB01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1599,9,'simple','WB01-L-Gray',0,0,'[[regtime]]','[[regtime]]'),(1600,9,'simple','WB01-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1601,9,'simple','WB01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1602,9,'simple','WB01-XL-Gray',0,0,'[[regtime]]','[[regtime]]'),(1603,9,'simple','WB01-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1604,9,'configurable','WB01',1,0,'[[regtime]]','[[regtime]]'),(1605,9,'simple','WB02-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1606,9,'simple','WB02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1607,9,'simple','WB02-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1608,9,'simple','WB02-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1609,9,'simple','WB02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1610,9,'simple','WB02-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1611,9,'simple','WB02-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1612,9,'simple','WB02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1613,9,'simple','WB02-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1614,9,'simple','WB02-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1615,9,'simple','WB02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1616,9,'simple','WB02-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1617,9,'simple','WB02-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1618,9,'simple','WB02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1619,9,'simple','WB02-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1620,9,'configurable','WB02',1,0,'[[regtime]]','[[regtime]]'),(1621,9,'simple','WB03-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1622,9,'simple','WB03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1623,9,'simple','WB03-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1624,9,'simple','WB03-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1625,9,'simple','WB03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1626,9,'simple','WB03-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1627,9,'simple','WB03-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1628,9,'simple','WB03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1629,9,'simple','WB03-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1630,9,'simple','WB03-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1631,9,'simple','WB03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1632,9,'simple','WB03-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1633,9,'simple','WB03-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1634,9,'simple','WB03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1635,9,'simple','WB03-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1636,9,'configurable','WB03',1,0,'[[regtime]]','[[regtime]]'),(1637,9,'simple','WB04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1638,9,'simple','WB04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1639,9,'simple','WB04-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1640,9,'simple','WB04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1641,9,'simple','WB04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1642,9,'simple','WB04-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1643,9,'simple','WB04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1644,9,'simple','WB04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1645,9,'simple','WB04-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1646,9,'simple','WB04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1647,9,'simple','WB04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1648,9,'simple','WB04-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1649,9,'simple','WB04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1650,9,'simple','WB04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1651,9,'simple','WB04-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1652,9,'configurable','WB04',1,0,'[[regtime]]','[[regtime]]'),(1653,9,'simple','WB05-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1654,9,'simple','WB05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1655,9,'simple','WB05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1656,9,'simple','WB05-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1657,9,'simple','WB05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1658,9,'simple','WB05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1659,9,'simple','WB05-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1660,9,'simple','WB05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1661,9,'simple','WB05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1662,9,'simple','WB05-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1663,9,'simple','WB05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1664,9,'simple','WB05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1665,9,'simple','WB05-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1666,9,'simple','WB05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1667,9,'simple','WB05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1668,9,'configurable','WB05',1,0,'[[regtime]]','[[regtime]]'),(1669,9,'simple','WT01-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1670,9,'simple','WT01-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1671,9,'simple','WT01-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1672,9,'simple','WT01-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1673,9,'simple','WT01-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1674,9,'simple','WT01-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1675,9,'simple','WT01-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1676,9,'simple','WT01-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1677,9,'simple','WT01-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1678,9,'simple','WT01-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1679,9,'simple','WT01-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1680,9,'simple','WT01-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1681,9,'simple','WT01-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1682,9,'simple','WT01-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1683,9,'simple','WT01-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1684,9,'configurable','WT01',1,0,'[[regtime]]','[[regtime]]'),(1685,9,'simple','WT02-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1686,9,'simple','WT02-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1687,9,'simple','WT02-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1688,9,'simple','WT02-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1689,9,'simple','WT02-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1690,9,'simple','WT02-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1691,9,'simple','WT02-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1692,9,'simple','WT02-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1693,9,'simple','WT02-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1694,9,'simple','WT02-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1695,9,'simple','WT02-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1696,9,'simple','WT02-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1697,9,'simple','WT02-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1698,9,'simple','WT02-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1699,9,'simple','WT02-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1700,9,'configurable','WT02',1,0,'[[regtime]]','[[regtime]]'),(1701,9,'simple','WT03-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1702,9,'simple','WT03-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1703,9,'simple','WT03-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1704,9,'simple','WT03-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1705,9,'simple','WT03-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1706,9,'simple','WT03-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1707,9,'simple','WT03-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1708,9,'simple','WT03-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1709,9,'simple','WT03-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1710,9,'simple','WT03-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1711,9,'simple','WT03-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1712,9,'simple','WT03-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1713,9,'simple','WT03-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1714,9,'simple','WT03-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1715,9,'simple','WT03-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1716,9,'configurable','WT03',1,0,'[[regtime]]','[[regtime]]'),(1717,9,'simple','WT04-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1718,9,'simple','WT04-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1719,9,'simple','WT04-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1720,9,'simple','WT04-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1721,9,'simple','WT04-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1722,9,'simple','WT04-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1723,9,'simple','WT04-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1724,9,'simple','WT04-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1725,9,'simple','WT04-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1726,9,'simple','WT04-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1727,9,'simple','WT04-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1728,9,'simple','WT04-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1729,9,'simple','WT04-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1730,9,'simple','WT04-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1731,9,'simple','WT04-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1732,9,'configurable','WT04',1,0,'[[regtime]]','[[regtime]]'),(1733,9,'simple','WT05-XS-Orange',0,0,'[[regtime]]','[[regtime]]'),(1734,9,'simple','WT05-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1735,9,'simple','WT05-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1736,9,'simple','WT05-S-Orange',0,0,'[[regtime]]','[[regtime]]'),(1737,9,'simple','WT05-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1738,9,'simple','WT05-S-White',0,0,'[[regtime]]','[[regtime]]'),(1739,9,'simple','WT05-M-Orange',0,0,'[[regtime]]','[[regtime]]'),(1740,9,'simple','WT05-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1741,9,'simple','WT05-M-White',0,0,'[[regtime]]','[[regtime]]'),(1742,9,'simple','WT05-L-Orange',0,0,'[[regtime]]','[[regtime]]'),(1743,9,'simple','WT05-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1744,9,'simple','WT05-L-White',0,0,'[[regtime]]','[[regtime]]'),(1745,9,'simple','WT05-XL-Orange',0,0,'[[regtime]]','[[regtime]]'),(1746,9,'simple','WT05-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1747,9,'simple','WT05-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1748,9,'configurable','WT05',1,0,'[[regtime]]','[[regtime]]'),(1749,9,'simple','WT06-XS-Blue',0,0,'[[regtime]]','[[regtime]]'),(1750,9,'simple','WT06-XS-Red',0,0,'[[regtime]]','[[regtime]]'),(1751,9,'simple','WT06-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1752,9,'simple','WT06-S-Blue',0,0,'[[regtime]]','[[regtime]]'),(1753,9,'simple','WT06-S-Red',0,0,'[[regtime]]','[[regtime]]'),(1754,9,'simple','WT06-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1755,9,'simple','WT06-M-Blue',0,0,'[[regtime]]','[[regtime]]'),(1756,9,'simple','WT06-M-Red',0,0,'[[regtime]]','[[regtime]]'),(1757,9,'simple','WT06-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1758,9,'simple','WT06-L-Blue',0,0,'[[regtime]]','[[regtime]]'),(1759,9,'simple','WT06-L-Red',0,0,'[[regtime]]','[[regtime]]'),(1760,9,'simple','WT06-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1761,9,'simple','WT06-XL-Blue',0,0,'[[regtime]]','[[regtime]]'),(1762,9,'simple','WT06-XL-Red',0,0,'[[regtime]]','[[regtime]]'),(1763,9,'simple','WT06-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1764,9,'configurable','WT06',1,0,'[[regtime]]','[[regtime]]'),(1765,9,'simple','WT07-XS-Green',0,0,'[[regtime]]','[[regtime]]'),(1766,9,'simple','WT07-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1767,9,'simple','WT07-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1768,9,'simple','WT07-S-Green',0,0,'[[regtime]]','[[regtime]]'),(1769,9,'simple','WT07-S-White',0,0,'[[regtime]]','[[regtime]]'),(1770,9,'simple','WT07-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1771,9,'simple','WT07-M-Green',0,0,'[[regtime]]','[[regtime]]'),(1772,9,'simple','WT07-M-White',0,0,'[[regtime]]','[[regtime]]'),(1773,9,'simple','WT07-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1774,9,'simple','WT07-L-Green',0,0,'[[regtime]]','[[regtime]]'),(1775,9,'simple','WT07-L-White',0,0,'[[regtime]]','[[regtime]]'),(1776,9,'simple','WT07-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1777,9,'simple','WT07-XL-Green',0,0,'[[regtime]]','[[regtime]]'),(1778,9,'simple','WT07-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1779,9,'simple','WT07-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1780,9,'configurable','WT07',1,0,'[[regtime]]','[[regtime]]'),(1781,9,'simple','WT08-XS-Black',0,0,'[[regtime]]','[[regtime]]'),(1782,9,'simple','WT08-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1783,9,'simple','WT08-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1784,9,'simple','WT08-S-Black',0,0,'[[regtime]]','[[regtime]]'),(1785,9,'simple','WT08-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1786,9,'simple','WT08-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1787,9,'simple','WT08-M-Black',0,0,'[[regtime]]','[[regtime]]'),(1788,9,'simple','WT08-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1789,9,'simple','WT08-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1790,9,'simple','WT08-L-Black',0,0,'[[regtime]]','[[regtime]]'),(1791,9,'simple','WT08-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1792,9,'simple','WT08-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1793,9,'simple','WT08-XL-Black',0,0,'[[regtime]]','[[regtime]]'),(1794,9,'simple','WT08-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1795,9,'simple','WT08-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1796,9,'configurable','WT08',1,0,'[[regtime]]','[[regtime]]'),(1797,9,'simple','WT09-XS-Purple',0,0,'[[regtime]]','[[regtime]]'),(1798,9,'simple','WT09-XS-White',0,0,'[[regtime]]','[[regtime]]'),(1799,9,'simple','WT09-XS-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1800,9,'simple','WT09-S-Purple',0,0,'[[regtime]]','[[regtime]]'),(1801,9,'simple','WT09-S-White',0,0,'[[regtime]]','[[regtime]]'),(1802,9,'simple','WT09-S-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1803,9,'simple','WT09-M-Purple',0,0,'[[regtime]]','[[regtime]]'),(1804,9,'simple','WT09-M-White',0,0,'[[regtime]]','[[regtime]]'),(1805,9,'simple','WT09-M-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1806,9,'simple','WT09-L-Purple',0,0,'[[regtime]]','[[regtime]]'),(1807,9,'simple','WT09-L-White',0,0,'[[regtime]]','[[regtime]]'),(1808,9,'simple','WT09-L-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1809,9,'simple','WT09-XL-Purple',0,0,'[[regtime]]','[[regtime]]'),(1810,9,'simple','WT09-XL-White',0,0,'[[regtime]]','[[regtime]]'),(1811,9,'simple','WT09-XL-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1812,9,'configurable','WT09',1,0,'[[regtime]]','[[regtime]]'),(1813,10,'simple','WP01-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1814,10,'simple','WP01-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1815,10,'simple','WP01-28-White',0,0,'[[regtime]]','[[regtime]]'),(1816,10,'simple','WP01-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1817,10,'simple','WP01-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1818,10,'simple','WP01-29-White',0,0,'[[regtime]]','[[regtime]]'),(1819,10,'configurable','WP01',1,0,'[[regtime]]','[[regtime]]'),(1820,10,'simple','WP02-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1821,10,'simple','WP02-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1822,10,'simple','WP02-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1823,10,'simple','WP02-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1824,10,'simple','WP02-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1825,10,'simple','WP02-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1826,10,'configurable','WP02',1,0,'[[regtime]]','[[regtime]]'),(1827,10,'simple','WP03-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1828,10,'simple','WP03-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1829,10,'simple','WP03-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1830,10,'simple','WP03-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1831,10,'simple','WP03-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1832,10,'simple','WP03-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1833,10,'configurable','WP03',1,0,'[[regtime]]','[[regtime]]'),(1834,10,'simple','WP04-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1835,10,'simple','WP04-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1836,10,'simple','WP04-28-White',0,0,'[[regtime]]','[[regtime]]'),(1837,10,'simple','WP04-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1838,10,'simple','WP04-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1839,10,'simple','WP04-29-White',0,0,'[[regtime]]','[[regtime]]'),(1840,10,'configurable','WP04',1,0,'[[regtime]]','[[regtime]]'),(1841,10,'simple','WP05-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1842,10,'simple','WP05-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1843,10,'simple','WP05-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1844,10,'simple','WP05-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1845,10,'simple','WP05-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1846,10,'simple','WP05-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1847,10,'configurable','WP05',1,0,'[[regtime]]','[[regtime]]'),(1848,10,'simple','WP06-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1849,10,'simple','WP06-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1850,10,'simple','WP06-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1851,10,'simple','WP06-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1852,10,'simple','WP06-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1853,10,'simple','WP06-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1854,10,'configurable','WP06',1,0,'[[regtime]]','[[regtime]]'),(1855,10,'simple','WP07-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1856,10,'simple','WP07-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1857,10,'simple','WP07-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1858,10,'simple','WP07-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1859,10,'simple','WP07-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1860,10,'simple','WP07-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1861,10,'configurable','WP07',1,0,'[[regtime]]','[[regtime]]'),(1862,10,'simple','WP08-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1863,10,'simple','WP08-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1864,10,'simple','WP08-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1865,10,'simple','WP08-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1866,10,'simple','WP08-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1867,10,'simple','WP08-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1868,10,'configurable','WP08',1,0,'[[regtime]]','[[regtime]]'),(1869,10,'simple','WP09-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1870,10,'simple','WP09-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1871,10,'simple','WP09-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1872,10,'simple','WP09-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1873,10,'simple','WP09-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1874,10,'simple','WP09-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1875,10,'configurable','WP09',1,0,'[[regtime]]','[[regtime]]'),(1876,10,'simple','WP10-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1877,10,'simple','WP10-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1878,10,'simple','WP10-28-White',0,0,'[[regtime]]','[[regtime]]'),(1879,10,'simple','WP10-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1880,10,'simple','WP10-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1881,10,'simple','WP10-29-White',0,0,'[[regtime]]','[[regtime]]'),(1882,10,'configurable','WP10',1,0,'[[regtime]]','[[regtime]]'),(1883,10,'simple','WP11-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1884,10,'simple','WP11-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1885,10,'simple','WP11-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1886,10,'simple','WP11-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1887,10,'simple','WP11-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1888,10,'simple','WP11-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1889,10,'configurable','WP11',1,0,'[[regtime]]','[[regtime]]'),(1890,10,'simple','WP12-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1891,10,'simple','WP12-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1892,10,'simple','WP12-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1893,10,'simple','WP12-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1894,10,'simple','WP12-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1895,10,'simple','WP12-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1896,10,'configurable','WP12',1,0,'[[regtime]]','[[regtime]]'),(1897,10,'simple','WP13-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1898,10,'simple','WP13-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1899,10,'simple','WP13-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1900,10,'simple','WP13-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1901,10,'simple','WP13-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1902,10,'simple','WP13-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1903,10,'configurable','WP13',1,0,'[[regtime]]','[[regtime]]'),(1904,10,'simple','WSH01-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1905,10,'simple','WSH01-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1906,10,'simple','WSH01-28-Red',0,0,'[[regtime]]','[[regtime]]'),(1907,10,'simple','WSH01-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1908,10,'simple','WSH01-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1909,10,'simple','WSH01-29-Red',0,0,'[[regtime]]','[[regtime]]'),(1910,10,'simple','WSH01-30-Black',0,0,'[[regtime]]','[[regtime]]'),(1911,10,'simple','WSH01-30-Green',0,0,'[[regtime]]','[[regtime]]'),(1912,10,'simple','WSH01-30-Red',0,0,'[[regtime]]','[[regtime]]'),(1913,10,'simple','WSH01-31-Black',0,0,'[[regtime]]','[[regtime]]'),(1914,10,'simple','WSH01-31-Green',0,0,'[[regtime]]','[[regtime]]'),(1915,10,'simple','WSH01-31-Red',0,0,'[[regtime]]','[[regtime]]'),(1916,10,'simple','WSH01-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1917,10,'simple','WSH01-32-Green',0,0,'[[regtime]]','[[regtime]]'),(1918,10,'simple','WSH01-32-Red',0,0,'[[regtime]]','[[regtime]]'),(1919,10,'configurable','WSH01',1,0,'[[regtime]]','[[regtime]]'),(1920,10,'simple','WSH02-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1921,10,'simple','WSH02-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1922,10,'simple','WSH02-28-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1923,10,'simple','WSH02-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1924,10,'simple','WSH02-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1925,10,'simple','WSH02-29-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1926,10,'simple','WSH02-30-Gray',0,0,'[[regtime]]','[[regtime]]'),(1927,10,'simple','WSH02-30-Orange',0,0,'[[regtime]]','[[regtime]]'),(1928,10,'simple','WSH02-30-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1929,10,'simple','WSH02-31-Gray',0,0,'[[regtime]]','[[regtime]]'),(1930,10,'simple','WSH02-31-Orange',0,0,'[[regtime]]','[[regtime]]'),(1931,10,'simple','WSH02-31-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1932,10,'simple','WSH02-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(1933,10,'simple','WSH02-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(1934,10,'simple','WSH02-32-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1935,10,'configurable','WSH02',1,0,'[[regtime]]','[[regtime]]'),(1936,10,'simple','WSH03-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1937,10,'simple','WSH03-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1938,10,'simple','WSH03-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1939,10,'simple','WSH03-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1940,10,'simple','WSH03-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1941,10,'simple','WSH03-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1942,10,'simple','WSH03-30-Blue',0,0,'[[regtime]]','[[regtime]]'),(1943,10,'simple','WSH03-30-Gray',0,0,'[[regtime]]','[[regtime]]'),(1944,10,'simple','WSH03-30-Orange',0,0,'[[regtime]]','[[regtime]]'),(1945,10,'simple','WSH03-31-Blue',0,0,'[[regtime]]','[[regtime]]'),(1946,10,'simple','WSH03-31-Gray',0,0,'[[regtime]]','[[regtime]]'),(1947,10,'simple','WSH03-31-Orange',0,0,'[[regtime]]','[[regtime]]'),(1948,10,'simple','WSH03-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(1949,10,'simple','WSH03-32-Gray',0,0,'[[regtime]]','[[regtime]]'),(1950,10,'simple','WSH03-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(1951,10,'configurable','WSH03',1,0,'[[regtime]]','[[regtime]]'),(1952,10,'simple','WSH04-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1953,10,'simple','WSH04-28-Green',0,0,'[[regtime]]','[[regtime]]'),(1954,10,'simple','WSH04-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1955,10,'simple','WSH04-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1956,10,'simple','WSH04-29-Green',0,0,'[[regtime]]','[[regtime]]'),(1957,10,'simple','WSH04-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1958,10,'simple','WSH04-30-Black',0,0,'[[regtime]]','[[regtime]]'),(1959,10,'simple','WSH04-30-Green',0,0,'[[regtime]]','[[regtime]]'),(1960,10,'simple','WSH04-30-Orange',0,0,'[[regtime]]','[[regtime]]'),(1961,10,'simple','WSH04-31-Black',0,0,'[[regtime]]','[[regtime]]'),(1962,10,'simple','WSH04-31-Green',0,0,'[[regtime]]','[[regtime]]'),(1963,10,'simple','WSH04-31-Orange',0,0,'[[regtime]]','[[regtime]]'),(1964,10,'simple','WSH04-32-Black',0,0,'[[regtime]]','[[regtime]]'),(1965,10,'simple','WSH04-32-Green',0,0,'[[regtime]]','[[regtime]]'),(1966,10,'simple','WSH04-32-Orange',0,0,'[[regtime]]','[[regtime]]'),(1967,10,'configurable','WSH04',1,0,'[[regtime]]','[[regtime]]'),(1968,10,'simple','WSH05-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1969,10,'simple','WSH05-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1970,10,'simple','WSH05-28-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1971,10,'simple','WSH05-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1972,10,'simple','WSH05-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1973,10,'simple','WSH05-29-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1974,10,'simple','WSH05-30-Blue',0,0,'[[regtime]]','[[regtime]]'),(1975,10,'simple','WSH05-30-Purple',0,0,'[[regtime]]','[[regtime]]'),(1976,10,'simple','WSH05-30-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1977,10,'simple','WSH05-31-Blue',0,0,'[[regtime]]','[[regtime]]'),(1978,10,'simple','WSH05-31-Purple',0,0,'[[regtime]]','[[regtime]]'),(1979,10,'simple','WSH05-31-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1980,10,'simple','WSH05-32-Blue',0,0,'[[regtime]]','[[regtime]]'),(1981,10,'simple','WSH05-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(1982,10,'simple','WSH05-32-Yellow',0,0,'[[regtime]]','[[regtime]]'),(1983,10,'configurable','WSH05',1,0,'[[regtime]]','[[regtime]]'),(1984,10,'simple','WSH06-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(1985,10,'simple','WSH06-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(1986,10,'simple','WSH06-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1987,10,'simple','WSH06-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(1988,10,'simple','WSH06-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(1989,10,'simple','WSH06-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1990,10,'configurable','WSH06',1,0,'[[regtime]]','[[regtime]]'),(1991,10,'simple','WSH07-28-Black',0,0,'[[regtime]]','[[regtime]]'),(1992,10,'simple','WSH07-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(1993,10,'simple','WSH07-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1994,10,'simple','WSH07-29-Black',0,0,'[[regtime]]','[[regtime]]'),(1995,10,'simple','WSH07-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(1996,10,'simple','WSH07-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(1997,10,'configurable','WSH07',1,0,'[[regtime]]','[[regtime]]'),(1998,10,'simple','WSH08-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(1999,10,'simple','WSH08-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(2000,10,'simple','WSH08-30-Purple',0,0,'[[regtime]]','[[regtime]]'),(2001,10,'simple','WSH08-31-Purple',0,0,'[[regtime]]','[[regtime]]'),(2002,10,'simple','WSH08-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(2003,10,'configurable','WSH08',1,0,'[[regtime]]','[[regtime]]'),(2004,10,'simple','WSH09-28-Gray',0,0,'[[regtime]]','[[regtime]]'),(2005,10,'simple','WSH09-28-Green',0,0,'[[regtime]]','[[regtime]]'),(2006,10,'simple','WSH09-28-White',0,0,'[[regtime]]','[[regtime]]'),(2007,10,'simple','WSH09-29-Gray',0,0,'[[regtime]]','[[regtime]]'),(2008,10,'simple','WSH09-29-Green',0,0,'[[regtime]]','[[regtime]]'),(2009,10,'simple','WSH09-29-White',0,0,'[[regtime]]','[[regtime]]'),(2010,10,'configurable','WSH09',1,0,'[[regtime]]','[[regtime]]'),(2011,10,'simple','WSH10-28-Black',0,0,'[[regtime]]','[[regtime]]'),(2012,10,'simple','WSH10-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(2013,10,'simple','WSH10-28-White',0,0,'[[regtime]]','[[regtime]]'),(2014,10,'simple','WSH10-29-Black',0,0,'[[regtime]]','[[regtime]]'),(2015,10,'simple','WSH10-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(2016,10,'simple','WSH10-29-White',0,0,'[[regtime]]','[[regtime]]'),(2017,10,'configurable','WSH10',1,0,'[[regtime]]','[[regtime]]'),(2018,10,'simple','WSH11-28-Blue',0,0,'[[regtime]]','[[regtime]]'),(2019,10,'simple','WSH11-28-Orange',0,0,'[[regtime]]','[[regtime]]'),(2020,10,'simple','WSH11-28-Red',0,0,'[[regtime]]','[[regtime]]'),(2021,10,'simple','WSH11-29-Blue',0,0,'[[regtime]]','[[regtime]]'),(2022,10,'simple','WSH11-29-Orange',0,0,'[[regtime]]','[[regtime]]'),(2023,10,'simple','WSH11-29-Red',0,0,'[[regtime]]','[[regtime]]'),(2024,10,'configurable','WSH11',1,0,'[[regtime]]','[[regtime]]'),(2025,10,'simple','WSH12-28-Green',0,0,'[[regtime]]','[[regtime]]'),(2026,10,'simple','WSH12-28-Purple',0,0,'[[regtime]]','[[regtime]]'),(2027,10,'simple','WSH12-28-Red',0,0,'[[regtime]]','[[regtime]]'),(2028,10,'simple','WSH12-29-Green',0,0,'[[regtime]]','[[regtime]]'),(2029,10,'simple','WSH12-29-Purple',0,0,'[[regtime]]','[[regtime]]'),(2030,10,'simple','WSH12-29-Red',0,0,'[[regtime]]','[[regtime]]'),(2031,10,'simple','WSH12-30-Green',0,0,'[[regtime]]','[[regtime]]'),(2032,10,'simple','WSH12-30-Purple',0,0,'[[regtime]]','[[regtime]]'),(2033,10,'simple','WSH12-30-Red',0,0,'[[regtime]]','[[regtime]]'),(2034,10,'simple','WSH12-31-Green',0,0,'[[regtime]]','[[regtime]]'),(2035,10,'simple','WSH12-31-Purple',0,0,'[[regtime]]','[[regtime]]'),(2036,10,'simple','WSH12-31-Red',0,0,'[[regtime]]','[[regtime]]'),(2037,10,'simple','WSH12-32-Green',0,0,'[[regtime]]','[[regtime]]'),(2038,10,'simple','WSH12-32-Purple',0,0,'[[regtime]]','[[regtime]]'),(2039,10,'simple','WSH12-32-Red',0,0,'[[regtime]]','[[regtime]]'),(2040,10,'configurable','WSH12',1,0,'[[regtime]]','[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_datetime`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_datetime` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DTIME_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_datetime`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_datetime` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_datetime` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_datetime` VALUES (1,79,0,2,'[[regtime]]'),(2,79,0,10,'[[regtime]]'),(3,79,0,11,'[[regtime]]'),(4,79,0,16,'[[regtime]]'),(5,79,0,41,'[[regtime]]'),(6,79,0,42,'[[regtime]]');
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_decimal`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_decimal` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_DEC_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DEC_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_DEC_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3904 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_decimal`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_decimal` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_decimal` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_decimal` VALUES (1,77,0,1,34.000000),(2,77,0,2,32.000000),(3,78,0,2,32.000000),(4,77,0,3,38.000000),(5,77,0,4,45.000000),(6,77,0,5,45.000000),(7,77,0,6,59.000000),(8,77,0,7,74.000000),(9,77,0,8,32.000000),(10,77,0,9,32.000000),(11,77,0,10,32.000000),(12,78,0,10,24.000000),(13,77,0,11,33.000000),(14,78,0,11,33.000000),(15,77,0,12,36.000000),(16,77,0,13,45.000000),(17,77,0,14,45.000000),(18,77,0,15,7.000000),(19,77,0,16,12.000000),(20,78,0,16,12.000000),(21,77,0,17,12.000000),(22,77,0,18,16.000000),(23,77,0,19,19.000000),(24,77,0,20,19.000000),(25,77,0,21,5.000000),(26,77,0,22,19.000000),(27,77,0,23,22.000000),(28,77,0,24,23.000000),(29,77,0,25,23.000000),(30,77,0,26,23.000000),(31,77,0,27,27.000000),(32,77,0,28,27.000000),(33,77,0,29,27.000000),(34,77,0,30,32.000000),(35,77,0,31,32.000000),(36,77,0,32,32.000000),(37,77,0,33,14.000000),(38,77,0,34,17.000000),(39,77,0,35,21.000000),(40,77,0,36,45.000000),(41,77,0,37,49.000000),(42,77,0,38,54.000000),(43,77,0,39,55.000000),(44,77,0,40,92.000000),(45,77,0,41,43.000000),(46,78,0,41,43.000000),(47,77,0,42,49.000000),(48,78,0,42,49.000000),(49,77,0,43,54.000000),(50,77,0,44,92.000000),(51,77,0,47,52.000000),(52,82,0,47,1.000000),(53,77,0,48,52.000000),(54,82,0,48,1.000000),(55,77,0,49,52.000000),(56,82,0,49,1.000000),(57,77,0,50,52.000000),(58,82,0,50,1.000000),(59,77,0,51,52.000000),(60,82,0,51,1.000000),(61,77,0,52,52.000000),(62,82,0,52,1.000000),(63,77,0,53,52.000000),(64,82,0,53,1.000000),(65,77,0,54,52.000000),(66,82,0,54,1.000000),(67,77,0,55,52.000000),(68,82,0,55,1.000000),(69,77,0,56,52.000000),(70,82,0,56,1.000000),(71,77,0,57,52.000000),(72,82,0,57,1.000000),(73,77,0,58,52.000000),(74,82,0,58,1.000000),(75,77,0,59,52.000000),(76,82,0,59,1.000000),(77,77,0,60,52.000000),(78,82,0,60,1.000000),(79,77,0,61,52.000000),(80,82,0,61,1.000000),(81,77,0,62,52.000000),(82,77,0,63,70.000000),(83,82,0,63,1.000000),(84,77,0,64,70.000000),(85,82,0,64,1.000000),(86,77,0,65,70.000000),(87,82,0,65,1.000000),(88,77,0,66,70.000000),(89,82,0,66,1.000000),(90,77,0,67,70.000000),(91,82,0,67,1.000000),(92,77,0,68,70.000000),(93,82,0,68,1.000000),(94,77,0,69,70.000000),(95,82,0,69,1.000000),(96,77,0,70,70.000000),(97,82,0,70,1.000000),(98,77,0,71,70.000000),(99,82,0,71,1.000000),(100,77,0,72,70.000000),(101,82,0,72,1.000000),(102,77,0,73,70.000000),(103,82,0,73,1.000000),(104,77,0,74,70.000000),(105,82,0,74,1.000000),(106,77,0,75,70.000000),(107,82,0,75,1.000000),(108,77,0,76,70.000000),(109,82,0,76,1.000000),(110,77,0,77,70.000000),(111,82,0,77,1.000000),(112,77,0,78,70.000000),(113,77,0,79,63.000000),(114,82,0,79,1.000000),(115,77,0,80,63.000000),(116,82,0,80,1.000000),(117,77,0,81,63.000000),(118,82,0,81,1.000000),(119,77,0,82,63.000000),(120,82,0,82,1.000000),(121,77,0,83,63.000000),(122,82,0,83,1.000000),(123,77,0,84,63.000000),(124,82,0,84,1.000000),(125,77,0,85,63.000000),(126,82,0,85,1.000000),(127,77,0,86,63.000000),(128,82,0,86,1.000000),(129,77,0,87,63.000000),(130,82,0,87,1.000000),(131,77,0,88,63.000000),(132,82,0,88,1.000000),(133,77,0,89,63.000000),(134,82,0,89,1.000000),(135,77,0,90,63.000000),(136,82,0,90,1.000000),(137,77,0,91,63.000000),(138,82,0,91,1.000000),(139,77,0,92,63.000000),(140,82,0,92,1.000000),(141,77,0,93,63.000000),(142,82,0,93,1.000000),(143,77,0,94,63.000000),(144,77,0,95,60.000000),(145,82,0,95,1.000000),(146,77,0,96,60.000000),(147,82,0,96,1.000000),(148,77,0,97,60.000000),(149,82,0,97,1.000000),(150,77,0,98,60.000000),(151,82,0,98,1.000000),(152,77,0,99,60.000000),(153,82,0,99,1.000000),(154,77,0,100,60.000000),(155,82,0,100,1.000000),(156,77,0,101,60.000000),(157,82,0,101,1.000000),(158,77,0,102,60.000000),(159,82,0,102,1.000000),(160,77,0,103,60.000000),(161,82,0,103,1.000000),(162,77,0,104,60.000000),(163,82,0,104,1.000000),(164,77,0,105,60.000000),(165,82,0,105,1.000000),(166,77,0,106,60.000000),(167,82,0,106,1.000000),(168,77,0,107,60.000000),(169,82,0,107,1.000000),(170,77,0,108,60.000000),(171,82,0,108,1.000000),(172,77,0,109,60.000000),(173,82,0,109,1.000000),(174,77,0,110,60.000000),(175,77,0,111,52.000000),(176,82,0,111,1.000000),(177,77,0,112,52.000000),(178,82,0,112,1.000000),(179,77,0,113,52.000000),(180,82,0,113,1.000000),(181,77,0,114,52.000000),(182,82,0,114,1.000000),(183,77,0,115,52.000000),(184,82,0,115,1.000000),(185,77,0,116,52.000000),(186,82,0,116,1.000000),(187,77,0,117,52.000000),(188,82,0,117,1.000000),(189,77,0,118,52.000000),(190,82,0,118,1.000000),(191,77,0,119,52.000000),(192,82,0,119,1.000000),(193,77,0,120,52.000000),(194,82,0,120,1.000000),(195,77,0,121,52.000000),(196,82,0,121,1.000000),(197,77,0,122,52.000000),(198,82,0,122,1.000000),(199,77,0,123,52.000000),(200,82,0,123,1.000000),(201,77,0,124,52.000000),(202,82,0,124,1.000000),(203,77,0,125,52.000000),(204,82,0,125,1.000000),(205,77,0,126,52.000000),(206,77,0,127,42.000000),(207,82,0,127,1.000000),(208,77,0,128,42.000000),(209,82,0,128,1.000000),(210,77,0,129,42.000000),(211,82,0,129,1.000000),(212,77,0,130,42.000000),(213,82,0,130,1.000000),(214,77,0,131,42.000000),(215,82,0,131,1.000000),(216,77,0,132,42.000000),(217,82,0,132,1.000000),(218,77,0,133,42.000000),(219,82,0,133,1.000000),(220,77,0,134,42.000000),(221,82,0,134,1.000000),(222,77,0,135,42.000000),(223,82,0,135,1.000000),(224,77,0,136,42.000000),(225,82,0,136,1.000000),(226,77,0,137,42.000000),(227,82,0,137,1.000000),(228,77,0,138,42.000000),(229,82,0,138,1.000000),(230,77,0,139,42.000000),(231,82,0,139,1.000000),(232,77,0,140,42.000000),(233,82,0,140,1.000000),(234,77,0,141,42.000000),(235,82,0,141,1.000000),(236,77,0,142,42.000000),(237,77,0,143,54.000000),(238,82,0,143,1.000000),(239,77,0,144,54.000000),(240,82,0,144,1.000000),(241,77,0,145,54.000000),(242,82,0,145,1.000000),(243,77,0,146,54.000000),(244,82,0,146,1.000000),(245,77,0,147,54.000000),(246,82,0,147,1.000000),(247,77,0,148,54.000000),(248,82,0,148,1.000000),(249,77,0,149,54.000000),(250,82,0,149,1.000000),(251,77,0,150,54.000000),(252,82,0,150,1.000000),(253,77,0,151,54.000000),(254,82,0,151,1.000000),(255,77,0,152,54.000000),(256,82,0,152,1.000000),(257,77,0,153,54.000000),(258,82,0,153,1.000000),(259,77,0,154,54.000000),(260,82,0,154,1.000000),(261,77,0,155,54.000000),(262,82,0,155,1.000000),(263,77,0,156,54.000000),(264,82,0,156,1.000000),(265,77,0,157,54.000000),(266,82,0,157,1.000000),(267,77,0,158,54.000000),(268,77,0,159,42.000000),(269,82,0,159,1.000000),(270,77,0,160,42.000000),(271,82,0,160,1.000000),(272,77,0,161,42.000000),(273,82,0,161,1.000000),(274,77,0,162,42.000000),(275,82,0,162,1.000000),(276,77,0,163,42.000000),(277,82,0,163,1.000000),(278,77,0,164,42.000000),(279,82,0,164,1.000000),(280,77,0,165,42.000000),(281,82,0,165,1.000000),(282,77,0,166,42.000000),(283,82,0,166,1.000000),(284,77,0,167,42.000000),(285,82,0,167,1.000000),(286,77,0,168,42.000000),(287,82,0,168,1.000000),(288,77,0,169,42.000000),(289,82,0,169,1.000000),(290,77,0,170,42.000000),(291,82,0,170,1.000000),(292,77,0,171,42.000000),(293,82,0,171,1.000000),(294,77,0,172,42.000000),(295,82,0,172,1.000000),(296,77,0,173,42.000000),(297,82,0,173,1.000000),(298,77,0,174,42.000000),(299,77,0,175,69.000000),(300,82,0,175,1.000000),(301,77,0,176,69.000000),(302,82,0,176,1.000000),(303,77,0,177,69.000000),(304,82,0,177,1.000000),(305,77,0,178,69.000000),(306,82,0,178,1.000000),(307,77,0,179,69.000000),(308,82,0,179,1.000000),(309,77,0,180,69.000000),(310,82,0,180,1.000000),(311,77,0,181,69.000000),(312,82,0,181,1.000000),(313,77,0,182,69.000000),(314,82,0,182,1.000000),(315,77,0,183,69.000000),(316,82,0,183,1.000000),(317,77,0,184,69.000000),(318,82,0,184,1.000000),(319,77,0,185,69.000000),(320,82,0,185,1.000000),(321,77,0,186,69.000000),(322,82,0,186,1.000000),(323,77,0,187,69.000000),(324,82,0,187,1.000000),(325,77,0,188,69.000000),(326,82,0,188,1.000000),(327,77,0,189,69.000000),(328,82,0,189,1.000000),(329,77,0,190,69.000000),(330,77,0,191,62.000000),(331,82,0,191,1.000000),(332,77,0,192,62.000000),(333,82,0,192,1.000000),(334,77,0,193,62.000000),(335,82,0,193,1.000000),(336,77,0,194,62.000000),(337,82,0,194,1.000000),(338,77,0,195,62.000000),(339,82,0,195,1.000000),(340,77,0,196,62.000000),(341,82,0,196,1.000000),(342,77,0,197,62.000000),(343,82,0,197,1.000000),(344,77,0,198,62.000000),(345,82,0,198,1.000000),(346,77,0,199,62.000000),(347,82,0,199,1.000000),(348,77,0,200,62.000000),(349,82,0,200,1.000000),(350,77,0,201,62.000000),(351,82,0,201,1.000000),(352,77,0,202,62.000000),(353,82,0,202,1.000000),(354,77,0,203,62.000000),(355,82,0,203,1.000000),(356,77,0,204,62.000000),(357,82,0,204,1.000000),(358,77,0,205,62.000000),(359,82,0,205,1.000000),(360,77,0,206,62.000000),(361,77,0,207,64.000000),(362,82,0,207,1.000000),(363,77,0,208,64.000000),(364,82,0,208,1.000000),(365,77,0,209,64.000000),(366,82,0,209,1.000000),(367,77,0,210,64.000000),(368,82,0,210,1.000000),(369,77,0,211,64.000000),(370,82,0,211,1.000000),(371,77,0,212,64.000000),(372,82,0,212,1.000000),(373,77,0,213,64.000000),(374,82,0,213,1.000000),(375,77,0,214,64.000000),(376,82,0,214,1.000000),(377,77,0,215,64.000000),(378,82,0,215,1.000000),(379,77,0,216,64.000000),(380,82,0,216,1.000000),(381,77,0,217,64.000000),(382,82,0,217,1.000000),(383,77,0,218,64.000000),(384,82,0,218,1.000000),(385,77,0,219,64.000000),(386,82,0,219,1.000000),(387,77,0,220,64.000000),(388,82,0,220,1.000000),(389,77,0,221,64.000000),(390,82,0,221,1.000000),(391,77,0,222,64.000000),(392,77,0,223,69.000000),(393,82,0,223,1.000000),(394,77,0,224,69.000000),(395,82,0,224,1.000000),(396,77,0,225,69.000000),(397,82,0,225,1.000000),(398,77,0,226,69.000000),(399,82,0,226,1.000000),(400,77,0,227,69.000000),(401,82,0,227,1.000000),(402,77,0,228,69.000000),(403,82,0,228,1.000000),(404,77,0,229,69.000000),(405,82,0,229,1.000000),(406,77,0,230,69.000000),(407,82,0,230,1.000000),(408,77,0,231,69.000000),(409,82,0,231,1.000000),(410,77,0,232,69.000000),(411,82,0,232,1.000000),(412,77,0,233,69.000000),(413,82,0,233,1.000000),(414,77,0,234,69.000000),(415,82,0,234,1.000000),(416,77,0,235,69.000000),(417,82,0,235,1.000000),(418,77,0,236,69.000000),(419,82,0,236,1.000000),(420,77,0,237,69.000000),(421,82,0,237,1.000000),(422,77,0,238,69.000000),(423,77,0,239,74.000000),(424,82,0,239,1.000000),(425,77,0,240,74.000000),(426,82,0,240,1.000000),(427,77,0,241,74.000000),(428,82,0,241,1.000000),(429,77,0,242,74.000000),(430,82,0,242,1.000000),(431,77,0,243,74.000000),(432,82,0,243,1.000000),(433,77,0,244,74.000000),(434,82,0,244,1.000000),(435,77,0,245,74.000000),(436,82,0,245,1.000000),(437,77,0,246,74.000000),(438,82,0,246,1.000000),(439,77,0,247,74.000000),(440,82,0,247,1.000000),(441,77,0,248,74.000000),(442,82,0,248,1.000000),(443,77,0,249,74.000000),(444,82,0,249,1.000000),(445,77,0,250,74.000000),(446,82,0,250,1.000000),(447,77,0,251,74.000000),(448,82,0,251,1.000000),(449,77,0,252,74.000000),(450,82,0,252,1.000000),(451,77,0,253,74.000000),(452,82,0,253,1.000000),(453,77,0,254,74.000000),(454,77,0,255,42.000000),(455,82,0,255,1.000000),(456,77,0,256,42.000000),(457,82,0,256,1.000000),(458,77,0,257,42.000000),(459,82,0,257,1.000000),(460,77,0,258,42.000000),(461,82,0,258,1.000000),(462,77,0,259,42.000000),(463,82,0,259,1.000000),(464,77,0,260,42.000000),(465,82,0,260,1.000000),(466,77,0,261,42.000000),(467,82,0,261,1.000000),(468,77,0,262,42.000000),(469,82,0,262,1.000000),(470,77,0,263,42.000000),(471,82,0,263,1.000000),(472,77,0,264,42.000000),(473,82,0,264,1.000000),(474,77,0,265,42.000000),(475,82,0,265,1.000000),(476,77,0,266,42.000000),(477,82,0,266,1.000000),(478,77,0,267,42.000000),(479,82,0,267,1.000000),(480,77,0,268,42.000000),(481,82,0,268,1.000000),(482,77,0,269,42.000000),(483,82,0,269,1.000000),(484,77,0,270,42.000000),(485,77,0,271,51.000000),(486,82,0,271,1.000000),(487,77,0,272,51.000000),(488,82,0,272,1.000000),(489,77,0,273,51.000000),(490,82,0,273,1.000000),(491,77,0,274,51.000000),(492,82,0,274,1.000000),(493,77,0,275,51.000000),(494,82,0,275,1.000000),(495,77,0,276,51.000000),(496,82,0,276,1.000000),(497,77,0,277,51.000000),(498,82,0,277,1.000000),(499,77,0,278,51.000000),(500,82,0,278,1.000000),(501,77,0,279,51.000000),(502,82,0,279,1.000000),(503,77,0,280,51.000000),(504,82,0,280,1.000000),(505,77,0,281,51.000000),(506,82,0,281,1.000000),(507,77,0,282,51.000000),(508,82,0,282,1.000000),(509,77,0,283,51.000000),(510,82,0,283,1.000000),(511,77,0,284,51.000000),(512,82,0,284,1.000000),(513,77,0,285,51.000000),(514,82,0,285,1.000000),(515,77,0,286,51.000000),(516,77,0,287,47.000000),(517,82,0,287,1.000000),(518,77,0,288,47.000000),(519,82,0,288,1.000000),(520,77,0,289,47.000000),(521,82,0,289,1.000000),(522,77,0,290,47.000000),(523,82,0,290,1.000000),(524,77,0,291,47.000000),(525,82,0,291,1.000000),(526,77,0,292,47.000000),(527,82,0,292,1.000000),(528,77,0,293,47.000000),(529,82,0,293,1.000000),(530,77,0,294,47.000000),(531,82,0,294,1.000000),(532,77,0,295,47.000000),(533,82,0,295,1.000000),(534,77,0,296,47.000000),(535,82,0,296,1.000000),(536,77,0,297,47.000000),(537,82,0,297,1.000000),(538,77,0,298,47.000000),(539,82,0,298,1.000000),(540,77,0,299,47.000000),(541,82,0,299,1.000000),(542,77,0,300,47.000000),(543,82,0,300,1.000000),(544,77,0,301,47.000000),(545,82,0,301,1.000000),(546,77,0,302,47.000000),(547,77,0,303,72.000000),(548,82,0,303,1.000000),(549,77,0,304,72.000000),(550,82,0,304,1.000000),(551,77,0,305,72.000000),(552,82,0,305,1.000000),(553,77,0,306,72.000000),(554,82,0,306,1.000000),(555,77,0,307,72.000000),(556,82,0,307,1.000000),(557,77,0,308,72.000000),(558,82,0,308,1.000000),(559,77,0,309,72.000000),(560,82,0,309,1.000000),(561,77,0,310,72.000000),(562,82,0,310,1.000000),(563,77,0,311,72.000000),(564,82,0,311,1.000000),(565,77,0,312,72.000000),(566,82,0,312,1.000000),(567,77,0,313,72.000000),(568,82,0,313,1.000000),(569,77,0,314,72.000000),(570,82,0,314,1.000000),(571,77,0,315,72.000000),(572,82,0,315,1.000000),(573,77,0,316,72.000000),(574,82,0,316,1.000000),(575,77,0,317,72.000000),(576,82,0,317,1.000000),(577,77,0,318,72.000000),(578,77,0,319,99.000000),(579,82,0,319,1.000000),(580,77,0,320,99.000000),(581,82,0,320,1.000000),(582,77,0,321,99.000000),(583,82,0,321,1.000000),(584,77,0,322,99.000000),(585,82,0,322,1.000000),(586,77,0,323,99.000000),(587,82,0,323,1.000000),(588,77,0,324,99.000000),(589,82,0,324,1.000000),(590,77,0,325,99.000000),(591,82,0,325,1.000000),(592,77,0,326,99.000000),(593,82,0,326,1.000000),(594,77,0,327,99.000000),(595,82,0,327,1.000000),(596,77,0,328,99.000000),(597,82,0,328,1.000000),(598,77,0,329,99.000000),(599,82,0,329,1.000000),(600,77,0,330,99.000000),(601,82,0,330,1.000000),(602,77,0,331,99.000000),(603,82,0,331,1.000000),(604,77,0,332,99.000000),(605,82,0,332,1.000000),(606,77,0,333,99.000000),(607,82,0,333,1.000000),(608,77,0,334,99.000000),(609,77,0,335,65.000000),(610,82,0,335,1.000000),(611,77,0,336,65.000000),(612,82,0,336,1.000000),(613,77,0,337,65.000000),(614,82,0,337,1.000000),(615,77,0,338,65.000000),(616,82,0,338,1.000000),(617,77,0,339,65.000000),(618,82,0,339,1.000000),(619,77,0,340,65.000000),(620,82,0,340,1.000000),(621,77,0,341,65.000000),(622,82,0,341,1.000000),(623,77,0,342,65.000000),(624,82,0,342,1.000000),(625,77,0,343,65.000000),(626,82,0,343,1.000000),(627,77,0,344,65.000000),(628,82,0,344,1.000000),(629,77,0,345,65.000000),(630,82,0,345,1.000000),(631,77,0,346,65.000000),(632,82,0,346,1.000000),(633,77,0,347,65.000000),(634,82,0,347,1.000000),(635,77,0,348,65.000000),(636,82,0,348,1.000000),(637,77,0,349,65.000000),(638,82,0,349,1.000000),(639,77,0,350,65.000000),(640,77,0,351,66.000000),(641,82,0,351,1.000000),(642,77,0,352,66.000000),(643,82,0,352,1.000000),(644,77,0,353,66.000000),(645,82,0,353,1.000000),(646,77,0,354,66.000000),(647,82,0,354,1.000000),(648,77,0,355,66.000000),(649,82,0,355,1.000000),(650,77,0,356,66.000000),(651,82,0,356,1.000000),(652,77,0,357,66.000000),(653,82,0,357,1.000000),(654,77,0,358,66.000000),(655,82,0,358,1.000000),(656,77,0,359,66.000000),(657,82,0,359,1.000000),(658,77,0,360,66.000000),(659,82,0,360,1.000000),(660,77,0,361,66.000000),(661,82,0,361,1.000000),(662,77,0,362,66.000000),(663,82,0,362,1.000000),(664,77,0,363,66.000000),(665,82,0,363,1.000000),(666,77,0,364,66.000000),(667,82,0,364,1.000000),(668,77,0,365,66.000000),(669,82,0,365,1.000000),(670,77,0,366,66.000000),(671,77,0,367,60.000000),(672,82,0,367,1.000000),(673,77,0,368,60.000000),(674,82,0,368,1.000000),(675,77,0,369,60.000000),(676,82,0,369,1.000000),(677,77,0,370,60.000000),(678,82,0,370,1.000000),(679,77,0,371,60.000000),(680,82,0,371,1.000000),(681,77,0,372,60.000000),(682,82,0,372,1.000000),(683,77,0,373,60.000000),(684,82,0,373,1.000000),(685,77,0,374,60.000000),(686,82,0,374,1.000000),(687,77,0,375,60.000000),(688,82,0,375,1.000000),(689,77,0,376,60.000000),(690,82,0,376,1.000000),(691,77,0,377,60.000000),(692,82,0,377,1.000000),(693,77,0,378,60.000000),(694,82,0,378,1.000000),(695,77,0,379,60.000000),(696,82,0,379,1.000000),(697,77,0,380,60.000000),(698,82,0,380,1.000000),(699,77,0,381,60.000000),(700,82,0,381,1.000000),(701,77,0,382,60.000000),(702,77,0,383,56.990000),(703,82,0,383,1.000000),(704,77,0,384,56.990000),(705,82,0,384,1.000000),(706,77,0,385,56.990000),(707,82,0,385,1.000000),(708,77,0,386,56.990000),(709,82,0,386,1.000000),(710,77,0,387,56.990000),(711,82,0,387,1.000000),(712,77,0,388,56.990000),(713,82,0,388,1.000000),(714,77,0,389,56.990000),(715,82,0,389,1.000000),(716,77,0,390,56.990000),(717,82,0,390,1.000000),(718,77,0,391,56.990000),(719,82,0,391,1.000000),(720,77,0,392,56.990000),(721,82,0,392,1.000000),(722,77,0,393,56.990000),(723,82,0,393,1.000000),(724,77,0,394,56.990000),(725,82,0,394,1.000000),(726,77,0,395,56.990000),(727,82,0,395,1.000000),(728,77,0,396,56.990000),(729,82,0,396,1.000000),(730,77,0,397,56.990000),(731,82,0,397,1.000000),(732,77,0,398,56.990000),(733,77,0,399,49.000000),(734,82,0,399,1.000000),(735,77,0,400,49.000000),(736,82,0,400,1.000000),(737,77,0,401,49.000000),(738,82,0,401,1.000000),(739,77,0,402,49.000000),(740,82,0,402,1.000000),(741,77,0,403,49.000000),(742,82,0,403,1.000000),(743,77,0,404,49.000000),(744,82,0,404,1.000000),(745,77,0,405,49.000000),(746,82,0,405,1.000000),(747,77,0,406,49.000000),(748,82,0,406,1.000000),(749,77,0,407,49.000000),(750,82,0,407,1.000000),(751,77,0,408,49.000000),(752,82,0,408,1.000000),(753,77,0,409,49.000000),(754,82,0,409,1.000000),(755,77,0,410,49.000000),(756,82,0,410,1.000000),(757,77,0,411,49.000000),(758,82,0,411,1.000000),(759,77,0,412,49.000000),(760,82,0,412,1.000000),(761,77,0,413,49.000000),(762,82,0,413,1.000000),(763,77,0,414,49.000000),(764,77,0,415,45.000000),(765,82,0,415,1.000000),(766,77,0,416,45.000000),(767,82,0,416,1.000000),(768,77,0,417,45.000000),(769,82,0,417,1.000000),(770,77,0,418,45.000000),(771,82,0,418,1.000000),(772,77,0,419,45.000000),(773,82,0,419,1.000000),(774,77,0,420,45.000000),(775,82,0,420,1.000000),(776,77,0,421,45.000000),(777,82,0,421,1.000000),(778,77,0,422,45.000000),(779,82,0,422,1.000000),(780,77,0,423,45.000000),(781,82,0,423,1.000000),(782,77,0,424,45.000000),(783,82,0,424,1.000000),(784,77,0,425,45.000000),(785,82,0,425,1.000000),(786,77,0,426,45.000000),(787,82,0,426,1.000000),(788,77,0,427,45.000000),(789,82,0,427,1.000000),(790,77,0,428,45.000000),(791,82,0,428,1.000000),(792,77,0,429,45.000000),(793,82,0,429,1.000000),(794,77,0,430,45.000000),(795,77,0,431,29.000000),(796,82,0,431,1.000000),(797,77,0,432,29.000000),(798,82,0,432,1.000000),(799,77,0,433,29.000000),(800,82,0,433,1.000000),(801,77,0,434,29.000000),(802,82,0,434,1.000000),(803,77,0,435,29.000000),(804,82,0,435,1.000000),(805,77,0,436,29.000000),(806,82,0,436,1.000000),(807,77,0,437,29.000000),(808,82,0,437,1.000000),(809,77,0,438,29.000000),(810,82,0,438,1.000000),(811,77,0,439,29.000000),(812,82,0,439,1.000000),(813,77,0,440,29.000000),(814,82,0,440,1.000000),(815,77,0,441,29.000000),(816,82,0,441,1.000000),(817,77,0,442,29.000000),(818,82,0,442,1.000000),(819,77,0,443,29.000000),(820,82,0,443,1.000000),(821,77,0,444,29.000000),(822,82,0,444,1.000000),(823,77,0,445,29.000000),(824,82,0,445,1.000000),(825,77,0,446,29.000000),(826,77,0,447,24.000000),(827,82,0,447,1.000000),(828,77,0,448,24.000000),(829,82,0,448,1.000000),(830,77,0,449,24.000000),(831,82,0,449,1.000000),(832,77,0,450,24.000000),(833,82,0,450,1.000000),(834,77,0,451,24.000000),(835,82,0,451,1.000000),(836,77,0,452,24.000000),(837,82,0,452,1.000000),(838,77,0,453,24.000000),(839,82,0,453,1.000000),(840,77,0,454,24.000000),(841,82,0,454,1.000000),(842,77,0,455,24.000000),(843,82,0,455,1.000000),(844,77,0,456,24.000000),(845,82,0,456,1.000000),(846,77,0,457,24.000000),(847,82,0,457,1.000000),(848,77,0,458,24.000000),(849,82,0,458,1.000000),(850,77,0,459,24.000000),(851,82,0,459,1.000000),(852,77,0,460,24.000000),(853,82,0,460,1.000000),(854,77,0,461,24.000000),(855,82,0,461,1.000000),(856,77,0,462,24.000000),(857,77,0,463,32.000000),(858,82,0,463,1.000000),(859,77,0,464,32.000000),(860,82,0,464,1.000000),(861,77,0,465,32.000000),(862,82,0,465,1.000000),(863,77,0,466,32.000000),(864,82,0,466,1.000000),(865,77,0,467,32.000000),(866,82,0,467,1.000000),(867,77,0,468,32.000000),(868,82,0,468,1.000000),(869,77,0,469,32.000000),(870,82,0,469,1.000000),(871,77,0,470,32.000000),(872,82,0,470,1.000000),(873,77,0,471,32.000000),(874,82,0,471,1.000000),(875,77,0,472,32.000000),(876,82,0,472,1.000000),(877,77,0,473,32.000000),(878,82,0,473,1.000000),(879,77,0,474,32.000000),(880,82,0,474,1.000000),(881,77,0,475,32.000000),(882,82,0,475,1.000000),(883,77,0,476,32.000000),(884,82,0,476,1.000000),(885,77,0,477,32.000000),(886,82,0,477,1.000000),(887,77,0,478,32.000000),(888,77,0,479,28.000000),(889,82,0,479,1.000000),(890,77,0,480,28.000000),(891,82,0,480,1.000000),(892,77,0,481,28.000000),(893,82,0,481,1.000000),(894,77,0,482,28.000000),(895,82,0,482,1.000000),(896,77,0,483,28.000000),(897,82,0,483,1.000000),(898,77,0,484,28.000000),(899,82,0,484,1.000000),(900,77,0,485,28.000000),(901,82,0,485,1.000000),(902,77,0,486,28.000000),(903,82,0,486,1.000000),(904,77,0,487,28.000000),(905,82,0,487,1.000000),(906,77,0,488,28.000000),(907,82,0,488,1.000000),(908,77,0,489,28.000000),(909,82,0,489,1.000000),(910,77,0,490,28.000000),(911,82,0,490,1.000000),(912,77,0,491,28.000000),(913,82,0,491,1.000000),(914,77,0,492,28.000000),(915,82,0,492,1.000000),(916,77,0,493,28.000000),(917,82,0,493,1.000000),(918,77,0,494,28.000000),(919,77,0,495,29.000000),(920,82,0,495,1.000000),(921,77,0,496,29.000000),(922,82,0,496,1.000000),(923,77,0,497,29.000000),(924,82,0,497,1.000000),(925,77,0,498,29.000000),(926,82,0,498,1.000000),(927,77,0,499,29.000000),(928,82,0,499,1.000000),(929,77,0,500,29.000000),(930,82,0,500,1.000000),(931,77,0,501,29.000000),(932,82,0,501,1.000000),(933,77,0,502,29.000000),(934,82,0,502,1.000000),(935,77,0,503,29.000000),(936,82,0,503,1.000000),(937,77,0,504,29.000000),(938,82,0,504,1.000000),(939,77,0,505,29.000000),(940,82,0,505,1.000000),(941,77,0,506,29.000000),(942,82,0,506,1.000000),(943,77,0,507,29.000000),(944,82,0,507,1.000000),(945,77,0,508,29.000000),(946,82,0,508,1.000000),(947,77,0,509,29.000000),(948,82,0,509,1.000000),(949,77,0,510,29.000000),(950,77,0,511,29.000000),(951,82,0,511,1.000000),(952,77,0,512,29.000000),(953,82,0,512,1.000000),(954,77,0,513,29.000000),(955,82,0,513,1.000000),(956,77,0,514,29.000000),(957,82,0,514,1.000000),(958,77,0,515,29.000000),(959,82,0,515,1.000000),(960,77,0,516,29.000000),(961,82,0,516,1.000000),(962,77,0,517,29.000000),(963,82,0,517,1.000000),(964,77,0,518,29.000000),(965,82,0,518,1.000000),(966,77,0,519,29.000000),(967,82,0,519,1.000000),(968,77,0,520,29.000000),(969,82,0,520,1.000000),(970,77,0,521,29.000000),(971,82,0,521,1.000000),(972,77,0,522,29.000000),(973,82,0,522,1.000000),(974,77,0,523,29.000000),(975,82,0,523,1.000000),(976,77,0,524,29.000000),(977,82,0,524,1.000000),(978,77,0,525,29.000000),(979,82,0,525,1.000000),(980,77,0,526,29.000000),(981,77,0,527,29.000000),(982,82,0,527,1.000000),(983,77,0,528,29.000000),(984,82,0,528,1.000000),(985,77,0,529,29.000000),(986,82,0,529,1.000000),(987,77,0,530,29.000000),(988,82,0,530,1.000000),(989,77,0,531,29.000000),(990,82,0,531,1.000000),(991,77,0,532,29.000000),(992,82,0,532,1.000000),(993,77,0,533,29.000000),(994,82,0,533,1.000000),(995,77,0,534,29.000000),(996,82,0,534,1.000000),(997,77,0,535,29.000000),(998,82,0,535,1.000000),(999,77,0,536,29.000000),(1000,82,0,536,1.000000),(1001,77,0,537,29.000000),(1002,82,0,537,1.000000),(1003,77,0,538,29.000000),(1004,82,0,538,1.000000),(1005,77,0,539,29.000000),(1006,82,0,539,1.000000),(1007,77,0,540,29.000000),(1008,82,0,540,1.000000),(1009,77,0,541,29.000000),(1010,82,0,541,1.000000),(1011,77,0,542,29.000000),(1012,77,0,543,24.000000),(1013,82,0,543,1.000000),(1014,77,0,544,24.000000),(1015,82,0,544,1.000000),(1016,77,0,545,24.000000),(1017,82,0,545,1.000000),(1018,77,0,546,24.000000),(1019,82,0,546,1.000000),(1020,77,0,547,24.000000),(1021,82,0,547,1.000000),(1022,77,0,548,24.000000),(1023,82,0,548,1.000000),(1024,77,0,549,24.000000),(1025,82,0,549,1.000000),(1026,77,0,550,24.000000),(1027,82,0,550,1.000000),(1028,77,0,551,24.000000),(1029,82,0,551,1.000000),(1030,77,0,552,24.000000),(1031,82,0,552,1.000000),(1032,77,0,553,24.000000),(1033,82,0,553,1.000000),(1034,77,0,554,24.000000),(1035,82,0,554,1.000000),(1036,77,0,555,24.000000),(1037,82,0,555,1.000000),(1038,77,0,556,24.000000),(1039,82,0,556,1.000000),(1040,77,0,557,24.000000),(1041,82,0,557,1.000000),(1042,77,0,558,24.000000),(1043,77,0,559,28.000000),(1044,82,0,559,1.000000),(1045,77,0,560,28.000000),(1046,82,0,560,1.000000),(1047,77,0,561,28.000000),(1048,82,0,561,1.000000),(1049,77,0,562,28.000000),(1050,82,0,562,1.000000),(1051,77,0,563,28.000000),(1052,82,0,563,1.000000),(1053,77,0,564,28.000000),(1054,82,0,564,1.000000),(1055,77,0,565,28.000000),(1056,82,0,565,1.000000),(1057,77,0,566,28.000000),(1058,82,0,566,1.000000),(1059,77,0,567,28.000000),(1060,82,0,567,1.000000),(1061,77,0,568,28.000000),(1062,82,0,568,1.000000),(1063,77,0,569,28.000000),(1064,82,0,569,1.000000),(1065,77,0,570,28.000000),(1066,82,0,570,1.000000),(1067,77,0,571,28.000000),(1068,82,0,571,1.000000),(1069,77,0,572,28.000000),(1070,82,0,572,1.000000),(1071,77,0,573,28.000000),(1072,82,0,573,1.000000),(1073,77,0,574,28.000000),(1074,77,0,575,24.000000),(1075,82,0,575,1.000000),(1076,77,0,576,24.000000),(1077,82,0,576,1.000000),(1078,77,0,577,24.000000),(1079,82,0,577,1.000000),(1080,77,0,578,24.000000),(1081,82,0,578,1.000000),(1082,77,0,579,24.000000),(1083,82,0,579,1.000000),(1084,77,0,580,24.000000),(1085,82,0,580,1.000000),(1086,77,0,581,24.000000),(1087,82,0,581,1.000000),(1088,77,0,582,24.000000),(1089,82,0,582,1.000000),(1090,77,0,583,24.000000),(1091,82,0,583,1.000000),(1092,77,0,584,24.000000),(1093,82,0,584,1.000000),(1094,77,0,585,24.000000),(1095,82,0,585,1.000000),(1096,77,0,586,24.000000),(1097,82,0,586,1.000000),(1098,77,0,587,24.000000),(1099,82,0,587,1.000000),(1100,77,0,588,24.000000),(1101,82,0,588,1.000000),(1102,77,0,589,24.000000),(1103,82,0,589,1.000000),(1104,77,0,590,24.000000),(1105,77,0,591,39.000000),(1106,82,0,591,1.000000),(1107,77,0,592,39.000000),(1108,82,0,592,1.000000),(1109,77,0,593,39.000000),(1110,82,0,593,1.000000),(1111,77,0,594,39.000000),(1112,82,0,594,1.000000),(1113,77,0,595,39.000000),(1114,82,0,595,1.000000),(1115,77,0,596,39.000000),(1116,82,0,596,1.000000),(1117,77,0,597,39.000000),(1118,82,0,597,1.000000),(1119,77,0,598,39.000000),(1120,82,0,598,1.000000),(1121,77,0,599,39.000000),(1122,82,0,599,1.000000),(1123,77,0,600,39.000000),(1124,82,0,600,1.000000),(1125,77,0,601,39.000000),(1126,82,0,601,1.000000),(1127,77,0,602,39.000000),(1128,82,0,602,1.000000),(1129,77,0,603,39.000000),(1130,82,0,603,1.000000),(1131,77,0,604,39.000000),(1132,82,0,604,1.000000),(1133,77,0,605,39.000000),(1134,82,0,605,1.000000),(1135,77,0,606,39.000000),(1136,77,0,607,39.000000),(1137,82,0,607,1.000000),(1138,77,0,608,39.000000),(1139,82,0,608,1.000000),(1140,77,0,609,39.000000),(1141,82,0,609,1.000000),(1142,77,0,610,39.000000),(1143,82,0,610,1.000000),(1144,77,0,611,39.000000),(1145,82,0,611,1.000000),(1146,77,0,612,39.000000),(1147,82,0,612,1.000000),(1148,77,0,613,39.000000),(1149,82,0,613,1.000000),(1150,77,0,614,39.000000),(1151,82,0,614,1.000000),(1152,77,0,615,39.000000),(1153,82,0,615,1.000000),(1154,77,0,616,39.000000),(1155,82,0,616,1.000000),(1156,77,0,617,39.000000),(1157,82,0,617,1.000000),(1158,77,0,618,39.000000),(1159,82,0,618,1.000000),(1160,77,0,619,39.000000),(1161,82,0,619,1.000000),(1162,77,0,620,39.000000),(1163,82,0,620,1.000000),(1164,77,0,621,39.000000),(1165,82,0,621,1.000000),(1166,77,0,622,39.000000),(1167,77,0,623,29.000000),(1168,82,0,623,1.000000),(1169,77,0,624,29.000000),(1170,82,0,624,1.000000),(1171,77,0,625,29.000000),(1172,82,0,625,1.000000),(1173,77,0,626,29.000000),(1174,82,0,626,1.000000),(1175,77,0,627,29.000000),(1176,82,0,627,1.000000),(1177,77,0,628,29.000000),(1178,82,0,628,1.000000),(1179,77,0,629,29.000000),(1180,82,0,629,1.000000),(1181,77,0,630,29.000000),(1182,82,0,630,1.000000),(1183,77,0,631,29.000000),(1184,82,0,631,1.000000),(1185,77,0,632,29.000000),(1186,82,0,632,1.000000),(1187,77,0,633,29.000000),(1188,82,0,633,1.000000),(1189,77,0,634,29.000000),(1190,82,0,634,1.000000),(1191,77,0,635,29.000000),(1192,82,0,635,1.000000),(1193,77,0,636,29.000000),(1194,82,0,636,1.000000),(1195,77,0,637,29.000000),(1196,82,0,637,1.000000),(1197,77,0,638,29.000000),(1198,77,0,639,29.000000),(1199,82,0,639,1.000000),(1200,77,0,640,29.000000),(1201,82,0,640,1.000000),(1202,77,0,641,29.000000),(1203,82,0,641,1.000000),(1204,77,0,642,29.000000),(1205,82,0,642,1.000000),(1206,77,0,643,29.000000),(1207,82,0,643,1.000000),(1208,77,0,644,29.000000),(1209,82,0,644,1.000000),(1210,77,0,645,29.000000),(1211,82,0,645,1.000000),(1212,77,0,646,29.000000),(1213,82,0,646,1.000000),(1214,77,0,647,29.000000),(1215,82,0,647,1.000000),(1216,77,0,648,29.000000),(1217,82,0,648,1.000000),(1218,77,0,649,29.000000),(1219,82,0,649,1.000000),(1220,77,0,650,29.000000),(1221,82,0,650,1.000000),(1222,77,0,651,29.000000),(1223,82,0,651,1.000000),(1224,77,0,652,29.000000),(1225,82,0,652,1.000000),(1226,77,0,653,29.000000),(1227,82,0,653,1.000000),(1228,77,0,654,29.000000),(1229,77,0,655,29.000000),(1230,82,0,655,1.000000),(1231,77,0,656,29.000000),(1232,82,0,656,1.000000),(1233,77,0,657,29.000000),(1234,82,0,657,1.000000),(1235,77,0,658,29.000000),(1236,82,0,658,1.000000),(1237,77,0,659,29.000000),(1238,82,0,659,1.000000),(1239,77,0,660,29.000000),(1240,82,0,660,1.000000),(1241,77,0,661,29.000000),(1242,82,0,661,1.000000),(1243,77,0,662,29.000000),(1244,82,0,662,1.000000),(1245,77,0,663,29.000000),(1246,82,0,663,1.000000),(1247,77,0,664,29.000000),(1248,82,0,664,1.000000),(1249,77,0,665,29.000000),(1250,82,0,665,1.000000),(1251,77,0,666,29.000000),(1252,82,0,666,1.000000),(1253,77,0,667,29.000000),(1254,82,0,667,1.000000),(1255,77,0,668,29.000000),(1256,82,0,668,1.000000),(1257,77,0,669,29.000000),(1258,82,0,669,1.000000),(1259,77,0,670,29.000000),(1260,77,0,671,32.000000),(1261,82,0,671,1.000000),(1262,77,0,672,32.000000),(1263,82,0,672,1.000000),(1264,77,0,673,32.000000),(1265,82,0,673,1.000000),(1266,77,0,674,32.000000),(1267,82,0,674,1.000000),(1268,77,0,675,32.000000),(1269,82,0,675,1.000000),(1270,77,0,676,32.000000),(1271,77,0,677,24.000000),(1272,82,0,677,1.000000),(1273,77,0,678,24.000000),(1274,82,0,678,1.000000),(1275,77,0,679,24.000000),(1276,82,0,679,1.000000),(1277,77,0,680,24.000000),(1278,82,0,680,1.000000),(1279,77,0,681,24.000000),(1280,82,0,681,1.000000),(1281,77,0,682,24.000000),(1282,77,0,683,28.000000),(1283,82,0,683,1.000000),(1284,77,0,684,28.000000),(1285,82,0,684,1.000000),(1286,77,0,685,28.000000),(1287,82,0,685,1.000000),(1288,77,0,686,28.000000),(1289,82,0,686,1.000000),(1290,77,0,687,28.000000),(1291,82,0,687,1.000000),(1292,77,0,688,28.000000),(1293,77,0,689,22.000000),(1294,82,0,689,1.000000),(1295,77,0,690,22.000000),(1296,82,0,690,1.000000),(1297,77,0,691,22.000000),(1298,82,0,691,1.000000),(1299,77,0,692,22.000000),(1300,82,0,692,1.000000),(1301,77,0,693,22.000000),(1302,82,0,693,1.000000),(1303,77,0,694,22.000000),(1304,77,0,695,29.000000),(1305,82,0,695,1.000000),(1306,77,0,696,29.000000),(1307,82,0,696,1.000000),(1308,77,0,697,29.000000),(1309,82,0,697,1.000000),(1310,77,0,698,29.000000),(1311,82,0,698,1.000000),(1312,77,0,699,29.000000),(1313,82,0,699,1.000000),(1314,77,0,700,29.000000),(1315,77,0,701,29.000000),(1316,82,0,701,1.000000),(1317,77,0,702,29.000000),(1318,82,0,702,1.000000),(1319,77,0,703,29.000000),(1320,82,0,703,1.000000),(1321,77,0,704,29.000000),(1322,82,0,704,1.000000),(1323,77,0,705,29.000000),(1324,82,0,705,1.000000),(1325,77,0,706,29.000000),(1326,77,0,707,18.000000),(1327,82,0,707,1.000000),(1328,77,0,708,18.000000),(1329,82,0,708,1.000000),(1330,77,0,709,18.000000),(1331,82,0,709,1.000000),(1332,77,0,710,18.000000),(1333,82,0,710,1.000000),(1334,77,0,711,18.000000),(1335,82,0,711,1.000000),(1336,77,0,712,18.000000),(1337,77,0,713,18.000000),(1338,82,0,713,1.000000),(1339,77,0,714,18.000000),(1340,82,0,714,1.000000),(1341,77,0,715,18.000000),(1342,82,0,715,1.000000),(1343,77,0,716,18.000000),(1344,82,0,716,1.000000),(1345,77,0,717,18.000000),(1346,82,0,717,1.000000),(1347,77,0,718,18.000000),(1348,77,0,719,18.000000),(1349,82,0,719,1.000000),(1350,77,0,720,18.000000),(1351,82,0,720,1.000000),(1352,77,0,721,18.000000),(1353,82,0,721,1.000000),(1354,77,0,722,18.000000),(1355,82,0,722,1.000000),(1356,77,0,723,18.000000),(1357,82,0,723,1.000000),(1358,77,0,724,18.000000),(1359,77,0,725,35.000000),(1360,82,0,725,1.000000),(1361,77,0,726,35.000000),(1362,82,0,726,1.000000),(1363,77,0,727,35.000000),(1364,82,0,727,1.000000),(1365,77,0,728,35.000000),(1366,82,0,728,1.000000),(1367,77,0,729,35.000000),(1368,82,0,729,1.000000),(1369,77,0,730,35.000000),(1370,82,0,730,1.000000),(1371,77,0,731,35.000000),(1372,82,0,731,1.000000),(1373,77,0,732,35.000000),(1374,82,0,732,1.000000),(1375,77,0,733,35.000000),(1376,82,0,733,1.000000),(1377,77,0,734,35.000000),(1378,82,0,734,1.000000),(1379,77,0,735,35.000000),(1380,82,0,735,1.000000),(1381,77,0,736,35.000000),(1382,82,0,736,1.000000),(1383,77,0,737,35.000000),(1384,77,0,738,46.000000),(1385,82,0,738,1.000000),(1386,77,0,739,46.000000),(1387,82,0,739,1.000000),(1388,77,0,740,46.000000),(1389,82,0,740,1.000000),(1390,77,0,741,46.000000),(1391,82,0,741,1.000000),(1392,77,0,742,46.000000),(1393,82,0,742,1.000000),(1394,77,0,743,46.000000),(1395,82,0,743,1.000000),(1396,77,0,744,46.000000),(1397,82,0,744,1.000000),(1398,77,0,745,46.000000),(1399,82,0,745,1.000000),(1400,77,0,746,46.000000),(1401,82,0,746,1.000000),(1402,77,0,747,46.000000),(1403,82,0,747,1.000000),(1404,77,0,748,46.000000),(1405,82,0,748,1.000000),(1406,77,0,749,46.000000),(1407,82,0,749,1.000000),(1408,77,0,750,46.000000),(1409,77,0,751,51.000000),(1410,82,0,751,1.000000),(1411,77,0,752,51.000000),(1412,82,0,752,1.000000),(1413,77,0,753,51.000000),(1414,82,0,753,1.000000),(1415,77,0,754,51.000000),(1416,82,0,754,1.000000),(1417,77,0,755,51.000000),(1418,82,0,755,1.000000),(1419,77,0,756,51.000000),(1420,82,0,756,1.000000),(1421,77,0,757,51.000000),(1422,82,0,757,1.000000),(1423,77,0,758,51.000000),(1424,82,0,758,1.000000),(1425,77,0,759,51.000000),(1426,82,0,759,1.000000),(1427,77,0,760,51.000000),(1428,82,0,760,1.000000),(1429,77,0,761,51.000000),(1430,82,0,761,1.000000),(1431,77,0,762,51.000000),(1432,82,0,762,1.000000),(1433,77,0,763,51.000000),(1434,77,0,764,45.000000),(1435,82,0,764,1.000000),(1436,77,0,765,45.000000),(1437,82,0,765,1.000000),(1438,77,0,766,45.000000),(1439,82,0,766,1.000000),(1440,77,0,767,45.000000),(1441,82,0,767,1.000000),(1442,77,0,768,45.000000),(1443,82,0,768,1.000000),(1444,77,0,769,45.000000),(1445,82,0,769,1.000000),(1446,77,0,770,45.000000),(1447,82,0,770,1.000000),(1448,77,0,771,45.000000),(1449,82,0,771,1.000000),(1450,77,0,772,45.000000),(1451,82,0,772,1.000000),(1452,77,0,773,45.000000),(1453,82,0,773,1.000000),(1454,77,0,774,45.000000),(1455,82,0,774,1.000000),(1456,77,0,775,45.000000),(1457,82,0,775,1.000000),(1458,77,0,776,45.000000),(1459,77,0,777,57.000000),(1460,82,0,777,1.000000),(1461,77,0,778,57.000000),(1462,82,0,778,1.000000),(1463,77,0,779,57.000000),(1464,82,0,779,1.000000),(1465,77,0,780,57.000000),(1466,82,0,780,1.000000),(1467,77,0,781,57.000000),(1468,82,0,781,1.000000),(1469,77,0,782,57.000000),(1470,82,0,782,1.000000),(1471,77,0,783,57.000000),(1472,82,0,783,1.000000),(1473,77,0,784,57.000000),(1474,82,0,784,1.000000),(1475,77,0,785,57.000000),(1476,82,0,785,1.000000),(1477,77,0,786,57.000000),(1478,82,0,786,1.000000),(1479,77,0,787,57.000000),(1480,82,0,787,1.000000),(1481,77,0,788,57.000000),(1482,82,0,788,1.000000),(1483,77,0,789,57.000000),(1484,77,0,790,28.000000),(1485,82,0,790,1.000000),(1486,77,0,791,28.000000),(1487,82,0,791,1.000000),(1488,77,0,792,28.000000),(1489,82,0,792,1.000000),(1490,77,0,793,28.000000),(1491,82,0,793,1.000000),(1492,77,0,794,28.000000),(1493,82,0,794,1.000000),(1494,77,0,795,28.000000),(1495,82,0,795,1.000000),(1496,77,0,796,28.000000),(1497,82,0,796,1.000000),(1498,77,0,797,28.000000),(1499,82,0,797,1.000000),(1500,77,0,798,28.000000),(1501,82,0,798,1.000000),(1502,77,0,799,28.000000),(1503,82,0,799,1.000000),(1504,77,0,800,28.000000),(1505,82,0,800,1.000000),(1506,77,0,801,28.000000),(1507,82,0,801,1.000000),(1508,77,0,802,28.000000),(1509,77,0,803,68.000000),(1510,82,0,803,1.000000),(1511,77,0,804,68.000000),(1512,82,0,804,1.000000),(1513,77,0,805,68.000000),(1514,82,0,805,1.000000),(1515,77,0,806,68.000000),(1516,82,0,806,1.000000),(1517,77,0,807,68.000000),(1518,82,0,807,1.000000),(1519,77,0,808,68.000000),(1520,82,0,808,1.000000),(1521,77,0,809,68.000000),(1522,82,0,809,1.000000),(1523,77,0,810,68.000000),(1524,82,0,810,1.000000),(1525,77,0,811,68.000000),(1526,82,0,811,1.000000),(1527,77,0,812,68.000000),(1528,82,0,812,1.000000),(1529,77,0,813,68.000000),(1530,82,0,813,1.000000),(1531,77,0,814,68.000000),(1532,82,0,814,1.000000),(1533,77,0,815,68.000000),(1534,77,0,816,82.000000),(1535,82,0,816,1.000000),(1536,77,0,817,82.000000),(1537,82,0,817,1.000000),(1538,77,0,818,82.000000),(1539,82,0,818,1.000000),(1540,77,0,819,82.000000),(1541,82,0,819,1.000000),(1542,77,0,820,82.000000),(1543,82,0,820,1.000000),(1544,77,0,821,82.000000),(1545,82,0,821,1.000000),(1546,77,0,822,82.000000),(1547,82,0,822,1.000000),(1548,77,0,823,82.000000),(1549,82,0,823,1.000000),(1550,77,0,824,82.000000),(1551,82,0,824,1.000000),(1552,77,0,825,82.000000),(1553,82,0,825,1.000000),(1554,77,0,826,82.000000),(1555,82,0,826,1.000000),(1556,77,0,827,82.000000),(1557,82,0,827,1.000000),(1558,77,0,828,82.000000),(1559,77,0,829,75.000000),(1560,82,0,829,1.000000),(1561,77,0,830,75.000000),(1562,82,0,830,1.000000),(1563,77,0,831,75.000000),(1564,82,0,831,1.000000),(1565,77,0,832,75.000000),(1566,82,0,832,1.000000),(1567,77,0,833,75.000000),(1568,82,0,833,1.000000),(1569,77,0,834,75.000000),(1570,82,0,834,1.000000),(1571,77,0,835,75.000000),(1572,82,0,835,1.000000),(1573,77,0,836,75.000000),(1574,82,0,836,1.000000),(1575,77,0,837,75.000000),(1576,82,0,837,1.000000),(1577,77,0,838,75.000000),(1578,82,0,838,1.000000),(1579,77,0,839,75.000000),(1580,82,0,839,1.000000),(1581,77,0,840,75.000000),(1582,82,0,840,1.000000),(1583,77,0,841,75.000000),(1584,77,0,842,66.000000),(1585,82,0,842,1.000000),(1586,77,0,843,66.000000),(1587,82,0,843,1.000000),(1588,77,0,844,66.000000),(1589,82,0,844,1.000000),(1590,77,0,845,66.000000),(1591,82,0,845,1.000000),(1592,77,0,846,66.000000),(1593,82,0,846,1.000000),(1594,77,0,847,66.000000),(1595,82,0,847,1.000000),(1596,77,0,848,66.000000),(1597,82,0,848,1.000000),(1598,77,0,849,66.000000),(1599,82,0,849,1.000000),(1600,77,0,850,66.000000),(1601,82,0,850,1.000000),(1602,77,0,851,66.000000),(1603,82,0,851,1.000000),(1604,77,0,852,66.000000),(1605,82,0,852,1.000000),(1606,77,0,853,66.000000),(1607,82,0,853,1.000000),(1608,77,0,854,66.000000),(1609,77,0,855,74.000000),(1610,82,0,855,1.000000),(1611,77,0,856,74.000000),(1612,82,0,856,1.000000),(1613,77,0,857,74.000000),(1614,82,0,857,1.000000),(1615,77,0,858,74.000000),(1616,82,0,858,1.000000),(1617,77,0,859,74.000000),(1618,82,0,859,1.000000),(1619,77,0,860,74.000000),(1620,82,0,860,1.000000),(1621,77,0,861,74.000000),(1622,82,0,861,1.000000),(1623,77,0,862,74.000000),(1624,82,0,862,1.000000),(1625,77,0,863,74.000000),(1626,82,0,863,1.000000),(1627,77,0,864,74.000000),(1628,82,0,864,1.000000),(1629,77,0,865,74.000000),(1630,82,0,865,1.000000),(1631,77,0,866,74.000000),(1632,82,0,866,1.000000),(1633,77,0,867,74.000000),(1634,77,0,868,48.000000),(1635,82,0,868,1.000000),(1636,77,0,869,48.000000),(1637,82,0,869,1.000000),(1638,77,0,870,48.000000),(1639,82,0,870,1.000000),(1640,77,0,871,48.000000),(1641,82,0,871,1.000000),(1642,77,0,872,48.000000),(1643,82,0,872,1.000000),(1644,77,0,873,48.000000),(1645,82,0,873,1.000000),(1646,77,0,874,48.000000),(1647,82,0,874,1.000000),(1648,77,0,875,48.000000),(1649,82,0,875,1.000000),(1650,77,0,876,48.000000),(1651,82,0,876,1.000000),(1652,77,0,877,48.000000),(1653,82,0,877,1.000000),(1654,77,0,878,48.000000),(1655,82,0,878,1.000000),(1656,77,0,879,48.000000),(1657,82,0,879,1.000000),(1658,77,0,880,48.000000),(1659,77,0,881,44.000000),(1660,82,0,881,1.000000),(1661,77,0,882,44.000000),(1662,82,0,882,1.000000),(1663,77,0,883,44.000000),(1664,82,0,883,1.000000),(1665,77,0,884,44.000000),(1666,82,0,884,1.000000),(1667,77,0,885,44.000000),(1668,82,0,885,1.000000),(1669,77,0,886,44.000000),(1670,82,0,886,1.000000),(1671,77,0,887,44.000000),(1672,82,0,887,1.000000),(1673,77,0,888,44.000000),(1674,82,0,888,1.000000),(1675,77,0,889,44.000000),(1676,82,0,889,1.000000),(1677,77,0,890,44.000000),(1678,82,0,890,1.000000),(1679,77,0,891,44.000000),(1680,82,0,891,1.000000),(1681,77,0,892,44.000000),(1682,82,0,892,1.000000),(1683,77,0,893,44.000000),(1684,77,0,894,32.500000),(1685,82,0,894,1.000000),(1686,77,0,895,32.500000),(1687,82,0,895,1.000000),(1688,77,0,896,32.500000),(1689,82,0,896,1.000000),(1690,77,0,897,32.500000),(1691,82,0,897,1.000000),(1692,77,0,898,32.500000),(1693,77,0,899,32.500000),(1694,82,0,899,1.000000),(1695,77,0,900,32.500000),(1696,82,0,900,1.000000),(1697,77,0,901,32.500000),(1698,82,0,901,1.000000),(1699,77,0,902,32.500000),(1700,82,0,902,1.000000),(1701,77,0,903,32.500000),(1702,82,0,903,1.000000),(1703,77,0,904,32.500000),(1704,82,0,904,1.000000),(1705,77,0,905,32.500000),(1706,82,0,905,1.000000),(1707,77,0,906,32.500000),(1708,82,0,906,1.000000),(1709,77,0,907,32.500000),(1710,82,0,907,1.000000),(1711,77,0,908,32.500000),(1712,82,0,908,1.000000),(1713,77,0,909,32.500000),(1714,82,0,909,1.000000),(1715,77,0,910,32.500000),(1716,82,0,910,1.000000),(1717,77,0,911,32.500000),(1718,77,0,912,32.500000),(1719,82,0,912,1.000000),(1720,77,0,913,32.500000),(1721,82,0,913,1.000000),(1722,77,0,914,32.500000),(1723,82,0,914,1.000000),(1724,77,0,915,32.500000),(1725,82,0,915,1.000000),(1726,77,0,916,32.500000),(1727,82,0,916,1.000000),(1728,77,0,917,32.500000),(1729,82,0,917,1.000000),(1730,77,0,918,32.500000),(1731,82,0,918,1.000000),(1732,77,0,919,32.500000),(1733,82,0,919,1.000000),(1734,77,0,920,32.500000),(1735,82,0,920,1.000000),(1736,77,0,921,32.500000),(1737,82,0,921,1.000000),(1738,77,0,922,32.500000),(1739,82,0,922,1.000000),(1740,77,0,923,32.500000),(1741,82,0,923,1.000000),(1742,77,0,924,32.500000),(1743,77,0,925,29.000000),(1744,82,0,925,1.000000),(1745,77,0,926,29.000000),(1746,82,0,926,1.000000),(1747,77,0,927,29.000000),(1748,82,0,927,1.000000),(1749,77,0,928,29.000000),(1750,82,0,928,1.000000),(1751,77,0,929,29.000000),(1752,82,0,929,1.000000),(1753,77,0,930,29.000000),(1754,82,0,930,1.000000),(1755,77,0,931,29.000000),(1756,82,0,931,1.000000),(1757,77,0,932,29.000000),(1758,82,0,932,1.000000),(1759,77,0,933,29.000000),(1760,82,0,933,1.000000),(1761,77,0,934,29.000000),(1762,82,0,934,1.000000),(1763,77,0,935,29.000000),(1764,82,0,935,1.000000),(1765,77,0,936,29.000000),(1766,82,0,936,1.000000),(1767,77,0,937,29.000000),(1768,77,0,938,32.000000),(1769,82,0,938,1.000000),(1770,77,0,939,32.000000),(1771,82,0,939,1.000000),(1772,77,0,940,32.000000),(1773,82,0,940,1.000000),(1774,77,0,941,32.000000),(1775,82,0,941,1.000000),(1776,77,0,942,32.000000),(1777,82,0,942,1.000000),(1778,77,0,943,32.000000),(1779,82,0,943,1.000000),(1780,77,0,944,32.000000),(1781,82,0,944,1.000000),(1782,77,0,945,32.000000),(1783,82,0,945,1.000000),(1784,77,0,946,32.000000),(1785,82,0,946,1.000000),(1786,77,0,947,32.000000),(1787,82,0,947,1.000000),(1788,77,0,948,32.000000),(1789,82,0,948,1.000000),(1790,77,0,949,32.000000),(1791,82,0,949,1.000000),(1792,77,0,950,32.000000),(1793,77,0,951,35.000000),(1794,82,0,951,1.000000),(1795,77,0,952,35.000000),(1796,82,0,952,1.000000),(1797,77,0,953,35.000000),(1798,82,0,953,1.000000),(1799,77,0,954,35.000000),(1800,82,0,954,1.000000),(1801,77,0,955,35.000000),(1802,82,0,955,1.000000),(1803,77,0,956,35.000000),(1804,82,0,956,1.000000),(1805,77,0,957,35.000000),(1806,82,0,957,1.000000),(1807,77,0,958,35.000000),(1808,82,0,958,1.000000),(1809,77,0,959,35.000000),(1810,82,0,959,1.000000),(1811,77,0,960,35.000000),(1812,82,0,960,1.000000),(1813,77,0,961,35.000000),(1814,82,0,961,1.000000),(1815,77,0,962,35.000000),(1816,82,0,962,1.000000),(1817,77,0,963,35.000000),(1818,77,0,964,35.000000),(1819,82,0,964,1.000000),(1820,77,0,965,35.000000),(1821,82,0,965,1.000000),(1822,77,0,966,35.000000),(1823,82,0,966,1.000000),(1824,77,0,967,35.000000),(1825,82,0,967,1.000000),(1826,77,0,968,35.000000),(1827,82,0,968,1.000000),(1828,77,0,969,35.000000),(1829,82,0,969,1.000000),(1830,77,0,970,35.000000),(1831,82,0,970,1.000000),(1832,77,0,971,35.000000),(1833,82,0,971,1.000000),(1834,77,0,972,35.000000),(1835,82,0,972,1.000000),(1836,77,0,973,35.000000),(1837,82,0,973,1.000000),(1838,77,0,974,35.000000),(1839,82,0,974,1.000000),(1840,77,0,975,35.000000),(1841,82,0,975,1.000000),(1842,77,0,976,35.000000),(1843,77,0,977,24.000000),(1844,82,0,977,1.000000),(1845,77,0,978,24.000000),(1846,82,0,978,1.000000),(1847,77,0,979,24.000000),(1848,82,0,979,1.000000),(1849,77,0,980,24.000000),(1850,82,0,980,1.000000),(1851,77,0,981,24.000000),(1852,82,0,981,1.000000),(1853,77,0,982,24.000000),(1854,82,0,982,1.000000),(1855,77,0,983,24.000000),(1856,82,0,983,1.000000),(1857,77,0,984,24.000000),(1858,82,0,984,1.000000),(1859,77,0,985,24.000000),(1860,82,0,985,1.000000),(1861,77,0,986,24.000000),(1862,82,0,986,1.000000),(1863,77,0,987,24.000000),(1864,82,0,987,1.000000),(1865,77,0,988,24.000000),(1866,82,0,988,1.000000),(1867,77,0,989,24.000000),(1868,77,0,990,32.000000),(1869,82,0,990,1.000000),(1870,77,0,991,32.000000),(1871,82,0,991,1.000000),(1872,77,0,992,32.000000),(1873,82,0,992,1.000000),(1874,77,0,993,32.000000),(1875,82,0,993,1.000000),(1876,77,0,994,32.000000),(1877,82,0,994,1.000000),(1878,77,0,995,32.000000),(1879,82,0,995,1.000000),(1880,77,0,996,32.000000),(1881,82,0,996,1.000000),(1882,77,0,997,32.000000),(1883,82,0,997,1.000000),(1884,77,0,998,32.000000),(1885,82,0,998,1.000000),(1886,77,0,999,32.000000),(1887,82,0,999,1.000000),(1888,77,0,1000,32.000000),(1889,82,0,1000,1.000000),(1890,77,0,1001,32.000000),(1891,82,0,1001,1.000000),(1892,77,0,1002,32.000000),(1893,77,0,1003,20.000000),(1894,82,0,1003,1.000000),(1895,77,0,1004,20.000000),(1896,82,0,1004,1.000000),(1897,77,0,1005,20.000000),(1898,82,0,1005,1.000000),(1899,77,0,1006,20.000000),(1900,82,0,1006,1.000000),(1901,77,0,1007,20.000000),(1902,82,0,1007,1.000000),(1903,77,0,1008,20.000000),(1904,82,0,1008,1.000000),(1905,77,0,1009,20.000000),(1906,82,0,1009,1.000000),(1907,77,0,1010,20.000000),(1908,82,0,1010,1.000000),(1909,77,0,1011,20.000000),(1910,82,0,1011,1.000000),(1911,77,0,1012,20.000000),(1912,82,0,1012,1.000000),(1913,77,0,1013,20.000000),(1914,82,0,1013,1.000000),(1915,77,0,1014,20.000000),(1916,82,0,1014,1.000000),(1917,77,0,1015,20.000000),(1918,77,0,1016,27.000000),(1919,82,0,1016,1.000000),(1920,77,0,1017,27.000000),(1921,82,0,1017,1.000000),(1922,77,0,1018,27.000000),(1923,82,0,1018,1.000000),(1924,77,0,1019,27.000000),(1925,82,0,1019,1.000000),(1926,77,0,1020,27.000000),(1927,82,0,1020,1.000000),(1928,77,0,1021,27.000000),(1929,82,0,1021,1.000000),(1930,77,0,1022,27.000000),(1931,82,0,1022,1.000000),(1932,77,0,1023,27.000000),(1933,82,0,1023,1.000000),(1934,77,0,1024,27.000000),(1935,82,0,1024,1.000000),(1936,77,0,1025,27.000000),(1937,82,0,1025,1.000000),(1938,77,0,1026,27.000000),(1939,82,0,1026,1.000000),(1940,77,0,1027,27.000000),(1941,82,0,1027,1.000000),(1942,77,0,1028,27.000000),(1943,77,0,1029,57.000000),(1944,82,0,1029,1.000000),(1945,77,0,1030,57.000000),(1946,82,0,1030,1.000000),(1947,77,0,1031,57.000000),(1948,82,0,1031,1.000000),(1949,77,0,1032,57.000000),(1950,82,0,1032,1.000000),(1951,77,0,1033,57.000000),(1952,82,0,1033,1.000000),(1953,77,0,1034,57.000000),(1954,82,0,1034,1.000000),(1955,77,0,1035,57.000000),(1956,82,0,1035,1.000000),(1957,77,0,1036,57.000000),(1958,82,0,1036,1.000000),(1959,77,0,1037,57.000000),(1960,82,0,1037,1.000000),(1961,77,0,1038,57.000000),(1962,82,0,1038,1.000000),(1963,77,0,1039,57.000000),(1964,82,0,1039,1.000000),(1965,77,0,1040,57.000000),(1966,82,0,1040,1.000000),(1967,77,0,1041,57.000000),(1968,82,0,1041,1.000000),(1969,77,0,1042,57.000000),(1970,82,0,1042,1.000000),(1971,77,0,1043,57.000000),(1972,82,0,1043,1.000000),(1973,77,0,1044,57.000000),(1974,77,0,1045,48.000000),(1975,82,0,1045,1.000000),(1976,77,0,1046,48.000000),(1977,82,0,1046,1.000000),(1978,77,0,1047,48.000000),(1979,82,0,1047,1.000000),(1980,77,0,1048,48.000000),(1981,82,0,1048,1.000000),(1982,77,0,1049,48.000000),(1983,82,0,1049,1.000000),(1984,77,0,1050,48.000000),(1985,82,0,1050,1.000000),(1986,77,0,1051,48.000000),(1987,82,0,1051,1.000000),(1988,77,0,1052,48.000000),(1989,82,0,1052,1.000000),(1990,77,0,1053,48.000000),(1991,82,0,1053,1.000000),(1992,77,0,1054,48.000000),(1993,82,0,1054,1.000000),(1994,77,0,1055,48.000000),(1995,82,0,1055,1.000000),(1996,77,0,1056,48.000000),(1997,82,0,1056,1.000000),(1998,77,0,1057,48.000000),(1999,82,0,1057,1.000000),(2000,77,0,1058,48.000000),(2001,82,0,1058,1.000000),(2002,77,0,1059,48.000000),(2003,82,0,1059,1.000000),(2004,77,0,1060,48.000000),(2005,77,0,1061,57.000000),(2006,82,0,1061,1.000000),(2007,77,0,1062,57.000000),(2008,82,0,1062,1.000000),(2009,77,0,1063,57.000000),(2010,82,0,1063,1.000000),(2011,77,0,1064,57.000000),(2012,82,0,1064,1.000000),(2013,77,0,1065,57.000000),(2014,82,0,1065,1.000000),(2015,77,0,1066,57.000000),(2016,82,0,1066,1.000000),(2017,77,0,1067,57.000000),(2018,82,0,1067,1.000000),(2019,77,0,1068,57.000000),(2020,82,0,1068,1.000000),(2021,77,0,1069,57.000000),(2022,82,0,1069,1.000000),(2023,77,0,1070,57.000000),(2024,82,0,1070,1.000000),(2025,77,0,1071,57.000000),(2026,82,0,1071,1.000000),(2027,77,0,1072,57.000000),(2028,82,0,1072,1.000000),(2029,77,0,1073,57.000000),(2030,82,0,1073,1.000000),(2031,77,0,1074,57.000000),(2032,82,0,1074,1.000000),(2033,77,0,1075,57.000000),(2034,82,0,1075,1.000000),(2035,77,0,1076,57.000000),(2036,77,0,1077,69.000000),(2037,82,0,1077,1.000000),(2038,77,0,1078,69.000000),(2039,82,0,1078,1.000000),(2040,77,0,1079,69.000000),(2041,82,0,1079,1.000000),(2042,77,0,1080,69.000000),(2043,82,0,1080,1.000000),(2044,77,0,1081,69.000000),(2045,82,0,1081,1.000000),(2046,77,0,1082,69.000000),(2047,82,0,1082,1.000000),(2048,77,0,1083,69.000000),(2049,82,0,1083,1.000000),(2050,77,0,1084,69.000000),(2051,82,0,1084,1.000000),(2052,77,0,1085,69.000000),(2053,82,0,1085,1.000000),(2054,77,0,1086,69.000000),(2055,82,0,1086,1.000000),(2056,77,0,1087,69.000000),(2057,82,0,1087,1.000000),(2058,77,0,1088,69.000000),(2059,82,0,1088,1.000000),(2060,77,0,1089,69.000000),(2061,82,0,1089,1.000000),(2062,77,0,1090,69.000000),(2063,82,0,1090,1.000000),(2064,77,0,1091,69.000000),(2065,82,0,1091,1.000000),(2066,77,0,1092,69.000000),(2067,77,0,1093,42.000000),(2068,82,0,1093,1.000000),(2069,77,0,1094,42.000000),(2070,82,0,1094,1.000000),(2071,77,0,1095,42.000000),(2072,82,0,1095,1.000000),(2073,77,0,1096,42.000000),(2074,82,0,1096,1.000000),(2075,77,0,1097,42.000000),(2076,82,0,1097,1.000000),(2077,77,0,1098,42.000000),(2078,82,0,1098,1.000000),(2079,77,0,1099,42.000000),(2080,82,0,1099,1.000000),(2081,77,0,1100,42.000000),(2082,82,0,1100,1.000000),(2083,77,0,1101,42.000000),(2084,82,0,1101,1.000000),(2085,77,0,1102,42.000000),(2086,82,0,1102,1.000000),(2087,77,0,1103,42.000000),(2088,82,0,1103,1.000000),(2089,77,0,1104,42.000000),(2090,82,0,1104,1.000000),(2091,77,0,1105,42.000000),(2092,82,0,1105,1.000000),(2093,77,0,1106,42.000000),(2094,82,0,1106,1.000000),(2095,77,0,1107,42.000000),(2096,82,0,1107,1.000000),(2097,77,0,1108,42.000000),(2098,77,0,1109,59.000000),(2099,82,0,1109,1.000000),(2100,77,0,1110,59.000000),(2101,82,0,1110,1.000000),(2102,77,0,1111,59.000000),(2103,82,0,1111,1.000000),(2104,77,0,1112,59.000000),(2105,82,0,1112,1.000000),(2106,77,0,1113,59.000000),(2107,82,0,1113,1.000000),(2108,77,0,1114,59.000000),(2109,77,0,1115,59.000000),(2110,82,0,1115,1.000000),(2111,77,0,1116,59.000000),(2112,82,0,1116,1.000000),(2113,77,0,1117,59.000000),(2114,82,0,1117,1.000000),(2115,77,0,1118,59.000000),(2116,82,0,1118,1.000000),(2117,77,0,1119,59.000000),(2118,82,0,1119,1.000000),(2119,77,0,1120,59.000000),(2120,82,0,1120,1.000000),(2121,77,0,1121,59.000000),(2122,82,0,1121,1.000000),(2123,77,0,1122,59.000000),(2124,82,0,1122,1.000000),(2125,77,0,1123,59.000000),(2126,82,0,1123,1.000000),(2127,77,0,1124,59.000000),(2128,82,0,1124,1.000000),(2129,77,0,1125,59.000000),(2130,82,0,1125,1.000000),(2131,77,0,1126,59.000000),(2132,82,0,1126,1.000000),(2133,77,0,1127,59.000000),(2134,82,0,1127,1.000000),(2135,77,0,1128,59.000000),(2136,82,0,1128,1.000000),(2137,77,0,1129,59.000000),(2138,82,0,1129,1.000000),(2139,77,0,1130,59.000000),(2140,77,0,1131,48.000000),(2141,82,0,1131,1.000000),(2142,77,0,1132,48.000000),(2143,82,0,1132,1.000000),(2144,77,0,1133,48.000000),(2145,82,0,1133,1.000000),(2146,77,0,1134,48.000000),(2147,82,0,1134,1.000000),(2148,77,0,1135,48.000000),(2149,82,0,1135,1.000000),(2150,77,0,1136,48.000000),(2151,82,0,1136,1.000000),(2152,77,0,1137,48.000000),(2153,82,0,1137,1.000000),(2154,77,0,1138,48.000000),(2155,82,0,1138,1.000000),(2156,77,0,1139,48.000000),(2157,82,0,1139,1.000000),(2158,77,0,1140,48.000000),(2159,82,0,1140,1.000000),(2160,77,0,1141,48.000000),(2161,82,0,1141,1.000000),(2162,77,0,1142,48.000000),(2163,82,0,1142,1.000000),(2164,77,0,1143,48.000000),(2165,82,0,1143,1.000000),(2166,77,0,1144,48.000000),(2167,82,0,1144,1.000000),(2168,77,0,1145,48.000000),(2169,82,0,1145,1.000000),(2170,77,0,1146,48.000000),(2171,77,0,1147,39.000000),(2172,82,0,1147,1.000000),(2173,77,0,1148,39.000000),(2174,82,0,1148,1.000000),(2175,77,0,1149,39.000000),(2176,82,0,1149,1.000000),(2177,77,0,1150,39.000000),(2178,82,0,1150,1.000000),(2179,77,0,1151,39.000000),(2180,82,0,1151,1.000000),(2181,77,0,1152,39.000000),(2182,82,0,1152,1.000000),(2183,77,0,1153,39.000000),(2184,82,0,1153,1.000000),(2185,77,0,1154,39.000000),(2186,82,0,1154,1.000000),(2187,77,0,1155,39.000000),(2188,82,0,1155,1.000000),(2189,77,0,1156,39.000000),(2190,82,0,1156,1.000000),(2191,77,0,1157,39.000000),(2192,82,0,1157,1.000000),(2193,77,0,1158,39.000000),(2194,82,0,1158,1.000000),(2195,77,0,1159,39.000000),(2196,82,0,1159,1.000000),(2197,77,0,1160,39.000000),(2198,82,0,1160,1.000000),(2199,77,0,1161,39.000000),(2200,82,0,1161,1.000000),(2201,77,0,1162,39.000000),(2202,77,0,1163,55.000000),(2203,82,0,1163,1.000000),(2204,77,0,1164,55.000000),(2205,82,0,1164,1.000000),(2206,77,0,1165,55.000000),(2207,82,0,1165,1.000000),(2208,77,0,1166,55.000000),(2209,82,0,1166,1.000000),(2210,77,0,1167,55.000000),(2211,82,0,1167,1.000000),(2212,77,0,1168,55.000000),(2213,82,0,1168,1.000000),(2214,77,0,1169,55.000000),(2215,82,0,1169,1.000000),(2216,77,0,1170,55.000000),(2217,82,0,1170,1.000000),(2218,77,0,1171,55.000000),(2219,82,0,1171,1.000000),(2220,77,0,1172,55.000000),(2221,82,0,1172,1.000000),(2222,77,0,1173,55.000000),(2223,82,0,1173,1.000000),(2224,77,0,1174,55.000000),(2225,82,0,1174,1.000000),(2226,77,0,1175,55.000000),(2227,82,0,1175,1.000000),(2228,77,0,1176,55.000000),(2229,82,0,1176,1.000000),(2230,77,0,1177,55.000000),(2231,82,0,1177,1.000000),(2232,77,0,1178,55.000000),(2233,77,0,1179,54.000000),(2234,82,0,1179,1.000000),(2235,77,0,1180,54.000000),(2236,82,0,1180,1.000000),(2237,77,0,1181,54.000000),(2238,82,0,1181,1.000000),(2239,77,0,1182,54.000000),(2240,82,0,1182,1.000000),(2241,77,0,1183,54.000000),(2242,82,0,1183,1.000000),(2243,77,0,1184,54.000000),(2244,82,0,1184,1.000000),(2245,77,0,1185,54.000000),(2246,82,0,1185,1.000000),(2247,77,0,1186,54.000000),(2248,82,0,1186,1.000000),(2249,77,0,1187,54.000000),(2250,82,0,1187,1.000000),(2251,77,0,1188,54.000000),(2252,82,0,1188,1.000000),(2253,77,0,1189,54.000000),(2254,82,0,1189,1.000000),(2255,77,0,1190,54.000000),(2256,82,0,1190,1.000000),(2257,77,0,1191,54.000000),(2258,82,0,1191,1.000000),(2259,77,0,1192,54.000000),(2260,82,0,1192,1.000000),(2261,77,0,1193,54.000000),(2262,82,0,1193,1.000000),(2263,77,0,1194,54.000000),(2264,77,0,1195,68.000000),(2265,82,0,1195,1.000000),(2266,77,0,1196,68.000000),(2267,82,0,1196,1.000000),(2268,77,0,1197,68.000000),(2269,82,0,1197,1.000000),(2270,77,0,1198,68.000000),(2271,82,0,1198,1.000000),(2272,77,0,1199,68.000000),(2273,82,0,1199,1.000000),(2274,77,0,1200,68.000000),(2275,82,0,1200,1.000000),(2276,77,0,1201,68.000000),(2277,82,0,1201,1.000000),(2278,77,0,1202,68.000000),(2279,82,0,1202,1.000000),(2280,77,0,1203,68.000000),(2281,82,0,1203,1.000000),(2282,77,0,1204,68.000000),(2283,82,0,1204,1.000000),(2284,77,0,1205,68.000000),(2285,82,0,1205,1.000000),(2286,77,0,1206,68.000000),(2287,82,0,1206,1.000000),(2288,77,0,1207,68.000000),(2289,82,0,1207,1.000000),(2290,77,0,1208,68.000000),(2291,82,0,1208,1.000000),(2292,77,0,1209,68.000000),(2293,82,0,1209,1.000000),(2294,77,0,1210,68.000000),(2295,77,0,1211,75.000000),(2296,82,0,1211,1.000000),(2297,77,0,1212,75.000000),(2298,82,0,1212,1.000000),(2299,77,0,1213,75.000000),(2300,82,0,1213,1.000000),(2301,77,0,1214,75.000000),(2302,82,0,1214,1.000000),(2303,77,0,1215,75.000000),(2304,82,0,1215,1.000000),(2305,77,0,1216,75.000000),(2306,82,0,1216,1.000000),(2307,77,0,1217,75.000000),(2308,82,0,1217,1.000000),(2309,77,0,1218,75.000000),(2310,82,0,1218,1.000000),(2311,77,0,1219,75.000000),(2312,82,0,1219,1.000000),(2313,77,0,1220,75.000000),(2314,77,0,1221,56.250000),(2315,82,0,1221,1.000000),(2316,77,0,1222,56.250000),(2317,82,0,1222,1.000000),(2318,77,0,1223,56.250000),(2319,82,0,1223,1.000000),(2320,77,0,1224,56.250000),(2321,82,0,1224,1.000000),(2322,77,0,1225,56.250000),(2323,82,0,1225,1.000000),(2324,77,0,1226,56.250000),(2325,82,0,1226,1.000000),(2326,77,0,1227,56.250000),(2327,82,0,1227,1.000000),(2328,77,0,1228,56.250000),(2329,82,0,1228,1.000000),(2330,77,0,1229,56.250000),(2331,82,0,1229,1.000000),(2332,77,0,1230,56.250000),(2333,82,0,1230,1.000000),(2334,77,0,1231,56.250000),(2335,82,0,1231,1.000000),(2336,77,0,1232,56.250000),(2337,82,0,1232,1.000000),(2338,77,0,1233,56.250000),(2339,82,0,1233,1.000000),(2340,77,0,1234,56.250000),(2341,82,0,1234,1.000000),(2342,77,0,1235,56.250000),(2343,82,0,1235,1.000000),(2344,77,0,1236,56.250000),(2345,77,0,1237,57.000000),(2346,82,0,1237,1.000000),(2347,77,0,1238,57.000000),(2348,82,0,1238,1.000000),(2349,77,0,1239,57.000000),(2350,82,0,1239,1.000000),(2351,77,0,1240,57.000000),(2352,82,0,1240,1.000000),(2353,77,0,1241,57.000000),(2354,82,0,1241,1.000000),(2355,77,0,1242,57.000000),(2356,82,0,1242,1.000000),(2357,77,0,1243,57.000000),(2358,82,0,1243,1.000000),(2359,77,0,1244,57.000000),(2360,82,0,1244,1.000000),(2361,77,0,1245,57.000000),(2362,82,0,1245,1.000000),(2363,77,0,1246,57.000000),(2364,82,0,1246,1.000000),(2365,77,0,1247,57.000000),(2366,82,0,1247,1.000000),(2367,77,0,1248,57.000000),(2368,82,0,1248,1.000000),(2369,77,0,1249,57.000000),(2370,82,0,1249,1.000000),(2371,77,0,1250,57.000000),(2372,82,0,1250,1.000000),(2373,77,0,1251,57.000000),(2374,82,0,1251,1.000000),(2375,77,0,1252,57.000000),(2376,77,0,1253,84.000000),(2377,82,0,1253,1.000000),(2378,77,0,1254,84.000000),(2379,82,0,1254,1.000000),(2380,77,0,1255,84.000000),(2381,82,0,1255,1.000000),(2382,77,0,1256,84.000000),(2383,82,0,1256,1.000000),(2384,77,0,1257,84.000000),(2385,82,0,1257,1.000000),(2386,77,0,1258,84.000000),(2387,82,0,1258,1.000000),(2388,77,0,1259,84.000000),(2389,82,0,1259,1.000000),(2390,77,0,1260,84.000000),(2391,82,0,1260,1.000000),(2392,77,0,1261,84.000000),(2393,82,0,1261,1.000000),(2394,77,0,1262,84.000000),(2395,82,0,1262,1.000000),(2396,77,0,1263,84.000000),(2397,82,0,1263,1.000000),(2398,77,0,1264,84.000000),(2399,82,0,1264,1.000000),(2400,77,0,1265,84.000000),(2401,82,0,1265,1.000000),(2402,77,0,1266,84.000000),(2403,82,0,1266,1.000000),(2404,77,0,1267,84.000000),(2405,82,0,1267,1.000000),(2406,77,0,1268,84.000000),(2407,77,0,1269,60.000000),(2408,82,0,1269,1.000000),(2409,77,0,1270,60.000000),(2410,82,0,1270,1.000000),(2411,77,0,1271,60.000000),(2412,82,0,1271,1.000000),(2413,77,0,1272,60.000000),(2414,82,0,1272,1.000000),(2415,77,0,1273,60.000000),(2416,82,0,1273,1.000000),(2417,77,0,1274,60.000000),(2418,82,0,1274,1.000000),(2419,77,0,1275,60.000000),(2420,82,0,1275,1.000000),(2421,77,0,1276,60.000000),(2422,82,0,1276,1.000000),(2423,77,0,1277,60.000000),(2424,82,0,1277,1.000000),(2425,77,0,1278,60.000000),(2426,82,0,1278,1.000000),(2427,77,0,1279,60.000000),(2428,82,0,1279,1.000000),(2429,77,0,1280,60.000000),(2430,82,0,1280,1.000000),(2431,77,0,1281,60.000000),(2432,82,0,1281,1.000000),(2433,77,0,1282,60.000000),(2434,82,0,1282,1.000000),(2435,77,0,1283,60.000000),(2436,82,0,1283,1.000000),(2437,77,0,1284,60.000000),(2438,77,0,1285,59.000000),(2439,82,0,1285,1.000000),(2440,77,0,1286,59.000000),(2441,82,0,1286,1.000000),(2442,77,0,1287,59.000000),(2443,82,0,1287,1.000000),(2444,77,0,1288,59.000000),(2445,82,0,1288,1.000000),(2446,77,0,1289,59.000000),(2447,82,0,1289,1.000000),(2448,77,0,1290,59.000000),(2449,82,0,1290,1.000000),(2450,77,0,1291,59.000000),(2451,82,0,1291,1.000000),(2452,77,0,1292,59.000000),(2453,82,0,1292,1.000000),(2454,77,0,1293,59.000000),(2455,82,0,1293,1.000000),(2456,77,0,1294,59.000000),(2457,82,0,1294,1.000000),(2458,77,0,1295,59.000000),(2459,82,0,1295,1.000000),(2460,77,0,1296,59.000000),(2461,82,0,1296,1.000000),(2462,77,0,1297,59.000000),(2463,82,0,1297,1.000000),(2464,77,0,1298,59.000000),(2465,82,0,1298,1.000000),(2466,77,0,1299,59.000000),(2467,82,0,1299,1.000000),(2468,77,0,1300,59.000000),(2469,77,0,1301,57.000000),(2470,82,0,1301,1.000000),(2471,77,0,1302,57.000000),(2472,82,0,1302,1.000000),(2473,77,0,1303,57.000000),(2474,82,0,1303,1.000000),(2475,77,0,1304,57.000000),(2476,82,0,1304,1.000000),(2477,77,0,1305,57.000000),(2478,82,0,1305,1.000000),(2479,77,0,1306,57.000000),(2480,82,0,1306,1.000000),(2481,77,0,1307,57.000000),(2482,82,0,1307,1.000000),(2483,77,0,1308,57.000000),(2484,82,0,1308,1.000000),(2485,77,0,1309,57.000000),(2486,82,0,1309,1.000000),(2487,77,0,1310,57.000000),(2488,82,0,1310,1.000000),(2489,77,0,1311,57.000000),(2490,82,0,1311,1.000000),(2491,77,0,1312,57.000000),(2492,82,0,1312,1.000000),(2493,77,0,1313,57.000000),(2494,82,0,1313,1.000000),(2495,77,0,1314,57.000000),(2496,82,0,1314,1.000000),(2497,77,0,1315,57.000000),(2498,82,0,1315,1.000000),(2499,77,0,1316,57.000000),(2500,77,0,1317,32.000000),(2501,82,0,1317,1.000000),(2502,77,0,1318,32.000000),(2503,82,0,1318,1.000000),(2504,77,0,1319,32.000000),(2505,82,0,1319,1.000000),(2506,77,0,1320,32.000000),(2507,82,0,1320,1.000000),(2508,77,0,1321,32.000000),(2509,82,0,1321,1.000000),(2510,77,0,1322,32.000000),(2511,82,0,1322,1.000000),(2512,77,0,1323,32.000000),(2513,82,0,1323,1.000000),(2514,77,0,1324,32.000000),(2515,82,0,1324,1.000000),(2516,77,0,1325,32.000000),(2517,82,0,1325,1.000000),(2518,77,0,1326,32.000000),(2519,82,0,1326,1.000000),(2520,77,0,1327,32.000000),(2521,82,0,1327,1.000000),(2522,77,0,1328,32.000000),(2523,82,0,1328,1.000000),(2524,77,0,1329,32.000000),(2525,82,0,1329,1.000000),(2526,77,0,1330,32.000000),(2527,82,0,1330,1.000000),(2528,77,0,1331,32.000000),(2529,82,0,1331,1.000000),(2530,77,0,1332,32.000000),(2531,77,0,1333,69.000000),(2532,82,0,1333,1.000000),(2533,77,0,1334,69.000000),(2534,82,0,1334,1.000000),(2535,77,0,1335,69.000000),(2536,82,0,1335,1.000000),(2537,77,0,1336,69.000000),(2538,82,0,1336,1.000000),(2539,77,0,1337,69.000000),(2540,82,0,1337,1.000000),(2541,77,0,1338,69.000000),(2542,82,0,1338,1.000000),(2543,77,0,1339,69.000000),(2544,82,0,1339,1.000000),(2545,77,0,1340,69.000000),(2546,82,0,1340,1.000000),(2547,77,0,1341,69.000000),(2548,82,0,1341,1.000000),(2549,77,0,1342,69.000000),(2550,82,0,1342,1.000000),(2551,77,0,1343,69.000000),(2552,82,0,1343,1.000000),(2553,77,0,1344,69.000000),(2554,82,0,1344,1.000000),(2555,77,0,1345,69.000000),(2556,82,0,1345,1.000000),(2557,77,0,1346,69.000000),(2558,82,0,1346,1.000000),(2559,77,0,1347,69.000000),(2560,82,0,1347,1.000000),(2561,77,0,1348,69.000000),(2562,77,0,1349,69.000000),(2563,82,0,1349,1.000000),(2564,77,0,1350,69.000000),(2565,82,0,1350,1.000000),(2566,77,0,1351,69.000000),(2567,82,0,1351,1.000000),(2568,77,0,1352,69.000000),(2569,82,0,1352,1.000000),(2570,77,0,1353,69.000000),(2571,82,0,1353,1.000000),(2572,77,0,1354,69.000000),(2573,82,0,1354,1.000000),(2574,77,0,1355,69.000000),(2575,82,0,1355,1.000000),(2576,77,0,1356,69.000000),(2577,82,0,1356,1.000000),(2578,77,0,1357,69.000000),(2579,82,0,1357,1.000000),(2580,77,0,1358,69.000000),(2581,82,0,1358,1.000000),(2582,77,0,1359,69.000000),(2583,82,0,1359,1.000000),(2584,77,0,1360,69.000000),(2585,82,0,1360,1.000000),(2586,77,0,1361,69.000000),(2587,82,0,1361,1.000000),(2588,77,0,1362,69.000000),(2589,82,0,1362,1.000000),(2590,77,0,1363,69.000000),(2591,82,0,1363,1.000000),(2592,77,0,1364,69.000000),(2593,77,0,1365,77.000000),(2594,82,0,1365,1.000000),(2595,77,0,1366,77.000000),(2596,82,0,1366,1.000000),(2597,77,0,1367,77.000000),(2598,82,0,1367,1.000000),(2599,77,0,1368,77.000000),(2600,82,0,1368,1.000000),(2601,77,0,1369,77.000000),(2602,82,0,1369,1.000000),(2603,77,0,1370,77.000000),(2604,82,0,1370,1.000000),(2605,77,0,1371,77.000000),(2606,82,0,1371,1.000000),(2607,77,0,1372,77.000000),(2608,82,0,1372,1.000000),(2609,77,0,1373,77.000000),(2610,82,0,1373,1.000000),(2611,77,0,1374,77.000000),(2612,82,0,1374,1.000000),(2613,77,0,1375,77.000000),(2614,82,0,1375,1.000000),(2615,77,0,1376,77.000000),(2616,82,0,1376,1.000000),(2617,77,0,1377,77.000000),(2618,82,0,1377,1.000000),(2619,77,0,1378,77.000000),(2620,82,0,1378,1.000000),(2621,77,0,1379,77.000000),(2622,82,0,1379,1.000000),(2623,77,0,1380,77.000000),(2624,77,0,1381,77.000000),(2625,82,0,1381,1.000000),(2626,77,0,1382,77.000000),(2627,82,0,1382,1.000000),(2628,77,0,1383,77.000000),(2629,82,0,1383,1.000000),(2630,77,0,1384,77.000000),(2631,82,0,1384,1.000000),(2632,77,0,1385,77.000000),(2633,82,0,1385,1.000000),(2634,77,0,1386,77.000000),(2635,82,0,1386,1.000000),(2636,77,0,1387,77.000000),(2637,82,0,1387,1.000000),(2638,77,0,1388,77.000000),(2639,82,0,1388,1.000000),(2640,77,0,1389,77.000000),(2641,82,0,1389,1.000000),(2642,77,0,1390,77.000000),(2643,82,0,1390,1.000000),(2644,77,0,1391,77.000000),(2645,82,0,1391,1.000000),(2646,77,0,1392,77.000000),(2647,82,0,1392,1.000000),(2648,77,0,1393,77.000000),(2649,82,0,1393,1.000000),(2650,77,0,1394,77.000000),(2651,82,0,1394,1.000000),(2652,77,0,1395,77.000000),(2653,82,0,1395,1.000000),(2654,77,0,1396,77.000000),(2655,77,0,1397,28.000000),(2656,82,0,1397,1.000000),(2657,77,0,1398,28.000000),(2658,82,0,1398,1.000000),(2659,77,0,1399,28.000000),(2660,82,0,1399,1.000000),(2661,77,0,1400,28.000000),(2662,82,0,1400,1.000000),(2663,77,0,1401,28.000000),(2664,82,0,1401,1.000000),(2665,77,0,1402,28.000000),(2666,82,0,1402,1.000000),(2667,77,0,1403,28.000000),(2668,82,0,1403,1.000000),(2669,77,0,1404,28.000000),(2670,82,0,1404,1.000000),(2671,77,0,1405,28.000000),(2672,82,0,1405,1.000000),(2673,77,0,1406,28.000000),(2674,82,0,1406,1.000000),(2675,77,0,1407,28.000000),(2676,82,0,1407,1.000000),(2677,77,0,1408,28.000000),(2678,82,0,1408,1.000000),(2679,77,0,1409,28.000000),(2680,82,0,1409,1.000000),(2681,77,0,1410,28.000000),(2682,82,0,1410,1.000000),(2683,77,0,1411,28.000000),(2684,82,0,1411,1.000000),(2685,77,0,1412,28.000000),(2686,77,0,1413,29.000000),(2687,82,0,1413,1.000000),(2688,77,0,1414,29.000000),(2689,82,0,1414,1.000000),(2690,77,0,1415,29.000000),(2691,82,0,1415,1.000000),(2692,77,0,1416,29.000000),(2693,82,0,1416,1.000000),(2694,77,0,1417,29.000000),(2695,82,0,1417,1.000000),(2696,77,0,1418,29.000000),(2697,82,0,1418,1.000000),(2698,77,0,1419,29.000000),(2699,82,0,1419,1.000000),(2700,77,0,1420,29.000000),(2701,82,0,1420,1.000000),(2702,77,0,1421,29.000000),(2703,82,0,1421,1.000000),(2704,77,0,1422,29.000000),(2705,82,0,1422,1.000000),(2706,77,0,1423,29.000000),(2707,82,0,1423,1.000000),(2708,77,0,1424,29.000000),(2709,82,0,1424,1.000000),(2710,77,0,1425,29.000000),(2711,82,0,1425,1.000000),(2712,77,0,1426,29.000000),(2713,82,0,1426,1.000000),(2714,77,0,1427,29.000000),(2715,82,0,1427,1.000000),(2716,77,0,1428,29.000000),(2717,77,0,1429,29.000000),(2718,82,0,1429,1.000000),(2719,77,0,1430,29.000000),(2720,82,0,1430,1.000000),(2721,77,0,1431,29.000000),(2722,82,0,1431,1.000000),(2723,77,0,1432,29.000000),(2724,82,0,1432,1.000000),(2725,77,0,1433,29.000000),(2726,82,0,1433,1.000000),(2727,77,0,1434,29.000000),(2728,82,0,1434,1.000000),(2729,77,0,1435,29.000000),(2730,82,0,1435,1.000000),(2731,77,0,1436,29.000000),(2732,82,0,1436,1.000000),(2733,77,0,1437,29.000000),(2734,82,0,1437,1.000000),(2735,77,0,1438,29.000000),(2736,82,0,1438,1.000000),(2737,77,0,1439,29.000000),(2738,82,0,1439,1.000000),(2739,77,0,1440,29.000000),(2740,82,0,1440,1.000000),(2741,77,0,1441,29.000000),(2742,82,0,1441,1.000000),(2743,77,0,1442,29.000000),(2744,82,0,1442,1.000000),(2745,77,0,1443,29.000000),(2746,82,0,1443,1.000000),(2747,77,0,1444,29.000000),(2748,77,0,1445,29.000000),(2749,82,0,1445,1.000000),(2750,77,0,1446,29.000000),(2751,82,0,1446,1.000000),(2752,77,0,1447,29.000000),(2753,82,0,1447,1.000000),(2754,77,0,1448,29.000000),(2755,82,0,1448,1.000000),(2756,77,0,1449,29.000000),(2757,82,0,1449,1.000000),(2758,77,0,1450,29.000000),(2759,82,0,1450,1.000000),(2760,77,0,1451,29.000000),(2761,82,0,1451,1.000000),(2762,77,0,1452,29.000000),(2763,82,0,1452,1.000000),(2764,77,0,1453,29.000000),(2765,82,0,1453,1.000000),(2766,77,0,1454,29.000000),(2767,82,0,1454,1.000000),(2768,77,0,1455,29.000000),(2769,82,0,1455,1.000000),(2770,77,0,1456,29.000000),(2771,82,0,1456,1.000000),(2772,77,0,1457,29.000000),(2773,82,0,1457,1.000000),(2774,77,0,1458,29.000000),(2775,82,0,1458,1.000000),(2776,77,0,1459,29.000000),(2777,82,0,1459,1.000000),(2778,77,0,1460,29.000000),(2779,77,0,1461,42.000000),(2780,82,0,1461,1.000000),(2781,77,0,1462,42.000000),(2782,82,0,1462,1.000000),(2783,77,0,1463,42.000000),(2784,82,0,1463,1.000000),(2785,77,0,1464,42.000000),(2786,82,0,1464,1.000000),(2787,77,0,1465,42.000000),(2788,82,0,1465,1.000000),(2789,77,0,1466,42.000000),(2790,82,0,1466,1.000000),(2791,77,0,1467,42.000000),(2792,82,0,1467,1.000000),(2793,77,0,1468,42.000000),(2794,82,0,1468,1.000000),(2795,77,0,1469,42.000000),(2796,82,0,1469,1.000000),(2797,77,0,1470,42.000000),(2798,82,0,1470,1.000000),(2799,77,0,1471,42.000000),(2800,82,0,1471,1.000000),(2801,77,0,1472,42.000000),(2802,82,0,1472,1.000000),(2803,77,0,1473,42.000000),(2804,82,0,1473,1.000000),(2805,77,0,1474,42.000000),(2806,82,0,1474,1.000000),(2807,77,0,1475,42.000000),(2808,82,0,1475,1.000000),(2809,77,0,1476,42.000000),(2810,77,0,1477,32.000000),(2811,82,0,1477,1.000000),(2812,77,0,1478,32.000000),(2813,82,0,1478,1.000000),(2814,77,0,1479,32.000000),(2815,82,0,1479,1.000000),(2816,77,0,1480,32.000000),(2817,82,0,1480,1.000000),(2818,77,0,1481,32.000000),(2819,82,0,1481,1.000000),(2820,77,0,1482,32.000000),(2821,82,0,1482,1.000000),(2822,77,0,1483,32.000000),(2823,82,0,1483,1.000000),(2824,77,0,1484,32.000000),(2825,82,0,1484,1.000000),(2826,77,0,1485,32.000000),(2827,82,0,1485,1.000000),(2828,77,0,1486,32.000000),(2829,82,0,1486,1.000000),(2830,77,0,1487,32.000000),(2831,82,0,1487,1.000000),(2832,77,0,1488,32.000000),(2833,82,0,1488,1.000000),(2834,77,0,1489,32.000000),(2835,82,0,1489,1.000000),(2836,77,0,1490,32.000000),(2837,82,0,1490,1.000000),(2838,77,0,1491,32.000000),(2839,82,0,1491,1.000000),(2840,77,0,1492,32.000000),(2841,77,0,1493,28.000000),(2842,82,0,1493,1.000000),(2843,77,0,1494,28.000000),(2844,82,0,1494,1.000000),(2845,77,0,1495,28.000000),(2846,82,0,1495,1.000000),(2847,77,0,1496,28.000000),(2848,82,0,1496,1.000000),(2849,77,0,1497,28.000000),(2850,82,0,1497,1.000000),(2851,77,0,1498,28.000000),(2852,82,0,1498,1.000000),(2853,77,0,1499,28.000000),(2854,82,0,1499,1.000000),(2855,77,0,1500,28.000000),(2856,82,0,1500,1.000000),(2857,77,0,1501,28.000000),(2858,82,0,1501,1.000000),(2859,77,0,1502,28.000000),(2860,82,0,1502,1.000000),(2861,77,0,1503,28.000000),(2862,82,0,1503,1.000000),(2863,77,0,1504,28.000000),(2864,82,0,1504,1.000000),(2865,77,0,1505,28.000000),(2866,82,0,1505,1.000000),(2867,77,0,1506,28.000000),(2868,82,0,1506,1.000000),(2869,77,0,1507,28.000000),(2870,82,0,1507,1.000000),(2871,77,0,1508,28.000000),(2872,77,0,1509,32.000000),(2873,82,0,1509,1.000000),(2874,77,0,1510,32.000000),(2875,82,0,1510,1.000000),(2876,77,0,1511,32.000000),(2877,82,0,1511,1.000000),(2878,77,0,1512,32.000000),(2879,82,0,1512,1.000000),(2880,77,0,1513,32.000000),(2881,82,0,1513,1.000000),(2882,77,0,1514,32.000000),(2883,82,0,1514,1.000000),(2884,77,0,1515,32.000000),(2885,82,0,1515,1.000000),(2886,77,0,1516,32.000000),(2887,82,0,1516,1.000000),(2888,77,0,1517,32.000000),(2889,82,0,1517,1.000000),(2890,77,0,1518,32.000000),(2891,82,0,1518,1.000000),(2892,77,0,1519,32.000000),(2893,82,0,1519,1.000000),(2894,77,0,1520,32.000000),(2895,82,0,1520,1.000000),(2896,77,0,1521,32.000000),(2897,82,0,1521,1.000000),(2898,77,0,1522,32.000000),(2899,82,0,1522,1.000000),(2900,77,0,1523,32.000000),(2901,82,0,1523,1.000000),(2902,77,0,1524,32.000000),(2903,77,0,1525,32.000000),(2904,82,0,1525,1.000000),(2905,77,0,1526,32.000000),(2906,82,0,1526,1.000000),(2907,77,0,1527,32.000000),(2908,82,0,1527,1.000000),(2909,77,0,1528,32.000000),(2910,82,0,1528,1.000000),(2911,77,0,1529,32.000000),(2912,82,0,1529,1.000000),(2913,77,0,1530,32.000000),(2914,82,0,1530,1.000000),(2915,77,0,1531,32.000000),(2916,82,0,1531,1.000000),(2917,77,0,1532,32.000000),(2918,82,0,1532,1.000000),(2919,77,0,1533,32.000000),(2920,82,0,1533,1.000000),(2921,77,0,1534,32.000000),(2922,82,0,1534,1.000000),(2923,77,0,1535,32.000000),(2924,82,0,1535,1.000000),(2925,77,0,1536,32.000000),(2926,82,0,1536,1.000000),(2927,77,0,1537,32.000000),(2928,82,0,1537,1.000000),(2929,77,0,1538,32.000000),(2930,82,0,1538,1.000000),(2931,77,0,1539,32.000000),(2932,82,0,1539,1.000000),(2933,77,0,1540,32.000000),(2934,77,0,1541,22.000000),(2935,82,0,1541,1.000000),(2936,77,0,1542,22.000000),(2937,82,0,1542,1.000000),(2938,77,0,1543,22.000000),(2939,82,0,1543,1.000000),(2940,77,0,1544,22.000000),(2941,82,0,1544,1.000000),(2942,77,0,1545,22.000000),(2943,82,0,1545,1.000000),(2944,77,0,1546,22.000000),(2945,82,0,1546,1.000000),(2946,77,0,1547,22.000000),(2947,82,0,1547,1.000000),(2948,77,0,1548,22.000000),(2949,82,0,1548,1.000000),(2950,77,0,1549,22.000000),(2951,82,0,1549,1.000000),(2952,77,0,1550,22.000000),(2953,82,0,1550,1.000000),(2954,77,0,1551,22.000000),(2955,82,0,1551,1.000000),(2956,77,0,1552,22.000000),(2957,82,0,1552,1.000000),(2958,77,0,1553,22.000000),(2959,82,0,1553,1.000000),(2960,77,0,1554,22.000000),(2961,82,0,1554,1.000000),(2962,77,0,1555,22.000000),(2963,82,0,1555,1.000000),(2964,77,0,1556,22.000000),(2965,77,0,1557,24.000000),(2966,82,0,1557,1.000000),(2967,77,0,1558,24.000000),(2968,82,0,1558,1.000000),(2969,77,0,1559,24.000000),(2970,82,0,1559,1.000000),(2971,77,0,1560,24.000000),(2972,82,0,1560,1.000000),(2973,77,0,1561,24.000000),(2974,82,0,1561,1.000000),(2975,77,0,1562,24.000000),(2976,82,0,1562,1.000000),(2977,77,0,1563,24.000000),(2978,82,0,1563,1.000000),(2979,77,0,1564,24.000000),(2980,82,0,1564,1.000000),(2981,77,0,1565,24.000000),(2982,82,0,1565,1.000000),(2983,77,0,1566,24.000000),(2984,82,0,1566,1.000000),(2985,77,0,1567,24.000000),(2986,82,0,1567,1.000000),(2987,77,0,1568,24.000000),(2988,82,0,1568,1.000000),(2989,77,0,1569,24.000000),(2990,82,0,1569,1.000000),(2991,77,0,1570,24.000000),(2992,82,0,1570,1.000000),(2993,77,0,1571,24.000000),(2994,82,0,1571,1.000000),(2995,77,0,1572,24.000000),(2996,77,0,1573,24.000000),(2997,82,0,1573,1.000000),(2998,77,0,1574,24.000000),(2999,82,0,1574,1.000000),(3000,77,0,1575,24.000000),(3001,82,0,1575,1.000000),(3002,77,0,1576,24.000000),(3003,82,0,1576,1.000000),(3004,77,0,1577,24.000000),(3005,82,0,1577,1.000000),(3006,77,0,1578,24.000000),(3007,82,0,1578,1.000000),(3008,77,0,1579,24.000000),(3009,82,0,1579,1.000000),(3010,77,0,1580,24.000000),(3011,82,0,1580,1.000000),(3012,77,0,1581,24.000000),(3013,82,0,1581,1.000000),(3014,77,0,1582,24.000000),(3015,82,0,1582,1.000000),(3016,77,0,1583,24.000000),(3017,82,0,1583,1.000000),(3018,77,0,1584,24.000000),(3019,82,0,1584,1.000000),(3020,77,0,1585,24.000000),(3021,82,0,1585,1.000000),(3022,77,0,1586,24.000000),(3023,82,0,1586,1.000000),(3024,77,0,1587,24.000000),(3025,82,0,1587,1.000000),(3026,77,0,1588,24.000000),(3027,77,0,1589,39.000000),(3028,82,0,1589,1.000000),(3029,77,0,1590,39.000000),(3030,82,0,1590,1.000000),(3031,77,0,1591,39.000000),(3032,82,0,1591,1.000000),(3033,77,0,1592,39.000000),(3034,82,0,1592,1.000000),(3035,77,0,1593,39.000000),(3036,82,0,1593,1.000000),(3037,77,0,1594,39.000000),(3038,82,0,1594,1.000000),(3039,77,0,1595,39.000000),(3040,82,0,1595,1.000000),(3041,77,0,1596,39.000000),(3042,82,0,1596,1.000000),(3043,77,0,1597,39.000000),(3044,82,0,1597,1.000000),(3045,77,0,1598,39.000000),(3046,82,0,1598,1.000000),(3047,77,0,1599,39.000000),(3048,82,0,1599,1.000000),(3049,77,0,1600,39.000000),(3050,82,0,1600,1.000000),(3051,77,0,1601,39.000000),(3052,82,0,1601,1.000000),(3053,77,0,1602,39.000000),(3054,82,0,1602,1.000000),(3055,77,0,1603,39.000000),(3056,82,0,1603,1.000000),(3057,77,0,1604,39.000000),(3058,77,0,1605,39.000000),(3059,82,0,1605,1.000000),(3060,77,0,1606,39.000000),(3061,82,0,1606,1.000000),(3062,77,0,1607,39.000000),(3063,82,0,1607,1.000000),(3064,77,0,1608,39.000000),(3065,82,0,1608,1.000000),(3066,77,0,1609,39.000000),(3067,82,0,1609,1.000000),(3068,77,0,1610,39.000000),(3069,82,0,1610,1.000000),(3070,77,0,1611,39.000000),(3071,82,0,1611,1.000000),(3072,77,0,1612,39.000000),(3073,82,0,1612,1.000000),(3074,77,0,1613,39.000000),(3075,82,0,1613,1.000000),(3076,77,0,1614,39.000000),(3077,82,0,1614,1.000000),(3078,77,0,1615,39.000000),(3079,82,0,1615,1.000000),(3080,77,0,1616,39.000000),(3081,82,0,1616,1.000000),(3082,77,0,1617,39.000000),(3083,82,0,1617,1.000000),(3084,77,0,1618,39.000000),(3085,82,0,1618,1.000000),(3086,77,0,1619,39.000000),(3087,82,0,1619,1.000000),(3088,77,0,1620,39.000000),(3089,77,0,1621,39.000000),(3090,82,0,1621,1.000000),(3091,77,0,1622,39.000000),(3092,82,0,1622,1.000000),(3093,77,0,1623,39.000000),(3094,82,0,1623,1.000000),(3095,77,0,1624,39.000000),(3096,82,0,1624,1.000000),(3097,77,0,1625,39.000000),(3098,82,0,1625,1.000000),(3099,77,0,1626,39.000000),(3100,82,0,1626,1.000000),(3101,77,0,1627,39.000000),(3102,82,0,1627,1.000000),(3103,77,0,1628,39.000000),(3104,82,0,1628,1.000000),(3105,77,0,1629,39.000000),(3106,82,0,1629,1.000000),(3107,77,0,1630,39.000000),(3108,82,0,1630,1.000000),(3109,77,0,1631,39.000000),(3110,82,0,1631,1.000000),(3111,77,0,1632,39.000000),(3112,82,0,1632,1.000000),(3113,77,0,1633,39.000000),(3114,82,0,1633,1.000000),(3115,77,0,1634,39.000000),(3116,82,0,1634,1.000000),(3117,77,0,1635,39.000000),(3118,82,0,1635,1.000000),(3119,77,0,1636,39.000000),(3120,77,0,1637,24.000000),(3121,82,0,1637,1.000000),(3122,77,0,1638,24.000000),(3123,82,0,1638,1.000000),(3124,77,0,1639,24.000000),(3125,82,0,1639,1.000000),(3126,77,0,1640,24.000000),(3127,82,0,1640,1.000000),(3128,77,0,1641,24.000000),(3129,82,0,1641,1.000000),(3130,77,0,1642,24.000000),(3131,82,0,1642,1.000000),(3132,77,0,1643,24.000000),(3133,82,0,1643,1.000000),(3134,77,0,1644,24.000000),(3135,82,0,1644,1.000000),(3136,77,0,1645,24.000000),(3137,82,0,1645,1.000000),(3138,77,0,1646,24.000000),(3139,82,0,1646,1.000000),(3140,77,0,1647,24.000000),(3141,82,0,1647,1.000000),(3142,77,0,1648,24.000000),(3143,82,0,1648,1.000000),(3144,77,0,1649,24.000000),(3145,82,0,1649,1.000000),(3146,77,0,1650,24.000000),(3147,82,0,1650,1.000000),(3148,77,0,1651,24.000000),(3149,82,0,1651,1.000000),(3150,77,0,1652,24.000000),(3151,77,0,1653,39.000000),(3152,82,0,1653,1.000000),(3153,77,0,1654,39.000000),(3154,82,0,1654,1.000000),(3155,77,0,1655,39.000000),(3156,82,0,1655,1.000000),(3157,77,0,1656,39.000000),(3158,82,0,1656,1.000000),(3159,77,0,1657,39.000000),(3160,82,0,1657,1.000000),(3161,77,0,1658,39.000000),(3162,82,0,1658,1.000000),(3163,77,0,1659,39.000000),(3164,82,0,1659,1.000000),(3165,77,0,1660,39.000000),(3166,82,0,1660,1.000000),(3167,77,0,1661,39.000000),(3168,82,0,1661,1.000000),(3169,77,0,1662,39.000000),(3170,82,0,1662,1.000000),(3171,77,0,1663,39.000000),(3172,82,0,1663,1.000000),(3173,77,0,1664,39.000000),(3174,82,0,1664,1.000000),(3175,77,0,1665,39.000000),(3176,82,0,1665,1.000000),(3177,77,0,1666,39.000000),(3178,82,0,1666,1.000000),(3179,77,0,1667,39.000000),(3180,82,0,1667,1.000000),(3181,77,0,1668,39.000000),(3182,77,0,1669,29.000000),(3183,82,0,1669,1.000000),(3184,77,0,1670,29.000000),(3185,82,0,1670,1.000000),(3186,77,0,1671,29.000000),(3187,82,0,1671,1.000000),(3188,77,0,1672,29.000000),(3189,82,0,1672,1.000000),(3190,77,0,1673,29.000000),(3191,82,0,1673,1.000000),(3192,77,0,1674,29.000000),(3193,82,0,1674,1.000000),(3194,77,0,1675,29.000000),(3195,82,0,1675,1.000000),(3196,77,0,1676,29.000000),(3197,82,0,1676,1.000000),(3198,77,0,1677,29.000000),(3199,82,0,1677,1.000000),(3200,77,0,1678,29.000000),(3201,82,0,1678,1.000000),(3202,77,0,1679,29.000000),(3203,82,0,1679,1.000000),(3204,77,0,1680,29.000000),(3205,82,0,1680,1.000000),(3206,77,0,1681,29.000000),(3207,82,0,1681,1.000000),(3208,77,0,1682,29.000000),(3209,82,0,1682,1.000000),(3210,77,0,1683,29.000000),(3211,82,0,1683,1.000000),(3212,77,0,1684,29.000000),(3213,77,0,1685,29.000000),(3214,82,0,1685,1.000000),(3215,77,0,1686,29.000000),(3216,82,0,1686,1.000000),(3217,77,0,1687,29.000000),(3218,82,0,1687,1.000000),(3219,77,0,1688,29.000000),(3220,82,0,1688,1.000000),(3221,77,0,1689,29.000000),(3222,82,0,1689,1.000000),(3223,77,0,1690,29.000000),(3224,82,0,1690,1.000000),(3225,77,0,1691,29.000000),(3226,82,0,1691,1.000000),(3227,77,0,1692,29.000000),(3228,82,0,1692,1.000000),(3229,77,0,1693,29.000000),(3230,82,0,1693,1.000000),(3231,77,0,1694,29.000000),(3232,82,0,1694,1.000000),(3233,77,0,1695,29.000000),(3234,82,0,1695,1.000000),(3235,77,0,1696,29.000000),(3236,82,0,1696,1.000000),(3237,77,0,1697,29.000000),(3238,82,0,1697,1.000000),(3239,77,0,1698,29.000000),(3240,82,0,1698,1.000000),(3241,77,0,1699,29.000000),(3242,82,0,1699,1.000000),(3243,77,0,1700,29.000000),(3244,77,0,1701,39.000000),(3245,82,0,1701,1.000000),(3246,77,0,1702,39.000000),(3247,82,0,1702,1.000000),(3248,77,0,1703,39.000000),(3249,82,0,1703,1.000000),(3250,77,0,1704,39.000000),(3251,82,0,1704,1.000000),(3252,77,0,1705,39.000000),(3253,82,0,1705,1.000000),(3254,77,0,1706,39.000000),(3255,82,0,1706,1.000000),(3256,77,0,1707,39.000000),(3257,82,0,1707,1.000000),(3258,77,0,1708,39.000000),(3259,82,0,1708,1.000000),(3260,77,0,1709,39.000000),(3261,82,0,1709,1.000000),(3262,77,0,1710,39.000000),(3263,82,0,1710,1.000000),(3264,77,0,1711,39.000000),(3265,82,0,1711,1.000000),(3266,77,0,1712,39.000000),(3267,82,0,1712,1.000000),(3268,77,0,1713,39.000000),(3269,82,0,1713,1.000000),(3270,77,0,1714,39.000000),(3271,82,0,1714,1.000000),(3272,77,0,1715,39.000000),(3273,82,0,1715,1.000000),(3274,77,0,1716,39.000000),(3275,77,0,1717,39.000000),(3276,82,0,1717,1.000000),(3277,77,0,1718,39.000000),(3278,82,0,1718,1.000000),(3279,77,0,1719,39.000000),(3280,82,0,1719,1.000000),(3281,77,0,1720,39.000000),(3282,82,0,1720,1.000000),(3283,77,0,1721,39.000000),(3284,82,0,1721,1.000000),(3285,77,0,1722,39.000000),(3286,82,0,1722,1.000000),(3287,77,0,1723,39.000000),(3288,82,0,1723,1.000000),(3289,77,0,1724,39.000000),(3290,82,0,1724,1.000000),(3291,77,0,1725,39.000000),(3292,82,0,1725,1.000000),(3293,77,0,1726,39.000000),(3294,82,0,1726,1.000000),(3295,77,0,1727,39.000000),(3296,82,0,1727,1.000000),(3297,77,0,1728,39.000000),(3298,82,0,1728,1.000000),(3299,77,0,1729,39.000000),(3300,82,0,1729,1.000000),(3301,77,0,1730,39.000000),(3302,82,0,1730,1.000000),(3303,77,0,1731,39.000000),(3304,82,0,1731,1.000000),(3305,77,0,1732,39.000000),(3306,77,0,1733,39.000000),(3307,82,0,1733,1.000000),(3308,77,0,1734,39.000000),(3309,82,0,1734,1.000000),(3310,77,0,1735,39.000000),(3311,82,0,1735,1.000000),(3312,77,0,1736,39.000000),(3313,82,0,1736,1.000000),(3314,77,0,1737,39.000000),(3315,82,0,1737,1.000000),(3316,77,0,1738,39.000000),(3317,82,0,1738,1.000000),(3318,77,0,1739,39.000000),(3319,82,0,1739,1.000000),(3320,77,0,1740,39.000000),(3321,82,0,1740,1.000000),(3322,77,0,1741,39.000000),(3323,82,0,1741,1.000000),(3324,77,0,1742,39.000000),(3325,82,0,1742,1.000000),(3326,77,0,1743,39.000000),(3327,82,0,1743,1.000000),(3328,77,0,1744,39.000000),(3329,82,0,1744,1.000000),(3330,77,0,1745,39.000000),(3331,82,0,1745,1.000000),(3332,77,0,1746,39.000000),(3333,82,0,1746,1.000000),(3334,77,0,1747,39.000000),(3335,82,0,1747,1.000000),(3336,77,0,1748,39.000000),(3337,77,0,1749,39.000000),(3338,82,0,1749,1.000000),(3339,77,0,1750,39.000000),(3340,82,0,1750,1.000000),(3341,77,0,1751,39.000000),(3342,82,0,1751,1.000000),(3343,77,0,1752,39.000000),(3344,82,0,1752,1.000000),(3345,77,0,1753,39.000000),(3346,82,0,1753,1.000000),(3347,77,0,1754,39.000000),(3348,82,0,1754,1.000000),(3349,77,0,1755,39.000000),(3350,82,0,1755,1.000000),(3351,77,0,1756,39.000000),(3352,82,0,1756,1.000000),(3353,77,0,1757,39.000000),(3354,82,0,1757,1.000000),(3355,77,0,1758,39.000000),(3356,82,0,1758,1.000000),(3357,77,0,1759,39.000000),(3358,82,0,1759,1.000000),(3359,77,0,1760,39.000000),(3360,82,0,1760,1.000000),(3361,77,0,1761,39.000000),(3362,82,0,1761,1.000000),(3363,77,0,1762,39.000000),(3364,82,0,1762,1.000000),(3365,77,0,1763,39.000000),(3366,82,0,1763,1.000000),(3367,77,0,1764,39.000000),(3368,77,0,1765,29.000000),(3369,82,0,1765,1.000000),(3370,77,0,1766,29.000000),(3371,82,0,1766,1.000000),(3372,77,0,1767,29.000000),(3373,82,0,1767,1.000000),(3374,77,0,1768,29.000000),(3375,82,0,1768,1.000000),(3376,77,0,1769,29.000000),(3377,82,0,1769,1.000000),(3378,77,0,1770,29.000000),(3379,82,0,1770,1.000000),(3380,77,0,1771,29.000000),(3381,82,0,1771,1.000000),(3382,77,0,1772,29.000000),(3383,82,0,1772,1.000000),(3384,77,0,1773,29.000000),(3385,82,0,1773,1.000000),(3386,77,0,1774,29.000000),(3387,82,0,1774,1.000000),(3388,77,0,1775,29.000000),(3389,82,0,1775,1.000000),(3390,77,0,1776,29.000000),(3391,82,0,1776,1.000000),(3392,77,0,1777,29.000000),(3393,82,0,1777,1.000000),(3394,77,0,1778,29.000000),(3395,82,0,1778,1.000000),(3396,77,0,1779,29.000000),(3397,82,0,1779,1.000000),(3398,77,0,1780,29.000000),(3399,77,0,1781,34.000000),(3400,82,0,1781,1.000000),(3401,77,0,1782,34.000000),(3402,82,0,1782,1.000000),(3403,77,0,1783,34.000000),(3404,82,0,1783,1.000000),(3405,77,0,1784,34.000000),(3406,82,0,1784,1.000000),(3407,77,0,1785,34.000000),(3408,82,0,1785,1.000000),(3409,77,0,1786,34.000000),(3410,82,0,1786,1.000000),(3411,77,0,1787,34.000000),(3412,82,0,1787,1.000000),(3413,77,0,1788,34.000000),(3414,82,0,1788,1.000000),(3415,77,0,1789,34.000000),(3416,82,0,1789,1.000000),(3417,77,0,1790,34.000000),(3418,82,0,1790,1.000000),(3419,77,0,1791,34.000000),(3420,82,0,1791,1.000000),(3421,77,0,1792,34.000000),(3422,82,0,1792,1.000000),(3423,77,0,1793,34.000000),(3424,82,0,1793,1.000000),(3425,77,0,1794,34.000000),(3426,82,0,1794,1.000000),(3427,77,0,1795,34.000000),(3428,82,0,1795,1.000000),(3429,77,0,1796,34.000000),(3430,77,0,1797,34.000000),(3431,82,0,1797,1.000000),(3432,77,0,1798,34.000000),(3433,82,0,1798,1.000000),(3434,77,0,1799,34.000000),(3435,82,0,1799,1.000000),(3436,77,0,1800,34.000000),(3437,82,0,1800,1.000000),(3438,77,0,1801,34.000000),(3439,82,0,1801,1.000000),(3440,77,0,1802,34.000000),(3441,82,0,1802,1.000000),(3442,77,0,1803,34.000000),(3443,82,0,1803,1.000000),(3444,77,0,1804,34.000000),(3445,82,0,1804,1.000000),(3446,77,0,1805,34.000000),(3447,82,0,1805,1.000000),(3448,77,0,1806,34.000000),(3449,82,0,1806,1.000000),(3450,77,0,1807,34.000000),(3451,82,0,1807,1.000000),(3452,77,0,1808,34.000000),(3453,82,0,1808,1.000000),(3454,77,0,1809,34.000000),(3455,82,0,1809,1.000000),(3456,77,0,1810,34.000000),(3457,82,0,1810,1.000000),(3458,77,0,1811,34.000000),(3459,82,0,1811,1.000000),(3460,77,0,1812,34.000000),(3461,77,0,1813,39.000000),(3462,82,0,1813,1.000000),(3463,77,0,1814,39.000000),(3464,82,0,1814,1.000000),(3465,77,0,1815,39.000000),(3466,82,0,1815,1.000000),(3467,77,0,1816,39.000000),(3468,82,0,1816,1.000000),(3469,77,0,1817,39.000000),(3470,82,0,1817,1.000000),(3471,77,0,1818,39.000000),(3472,82,0,1818,1.000000),(3473,77,0,1819,39.000000),(3474,77,0,1820,42.000000),(3475,82,0,1820,1.000000),(3476,77,0,1821,42.000000),(3477,82,0,1821,1.000000),(3478,77,0,1822,42.000000),(3479,82,0,1822,1.000000),(3480,77,0,1823,42.000000),(3481,82,0,1823,1.000000),(3482,77,0,1824,42.000000),(3483,82,0,1824,1.000000),(3484,77,0,1825,42.000000),(3485,82,0,1825,1.000000),(3486,77,0,1826,42.000000),(3487,77,0,1827,48.000000),(3488,82,0,1827,1.000000),(3489,77,0,1828,48.000000),(3490,82,0,1828,1.000000),(3491,77,0,1829,48.000000),(3492,82,0,1829,1.000000),(3493,77,0,1830,48.000000),(3494,82,0,1830,1.000000),(3495,77,0,1831,48.000000),(3496,82,0,1831,1.000000),(3497,77,0,1832,48.000000),(3498,82,0,1832,1.000000),(3499,77,0,1833,48.000000),(3500,77,0,1834,75.000000),(3501,82,0,1834,1.000000),(3502,77,0,1835,75.000000),(3503,82,0,1835,1.000000),(3504,77,0,1836,75.000000),(3505,82,0,1836,1.000000),(3506,77,0,1837,75.000000),(3507,82,0,1837,1.000000),(3508,77,0,1838,75.000000),(3509,82,0,1838,1.000000),(3510,77,0,1839,75.000000),(3511,82,0,1839,1.000000),(3512,77,0,1840,75.000000),(3513,77,0,1841,75.000000),(3514,82,0,1841,1.000000),(3515,77,0,1842,75.000000),(3516,82,0,1842,1.000000),(3517,77,0,1843,75.000000),(3518,82,0,1843,1.000000),(3519,77,0,1844,75.000000),(3520,82,0,1844,1.000000),(3521,77,0,1845,75.000000),(3522,82,0,1845,1.000000),(3523,77,0,1846,75.000000),(3524,82,0,1846,1.000000),(3525,77,0,1847,75.000000),(3526,77,0,1848,59.000000),(3527,82,0,1848,1.000000),(3528,77,0,1849,59.000000),(3529,82,0,1849,1.000000),(3530,77,0,1850,59.000000),(3531,82,0,1850,1.000000),(3532,77,0,1851,59.000000),(3533,82,0,1851,1.000000),(3534,77,0,1852,59.000000),(3535,82,0,1852,1.000000),(3536,77,0,1853,59.000000),(3537,82,0,1853,1.000000),(3538,77,0,1854,59.000000),(3539,77,0,1855,48.000000),(3540,82,0,1855,1.000000),(3541,77,0,1856,48.000000),(3542,82,0,1856,1.000000),(3543,77,0,1857,48.000000),(3544,82,0,1857,1.000000),(3545,77,0,1858,48.000000),(3546,82,0,1858,1.000000),(3547,77,0,1859,48.000000),(3548,82,0,1859,1.000000),(3549,77,0,1860,48.000000),(3550,82,0,1860,1.000000),(3551,77,0,1861,48.000000),(3552,77,0,1862,48.000000),(3553,82,0,1862,1.000000),(3554,77,0,1863,48.000000),(3555,82,0,1863,1.000000),(3556,77,0,1864,48.000000),(3557,82,0,1864,1.000000),(3558,77,0,1865,48.000000),(3559,82,0,1865,1.000000),(3560,77,0,1866,48.000000),(3561,82,0,1866,1.000000),(3562,77,0,1867,48.000000),(3563,82,0,1867,1.000000),(3564,77,0,1868,48.000000),(3565,77,0,1869,51.000000),(3566,82,0,1869,1.000000),(3567,77,0,1870,51.000000),(3568,82,0,1870,1.000000),(3569,77,0,1871,51.000000),(3570,82,0,1871,1.000000),(3571,77,0,1872,51.000000),(3572,82,0,1872,1.000000),(3573,77,0,1873,51.000000),(3574,82,0,1873,1.000000),(3575,77,0,1874,51.000000),(3576,82,0,1874,1.000000),(3577,77,0,1875,51.000000),(3578,77,0,1876,51.000000),(3579,82,0,1876,1.000000),(3580,77,0,1877,51.000000),(3581,82,0,1877,1.000000),(3582,77,0,1878,51.000000),(3583,82,0,1878,1.000000),(3584,77,0,1879,51.000000),(3585,82,0,1879,1.000000),(3586,77,0,1880,51.000000),(3587,82,0,1880,1.000000),(3588,77,0,1881,51.000000),(3589,82,0,1881,1.000000),(3590,77,0,1882,51.000000),(3591,77,0,1883,42.000000),(3592,82,0,1883,1.000000),(3593,77,0,1884,42.000000),(3594,82,0,1884,1.000000),(3595,77,0,1885,42.000000),(3596,82,0,1885,1.000000),(3597,77,0,1886,42.000000),(3598,82,0,1886,1.000000),(3599,77,0,1887,42.000000),(3600,82,0,1887,1.000000),(3601,77,0,1888,42.000000),(3602,82,0,1888,1.000000),(3603,77,0,1889,42.000000),(3604,77,0,1890,63.000000),(3605,82,0,1890,1.000000),(3606,77,0,1891,63.000000),(3607,82,0,1891,1.000000),(3608,77,0,1892,63.000000),(3609,82,0,1892,1.000000),(3610,77,0,1893,63.000000),(3611,82,0,1893,1.000000),(3612,77,0,1894,63.000000),(3613,82,0,1894,1.000000),(3614,77,0,1895,63.000000),(3615,82,0,1895,1.000000),(3616,77,0,1896,63.000000),(3617,77,0,1897,49.000000),(3618,82,0,1897,1.000000),(3619,77,0,1898,49.000000),(3620,82,0,1898,1.000000),(3621,77,0,1899,49.000000),(3622,82,0,1899,1.000000),(3623,77,0,1900,49.000000),(3624,82,0,1900,1.000000),(3625,77,0,1901,49.000000),(3626,82,0,1901,1.000000),(3627,77,0,1902,49.000000),(3628,82,0,1902,1.000000),(3629,77,0,1903,49.000000),(3630,77,0,1904,29.000000),(3631,82,0,1904,1.000000),(3632,77,0,1905,29.000000),(3633,82,0,1905,1.000000),(3634,77,0,1906,29.000000),(3635,82,0,1906,1.000000),(3636,77,0,1907,29.000000),(3637,82,0,1907,1.000000),(3638,77,0,1908,29.000000),(3639,82,0,1908,1.000000),(3640,77,0,1909,29.000000),(3641,82,0,1909,1.000000),(3642,77,0,1910,29.000000),(3643,82,0,1910,1.000000),(3644,77,0,1911,29.000000),(3645,82,0,1911,1.000000),(3646,77,0,1912,29.000000),(3647,82,0,1912,1.000000),(3648,77,0,1913,29.000000),(3649,82,0,1913,1.000000),(3650,77,0,1914,29.000000),(3651,82,0,1914,1.000000),(3652,77,0,1915,29.000000),(3653,82,0,1915,1.000000),(3654,77,0,1916,29.000000),(3655,82,0,1916,1.000000),(3656,77,0,1917,29.000000),(3657,82,0,1917,1.000000),(3658,77,0,1918,29.000000),(3659,82,0,1918,1.000000),(3660,77,0,1919,29.000000),(3661,77,0,1920,28.000000),(3662,82,0,1920,1.000000),(3663,77,0,1921,28.000000),(3664,82,0,1921,1.000000),(3665,77,0,1922,28.000000),(3666,82,0,1922,1.000000),(3667,77,0,1923,28.000000),(3668,82,0,1923,1.000000),(3669,77,0,1924,28.000000),(3670,82,0,1924,1.000000),(3671,77,0,1925,28.000000),(3672,82,0,1925,1.000000),(3673,77,0,1926,28.000000),(3674,82,0,1926,1.000000),(3675,77,0,1927,28.000000),(3676,82,0,1927,1.000000),(3677,77,0,1928,28.000000),(3678,82,0,1928,1.000000),(3679,77,0,1929,28.000000),(3680,82,0,1929,1.000000),(3681,77,0,1930,28.000000),(3682,82,0,1930,1.000000),(3683,77,0,1931,28.000000),(3684,82,0,1931,1.000000),(3685,77,0,1932,28.000000),(3686,82,0,1932,1.000000),(3687,77,0,1933,28.000000),(3688,82,0,1933,1.000000),(3689,77,0,1934,28.000000),(3690,82,0,1934,1.000000),(3691,77,0,1935,28.000000),(3692,77,0,1936,50.000000),(3693,82,0,1936,1.000000),(3694,77,0,1937,50.000000),(3695,82,0,1937,1.000000),(3696,77,0,1938,50.000000),(3697,82,0,1938,1.000000),(3698,77,0,1939,50.000000),(3699,82,0,1939,1.000000),(3700,77,0,1940,50.000000),(3701,82,0,1940,1.000000),(3702,77,0,1941,50.000000),(3703,82,0,1941,1.000000),(3704,77,0,1942,50.000000),(3705,82,0,1942,1.000000),(3706,77,0,1943,50.000000),(3707,82,0,1943,1.000000),(3708,77,0,1944,50.000000),(3709,82,0,1944,1.000000),(3710,77,0,1945,50.000000),(3711,82,0,1945,1.000000),(3712,77,0,1946,50.000000),(3713,82,0,1946,1.000000),(3714,77,0,1947,50.000000),(3715,82,0,1947,1.000000),(3716,77,0,1948,50.000000),(3717,82,0,1948,1.000000),(3718,77,0,1949,50.000000),(3719,82,0,1949,1.000000),(3720,77,0,1950,50.000000),(3721,82,0,1950,1.000000),(3722,77,0,1951,50.000000),(3723,77,0,1952,45.000000),(3724,82,0,1952,1.000000),(3725,77,0,1953,45.000000),(3726,82,0,1953,1.000000),(3727,77,0,1954,45.000000),(3728,82,0,1954,1.000000),(3729,77,0,1955,45.000000),(3730,82,0,1955,1.000000),(3731,77,0,1956,45.000000),(3732,82,0,1956,1.000000),(3733,77,0,1957,45.000000),(3734,82,0,1957,1.000000),(3735,77,0,1958,45.000000),(3736,82,0,1958,1.000000),(3737,77,0,1959,45.000000),(3738,82,0,1959,1.000000),(3739,77,0,1960,45.000000),(3740,82,0,1960,1.000000),(3741,77,0,1961,45.000000),(3742,82,0,1961,1.000000),(3743,77,0,1962,45.000000),(3744,82,0,1962,1.000000),(3745,77,0,1963,45.000000),(3746,82,0,1963,1.000000),(3747,77,0,1964,45.000000),(3748,82,0,1964,1.000000),(3749,77,0,1965,45.000000),(3750,82,0,1965,1.000000),(3751,77,0,1966,45.000000),(3752,82,0,1966,1.000000),(3753,77,0,1967,45.000000),(3754,77,0,1968,28.000000),(3755,82,0,1968,1.000000),(3756,77,0,1969,28.000000),(3757,82,0,1969,1.000000),(3758,77,0,1970,28.000000),(3759,82,0,1970,1.000000),(3760,77,0,1971,28.000000),(3761,82,0,1971,1.000000),(3762,77,0,1972,28.000000),(3763,82,0,1972,1.000000),(3764,77,0,1973,28.000000),(3765,82,0,1973,1.000000),(3766,77,0,1974,28.000000),(3767,82,0,1974,1.000000),(3768,77,0,1975,28.000000),(3769,82,0,1975,1.000000),(3770,77,0,1976,28.000000),(3771,82,0,1976,1.000000),(3772,77,0,1977,28.000000),(3773,82,0,1977,1.000000),(3774,77,0,1978,28.000000),(3775,82,0,1978,1.000000),(3776,77,0,1979,28.000000),(3777,82,0,1979,1.000000),(3778,77,0,1980,28.000000),(3779,82,0,1980,1.000000),(3780,77,0,1981,28.000000),(3781,82,0,1981,1.000000),(3782,77,0,1982,28.000000),(3783,82,0,1982,1.000000),(3784,77,0,1983,28.000000),(3785,77,0,1984,42.000000),(3786,82,0,1984,1.000000),(3787,77,0,1985,42.000000),(3788,82,0,1985,1.000000),(3789,77,0,1986,42.000000),(3790,82,0,1986,1.000000),(3791,77,0,1987,42.000000),(3792,82,0,1987,1.000000),(3793,77,0,1988,42.000000),(3794,82,0,1988,1.000000),(3795,77,0,1989,42.000000),(3796,82,0,1989,1.000000),(3797,77,0,1990,42.000000),(3798,77,0,1991,24.000000),(3799,82,0,1991,1.000000),(3800,77,0,1992,24.000000),(3801,82,0,1992,1.000000),(3802,77,0,1993,24.000000),(3803,82,0,1993,1.000000),(3804,77,0,1994,24.000000),(3805,82,0,1994,1.000000),(3806,77,0,1995,24.000000),(3807,82,0,1995,1.000000),(3808,77,0,1996,24.000000),(3809,82,0,1996,1.000000),(3810,77,0,1997,24.000000),(3811,77,0,1998,44.000000),(3812,82,0,1998,1.000000),(3813,77,0,1999,44.000000),(3814,82,0,1999,1.000000),(3815,77,0,2000,44.000000),(3816,82,0,2000,1.000000),(3817,77,0,2001,44.000000),(3818,82,0,2001,1.000000),(3819,77,0,2002,44.000000),(3820,82,0,2002,1.000000),(3821,77,0,2003,44.000000),(3822,77,0,2004,44.000000),(3823,82,0,2004,1.000000),(3824,77,0,2005,44.000000),(3825,82,0,2005,1.000000),(3826,77,0,2006,44.000000),(3827,82,0,2006,1.000000),(3828,77,0,2007,44.000000),(3829,82,0,2007,1.000000),(3830,77,0,2008,44.000000),(3831,82,0,2008,1.000000),(3832,77,0,2009,44.000000),(3833,82,0,2009,1.000000),(3834,77,0,2010,44.000000),(3835,77,0,2011,40.000000),(3836,82,0,2011,1.000000),(3837,77,0,2012,40.000000),(3838,82,0,2012,1.000000),(3839,77,0,2013,40.000000),(3840,82,0,2013,1.000000),(3841,77,0,2014,40.000000),(3842,82,0,2014,1.000000),(3843,77,0,2015,40.000000),(3844,82,0,2015,1.000000),(3845,77,0,2016,40.000000),(3846,82,0,2016,1.000000),(3847,77,0,2017,40.000000),(3848,77,0,2018,49.000000),(3849,82,0,2018,1.000000),(3850,77,0,2019,49.000000),(3851,82,0,2019,1.000000),(3852,77,0,2020,49.000000),(3853,82,0,2020,1.000000),(3854,77,0,2021,49.000000),(3855,82,0,2021,1.000000),(3856,77,0,2022,49.000000),(3857,82,0,2022,1.000000),(3858,77,0,2023,49.000000),(3859,82,0,2023,1.000000),(3860,77,0,2024,49.000000),(3861,77,0,2025,45.000000),(3862,82,0,2025,1.000000),(3863,77,0,2026,45.000000),(3864,82,0,2026,1.000000),(3865,77,0,2027,45.000000),(3866,82,0,2027,1.000000),(3867,77,0,2028,45.000000),(3868,82,0,2028,1.000000),(3869,77,0,2029,45.000000),(3870,82,0,2029,1.000000),(3871,77,0,2030,45.000000),(3872,82,0,2030,1.000000),(3873,77,0,2031,45.000000),(3874,82,0,2031,1.000000),(3875,77,0,2032,45.000000),(3876,82,0,2032,1.000000),(3877,77,0,2033,45.000000),(3878,82,0,2033,1.000000),(3879,77,0,2034,45.000000),(3880,82,0,2034,1.000000),(3881,77,0,2035,45.000000),(3882,82,0,2035,1.000000),(3883,77,0,2036,45.000000),(3884,82,0,2036,1.000000),(3885,77,0,2037,45.000000),(3886,82,0,2037,1.000000),(3887,77,0,2038,45.000000),(3888,82,0,2038,1.000000),(3889,77,0,2039,45.000000),(3890,82,0,2039,1.000000),(3891,77,0,2040,45.000000),(3892,123,0,1220,79.990000),(3893,123,0,1236,59.990000),(3894,123,0,1252,59.990000),(3895,123,0,1268,89.990000),(3896,123,0,1284,62.990000),(3897,123,0,1380,79.990000),(3898,123,0,1300,62.990000),(3899,123,0,1316,59.990000),(3900,123,0,1332,34.990000),(3901,123,0,1348,72.990000),(3902,123,0,1364,72.990000),(3903,123,0,1396,79.990000);
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_gallery`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_gallery` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `position` int NOT NULL DEFAULT '0' COMMENT 'Position',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CAT_PRD_ENTT_GLR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_GLR_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_GLR_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_gallery`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_gallery` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `[[dbprefix]]catalog_product_entity_int`
--

DROP TABLE IF EXISTS `[[dbprefix]]catalog_product_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `[[dbprefix]]catalog_product_entity_int` (
  `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID_STORE_ID_VALUE` (`attribute_id`,`store_id`,`value`),
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_INT_ATTR_ID_[[DBPREFIX]]EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CAT_PRD_ENTT_INT_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_INT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12624 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `[[dbprefix]]catalog_product_entity_int`
--

LOCK TABLES `[[dbprefix]]catalog_product_entity_int` WRITE;
/*!40000 ALTER TABLE `[[dbprefix]]catalog_product_entity_int` DISABLE KEYS */;
INSERT INTO `[[dbprefix]]catalog_product_entity_int` VALUES (1,97,0,1,1),(2,99,0,1,4),(3,145,0,2,1),(4,147,0,2,1),(5,97,0,2,1),(6,134,0,2,2),(7,99,0,2,4),(8,97,0,3,1),(9,134,0,3,2),(10,99,0,3,4),(11,146,0,4,1),(12,97,0,4,1),(13,134,0,4,2),(14,99,0,4,4),(15,146,0,5,1),(16,97,0,5,1),(17,134,0,5,2),(18,99,0,5,4),(19,97,0,6,1),(20,134,0,6,2),(21,99,0,6,4),(22,97,0,7,1),(23,134,0,7,2),(24,99,0,7,4),(25,97,0,8,1),(26,134,0,8,2),(27,99,0,8,4),(28,97,0,9,1),(29,134,0,9,2),(30,99,0,9,4),(31,145,0,10,1),(32,147,0,10,1),(33,97,0,10,1),(34,134,0,10,2),(35,99,0,10,4),(36,145,0,11,1),(37,147,0,11,1),(38,97,0,11,1),(39,134,0,11,2),(40,99,0,11,4),(41,97,0,12,1),(42,134,0,12,2),(43,99,0,12,4),(44,146,0,13,1),(45,97,0,13,1),(46,134,0,13,2),(47,99,0,13,4),(48,144,0,14,1),(49,97,0,14,1),(50,134,0,14,2),(51,99,0,14,4),(52,97,0,15,1),(53,134,0,15,2),(54,99,0,15,4),(55,145,0,16,1),(56,147,0,16,1),(57,97,0,16,1),(58,134,0,16,2),(59,99,0,16,4),(60,97,0,17,1),(61,134,0,17,2),(62,99,0,17,4),(63,97,0,18,1),(64,134,0,18,2),(65,99,0,18,4),(66,145,0,19,1),(67,146,0,19,1),(68,97,0,19,1),(69,134,0,19,2),(70,99,0,19,4),(71,97,0,20,1),(72,134,0,20,2),(73,99,0,20,4),(74,97,0,21,1),(75,134,0,21,2),(76,99,0,21,4),(77,97,0,22,1),(78,134,0,22,2),(79,99,0,22,4),(80,97,0,23,1),(81,134,0,23,2),(82,99,0,23,4),(83,93,0,24,52),(84,142,0,24,91),(85,97,0,24,1),(86,134,0,24,2),(87,99,0,24,1),(88,93,0,25,58),(89,142,0,25,91),(90,97,0,25,1),(91,134,0,25,2),(92,99,0,25,1),(93,93,0,26,50),(94,142,0,26,91),(95,97,0,26,1),(96,134,0,26,2),(97,99,0,26,1),(98,93,0,27,52),(99,142,0,27,92),(100,97,0,27,1),(101,134,0,27,2),(102,99,0,27,1),(103,93,0,28,58),(104,142,0,28,92),(105,97,0,28,1),(106,134,0,28,2),(107,99,0,28,1),(108,93,0,29,50),(109,142,0,29,92),(110,97,0,29,1),(111,134,0,29,2),(112,99,0,29,1),(113,93,0,30,52),(114,142,0,30,93),(115,97,0,30,1),(116,134,0,30,2),(117,99,0,30,1),(118,93,0,31,58),(119,142,0,31,93),(120,97,0,31,1),(121,134,0,31,2),(122,99,0,31,1),(123,93,0,32,50),(124,142,0,32,93),(125,97,0,32,1),(126,134,0,32,2),(127,99,0,32,1),(128,142,0,33,94),(129,97,0,33,1),(130,134,0,33,2),(131,99,0,33,1),(132,142,0,34,95),(133,97,0,34,1),(134,134,0,34,2),(135,99,0,34,1),(136,142,0,35,96),(137,97,0,35,1),(138,134,0,35,2),(139,99,0,35,1),(140,97,0,36,1),(141,134,0,36,2),(142,99,0,36,4),(143,97,0,37,1),(144,134,0,37,2),(145,99,0,37,4),(146,146,0,38,1),(147,97,0,38,1),(148,134,0,38,2),(149,99,0,38,4),(150,146,0,39,1),(151,97,0,39,1),(152,134,0,39,2),(153,99,0,39,4),(154,146,0,40,1),(155,97,0,40,1),(156,134,0,40,2),(157,99,0,40,4),(158,147,0,41,1),(159,97,0,41,1),(160,134,0,41,2),(161,99,0,41,4),(162,147,0,42,1),(163,97,0,42,1),(164,134,0,42,2),(165,99,0,42,4),(166,97,0,43,1),(167,134,0,43,2),(168,99,0,43,4),(169,146,0,44,1),(170,97,0,44,1),(171,134,0,44,2),(172,99,0,44,4),(173,125,0,45,0),(174,128,0,45,0),(175,129,0,45,0),(176,126,0,45,0),(177,97,0,45,1),(178,134,0,45,2),(179,99,0,45,4),(180,127,0,45,0),(181,97,0,46,1),(182,99,0,46,4),(183,97,0,47,1),(184,134,0,47,2),(185,115,0,47,1),(186,99,0,47,1),(187,93,0,47,49),(188,142,0,47,166),(189,97,0,48,1),(190,134,0,48,2),(191,115,0,48,1),(192,99,0,48,1),(193,93,0,48,52),(194,142,0,48,166),(195,97,0,49,1),(196,134,0,49,2),(197,115,0,49,1),(198,99,0,49,1),(199,93,0,49,56),(200,142,0,49,166),(201,97,0,50,1),(202,134,0,50,2),(203,115,0,50,1),(204,99,0,50,1),(205,93,0,50,49),(206,142,0,50,167),(207,97,0,51,1),(208,134,0,51,2),(209,115,0,51,1),(210,99,0,51,1),(211,93,0,51,52),(212,142,0,51,167),(213,97,0,52,1),(214,134,0,52,2),(215,115,0,52,1),(216,99,0,52,1),(217,93,0,52,56),(218,142,0,52,167),(219,97,0,53,1),(220,134,0,53,2),(221,115,0,53,1),(222,99,0,53,1),(223,93,0,53,49),(224,142,0,53,168),(225,97,0,54,1),(226,134,0,54,2),(227,115,0,54,1),(228,99,0,54,1),(229,93,0,54,52),(230,142,0,54,168),(231,97,0,55,1),(232,134,0,55,2),(233,115,0,55,1),(234,99,0,55,1),(235,93,0,55,56),(236,142,0,55,168),(237,97,0,56,1),(238,134,0,56,2),(239,115,0,56,1),(240,99,0,56,1),(241,93,0,56,49),(242,142,0,56,169),(243,97,0,57,1),(244,134,0,57,2),(245,115,0,57,1),(246,99,0,57,1),(247,93,0,57,52),(248,142,0,57,169),(249,97,0,58,1),(250,134,0,58,2),(251,115,0,58,1),(252,99,0,58,1),(253,93,0,58,56),(254,142,0,58,169),(255,97,0,59,1),(256,134,0,59,2),(257,115,0,59,1),(258,99,0,59,1),(259,93,0,59,49),(260,142,0,59,170),(261,97,0,60,1),(262,134,0,60,2),(263,115,0,60,1),(264,99,0,60,1),(265,93,0,60,52),(266,142,0,60,170),(267,97,0,61,1),(268,134,0,61,2),(269,115,0,61,1),(270,99,0,61,1),(271,93,0,61,56),(272,142,0,61,170),(273,97,0,62,1),(274,134,0,62,2),(275,115,0,62,1),(276,99,0,62,4),(277,143,0,62,1),(278,144,0,62,0),(279,145,0,62,0),(280,146,0,62,0),(281,147,0,62,1),(282,97,0,63,1),(283,134,0,63,2),(284,115,0,63,1),(285,99,0,63,1),(286,93,0,63,49),(287,142,0,63,166),(288,97,0,64,1),(289,134,0,64,2),(290,115,0,64,1),(291,99,0,64,1),(292,93,0,64,57),(293,142,0,64,166),(294,97,0,65,1),(295,134,0,65,2),(296,115,0,65,1),(297,99,0,65,1),(298,93,0,65,58),(299,142,0,65,166),(300,97,0,66,1),(301,134,0,66,2),(302,115,0,66,1),(303,99,0,66,1),(304,93,0,66,49),(305,142,0,66,167),(306,97,0,67,1),(307,134,0,67,2),(308,115,0,67,1),(309,99,0,67,1),(310,93,0,67,57),(311,142,0,67,167),(312,97,0,68,1),(313,134,0,68,2),(314,115,0,68,1),(315,99,0,68,1),(316,93,0,68,58),(317,142,0,68,167),(318,97,0,69,1),(319,134,0,69,2),(320,115,0,69,1),(321,99,0,69,1),(322,93,0,69,49),(323,142,0,69,168),(324,97,0,70,1),(325,134,0,70,2),(326,115,0,70,1),(327,99,0,70,1),(328,93,0,70,57),(329,142,0,70,168),(330,97,0,71,1),(331,134,0,71,2),(332,115,0,71,1),(333,99,0,71,1),(334,93,0,71,58),(335,142,0,71,168),(336,97,0,72,1),(337,134,0,72,2),(338,115,0,72,1),(339,99,0,72,1),(340,93,0,72,49),(341,142,0,72,169),(342,97,0,73,1),(343,134,0,73,2),(344,115,0,73,1),(345,99,0,73,1),(346,93,0,73,57),(347,142,0,73,169),(348,97,0,74,1),(349,134,0,74,2),(350,115,0,74,1),(351,99,0,74,1),(352,93,0,74,58),(353,142,0,74,169),(354,97,0,75,1),(355,134,0,75,2),(356,115,0,75,1),(357,99,0,75,1),(358,93,0,75,49),(359,142,0,75,170),(360,97,0,76,1),(361,134,0,76,2),(362,115,0,76,1),(363,99,0,76,1),(364,93,0,76,57),(365,142,0,76,170),(366,97,0,77,1),(367,134,0,77,2),(368,115,0,77,1),(369,99,0,77,1),(370,93,0,77,58),(371,142,0,77,170),(372,97,0,78,1),(373,134,0,78,2),(374,115,0,78,1),(375,99,0,78,4),(376,143,0,78,0),(377,144,0,78,0),(378,145,0,78,0),(379,146,0,78,1),(380,147,0,78,0),(381,97,0,79,1),(382,134,0,79,2),(383,115,0,79,1),(384,99,0,79,1),(385,93,0,79,49),(386,142,0,79,166),(387,97,0,80,1),(388,134,0,80,2),(389,115,0,80,1),(390,99,0,80,1),(391,93,0,80,50),(392,142,0,80,166),(393,97,0,81,1),(394,134,0,81,2),(395,115,0,81,1),(396,99,0,81,1),(397,93,0,81,53),(398,142,0,81,166),(399,97,0,82,1),(400,134,0,82,2),(401,115,0,82,1),(402,99,0,82,1),(403,93,0,82,49),(404,142,0,82,167),(405,97,0,83,1),(406,134,0,83,2),(407,115,0,83,1),(408,99,0,83,1),(409,93,0,83,50),(410,142,0,83,167),(411,97,0,84,1),(412,134,0,84,2),(413,115,0,84,1),(414,99,0,84,1),(415,93,0,84,53),(416,142,0,84,167),(417,97,0,85,1),(418,134,0,85,2),(419,115,0,85,1),(420,99,0,85,1),(421,93,0,85,49),(422,142,0,85,168),(423,97,0,86,1),(424,134,0,86,2),(425,115,0,86,1),(426,99,0,86,1),(427,93,0,86,50),(428,142,0,86,168),(429,97,0,87,1),(430,134,0,87,2),(431,115,0,87,1),(432,99,0,87,1),(433,93,0,87,53),(434,142,0,87,168),(435,97,0,88,1),(436,134,0,88,2),(437,115,0,88,1),(438,99,0,88,1),(439,93,0,88,49),(440,142,0,88,169),(441,97,0,89,1),(442,134,0,89,2),(443,115,0,89,1),(444,99,0,89,1),(445,93,0,89,50),(446,142,0,89,169),(447,97,0,90,1),(448,134,0,90,2),(449,115,0,90,1),(450,99,0,90,1),(451,93,0,90,53),(452,142,0,90,169),(453,97,0,91,1),(454,134,0,91,2),(455,115,0,91,1),(456,99,0,91,1),(457,93,0,91,49),(458,142,0,91,170),(459,97,0,92,1),(460,134,0,92,2),(461,115,0,92,1),(462,99,0,92,1),(463,93,0,92,50),(464,142,0,92,170),(465,97,0,93,1),(466,134,0,93,2),(467,115,0,93,1),(468,99,0,93,1),(469,93,0,93,53),(470,142,0,93,170),(471,97,0,94,1),(472,134,0,94,2),(473,115,0,94,1),(474,99,0,94,4),(475,143,0,94,1),(476,144,0,94,0),(477,145,0,94,1),(478,146,0,94,1),(479,147,0,94,0),(480,97,0,95,1),(481,134,0,95,2),(482,115,0,95,1),(483,99,0,95,1),(484,93,0,95,53),(485,142,0,95,166),(486,97,0,96,1),(487,134,0,96,2),(488,115,0,96,1),(489,99,0,96,1),(490,93,0,96,59),(491,142,0,96,166),(492,97,0,97,1),(493,134,0,97,2),(494,115,0,97,1),(495,99,0,97,1),(496,93,0,97,60),(497,142,0,97,166),(498,97,0,98,1),(499,134,0,98,2),(500,115,0,98,1),(501,99,0,98,1),(502,93,0,98,53),(503,142,0,98,167),(504,97,0,99,1),(505,134,0,99,2),(506,115,0,99,1),(507,99,0,99,1),(508,93,0,99,59),(509,142,0,99,167),(510,97,0,100,1),(511,134,0,100,2),(512,115,0,100,1),(513,99,0,100,1),(514,93,0,100,60),(515,142,0,100,167),(516,97,0,101,1),(517,134,0,101,2),(518,115,0,101,1),(519,99,0,101,1),(520,93,0,101,53),(521,142,0,101,168),(522,97,0,102,1),(523,134,0,102,2),(524,115,0,102,1),(525,99,0,102,1),(526,93,0,102,59),(527,142,0,102,168),(528,97,0,103,1),(529,134,0,103,2),(530,115,0,103,1),(531,99,0,103,1),(532,93,0,103,60),(533,142,0,103,168),(534,97,0,104,1),(535,134,0,104,2),(536,115,0,104,1),(537,99,0,104,1),(538,93,0,104,53),(539,142,0,104,169),(540,97,0,105,1),(541,134,0,105,2),(542,115,0,105,1),(543,99,0,105,1),(544,93,0,105,59),(545,142,0,105,169),(546,97,0,106,1),(547,134,0,106,2),(548,115,0,106,1),(549,99,0,106,1),(550,93,0,106,60),(551,142,0,106,169),(552,97,0,107,1),(553,134,0,107,2),(554,115,0,107,1),(555,99,0,107,1),(556,93,0,107,53),(557,142,0,107,170),(558,97,0,108,1),(559,134,0,108,2),(560,115,0,108,1),(561,99,0,108,1),(562,93,0,108,59),(563,142,0,108,170),(564,97,0,109,1),(565,134,0,109,2),(566,115,0,109,1),(567,99,0,109,1),(568,93,0,109,60),(569,142,0,109,170),(570,97,0,110,1),(571,134,0,110,2),(572,115,0,110,1),(573,99,0,110,4),(574,143,0,110,1),(575,144,0,110,1),(576,145,0,110,0),(577,146,0,110,0),(578,147,0,110,1),(579,97,0,111,1),(580,134,0,111,2),(581,115,0,111,1),(582,99,0,111,1),(583,93,0,111,53),(584,142,0,111,166),(585,97,0,112,1),(586,134,0,112,2),(587,115,0,112,1),(588,99,0,112,1),(589,93,0,112,58),(590,142,0,112,166),(591,97,0,113,1),(592,134,0,113,2),(593,115,0,113,1),(594,99,0,113,1),(595,93,0,113,59),(596,142,0,113,166),(597,97,0,114,1),(598,134,0,114,2),(599,115,0,114,1),(600,99,0,114,1),(601,93,0,114,53),(602,142,0,114,167),(603,97,0,115,1),(604,134,0,115,2),(605,115,0,115,1),(606,99,0,115,1),(607,93,0,115,58),(608,142,0,115,167),(609,97,0,116,1),(610,134,0,116,2),(611,115,0,116,1),(612,99,0,116,1),(613,93,0,116,59),(614,142,0,116,167),(615,97,0,117,1),(616,134,0,117,2),(617,115,0,117,1),(618,99,0,117,1),(619,93,0,117,53),(620,142,0,117,168),(621,97,0,118,1),(622,134,0,118,2),(623,115,0,118,1),(624,99,0,118,1),(625,93,0,118,58),(626,142,0,118,168),(627,97,0,119,1),(628,134,0,119,2),(629,115,0,119,1),(630,99,0,119,1),(631,93,0,119,59),(632,142,0,119,168),(633,97,0,120,1),(634,134,0,120,2),(635,115,0,120,1),(636,99,0,120,1),(637,93,0,120,53),(638,142,0,120,169),(639,97,0,121,1),(640,134,0,121,2),(641,115,0,121,1),(642,99,0,121,1),(643,93,0,121,58),(644,142,0,121,169),(645,97,0,122,1),(646,134,0,122,2),(647,115,0,122,1),(648,99,0,122,1),(649,93,0,122,59),(650,142,0,122,169),(651,97,0,123,1),(652,134,0,123,2),(653,115,0,123,1),(654,99,0,123,1),(655,93,0,123,53),(656,142,0,123,170),(657,97,0,124,1),(658,134,0,124,2),(659,115,0,124,1),(660,99,0,124,1),(661,93,0,124,58),(662,142,0,124,170),(663,97,0,125,1),(664,134,0,125,2),(665,115,0,125,1),(666,99,0,125,1),(667,93,0,125,59),(668,142,0,125,170),(669,97,0,126,1),(670,134,0,126,2),(671,115,0,126,1),(672,99,0,126,4),(673,143,0,126,0),(674,144,0,126,0),(675,145,0,126,0),(676,146,0,126,0),(677,147,0,126,0),(678,97,0,127,1),(679,134,0,127,2),(680,115,0,127,1),(681,99,0,127,1),(682,93,0,127,49),(683,142,0,127,166),(684,97,0,128,1),(685,134,0,128,2),(686,115,0,128,1),(687,99,0,128,1),(688,93,0,128,50),(689,142,0,128,166),(690,97,0,129,1),(691,134,0,129,2),(692,115,0,129,1),(693,99,0,129,1),(694,93,0,129,57),(695,142,0,129,166),(696,97,0,130,1),(697,134,0,130,2),(698,115,0,130,1),(699,99,0,130,1),(700,93,0,130,49),(701,142,0,130,167),(702,97,0,131,1),(703,134,0,131,2),(704,115,0,131,1),(705,99,0,131,1),(706,93,0,131,50),(707,142,0,131,167),(708,97,0,132,1),(709,134,0,132,2),(710,115,0,132,1),(711,99,0,132,1),(712,93,0,132,57),(713,142,0,132,167),(714,97,0,133,1),(715,134,0,133,2),(716,115,0,133,1),(717,99,0,133,1),(718,93,0,133,49),(719,142,0,133,168),(720,97,0,134,1),(721,134,0,134,2),(722,115,0,134,1),(723,99,0,134,1),(724,93,0,134,50),(725,142,0,134,168),(726,97,0,135,1),(727,134,0,135,2),(728,115,0,135,1),(729,99,0,135,1),(730,93,0,135,57),(731,142,0,135,168),(732,97,0,136,1),(733,134,0,136,2),(734,115,0,136,1),(735,99,0,136,1),(736,93,0,136,49),(737,142,0,136,169),(738,97,0,137,1),(739,134,0,137,2),(740,115,0,137,1),(741,99,0,137,1),(742,93,0,137,50),(743,142,0,137,169),(744,97,0,138,1),(745,134,0,138,2),(746,115,0,138,1),(747,99,0,138,1),(748,93,0,138,57),(749,142,0,138,169),(750,97,0,139,1),(751,134,0,139,2),(752,115,0,139,1),(753,99,0,139,1),(754,93,0,139,49),(755,142,0,139,170),(756,97,0,140,1),(757,134,0,140,2),(758,115,0,140,1),(759,99,0,140,1),(760,93,0,140,50),(761,142,0,140,170),(762,97,0,141,1),(763,134,0,141,2),(764,115,0,141,1),(765,99,0,141,1),(766,93,0,141,57),(767,142,0,141,170),(768,97,0,142,1),(769,134,0,142,2),(770,115,0,142,1),(771,99,0,142,4),(772,143,0,142,0),(773,144,0,142,0),(774,145,0,142,0),(775,146,0,142,0),(776,147,0,142,0),(777,97,0,143,1),(778,134,0,143,2),(779,115,0,143,1),(780,99,0,143,1),(781,93,0,143,49),(782,142,0,143,166),(783,97,0,144,1),(784,134,0,144,2),(785,115,0,144,1),(786,99,0,144,1),(787,93,0,144,52),(788,142,0,144,166),(789,97,0,145,1),(790,134,0,145,2),(791,115,0,145,1),(792,99,0,145,1),(793,93,0,145,53),(794,142,0,145,166),(795,97,0,146,1),(796,134,0,146,2),(797,115,0,146,1),(798,99,0,146,1),(799,93,0,146,49),(800,142,0,146,167),(801,97,0,147,1),(802,134,0,147,2),(803,115,0,147,1),(804,99,0,147,1),(805,93,0,147,52),(806,142,0,147,167),(807,97,0,148,1),(808,134,0,148,2),(809,115,0,148,1),(810,99,0,148,1),(811,93,0,148,53),(812,142,0,148,167),(813,97,0,149,1),(814,134,0,149,2),(815,115,0,149,1),(816,99,0,149,1),(817,93,0,149,49),(818,142,0,149,168),(819,97,0,150,1),(820,134,0,150,2),(821,115,0,150,1),(822,99,0,150,1),(823,93,0,150,52),(824,142,0,150,168),(825,97,0,151,1),(826,134,0,151,2),(827,115,0,151,1),(828,99,0,151,1),(829,93,0,151,53),(830,142,0,151,168),(831,97,0,152,1),(832,134,0,152,2),(833,115,0,152,1),(834,99,0,152,1),(835,93,0,152,49),(836,142,0,152,169),(837,97,0,153,1),(838,134,0,153,2),(839,115,0,153,1),(840,99,0,153,1),(841,93,0,153,52),(842,142,0,153,169),(843,97,0,154,1),(844,134,0,154,2),(845,115,0,154,1),(846,99,0,154,1),(847,93,0,154,53),(848,142,0,154,169),(849,97,0,155,1),(850,134,0,155,2),(851,115,0,155,1),(852,99,0,155,1),(853,93,0,155,49),(854,142,0,155,170),(855,97,0,156,1),(856,134,0,156,2),(857,115,0,156,1),(858,99,0,156,1),(859,93,0,156,52),(860,142,0,156,170),(861,97,0,157,1),(862,134,0,157,2),(863,115,0,157,1),(864,99,0,157,1),(865,93,0,157,53),(866,142,0,157,170),(867,97,0,158,1),(868,134,0,158,2),(869,115,0,158,1),(870,99,0,158,4),(871,143,0,158,0),(872,144,0,158,0),(873,145,0,158,0),(874,146,0,158,1),(875,147,0,158,0),(876,97,0,159,1),(877,134,0,159,2),(878,115,0,159,1),(879,99,0,159,1),(880,93,0,159,51),(881,142,0,159,166),(882,97,0,160,1),(883,134,0,160,2),(884,115,0,160,1),(885,99,0,160,1),(886,93,0,160,57),(887,142,0,160,166),(888,97,0,161,1),(889,134,0,161,2),(890,115,0,161,1),(891,99,0,161,1),(892,93,0,161,58),(893,142,0,161,166),(894,97,0,162,1),(895,134,0,162,2),(896,115,0,162,1),(897,99,0,162,1),(898,93,0,162,51),(899,142,0,162,167),(900,97,0,163,1),(901,134,0,163,2),(902,115,0,163,1),(903,99,0,163,1),(904,93,0,163,57),(905,142,0,163,167),(906,97,0,164,1),(907,134,0,164,2),(908,115,0,164,1),(909,99,0,164,1),(910,93,0,164,58),(911,142,0,164,167),(912,97,0,165,1),(913,134,0,165,2),(914,115,0,165,1),(915,99,0,165,1),(916,93,0,165,51),(917,142,0,165,168),(918,97,0,166,1),(919,134,0,166,2),(920,115,0,166,1),(921,99,0,166,1),(922,93,0,166,57),(923,142,0,166,168),(924,97,0,167,1),(925,134,0,167,2),(926,115,0,167,1),(927,99,0,167,1),(928,93,0,167,58),(929,142,0,167,168),(930,97,0,168,1),(931,134,0,168,2),(932,115,0,168,1),(933,99,0,168,1),(934,93,0,168,51),(935,142,0,168,169),(936,97,0,169,1),(937,134,0,169,2),(938,115,0,169,1),(939,99,0,169,1),(940,93,0,169,57),(941,142,0,169,169),(942,97,0,170,1),(943,134,0,170,2),(944,115,0,170,1),(945,99,0,170,1),(946,93,0,170,58),(947,142,0,170,169),(948,97,0,171,1),(949,134,0,171,2),(950,115,0,171,1),(951,99,0,171,1),(952,93,0,171,51),(953,142,0,171,170),(954,97,0,172,1),(955,134,0,172,2),(956,115,0,172,1),(957,99,0,172,1),(958,93,0,172,57),(959,142,0,172,170),(960,97,0,173,1),(961,134,0,173,2),(962,115,0,173,1),(963,99,0,173,1),(964,93,0,173,58),(965,142,0,173,170),(966,97,0,174,1),(967,134,0,174,2),(968,115,0,174,1),(969,99,0,174,4),(970,143,0,174,0),(971,144,0,174,0),(972,145,0,174,0),(973,146,0,174,0),(974,147,0,174,0),(975,97,0,175,1),(976,134,0,175,2),(977,115,0,175,1),(978,99,0,175,1),(979,93,0,175,50),(980,142,0,175,166),(981,97,0,176,1),(982,134,0,176,2),(983,115,0,176,1),(984,99,0,176,1),(985,93,0,176,53),(986,142,0,176,166),(987,97,0,177,1),(988,134,0,177,2),(989,115,0,177,1),(990,99,0,177,1),(991,93,0,177,58),(992,142,0,177,166),(993,97,0,178,1),(994,134,0,178,2),(995,115,0,178,1),(996,99,0,178,1),(997,93,0,178,50),(998,142,0,178,167),(999,97,0,179,1),(1000,134,0,179,2),(1001,115,0,179,1),(1002,99,0,179,1),(1003,93,0,179,53),(1004,142,0,179,167),(1005,97,0,180,1),(1006,134,0,180,2),(1007,115,0,180,1),(1008,99,0,180,1),(1009,93,0,180,58),(1010,142,0,180,167),(1011,97,0,181,1),(1012,134,0,181,2),(1013,115,0,181,1),(1014,99,0,181,1),(1015,93,0,181,50),(1016,142,0,181,168),(1017,97,0,182,1),(1018,134,0,182,2),(1019,115,0,182,1),(1020,99,0,182,1),(1021,93,0,182,53),(1022,142,0,182,168),(1023,97,0,183,1),(1024,134,0,183,2),(1025,115,0,183,1),(1026,99,0,183,1),(1027,93,0,183,58),(1028,142,0,183,168),(1029,97,0,184,1),(1030,134,0,184,2),(1031,115,0,184,1),(1032,99,0,184,1),(1033,93,0,184,50),(1034,142,0,184,169),(1035,97,0,185,1),(1036,134,0,185,2),(1037,115,0,185,1),(1038,99,0,185,1),(1039,93,0,185,53),(1040,142,0,185,169),(1041,97,0,186,1),(1042,134,0,186,2),(1043,115,0,186,1),(1044,99,0,186,1),(1045,93,0,186,58),(1046,142,0,186,169),(1047,97,0,187,1),(1048,134,0,187,2),(1049,115,0,187,1),(1050,99,0,187,1),(1051,93,0,187,50),(1052,142,0,187,170),(1053,97,0,188,1),(1054,134,0,188,2),(1055,115,0,188,1),(1056,99,0,188,1),(1057,93,0,188,53),(1058,142,0,188,170),(1059,97,0,189,1),(1060,134,0,189,2),(1061,115,0,189,1),(1062,99,0,189,1),(1063,93,0,189,58),(1064,142,0,189,170),(1065,97,0,190,1),(1066,134,0,190,2),(1067,115,0,190,1),(1068,99,0,190,4),(1069,143,0,190,0),(1070,144,0,190,0),(1071,145,0,190,1),(1072,146,0,190,0),(1073,147,0,190,0),(1074,97,0,191,1),(1075,134,0,191,2),(1076,115,0,191,1),(1077,99,0,191,1),(1078,93,0,191,49),(1079,142,0,191,166),(1080,97,0,192,1),(1081,134,0,192,2),(1082,115,0,192,1),(1083,99,0,192,1),(1084,93,0,192,50),(1085,142,0,192,166),(1086,97,0,193,1),(1087,134,0,193,2),(1088,115,0,193,1),(1089,99,0,193,1),(1090,93,0,193,58),(1091,142,0,193,166),(1092,97,0,194,1),(1093,134,0,194,2),(1094,115,0,194,1),(1095,99,0,194,1),(1096,93,0,194,49),(1097,142,0,194,167),(1098,97,0,195,1),(1099,134,0,195,2),(1100,115,0,195,1),(1101,99,0,195,1),(1102,93,0,195,50),(1103,142,0,195,167),(1104,97,0,196,1),(1105,134,0,196,2),(1106,115,0,196,1),(1107,99,0,196,1),(1108,93,0,196,58),(1109,142,0,196,167),(1110,97,0,197,1),(1111,134,0,197,2),(1112,115,0,197,1),(1113,99,0,197,1),(1114,93,0,197,49),(1115,142,0,197,168),(1116,97,0,198,1),(1117,134,0,198,2),(1118,115,0,198,1),(1119,99,0,198,1),(1120,93,0,198,50),(1121,142,0,198,168),(1122,97,0,199,1),(1123,134,0,199,2),(1124,115,0,199,1),(1125,99,0,199,1),(1126,93,0,199,58),(1127,142,0,199,168),(1128,97,0,200,1),(1129,134,0,200,2),(1130,115,0,200,1),(1131,99,0,200,1),(1132,93,0,200,49),(1133,142,0,200,169),(1134,97,0,201,1),(1135,134,0,201,2),(1136,115,0,201,1),(1137,99,0,201,1),(1138,93,0,201,50),(1139,142,0,201,169),(1140,97,0,202,1),(1141,134,0,202,2),(1142,115,0,202,1),(1143,99,0,202,1),(1144,93,0,202,58),(1145,142,0,202,169),(1146,97,0,203,1),(1147,134,0,203,2),(1148,115,0,203,1),(1149,99,0,203,1),(1150,93,0,203,49),(1151,142,0,203,170),(1152,97,0,204,1),(1153,134,0,204,2),(1154,115,0,204,1),(1155,99,0,204,1),(1156,93,0,204,50),(1157,142,0,204,170),(1158,97,0,205,1),(1159,134,0,205,2),(1160,115,0,205,1),(1161,99,0,205,1),(1162,93,0,205,58),(1163,142,0,205,170),(1164,97,0,206,1),(1165,134,0,206,2),(1166,115,0,206,1),(1167,99,0,206,4),(1168,143,0,206,0),(1169,144,0,206,1),(1170,145,0,206,0),(1171,146,0,206,0),(1172,147,0,206,1),(1173,97,0,207,1),(1174,134,0,207,2),(1175,115,0,207,1),(1176,99,0,207,1),(1177,93,0,207,56),(1178,142,0,207,166),(1179,97,0,208,1),(1180,134,0,208,2),(1181,115,0,208,1),(1182,99,0,208,1),(1183,93,0,208,58),(1184,142,0,208,166),(1185,97,0,209,1),(1186,134,0,209,2),(1187,115,0,209,1),(1188,99,0,209,1),(1189,93,0,209,59),(1190,142,0,209,166),(1191,97,0,210,1),(1192,134,0,210,2),(1193,115,0,210,1),(1194,99,0,210,1),(1195,93,0,210,56),(1196,142,0,210,167),(1197,97,0,211,1),(1198,134,0,211,2),(1199,115,0,211,1),(1200,99,0,211,1),(1201,93,0,211,58),(1202,142,0,211,167),(1203,97,0,212,1),(1204,134,0,212,2),(1205,115,0,212,1),(1206,99,0,212,1),(1207,93,0,212,59),(1208,142,0,212,167),(1209,97,0,213,1),(1210,134,0,213,2),(1211,115,0,213,1),(1212,99,0,213,1),(1213,93,0,213,56),(1214,142,0,213,168),(1215,97,0,214,1),(1216,134,0,214,2),(1217,115,0,214,1),(1218,99,0,214,1),(1219,93,0,214,58),(1220,142,0,214,168),(1221,97,0,215,1),(1222,134,0,215,2),(1223,115,0,215,1),(1224,99,0,215,1),(1225,93,0,215,59),(1226,142,0,215,168),(1227,97,0,216,1),(1228,134,0,216,2),(1229,115,0,216,1),(1230,99,0,216,1),(1231,93,0,216,56),(1232,142,0,216,169),(1233,97,0,217,1),(1234,134,0,217,2),(1235,115,0,217,1),(1236,99,0,217,1),(1237,93,0,217,58),(1238,142,0,217,169),(1239,97,0,218,1),(1240,134,0,218,2),(1241,115,0,218,1),(1242,99,0,218,1),(1243,93,0,218,59),(1244,142,0,218,169),(1245,97,0,219,1),(1246,134,0,219,2),(1247,115,0,219,1),(1248,99,0,219,1),(1249,93,0,219,56),(1250,142,0,219,170),(1251,97,0,220,1),(1252,134,0,220,2),(1253,115,0,220,1),(1254,99,0,220,1),(1255,93,0,220,58),(1256,142,0,220,170),(1257,97,0,221,1),(1258,134,0,221,2),(1259,115,0,221,1),(1260,99,0,221,1),(1261,93,0,221,59),(1262,142,0,221,170),(1263,97,0,222,1),(1264,134,0,222,2),(1265,115,0,222,1),(1266,99,0,222,4),(1267,143,0,222,0),(1268,144,0,222,0),(1269,145,0,222,0),(1270,146,0,222,0),(1271,147,0,222,0),(1272,97,0,223,1),(1273,134,0,223,2),(1274,115,0,223,1),(1275,99,0,223,1),(1276,93,0,223,50),(1277,142,0,223,166),(1278,97,0,224,1),(1279,134,0,224,2),(1280,115,0,224,1),(1281,99,0,224,1),(1282,93,0,224,53),(1283,142,0,224,166),(1284,97,0,225,1),(1285,134,0,225,2),(1286,115,0,225,1),(1287,99,0,225,1),(1288,93,0,225,58),(1289,142,0,225,166),(1290,97,0,226,1),(1291,134,0,226,2),(1292,115,0,226,1),(1293,99,0,226,1),(1294,93,0,226,50),(1295,142,0,226,167),(1296,97,0,227,1),(1297,134,0,227,2),(1298,115,0,227,1),(1299,99,0,227,1),(1300,93,0,227,53),(1301,142,0,227,167),(1302,97,0,228,1),(1303,134,0,228,2),(1304,115,0,228,1),(1305,99,0,228,1),(1306,93,0,228,58),(1307,142,0,228,167),(1308,97,0,229,1),(1309,134,0,229,2),(1310,115,0,229,1),(1311,99,0,229,1),(1312,93,0,229,50),(1313,142,0,229,168),(1314,97,0,230,1),(1315,134,0,230,2),(1316,115,0,230,1),(1317,99,0,230,1),(1318,93,0,230,53),(1319,142,0,230,168),(1320,97,0,231,1),(1321,134,0,231,2),(1322,115,0,231,1),(1323,99,0,231,1),(1324,93,0,231,58),(1325,142,0,231,168),(1326,97,0,232,1),(1327,134,0,232,2),(1328,115,0,232,1),(1329,99,0,232,1),(1330,93,0,232,50),(1331,142,0,232,169),(1332,97,0,233,1),(1333,134,0,233,2),(1334,115,0,233,1),(1335,99,0,233,1),(1336,93,0,233,53),(1337,142,0,233,169),(1338,97,0,234,1),(1339,134,0,234,2),(1340,115,0,234,1),(1341,99,0,234,1),(1342,93,0,234,58),(1343,142,0,234,169),(1344,97,0,235,1),(1345,134,0,235,2),(1346,115,0,235,1),(1347,99,0,235,1),(1348,93,0,235,50),(1349,142,0,235,170),(1350,97,0,236,1),(1351,134,0,236,2),(1352,115,0,236,1),(1353,99,0,236,1),(1354,93,0,236,53),(1355,142,0,236,170),(1356,97,0,237,1),(1357,134,0,237,2),(1358,115,0,237,1),(1359,99,0,237,1),(1360,93,0,237,58),(1361,142,0,237,170),(1362,97,0,238,1),(1363,134,0,238,2),(1364,115,0,238,1),(1365,99,0,238,4),(1366,143,0,238,0),(1367,144,0,238,0),(1368,145,0,238,0),(1369,146,0,238,0),(1370,147,0,238,0),(1371,97,0,239,1),(1372,134,0,239,2),(1373,115,0,239,1),(1374,99,0,239,1),(1375,93,0,239,50),(1376,142,0,239,166),(1377,97,0,240,1),(1378,134,0,240,2),(1379,115,0,240,1),(1380,99,0,240,1),(1381,93,0,240,53),(1382,142,0,240,166),(1383,97,0,241,1),(1384,134,0,241,2),(1385,115,0,241,1),(1386,99,0,241,1),(1387,93,0,241,54),(1388,142,0,241,166),(1389,97,0,242,1),(1390,134,0,242,2),(1391,115,0,242,1),(1392,99,0,242,1),(1393,93,0,242,50),(1394,142,0,242,167),(1395,97,0,243,1),(1396,134,0,243,2),(1397,115,0,243,1),(1398,99,0,243,1),(1399,93,0,243,53),(1400,142,0,243,167),(1401,97,0,244,1),(1402,134,0,244,2),(1403,115,0,244,1),(1404,99,0,244,1),(1405,93,0,244,54),(1406,142,0,244,167),(1407,97,0,245,1),(1408,134,0,245,2),(1409,115,0,245,1),(1410,99,0,245,1),(1411,93,0,245,50),(1412,142,0,245,168),(1413,97,0,246,1),(1414,134,0,246,2),(1415,115,0,246,1),(1416,99,0,246,1),(1417,93,0,246,53),(1418,142,0,246,168),(1419,97,0,247,1),(1420,134,0,247,2),(1421,115,0,247,1),(1422,99,0,247,1),(1423,93,0,247,54),(1424,142,0,247,168),(1425,97,0,248,1),(1426,134,0,248,2),(1427,115,0,248,1),(1428,99,0,248,1),(1429,93,0,248,50),(1430,142,0,248,169),(1431,97,0,249,1),(1432,134,0,249,2),(1433,115,0,249,1),(1434,99,0,249,1),(1435,93,0,249,53),(1436,142,0,249,169),(1437,97,0,250,1),(1438,134,0,250,2),(1439,115,0,250,1),(1440,99,0,250,1),(1441,93,0,250,54),(1442,142,0,250,169),(1443,97,0,251,1),(1444,134,0,251,2),(1445,115,0,251,1),(1446,99,0,251,1),(1447,93,0,251,50),(1448,142,0,251,170),(1449,97,0,252,1),(1450,134,0,252,2),(1451,115,0,252,1),(1452,99,0,252,1),(1453,93,0,252,53),(1454,142,0,252,170),(1455,97,0,253,1),(1456,134,0,253,2),(1457,115,0,253,1),(1458,99,0,253,1),(1459,93,0,253,54),(1460,142,0,253,170),(1461,97,0,254,1),(1462,134,0,254,2),(1463,115,0,254,1),(1464,99,0,254,4),(1465,143,0,254,0),(1466,144,0,254,1),(1467,145,0,254,1),(1468,146,0,254,0),(1469,147,0,254,0),(1470,97,0,255,1),(1471,134,0,255,2),(1472,115,0,255,1),(1473,99,0,255,1),(1474,93,0,255,56),(1475,142,0,255,166),(1476,97,0,256,1),(1477,134,0,256,2),(1478,115,0,256,1),(1479,99,0,256,1),(1480,93,0,256,58),(1481,142,0,256,166),(1482,97,0,257,1),(1483,134,0,257,2),(1484,115,0,257,1),(1485,99,0,257,1),(1486,93,0,257,60),(1487,142,0,257,166),(1488,97,0,258,1),(1489,134,0,258,2),(1490,115,0,258,1),(1491,99,0,258,1),(1492,93,0,258,56),(1493,142,0,258,167),(1494,97,0,259,1),(1495,134,0,259,2),(1496,115,0,259,1),(1497,99,0,259,1),(1498,93,0,259,58),(1499,142,0,259,167),(1500,97,0,260,1),(1501,134,0,260,2),(1502,115,0,260,1),(1503,99,0,260,1),(1504,93,0,260,60),(1505,142,0,260,167),(1506,97,0,261,1),(1507,134,0,261,2),(1508,115,0,261,1),(1509,99,0,261,1),(1510,93,0,261,56),(1511,142,0,261,168),(1512,97,0,262,1),(1513,134,0,262,2),(1514,115,0,262,1),(1515,99,0,262,1),(1516,93,0,262,58),(1517,142,0,262,168),(1518,97,0,263,1),(1519,134,0,263,2),(1520,115,0,263,1),(1521,99,0,263,1),(1522,93,0,263,60),(1523,142,0,263,168),(1524,97,0,264,1),(1525,134,0,264,2),(1526,115,0,264,1),(1527,99,0,264,1),(1528,93,0,264,56),(1529,142,0,264,169),(1530,97,0,265,1),(1531,134,0,265,2),(1532,115,0,265,1),(1533,99,0,265,1),(1534,93,0,265,58),(1535,142,0,265,169),(1536,97,0,266,1),(1537,134,0,266,2),(1538,115,0,266,1),(1539,99,0,266,1),(1540,93,0,266,60),(1541,142,0,266,169),(1542,97,0,267,1),(1543,134,0,267,2),(1544,115,0,267,1),(1545,99,0,267,1),(1546,93,0,267,56),(1547,142,0,267,170),(1548,97,0,268,1),(1549,134,0,268,2),(1550,115,0,268,1),(1551,99,0,268,1),(1552,93,0,268,58),(1553,142,0,268,170),(1554,97,0,269,1),(1555,134,0,269,2),(1556,115,0,269,1),(1557,99,0,269,1),(1558,93,0,269,60),(1559,142,0,269,170),(1560,97,0,270,1),(1561,134,0,270,2),(1562,115,0,270,1),(1563,99,0,270,4),(1564,143,0,270,0),(1565,144,0,270,1),(1566,145,0,270,0),(1567,146,0,270,0),(1568,147,0,270,1),(1569,97,0,271,1),(1570,134,0,271,2),(1571,115,0,271,1),(1572,99,0,271,1),(1573,93,0,271,53),(1574,142,0,271,166),(1575,97,0,272,1),(1576,134,0,272,2),(1577,115,0,272,1),(1578,99,0,272,1),(1579,93,0,272,56),(1580,142,0,272,166),(1581,97,0,273,1),(1582,134,0,273,2),(1583,115,0,273,1),(1584,99,0,273,1),(1585,93,0,273,58),(1586,142,0,273,166),(1587,97,0,274,1),(1588,134,0,274,2),(1589,115,0,274,1),(1590,99,0,274,1),(1591,93,0,274,53),(1592,142,0,274,167),(1593,97,0,275,1),(1594,134,0,275,2),(1595,115,0,275,1),(1596,99,0,275,1),(1597,93,0,275,56),(1598,142,0,275,167),(1599,97,0,276,1),(1600,134,0,276,2),(1601,115,0,276,1),(1602,99,0,276,1),(1603,93,0,276,58),(1604,142,0,276,167),(1605,97,0,277,1),(1606,134,0,277,2),(1607,115,0,277,1),(1608,99,0,277,1),(1609,93,0,277,53),(1610,142,0,277,168),(1611,97,0,278,1),(1612,134,0,278,2),(1613,115,0,278,1),(1614,99,0,278,1),(1615,93,0,278,56),(1616,142,0,278,168),(1617,97,0,279,1),(1618,134,0,279,2),(1619,115,0,279,1),(1620,99,0,279,1),(1621,93,0,279,58),(1622,142,0,279,168),(1623,97,0,280,1),(1624,134,0,280,2),(1625,115,0,280,1),(1626,99,0,280,1),(1627,93,0,280,53),(1628,142,0,280,169),(1629,97,0,281,1),(1630,134,0,281,2),(1631,115,0,281,1),(1632,99,0,281,1),(1633,93,0,281,56),(1634,142,0,281,169),(1635,97,0,282,1),(1636,134,0,282,2),(1637,115,0,282,1),(1638,99,0,282,1),(1639,93,0,282,58),(1640,142,0,282,169),(1641,97,0,283,1),(1642,134,0,283,2),(1643,115,0,283,1),(1644,99,0,283,1),(1645,93,0,283,53),(1646,142,0,283,170),(1647,97,0,284,1),(1648,134,0,284,2),(1649,115,0,284,1),(1650,99,0,284,1),(1651,93,0,284,56),(1652,142,0,284,170),(1653,97,0,285,1),(1654,134,0,285,2),(1655,115,0,285,1),(1656,99,0,285,1),(1657,93,0,285,58),(1658,142,0,285,170),(1659,97,0,286,1),(1660,134,0,286,2),(1661,115,0,286,1),(1662,99,0,286,4),(1663,143,0,286,0),(1664,144,0,286,1),(1665,145,0,286,0),(1666,146,0,286,1),(1667,147,0,286,0),(1668,97,0,287,1),(1669,134,0,287,2),(1670,115,0,287,1),(1671,99,0,287,1),(1672,93,0,287,49),(1673,142,0,287,166),(1674,97,0,288,1),(1675,134,0,288,2),(1676,115,0,288,1),(1677,99,0,288,1),(1678,93,0,288,50),(1679,142,0,288,166),(1680,97,0,289,1),(1681,134,0,289,2),(1682,115,0,289,1),(1683,99,0,289,1),(1684,93,0,289,57),(1685,142,0,289,166),(1686,97,0,290,1),(1687,134,0,290,2),(1688,115,0,290,1),(1689,99,0,290,1),(1690,93,0,290,49),(1691,142,0,290,167),(1692,97,0,291,1),(1693,134,0,291,2),(1694,115,0,291,1),(1695,99,0,291,1),(1696,93,0,291,50),(1697,142,0,291,167),(1698,97,0,292,1),(1699,134,0,292,2),(1700,115,0,292,1),(1701,99,0,292,1),(1702,93,0,292,57),(1703,142,0,292,167),(1704,97,0,293,1),(1705,134,0,293,2),(1706,115,0,293,1),(1707,99,0,293,1),(1708,93,0,293,49),(1709,142,0,293,168),(1710,97,0,294,1),(1711,134,0,294,2),(1712,115,0,294,1),(1713,99,0,294,1),(1714,93,0,294,50),(1715,142,0,294,168),(1716,97,0,295,1),(1717,134,0,295,2),(1718,115,0,295,1),(1719,99,0,295,1),(1720,93,0,295,57),(1721,142,0,295,168),(1722,97,0,296,1),(1723,134,0,296,2),(1724,115,0,296,1),(1725,99,0,296,1),(1726,93,0,296,49),(1727,142,0,296,169),(1728,97,0,297,1),(1729,134,0,297,2),(1730,115,0,297,1),(1731,99,0,297,1),(1732,93,0,297,50),(1733,142,0,297,169),(1734,97,0,298,1),(1735,134,0,298,2),(1736,115,0,298,1),(1737,99,0,298,1),(1738,93,0,298,57),(1739,142,0,298,169),(1740,97,0,299,1),(1741,134,0,299,2),(1742,115,0,299,1),(1743,99,0,299,1),(1744,93,0,299,49),(1745,142,0,299,170),(1746,97,0,300,1),(1747,134,0,300,2),(1748,115,0,300,1),(1749,99,0,300,1),(1750,93,0,300,50),(1751,142,0,300,170),(1752,97,0,301,1),(1753,134,0,301,2),(1754,115,0,301,1),(1755,99,0,301,1),(1756,93,0,301,57),(1757,142,0,301,170),(1758,97,0,302,1),(1759,134,0,302,2),(1760,115,0,302,1),(1761,99,0,302,4),(1762,143,0,302,1),(1763,144,0,302,0),(1764,145,0,302,0),(1765,146,0,302,0),(1766,147,0,302,0),(1767,97,0,303,1),(1768,134,0,303,2),(1769,115,0,303,1),(1770,99,0,303,1),(1771,93,0,303,49),(1772,142,0,303,166),(1773,97,0,304,1),(1774,134,0,304,2),(1775,115,0,304,1),(1776,99,0,304,1),(1777,93,0,304,58),(1778,142,0,304,166),(1779,97,0,305,1),(1780,134,0,305,2),(1781,115,0,305,1),(1782,99,0,305,1),(1783,93,0,305,60),(1784,142,0,305,166),(1785,97,0,306,1),(1786,134,0,306,2),(1787,115,0,306,1),(1788,99,0,306,1),(1789,93,0,306,49),(1790,142,0,306,167),(1791,97,0,307,1),(1792,134,0,307,2),(1793,115,0,307,1),(1794,99,0,307,1),(1795,93,0,307,58),(1796,142,0,307,167),(1797,97,0,308,1),(1798,134,0,308,2),(1799,115,0,308,1),(1800,99,0,308,1),(1801,93,0,308,60),(1802,142,0,308,167),(1803,97,0,309,1),(1804,134,0,309,2),(1805,115,0,309,1),(1806,99,0,309,1),(1807,93,0,309,49),(1808,142,0,309,168),(1809,97,0,310,1),(1810,134,0,310,2),(1811,115,0,310,1),(1812,99,0,310,1),(1813,93,0,310,58),(1814,142,0,310,168),(1815,97,0,311,1),(1816,134,0,311,2),(1817,115,0,311,1),(1818,99,0,311,1),(1819,93,0,311,60),(1820,142,0,311,168),(1821,97,0,312,1),(1822,134,0,312,2),(1823,115,0,312,1),(1824,99,0,312,1),(1825,93,0,312,49),(1826,142,0,312,169),(1827,97,0,313,1),(1828,134,0,313,2),(1829,115,0,313,1),(1830,99,0,313,1),(1831,93,0,313,58),(1832,142,0,313,169),(1833,97,0,314,1),(1834,134,0,314,2),(1835,115,0,314,1),(1836,99,0,314,1),(1837,93,0,314,60),(1838,142,0,314,169),(1839,97,0,315,1),(1840,134,0,315,2),(1841,115,0,315,1),(1842,99,0,315,1),(1843,93,0,315,49),(1844,142,0,315,170),(1845,97,0,316,1),(1846,134,0,316,2),(1847,115,0,316,1),(1848,99,0,316,1),(1849,93,0,316,58),(1850,142,0,316,170),(1851,97,0,317,1),(1852,134,0,317,2),(1853,115,0,317,1),(1854,99,0,317,1),(1855,93,0,317,60),(1856,142,0,317,170),(1857,97,0,318,1),(1858,134,0,318,2),(1859,115,0,318,1),(1860,99,0,318,4),(1861,143,0,318,0),(1862,144,0,318,0),(1863,145,0,318,0),(1864,146,0,318,0),(1865,147,0,318,0),(1866,97,0,319,1),(1867,134,0,319,2),(1868,115,0,319,1),(1869,99,0,319,1),(1870,93,0,319,50),(1871,142,0,319,166),(1872,97,0,320,1),(1873,134,0,320,2),(1874,115,0,320,1),(1875,99,0,320,1),(1876,93,0,320,52),(1877,142,0,320,166),(1878,97,0,321,1),(1879,134,0,321,2),(1880,115,0,321,1),(1881,99,0,321,1),(1882,93,0,321,53),(1883,142,0,321,166),(1884,97,0,322,1),(1885,134,0,322,2),(1886,115,0,322,1),(1887,99,0,322,1),(1888,93,0,322,50),(1889,142,0,322,167),(1890,97,0,323,1),(1891,134,0,323,2),(1892,115,0,323,1),(1893,99,0,323,1),(1894,93,0,323,52),(1895,142,0,323,167),(1896,97,0,324,1),(1897,134,0,324,2),(1898,115,0,324,1),(1899,99,0,324,1),(1900,93,0,324,53),(1901,142,0,324,167),(1902,97,0,325,1),(1903,134,0,325,2),(1904,115,0,325,1),(1905,99,0,325,1),(1906,93,0,325,50),(1907,142,0,325,168),(1908,97,0,326,1),(1909,134,0,326,2),(1910,115,0,326,1),(1911,99,0,326,1),(1912,93,0,326,52),(1913,142,0,326,168),(1914,97,0,327,1),(1915,134,0,327,2),(1916,115,0,327,1),(1917,99,0,327,1),(1918,93,0,327,53),(1919,142,0,327,168),(1920,97,0,328,1),(1921,134,0,328,2),(1922,115,0,328,1),(1923,99,0,328,1),(1924,93,0,328,50),(1925,142,0,328,169),(1926,97,0,329,1),(1927,134,0,329,2),(1928,115,0,329,1),(1929,99,0,329,1),(1930,93,0,329,52),(1931,142,0,329,169),(1932,97,0,330,1),(1933,134,0,330,2),(1934,115,0,330,1),(1935,99,0,330,1),(1936,93,0,330,53),(1937,142,0,330,169),(1938,97,0,331,1),(1939,134,0,331,2),(1940,115,0,331,1),(1941,99,0,331,1),(1942,93,0,331,50),(1943,142,0,331,170),(1944,97,0,332,1),(1945,134,0,332,2),(1946,115,0,332,1),(1947,99,0,332,1),(1948,93,0,332,52),(1949,142,0,332,170),(1950,97,0,333,1),(1951,134,0,333,2),(1952,115,0,333,1),(1953,99,0,333,1),(1954,93,0,333,53),(1955,142,0,333,170),(1956,97,0,334,1),(1957,134,0,334,2),(1958,115,0,334,1),(1959,99,0,334,4),(1960,143,0,334,0),(1961,144,0,334,0),(1962,145,0,334,1),(1963,146,0,334,0),(1964,147,0,334,0),(1965,97,0,335,1),(1966,134,0,335,2),(1967,115,0,335,1),(1968,99,0,335,1),(1969,93,0,335,50),(1970,142,0,335,166),(1971,97,0,336,1),(1972,134,0,336,2),(1973,115,0,336,1),(1974,99,0,336,1),(1975,93,0,336,59),(1976,142,0,336,166),(1977,97,0,337,1),(1978,134,0,337,2),(1979,115,0,337,1),(1980,99,0,337,1),(1981,93,0,337,60),(1982,142,0,337,166),(1983,97,0,338,1),(1984,134,0,338,2),(1985,115,0,338,1),(1986,99,0,338,1),(1987,93,0,338,50),(1988,142,0,338,167),(1989,97,0,339,1),(1990,134,0,339,2),(1991,115,0,339,1),(1992,99,0,339,1),(1993,93,0,339,59),(1994,142,0,339,167),(1995,97,0,340,1),(1996,134,0,340,2),(1997,115,0,340,1),(1998,99,0,340,1),(1999,93,0,340,60),(2000,142,0,340,167),(2001,97,0,341,1),(2002,134,0,341,2),(2003,115,0,341,1),(2004,99,0,341,1),(2005,93,0,341,50),(2006,142,0,341,168),(2007,97,0,342,1),(2008,134,0,342,2),(2009,115,0,342,1),(2010,99,0,342,1),(2011,93,0,342,59),(2012,142,0,342,168),(2013,97,0,343,1),(2014,134,0,343,2),(2015,115,0,343,1),(2016,99,0,343,1),(2017,93,0,343,60),(2018,142,0,343,168),(2019,97,0,344,1),(2020,134,0,344,2),(2021,115,0,344,1),(2022,99,0,344,1),(2023,93,0,344,50),(2024,142,0,344,169),(2025,97,0,345,1),(2026,134,0,345,2),(2027,115,0,345,1),(2028,99,0,345,1),(2029,93,0,345,59),(2030,142,0,345,169),(2031,97,0,346,1),(2032,134,0,346,2),(2033,115,0,346,1),(2034,99,0,346,1),(2035,93,0,346,60),(2036,142,0,346,169),(2037,97,0,347,1),(2038,134,0,347,2),(2039,115,0,347,1),(2040,99,0,347,1),(2041,93,0,347,50),(2042,142,0,347,170),(2043,97,0,348,1),(2044,134,0,348,2),(2045,115,0,348,1),(2046,99,0,348,1),(2047,93,0,348,59),(2048,142,0,348,170),(2049,97,0,349,1),(2050,134,0,349,2),(2051,115,0,349,1),(2052,99,0,349,1),(2053,93,0,349,60),(2054,142,0,349,170),(2055,97,0,350,1),(2056,134,0,350,2),(2057,115,0,350,1),(2058,99,0,350,4),(2059,143,0,350,0),(2060,144,0,350,0),(2061,145,0,350,0),(2062,146,0,350,0),(2063,147,0,350,0),(2064,97,0,351,1),(2065,134,0,351,2),(2066,115,0,351,1),(2067,99,0,351,1),(2068,93,0,351,49),(2069,142,0,351,166),(2070,97,0,352,1),(2071,134,0,352,2),(2072,115,0,352,1),(2073,99,0,352,1),(2074,93,0,352,56),(2075,142,0,352,166),(2076,97,0,353,1),(2077,134,0,353,2),(2078,115,0,353,1),(2079,99,0,353,1),(2080,93,0,353,58),(2081,142,0,353,166),(2082,97,0,354,1),(2083,134,0,354,2),(2084,115,0,354,1),(2085,99,0,354,1),(2086,93,0,354,49),(2087,142,0,354,167),(2088,97,0,355,1),(2089,134,0,355,2),(2090,115,0,355,1),(2091,99,0,355,1),(2092,93,0,355,56),(2093,142,0,355,167),(2094,97,0,356,1),(2095,134,0,356,2),(2096,115,0,356,1),(2097,99,0,356,1),(2098,93,0,356,58),(2099,142,0,356,167),(2100,97,0,357,1),(2101,134,0,357,2),(2102,115,0,357,1),(2103,99,0,357,1),(2104,93,0,357,49),(2105,142,0,357,168),(2106,97,0,358,1),(2107,134,0,358,2),(2108,115,0,358,1),(2109,99,0,358,1),(2110,93,0,358,56),(2111,142,0,358,168),(2112,97,0,359,1),(2113,134,0,359,2),(2114,115,0,359,1),(2115,99,0,359,1),(2116,93,0,359,58),(2117,142,0,359,168),(2118,97,0,360,1),(2119,134,0,360,2),(2120,115,0,360,1),(2121,99,0,360,1),(2122,93,0,360,49),(2123,142,0,360,169),(2124,97,0,361,1),(2125,134,0,361,2),(2126,115,0,361,1),(2127,99,0,361,1),(2128,93,0,361,56),(2129,142,0,361,169),(2130,97,0,362,1),(2131,134,0,362,2),(2132,115,0,362,1),(2133,99,0,362,1),(2134,93,0,362,58),(2135,142,0,362,169),(2136,97,0,363,1),(2137,134,0,363,2),(2138,115,0,363,1),(2139,99,0,363,1),(2140,93,0,363,49),(2141,142,0,363,170),(2142,97,0,364,1),(2143,134,0,364,2),(2144,115,0,364,1),(2145,99,0,364,1),(2146,93,0,364,56),(2147,142,0,364,170),(2148,97,0,365,1),(2149,134,0,365,2),(2150,115,0,365,1),(2151,99,0,365,1),(2152,93,0,365,58),(2153,142,0,365,170),(2154,97,0,366,1),(2155,134,0,366,2),(2156,115,0,366,1),(2157,99,0,366,4),(2158,143,0,366,0),(2159,144,0,366,0),(2160,145,0,366,0),(2161,146,0,366,0),(2162,147,0,366,0),(2163,97,0,367,1),(2164,134,0,367,2),(2165,115,0,367,1),(2166,99,0,367,1),(2167,93,0,367,49),(2168,142,0,367,166),(2169,97,0,368,1),(2170,134,0,368,2),(2171,115,0,368,1),(2172,99,0,368,1),(2173,93,0,368,53),(2174,142,0,368,166),(2175,97,0,369,1),(2176,134,0,369,2),(2177,115,0,369,1),(2178,99,0,369,1),(2179,93,0,369,58),(2180,142,0,369,166),(2181,97,0,370,1),(2182,134,0,370,2),(2183,115,0,370,1),(2184,99,0,370,1),(2185,93,0,370,49),(2186,142,0,370,167),(2187,97,0,371,1),(2188,134,0,371,2),(2189,115,0,371,1),(2190,99,0,371,1),(2191,93,0,371,53),(2192,142,0,371,167),(2193,97,0,372,1),(2194,134,0,372,2),(2195,115,0,372,1),(2196,99,0,372,1),(2197,93,0,372,58),(2198,142,0,372,167),(2199,97,0,373,1),(2200,134,0,373,2),(2201,115,0,373,1),(2202,99,0,373,1),(2203,93,0,373,49),(2204,142,0,373,168),(2205,97,0,374,1),(2206,134,0,374,2),(2207,115,0,374,1),(2208,99,0,374,1),(2209,93,0,374,53),(2210,142,0,374,168),(2211,97,0,375,1),(2212,134,0,375,2),(2213,115,0,375,1),(2214,99,0,375,1),(2215,93,0,375,58),(2216,142,0,375,168),(2217,97,0,376,1),(2218,134,0,376,2),(2219,115,0,376,1),(2220,99,0,376,1),(2221,93,0,376,49),(2222,142,0,376,169),(2223,97,0,377,1),(2224,134,0,377,2),(2225,115,0,377,1),(2226,99,0,377,1),(2227,93,0,377,53),(2228,142,0,377,169),(2229,97,0,378,1),(2230,134,0,378,2),(2231,115,0,378,1),(2232,99,0,378,1),(2233,93,0,378,58),(2234,142,0,378,169),(2235,97,0,379,1),(2236,134,0,379,2),(2237,115,0,379,1),(2238,99,0,379,1),(2239,93,0,379,49),(2240,142,0,379,170),(2241,97,0,380,1),(2242,134,0,380,2),(2243,115,0,380,1),(2244,99,0,380,1),(2245,93,0,380,53),(2246,142,0,380,170),(2247,97,0,381,1),(2248,134,0,381,2),(2249,115,0,381,1),(2250,99,0,381,1),(2251,93,0,381,58),(2252,142,0,381,170),(2253,97,0,382,1),(2254,134,0,382,2),(2255,115,0,382,1),(2256,99,0,382,4),(2257,143,0,382,0),(2258,144,0,382,1),(2259,145,0,382,0),(2260,146,0,382,0),(2261,147,0,382,1),(2262,97,0,383,1),(2263,134,0,383,2),(2264,115,0,383,1),(2265,99,0,383,1),(2266,93,0,383,50),(2267,142,0,383,166),(2268,97,0,384,1),(2269,134,0,384,2),(2270,115,0,384,1),(2271,99,0,384,1),(2272,93,0,384,53),(2273,142,0,384,166),(2274,97,0,385,1),(2275,134,0,385,2),(2276,115,0,385,1),(2277,99,0,385,1),(2278,93,0,385,57),(2279,142,0,385,166),(2280,97,0,386,1),(2281,134,0,386,2),(2282,115,0,386,1),(2283,99,0,386,1),(2284,93,0,386,50),(2285,142,0,386,167),(2286,97,0,387,1),(2287,134,0,387,2),(2288,115,0,387,1),(2289,99,0,387,1),(2290,93,0,387,53),(2291,142,0,387,167),(2292,97,0,388,1),(2293,134,0,388,2),(2294,115,0,388,1),(2295,99,0,388,1),(2296,93,0,388,57),(2297,142,0,388,167),(2298,97,0,389,1),(2299,134,0,389,2),(2300,115,0,389,1),(2301,99,0,389,1),(2302,93,0,389,50),(2303,142,0,389,168),(2304,97,0,390,1),(2305,134,0,390,2),(2306,115,0,390,1),(2307,99,0,390,1),(2308,93,0,390,53),(2309,142,0,390,168),(2310,97,0,391,1),(2311,134,0,391,2),(2312,115,0,391,1),(2313,99,0,391,1),(2314,93,0,391,57),(2315,142,0,391,168),(2316,97,0,392,1),(2317,134,0,392,2),(2318,115,0,392,1),(2319,99,0,392,1),(2320,93,0,392,50),(2321,142,0,392,169),(2322,97,0,393,1),(2323,134,0,393,2),(2324,115,0,393,1),(2325,99,0,393,1),(2326,93,0,393,53),(2327,142,0,393,169),(2328,97,0,394,1),(2329,134,0,394,2),(2330,115,0,394,1),(2331,99,0,394,1),(2332,93,0,394,57),(2333,142,0,394,169),(2334,97,0,395,1),(2335,134,0,395,2),(2336,115,0,395,1),(2337,99,0,395,1),(2338,93,0,395,50),(2339,142,0,395,170),(2340,97,0,396,1),(2341,134,0,396,2),(2342,115,0,396,1),(2343,99,0,396,1),(2344,93,0,396,53),(2345,142,0,396,170),(2346,97,0,397,1),(2347,134,0,397,2),(2348,115,0,397,1),(2349,99,0,397,1),(2350,93,0,397,57),(2351,142,0,397,170),(2352,97,0,398,1),(2353,134,0,398,2),(2354,115,0,398,1),(2355,99,0,398,4),(2356,143,0,398,1),(2357,144,0,398,0),(2358,145,0,398,1),(2359,146,0,398,0),(2360,147,0,398,0),(2361,97,0,399,1),(2362,134,0,399,2),(2363,115,0,399,1),(2364,99,0,399,1),(2365,93,0,399,49),(2366,142,0,399,166),(2367,97,0,400,1),(2368,134,0,400,2),(2369,115,0,400,1),(2370,99,0,400,1),(2371,93,0,400,53),(2372,142,0,400,166),(2373,97,0,401,1),(2374,134,0,401,2),(2375,115,0,401,1),(2376,99,0,401,1),(2377,93,0,401,58),(2378,142,0,401,166),(2379,97,0,402,1),(2380,134,0,402,2),(2381,115,0,402,1),(2382,99,0,402,1),(2383,93,0,402,49),(2384,142,0,402,167),(2385,97,0,403,1),(2386,134,0,403,2),(2387,115,0,403,1),(2388,99,0,403,1),(2389,93,0,403,53),(2390,142,0,403,167),(2391,97,0,404,1),(2392,134,0,404,2),(2393,115,0,404,1),(2394,99,0,404,1),(2395,93,0,404,58),(2396,142,0,404,167),(2397,97,0,405,1),(2398,134,0,405,2),(2399,115,0,405,1),(2400,99,0,405,1),(2401,93,0,405,49),(2402,142,0,405,168),(2403,97,0,406,1),(2404,134,0,406,2),(2405,115,0,406,1),(2406,99,0,406,1),(2407,93,0,406,53),(2408,142,0,406,168),(2409,97,0,407,1),(2410,134,0,407,2),(2411,115,0,407,1),(2412,99,0,407,1),(2413,93,0,407,58),(2414,142,0,407,168),(2415,97,0,408,1),(2416,134,0,408,2),(2417,115,0,408,1),(2418,99,0,408,1),(2419,93,0,408,49),(2420,142,0,408,169),(2421,97,0,409,1),(2422,134,0,409,2),(2423,115,0,409,1),(2424,99,0,409,1),(2425,93,0,409,53),(2426,142,0,409,169),(2427,97,0,410,1),(2428,134,0,410,2),(2429,115,0,410,1),(2430,99,0,410,1),(2431,93,0,410,58),(2432,142,0,410,169),(2433,97,0,411,1),(2434,134,0,411,2),(2435,115,0,411,1),(2436,99,0,411,1),(2437,93,0,411,49),(2438,142,0,411,170),(2439,97,0,412,1),(2440,134,0,412,2),(2441,115,0,412,1),(2442,99,0,412,1),(2443,93,0,412,53),(2444,142,0,412,170),(2445,97,0,413,1),(2446,134,0,413,2),(2447,115,0,413,1),(2448,99,0,413,1),(2449,93,0,413,58),(2450,142,0,413,170),(2451,97,0,414,1),(2452,134,0,414,2),(2453,115,0,414,1),(2454,99,0,414,4),(2455,143,0,414,0),(2456,144,0,414,0),(2457,145,0,414,0),(2458,146,0,414,1),(2459,147,0,414,0),(2460,97,0,415,1),(2461,134,0,415,2),(2462,115,0,415,1),(2463,99,0,415,1),(2464,93,0,415,49),(2465,142,0,415,166),(2466,97,0,416,1),(2467,134,0,416,2),(2468,115,0,416,1),(2469,99,0,416,1),(2470,93,0,416,50),(2471,142,0,416,166),(2472,97,0,417,1),(2473,134,0,417,2),(2474,115,0,417,1),(2475,99,0,417,1),(2476,93,0,417,56),(2477,142,0,417,166),(2478,97,0,418,1),(2479,134,0,418,2),(2480,115,0,418,1),(2481,99,0,418,1),(2482,93,0,418,49),(2483,142,0,418,167),(2484,97,0,419,1),(2485,134,0,419,2),(2486,115,0,419,1),(2487,99,0,419,1),(2488,93,0,419,50),(2489,142,0,419,167),(2490,97,0,420,1),(2491,134,0,420,2),(2492,115,0,420,1),(2493,99,0,420,1),(2494,93,0,420,56),(2495,142,0,420,167),(2496,97,0,421,1),(2497,134,0,421,2),(2498,115,0,421,1),(2499,99,0,421,1),(2500,93,0,421,49),(2501,142,0,421,168),(2502,97,0,422,1),(2503,134,0,422,2),(2504,115,0,422,1),(2505,99,0,422,1),(2506,93,0,422,50),(2507,142,0,422,168),(2508,97,0,423,1),(2509,134,0,423,2),(2510,115,0,423,1),(2511,99,0,423,1),(2512,93,0,423,56),(2513,142,0,423,168),(2514,97,0,424,1),(2515,134,0,424,2),(2516,115,0,424,1),(2517,99,0,424,1),(2518,93,0,424,49),(2519,142,0,424,169),(2520,97,0,425,1),(2521,134,0,425,2),(2522,115,0,425,1),(2523,99,0,425,1),(2524,93,0,425,50),(2525,142,0,425,169),(2526,97,0,426,1),(2527,134,0,426,2),(2528,115,0,426,1),(2529,99,0,426,1),(2530,93,0,426,56),(2531,142,0,426,169),(2532,97,0,427,1),(2533,134,0,427,2),(2534,115,0,427,1),(2535,99,0,427,1),(2536,93,0,427,49),(2537,142,0,427,170),(2538,97,0,428,1),(2539,134,0,428,2),(2540,115,0,428,1),(2541,99,0,428,1),(2542,93,0,428,50),(2543,142,0,428,170),(2544,97,0,429,1),(2545,134,0,429,2),(2546,115,0,429,1),(2547,99,0,429,1),(2548,93,0,429,56),(2549,142,0,429,170),(2550,97,0,430,1),(2551,134,0,430,2),(2552,115,0,430,1),(2553,99,0,430,4),(2554,143,0,430,0),(2555,144,0,430,0),(2556,145,0,430,0),(2557,146,0,430,0),(2558,147,0,430,0),(2559,97,0,431,1),(2560,134,0,431,2),(2561,115,0,431,1),(2562,99,0,431,1),(2563,93,0,431,49),(2564,142,0,431,166),(2565,97,0,432,1),(2566,134,0,432,2),(2567,115,0,432,1),(2568,99,0,432,1),(2569,93,0,432,56),(2570,142,0,432,166),(2571,97,0,433,1),(2572,134,0,433,2),(2573,115,0,433,1),(2574,99,0,433,1),(2575,93,0,433,58),(2576,142,0,433,166),(2577,97,0,434,1),(2578,134,0,434,2),(2579,115,0,434,1),(2580,99,0,434,1),(2581,93,0,434,49),(2582,142,0,434,167),(2583,97,0,435,1),(2584,134,0,435,2),(2585,115,0,435,1),(2586,99,0,435,1),(2587,93,0,435,56),(2588,142,0,435,167),(2589,97,0,436,1),(2590,134,0,436,2),(2591,115,0,436,1),(2592,99,0,436,1),(2593,93,0,436,58),(2594,142,0,436,167),(2595,97,0,437,1),(2596,134,0,437,2),(2597,115,0,437,1),(2598,99,0,437,1),(2599,93,0,437,49),(2600,142,0,437,168),(2601,97,0,438,1),(2602,134,0,438,2),(2603,115,0,438,1),(2604,99,0,438,1),(2605,93,0,438,56),(2606,142,0,438,168),(2607,97,0,439,1),(2608,134,0,439,2),(2609,115,0,439,1),(2610,99,0,439,1),(2611,93,0,439,58),(2612,142,0,439,168),(2613,97,0,440,1),(2614,134,0,440,2),(2615,115,0,440,1),(2616,99,0,440,1),(2617,93,0,440,49),(2618,142,0,440,169),(2619,97,0,441,1),(2620,134,0,441,2),(2621,115,0,441,1),(2622,99,0,441,1),(2623,93,0,441,56),(2624,142,0,441,169),(2625,97,0,442,1),(2626,134,0,442,2),(2627,115,0,442,1),(2628,99,0,442,1),(2629,93,0,442,58),(2630,142,0,442,169),(2631,97,0,443,1),(2632,134,0,443,2),(2633,115,0,443,1),(2634,99,0,443,1),(2635,93,0,443,49),(2636,142,0,443,170),(2637,97,0,444,1),(2638,134,0,444,2),(2639,115,0,444,1),(2640,99,0,444,1),(2641,93,0,444,56),(2642,142,0,444,170),(2643,97,0,445,1),(2644,134,0,445,2),(2645,115,0,445,1),(2646,99,0,445,1),(2647,93,0,445,58),(2648,142,0,445,170),(2649,97,0,446,1),(2650,134,0,446,2),(2651,115,0,446,1),(2652,99,0,446,4),(2653,143,0,446,0),(2654,144,0,446,1),(2655,145,0,446,0),(2656,146,0,446,1),(2657,147,0,446,0),(2658,97,0,447,1),(2659,134,0,447,2),(2660,115,0,447,1),(2661,99,0,447,1),(2662,93,0,447,49),(2663,142,0,447,166),(2664,97,0,448,1),(2665,134,0,448,2),(2666,115,0,448,1),(2667,99,0,448,1),(2668,93,0,448,50),(2669,142,0,448,166),(2670,97,0,449,1),(2671,134,0,449,2),(2672,115,0,449,1),(2673,99,0,449,1),(2674,93,0,449,57),(2675,142,0,449,166),(2676,97,0,450,1),(2677,134,0,450,2),(2678,115,0,450,1),(2679,99,0,450,1),(2680,93,0,450,49),(2681,142,0,450,167),(2682,97,0,451,1),(2683,134,0,451,2),(2684,115,0,451,1),(2685,99,0,451,1),(2686,93,0,451,50),(2687,142,0,451,167),(2688,97,0,452,1),(2689,134,0,452,2),(2690,115,0,452,1),(2691,99,0,452,1),(2692,93,0,452,57),(2693,142,0,452,167),(2694,97,0,453,1),(2695,134,0,453,2),(2696,115,0,453,1),(2697,99,0,453,1),(2698,93,0,453,49),(2699,142,0,453,168),(2700,97,0,454,1),(2701,134,0,454,2),(2702,115,0,454,1),(2703,99,0,454,1),(2704,93,0,454,50),(2705,142,0,454,168),(2706,97,0,455,1),(2707,134,0,455,2),(2708,115,0,455,1),(2709,99,0,455,1),(2710,93,0,455,57),(2711,142,0,455,168),(2712,97,0,456,1),(2713,134,0,456,2),(2714,115,0,456,1),(2715,99,0,456,1),(2716,93,0,456,49),(2717,142,0,456,169),(2718,97,0,457,1),(2719,134,0,457,2),(2720,115,0,457,1),(2721,99,0,457,1),(2722,93,0,457,50),(2723,142,0,457,169),(2724,97,0,458,1),(2725,134,0,458,2),(2726,115,0,458,1),(2727,99,0,458,1),(2728,93,0,458,57),(2729,142,0,458,169),(2730,97,0,459,1),(2731,134,0,459,2),(2732,115,0,459,1),(2733,99,0,459,1),(2734,93,0,459,49),(2735,142,0,459,170),(2736,97,0,460,1),(2737,134,0,460,2),(2738,115,0,460,1),(2739,99,0,460,1),(2740,93,0,460,50),(2741,142,0,460,170),(2742,97,0,461,1),(2743,134,0,461,2),(2744,115,0,461,1),(2745,99,0,461,1),(2746,93,0,461,57),(2747,142,0,461,170),(2748,97,0,462,1),(2749,134,0,462,2),(2750,115,0,462,1),(2751,99,0,462,4),(2752,143,0,462,1),(2753,144,0,462,1),(2754,145,0,462,0),(2755,146,0,462,0),(2756,147,0,462,0),(2757,97,0,463,1),(2758,134,0,463,2),(2759,115,0,463,1),(2760,99,0,463,1),(2761,93,0,463,49),(2762,142,0,463,166),(2763,97,0,464,1),(2764,134,0,464,2),(2765,115,0,464,1),(2766,99,0,464,1),(2767,93,0,464,50),(2768,142,0,464,166),(2769,97,0,465,1),(2770,134,0,465,2),(2771,115,0,465,1),(2772,99,0,465,1),(2773,93,0,465,58),(2774,142,0,465,166),(2775,97,0,466,1),(2776,134,0,466,2),(2777,115,0,466,1),(2778,99,0,466,1),(2779,93,0,466,49),(2780,142,0,466,167),(2781,97,0,467,1),(2782,134,0,467,2),(2783,115,0,467,1),(2784,99,0,467,1),(2785,93,0,467,50),(2786,142,0,467,167),(2787,97,0,468,1),(2788,134,0,468,2),(2789,115,0,468,1),(2790,99,0,468,1),(2791,93,0,468,58),(2792,142,0,468,167),(2793,97,0,469,1),(2794,134,0,469,2),(2795,115,0,469,1),(2796,99,0,469,1),(2797,93,0,469,49),(2798,142,0,469,168),(2799,97,0,470,1),(2800,134,0,470,2),(2801,115,0,470,1),(2802,99,0,470,1),(2803,93,0,470,50),(2804,142,0,470,168),(2805,97,0,471,1),(2806,134,0,471,2),(2807,115,0,471,1),(2808,99,0,471,1),(2809,93,0,471,58),(2810,142,0,471,168),(2811,97,0,472,1),(2812,134,0,472,2),(2813,115,0,472,1),(2814,99,0,472,1),(2815,93,0,472,49),(2816,142,0,472,169),(2817,97,0,473,1),(2818,134,0,473,2),(2819,115,0,473,1),(2820,99,0,473,1),(2821,93,0,473,50),(2822,142,0,473,169),(2823,97,0,474,1),(2824,134,0,474,2),(2825,115,0,474,1),(2826,99,0,474,1),(2827,93,0,474,58),(2828,142,0,474,169),(2829,97,0,475,1),(2830,134,0,475,2),(2831,115,0,475,1),(2832,99,0,475,1),(2833,93,0,475,49),(2834,142,0,475,170),(2835,97,0,476,1),(2836,134,0,476,2),(2837,115,0,476,1),(2838,99,0,476,1),(2839,93,0,476,50),(2840,142,0,476,170),(2841,97,0,477,1),(2842,134,0,477,2),(2843,115,0,477,1),(2844,99,0,477,1),(2845,93,0,477,58),(2846,142,0,477,170),(2847,97,0,478,1),(2848,134,0,478,2),(2849,115,0,478,1),(2850,99,0,478,4),(2851,143,0,478,0),(2852,144,0,478,0),(2853,145,0,478,1),(2854,146,0,478,0),(2855,147,0,478,0),(2856,97,0,479,1),(2857,134,0,479,2),(2858,115,0,479,1),(2859,99,0,479,1),(2860,93,0,479,50),(2861,142,0,479,166),(2862,97,0,480,1),(2863,134,0,480,2),(2864,115,0,480,1),(2865,99,0,480,1),(2866,93,0,480,53),(2867,142,0,480,166),(2868,97,0,481,1),(2869,134,0,481,2),(2870,115,0,481,1),(2871,99,0,481,1),(2872,93,0,481,60),(2873,142,0,481,166),(2874,97,0,482,1),(2875,134,0,482,2),(2876,115,0,482,1),(2877,99,0,482,1),(2878,93,0,482,50),(2879,142,0,482,167),(2880,97,0,483,1),(2881,134,0,483,2),(2882,115,0,483,1),(2883,99,0,483,1),(2884,93,0,483,53),(2885,142,0,483,167),(2886,97,0,484,1),(2887,134,0,484,2),(2888,115,0,484,1),(2889,99,0,484,1),(2890,93,0,484,60),(2891,142,0,484,167),(2892,97,0,485,1),(2893,134,0,485,2),(2894,115,0,485,1),(2895,99,0,485,1),(2896,93,0,485,50),(2897,142,0,485,168),(2898,97,0,486,1),(2899,134,0,486,2),(2900,115,0,486,1),(2901,99,0,486,1),(2902,93,0,486,53),(2903,142,0,486,168),(2904,97,0,487,1),(2905,134,0,487,2),(2906,115,0,487,1),(2907,99,0,487,1),(2908,93,0,487,60),(2909,142,0,487,168),(2910,97,0,488,1),(2911,134,0,488,2),(2912,115,0,488,1),(2913,99,0,488,1),(2914,93,0,488,50),(2915,142,0,488,169),(2916,97,0,489,1),(2917,134,0,489,2),(2918,115,0,489,1),(2919,99,0,489,1),(2920,93,0,489,53),(2921,142,0,489,169),(2922,97,0,490,1),(2923,134,0,490,2),(2924,115,0,490,1),(2925,99,0,490,1),(2926,93,0,490,60),(2927,142,0,490,169),(2928,97,0,491,1),(2929,134,0,491,2),(2930,115,0,491,1),(2931,99,0,491,1),(2932,93,0,491,50),(2933,142,0,491,170),(2934,97,0,492,1),(2935,134,0,492,2),(2936,115,0,492,1),(2937,99,0,492,1),(2938,93,0,492,53),(2939,142,0,492,170),(2940,97,0,493,1),(2941,134,0,493,2),(2942,115,0,493,1),(2943,99,0,493,1),(2944,93,0,493,60),(2945,142,0,493,170),(2946,97,0,494,1),(2947,134,0,494,2),(2948,115,0,494,1),(2949,99,0,494,4),(2950,143,0,494,0),(2951,144,0,494,1),(2952,145,0,494,0),(2953,146,0,494,0),(2954,147,0,494,1),(2955,97,0,495,1),(2956,134,0,495,2),(2957,115,0,495,1),(2958,99,0,495,1),(2959,93,0,495,49),(2960,142,0,495,166),(2961,97,0,496,1),(2962,134,0,496,2),(2963,115,0,496,1),(2964,99,0,496,1),(2965,93,0,496,50),(2966,142,0,496,166),(2967,97,0,497,1),(2968,134,0,497,2),(2969,115,0,497,1),(2970,99,0,497,1),(2971,93,0,497,58),(2972,142,0,497,166),(2973,97,0,498,1),(2974,134,0,498,2),(2975,115,0,498,1),(2976,99,0,498,1),(2977,93,0,498,49),(2978,142,0,498,167),(2979,97,0,499,1),(2980,134,0,499,2),(2981,115,0,499,1),(2982,99,0,499,1),(2983,93,0,499,50),(2984,142,0,499,167),(2985,97,0,500,1),(2986,134,0,500,2),(2987,115,0,500,1),(2988,99,0,500,1),(2989,93,0,500,58),(2990,142,0,500,167),(2991,97,0,501,1),(2992,134,0,501,2),(2993,115,0,501,1),(2994,99,0,501,1),(2995,93,0,501,49),(2996,142,0,501,168),(2997,97,0,502,1),(2998,134,0,502,2),(2999,115,0,502,1),(3000,99,0,502,1),(3001,93,0,502,50),(3002,142,0,502,168),(3003,97,0,503,1),(3004,134,0,503,2),(3005,115,0,503,1),(3006,99,0,503,1),(3007,93,0,503,58),(3008,142,0,503,168),(3009,97,0,504,1),(3010,134,0,504,2),(3011,115,0,504,1),(3012,99,0,504,1),(3013,93,0,504,49),(3014,142,0,504,169),(3015,97,0,505,1),(3016,134,0,505,2),(3017,115,0,505,1),(3018,99,0,505,1),(3019,93,0,505,50),(3020,142,0,505,169),(3021,97,0,506,1),(3022,134,0,506,2),(3023,115,0,506,1),(3024,99,0,506,1),(3025,93,0,506,58),(3026,142,0,506,169),(3027,97,0,507,1),(3028,134,0,507,2),(3029,115,0,507,1),(3030,99,0,507,1),(3031,93,0,507,49),(3032,142,0,507,170),(3033,97,0,508,1),(3034,134,0,508,2),(3035,115,0,508,1),(3036,99,0,508,1),(3037,93,0,508,50),(3038,142,0,508,170),(3039,97,0,509,1),(3040,134,0,509,2),(3041,115,0,509,1),(3042,99,0,509,1),(3043,93,0,509,58),(3044,142,0,509,170),(3045,97,0,510,1),(3046,134,0,510,2),(3047,115,0,510,1),(3048,99,0,510,4),(3049,143,0,510,0),(3050,144,0,510,0),(3051,145,0,510,0),(3052,146,0,510,1),(3053,147,0,510,0),(3054,97,0,511,1),(3055,134,0,511,2),(3056,115,0,511,1),(3057,99,0,511,1),(3058,93,0,511,52),(3059,142,0,511,166),(3060,97,0,512,1),(3061,134,0,512,2),(3062,115,0,512,1),(3063,99,0,512,1),(3064,93,0,512,53),(3065,142,0,512,166),(3066,97,0,513,1),(3067,134,0,513,2),(3068,115,0,513,1),(3069,99,0,513,1),(3070,93,0,513,56),(3071,142,0,513,166),(3072,97,0,514,1),(3073,134,0,514,2),(3074,115,0,514,1),(3075,99,0,514,1),(3076,93,0,514,52),(3077,142,0,514,167),(3078,97,0,515,1),(3079,134,0,515,2),(3080,115,0,515,1),(3081,99,0,515,1),(3082,93,0,515,53),(3083,142,0,515,167),(3084,97,0,516,1),(3085,134,0,516,2),(3086,115,0,516,1),(3087,99,0,516,1),(3088,93,0,516,56),(3089,142,0,516,167),(3090,97,0,517,1),(3091,134,0,517,2),(3092,115,0,517,1),(3093,99,0,517,1),(3094,93,0,517,52),(3095,142,0,517,168),(3096,97,0,518,1),(3097,134,0,518,2),(3098,115,0,518,1),(3099,99,0,518,1),(3100,93,0,518,53),(3101,142,0,518,168),(3102,97,0,519,1),(3103,134,0,519,2),(3104,115,0,519,1),(3105,99,0,519,1),(3106,93,0,519,56),(3107,142,0,519,168),(3108,97,0,520,1),(3109,134,0,520,2),(3110,115,0,520,1),(3111,99,0,520,1),(3112,93,0,520,52),(3113,142,0,520,169),(3114,97,0,521,1),(3115,134,0,521,2),(3116,115,0,521,1),(3117,99,0,521,1),(3118,93,0,521,53),(3119,142,0,521,169),(3120,97,0,522,1),(3121,134,0,522,2),(3122,115,0,522,1),(3123,99,0,522,1),(3124,93,0,522,56),(3125,142,0,522,169),(3126,97,0,523,1),(3127,134,0,523,2),(3128,115,0,523,1),(3129,99,0,523,1),(3130,93,0,523,52),(3131,142,0,523,170),(3132,97,0,524,1),(3133,134,0,524,2),(3134,115,0,524,1),(3135,99,0,524,1),(3136,93,0,524,53),(3137,142,0,524,170),(3138,97,0,525,1),(3139,134,0,525,2),(3140,115,0,525,1),(3141,99,0,525,1),(3142,93,0,525,56),(3143,142,0,525,170),(3144,97,0,526,1),(3145,134,0,526,2),(3146,115,0,526,1),(3147,99,0,526,4),(3148,143,0,526,0),(3149,144,0,526,1),(3150,145,0,526,1),(3151,146,0,526,0),(3152,147,0,526,0),(3153,97,0,527,1),(3154,134,0,527,2),(3155,115,0,527,1),(3156,99,0,527,1),(3157,93,0,527,50),(3158,142,0,527,166),(3159,97,0,528,1),(3160,134,0,528,2),(3161,115,0,528,1),(3162,99,0,528,1),(3163,93,0,528,53),(3164,142,0,528,166),(3165,97,0,529,1),(3166,134,0,529,2),(3167,115,0,529,1),(3168,99,0,529,1),(3169,93,0,529,60),(3170,142,0,529,166),(3171,97,0,530,1),(3172,134,0,530,2),(3173,115,0,530,1),(3174,99,0,530,1),(3175,93,0,530,50),(3176,142,0,530,167),(3177,97,0,531,1),(3178,134,0,531,2),(3179,115,0,531,1),(3180,99,0,531,1),(3181,93,0,531,53),(3182,142,0,531,167),(3183,97,0,532,1),(3184,134,0,532,2),(3185,115,0,532,1),(3186,99,0,532,1),(3187,93,0,532,60),(3188,142,0,532,167),(3189,97,0,533,1),(3190,134,0,533,2),(3191,115,0,533,1),(3192,99,0,533,1),(3193,93,0,533,50),(3194,142,0,533,168),(3195,97,0,534,1),(3196,134,0,534,2),(3197,115,0,534,1),(3198,99,0,534,1),(3199,93,0,534,53),(3200,142,0,534,168),(3201,97,0,535,1),(3202,134,0,535,2),(3203,115,0,535,1),(3204,99,0,535,1),(3205,93,0,535,60),(3206,142,0,535,168),(3207,97,0,536,1),(3208,134,0,536,2),(3209,115,0,536,1),(3210,99,0,536,1),(3211,93,0,536,50),(3212,142,0,536,169),(3213,97,0,537,1),(3214,134,0,537,2),(3215,115,0,537,1),(3216,99,0,537,1),(3217,93,0,537,53),(3218,142,0,537,169),(3219,97,0,538,1),(3220,134,0,538,2),(3221,115,0,538,1),(3222,99,0,538,1),(3223,93,0,538,60),(3224,142,0,538,169),(3225,97,0,539,1),(3226,134,0,539,2),(3227,115,0,539,1),(3228,99,0,539,1),(3229,93,0,539,50),(3230,142,0,539,170),(3231,97,0,540,1),(3232,134,0,540,2),(3233,115,0,540,1),(3234,99,0,540,1),(3235,93,0,540,53),(3236,142,0,540,170),(3237,97,0,541,1),(3238,134,0,541,2),(3239,115,0,541,1),(3240,99,0,541,1),(3241,93,0,541,60),(3242,142,0,541,170),(3243,97,0,542,1),(3244,134,0,542,2),(3245,115,0,542,1),(3246,99,0,542,4),(3247,143,0,542,0),(3248,144,0,542,0),(3249,145,0,542,0),(3250,146,0,542,1),(3251,147,0,542,0),(3252,97,0,543,1),(3253,134,0,543,2),(3254,115,0,543,1),(3255,99,0,543,1),(3256,93,0,543,49),(3257,142,0,543,166),(3258,97,0,544,1),(3259,134,0,544,2),(3260,115,0,544,1),(3261,99,0,544,1),(3262,93,0,544,51),(3263,142,0,544,166),(3264,97,0,545,1),(3265,134,0,545,2),(3266,115,0,545,1),(3267,99,0,545,1),(3268,93,0,545,60),(3269,142,0,545,166),(3270,97,0,546,1),(3271,134,0,546,2),(3272,115,0,546,1),(3273,99,0,546,1),(3274,93,0,546,49),(3275,142,0,546,167),(3276,97,0,547,1),(3277,134,0,547,2),(3278,115,0,547,1),(3279,99,0,547,1),(3280,93,0,547,51),(3281,142,0,547,167),(3282,97,0,548,1),(3283,134,0,548,2),(3284,115,0,548,1),(3285,99,0,548,1),(3286,93,0,548,60),(3287,142,0,548,167),(3288,97,0,549,1),(3289,134,0,549,2),(3290,115,0,549,1),(3291,99,0,549,1),(3292,93,0,549,49),(3293,142,0,549,168),(3294,97,0,550,1),(3295,134,0,550,2),(3296,115,0,550,1),(3297,99,0,550,1),(3298,93,0,550,51),(3299,142,0,550,168),(3300,97,0,551,1),(3301,134,0,551,2),(3302,115,0,551,1),(3303,99,0,551,1),(3304,93,0,551,60),(3305,142,0,551,168),(3306,97,0,552,1),(3307,134,0,552,2),(3308,115,0,552,1),(3309,99,0,552,1),(3310,93,0,552,49),(3311,142,0,552,169),(3312,97,0,553,1),(3313,134,0,553,2),(3314,115,0,553,1),(3315,99,0,553,1),(3316,93,0,553,51),(3317,142,0,553,169),(3318,97,0,554,1),(3319,134,0,554,2),(3320,115,0,554,1),(3321,99,0,554,1),(3322,93,0,554,60),(3323,142,0,554,169),(3324,97,0,555,1),(3325,134,0,555,2),(3326,115,0,555,1),(3327,99,0,555,1),(3328,93,0,555,49),(3329,142,0,555,170),(3330,97,0,556,1),(3331,134,0,556,2),(3332,115,0,556,1),(3333,99,0,556,1),(3334,93,0,556,51),(3335,142,0,556,170),(3336,97,0,557,1),(3337,134,0,557,2),(3338,115,0,557,1),(3339,99,0,557,1),(3340,93,0,557,60),(3341,142,0,557,170),(3342,97,0,558,1),(3343,134,0,558,2),(3344,115,0,558,1),(3345,99,0,558,4),(3346,143,0,558,0),(3347,144,0,558,0),(3348,145,0,558,0),(3349,146,0,558,0),(3350,147,0,558,0),(3351,97,0,559,1),(3352,134,0,559,2),(3353,115,0,559,1),(3354,99,0,559,1),(3355,93,0,559,49),(3356,142,0,559,166),(3357,97,0,560,1),(3358,134,0,560,2),(3359,115,0,560,1),(3360,99,0,560,1),(3361,93,0,560,50),(3362,142,0,560,166),(3363,97,0,561,1),(3364,134,0,561,2),(3365,115,0,561,1),(3366,99,0,561,1),(3367,93,0,561,52),(3368,142,0,561,166),(3369,97,0,562,1),(3370,134,0,562,2),(3371,115,0,562,1),(3372,99,0,562,1),(3373,93,0,562,49),(3374,142,0,562,167),(3375,97,0,563,1),(3376,134,0,563,2),(3377,115,0,563,1),(3378,99,0,563,1),(3379,93,0,563,50),(3380,142,0,563,167),(3381,97,0,564,1),(3382,134,0,564,2),(3383,115,0,564,1),(3384,99,0,564,1),(3385,93,0,564,52),(3386,142,0,564,167),(3387,97,0,565,1),(3388,134,0,565,2),(3389,115,0,565,1),(3390,99,0,565,1),(3391,93,0,565,49),(3392,142,0,565,168),(3393,97,0,566,1),(3394,134,0,566,2),(3395,115,0,566,1),(3396,99,0,566,1),(3397,93,0,566,50),(3398,142,0,566,168),(3399,97,0,567,1),(3400,134,0,567,2),(3401,115,0,567,1),(3402,99,0,567,1),(3403,93,0,567,52),(3404,142,0,567,168),(3405,97,0,568,1),(3406,134,0,568,2),(3407,115,0,568,1),(3408,99,0,568,1),(3409,93,0,568,49),(3410,142,0,568,169),(3411,97,0,569,1),(3412,134,0,569,2),(3413,115,0,569,1),(3414,99,0,569,1),(3415,93,0,569,50),(3416,142,0,569,169),(3417,97,0,570,1),(3418,134,0,570,2),(3419,115,0,570,1),(3420,99,0,570,1),(3421,93,0,570,52),(3422,142,0,570,169),(3423,97,0,571,1),(3424,134,0,571,2),(3425,115,0,571,1),(3426,99,0,571,1),(3427,93,0,571,49),(3428,142,0,571,170),(3429,97,0,572,1),(3430,134,0,572,2),(3431,115,0,572,1),(3432,99,0,572,1),(3433,93,0,572,50),(3434,142,0,572,170),(3435,97,0,573,1),(3436,134,0,573,2),(3437,115,0,573,1),(3438,99,0,573,1),(3439,93,0,573,52),(3440,142,0,573,170),(3441,97,0,574,1),(3442,134,0,574,2),(3443,115,0,574,1),(3444,99,0,574,4),(3445,143,0,574,0),(3446,144,0,574,0),(3447,145,0,574,0),(3448,146,0,574,0),(3449,147,0,574,1),(3450,97,0,575,1),(3451,134,0,575,2),(3452,115,0,575,1),(3453,99,0,575,1),(3454,93,0,575,49),(3455,142,0,575,166),(3456,97,0,576,1),(3457,134,0,576,2),(3458,115,0,576,1),(3459,99,0,576,1),(3460,93,0,576,50),(3461,142,0,576,166),(3462,97,0,577,1),(3463,134,0,577,2),(3464,115,0,577,1),(3465,99,0,577,1),(3466,93,0,577,58),(3467,142,0,577,166),(3468,97,0,578,1),(3469,134,0,578,2),(3470,115,0,578,1),(3471,99,0,578,1),(3472,93,0,578,49),(3473,142,0,578,167),(3474,97,0,579,1),(3475,134,0,579,2),(3476,115,0,579,1),(3477,99,0,579,1),(3478,93,0,579,50),(3479,142,0,579,167),(3480,97,0,580,1),(3481,134,0,580,2),(3482,115,0,580,1),(3483,99,0,580,1),(3484,93,0,580,58),(3485,142,0,580,167),(3486,97,0,581,1),(3487,134,0,581,2),(3488,115,0,581,1),(3489,99,0,581,1),(3490,93,0,581,49),(3491,142,0,581,168),(3492,97,0,582,1),(3493,134,0,582,2),(3494,115,0,582,1),(3495,99,0,582,1),(3496,93,0,582,50),(3497,142,0,582,168),(3498,97,0,583,1),(3499,134,0,583,2),(3500,115,0,583,1),(3501,99,0,583,1),(3502,93,0,583,58),(3503,142,0,583,168),(3504,97,0,584,1),(3505,134,0,584,2),(3506,115,0,584,1),(3507,99,0,584,1),(3508,93,0,584,49),(3509,142,0,584,169),(3510,97,0,585,1),(3511,134,0,585,2),(3512,115,0,585,1),(3513,99,0,585,1),(3514,93,0,585,50),(3515,142,0,585,169),(3516,97,0,586,1),(3517,134,0,586,2),(3518,115,0,586,1),(3519,99,0,586,1),(3520,93,0,586,58),(3521,142,0,586,169),(3522,97,0,587,1),(3523,134,0,587,2),(3524,115,0,587,1),(3525,99,0,587,1),(3526,93,0,587,49),(3527,142,0,587,170),(3528,97,0,588,1),(3529,134,0,588,2),(3530,115,0,588,1),(3531,99,0,588,1),(3532,93,0,588,50),(3533,142,0,588,170),(3534,97,0,589,1),(3535,134,0,589,2),(3536,115,0,589,1),(3537,99,0,589,1),(3538,93,0,589,58),(3539,142,0,589,170),(3540,97,0,590,1),(3541,134,0,590,2),(3542,115,0,590,1),(3543,99,0,590,4),(3544,143,0,590,0),(3545,144,0,590,0),(3546,145,0,590,0),(3547,146,0,590,0),(3548,147,0,590,0),(3549,97,0,591,1),(3550,134,0,591,2),(3551,115,0,591,1),(3552,99,0,591,1),(3553,93,0,591,49),(3554,142,0,591,166),(3555,97,0,592,1),(3556,134,0,592,2),(3557,115,0,592,1),(3558,99,0,592,1),(3559,93,0,592,53),(3560,142,0,592,166),(3561,97,0,593,1),(3562,134,0,593,2),(3563,115,0,593,1),(3564,99,0,593,1),(3565,93,0,593,59),(3566,142,0,593,166),(3567,97,0,594,1),(3568,134,0,594,2),(3569,115,0,594,1),(3570,99,0,594,1),(3571,93,0,594,49),(3572,142,0,594,167),(3573,97,0,595,1),(3574,134,0,595,2),(3575,115,0,595,1),(3576,99,0,595,1),(3577,93,0,595,53),(3578,142,0,595,167),(3579,97,0,596,1),(3580,134,0,596,2),(3581,115,0,596,1),(3582,99,0,596,1),(3583,93,0,596,59),(3584,142,0,596,167),(3585,97,0,597,1),(3586,134,0,597,2),(3587,115,0,597,1),(3588,99,0,597,1),(3589,93,0,597,49),(3590,142,0,597,168),(3591,97,0,598,1),(3592,134,0,598,2),(3593,115,0,598,1),(3594,99,0,598,1),(3595,93,0,598,53),(3596,142,0,598,168),(3597,97,0,599,1),(3598,134,0,599,2),(3599,115,0,599,1),(3600,99,0,599,1),(3601,93,0,599,59),(3602,142,0,599,168),(3603,97,0,600,1),(3604,134,0,600,2),(3605,115,0,600,1),(3606,99,0,600,1),(3607,93,0,600,49),(3608,142,0,600,169),(3609,97,0,601,1),(3610,134,0,601,2),(3611,115,0,601,1),(3612,99,0,601,1),(3613,93,0,601,53),(3614,142,0,601,169),(3615,97,0,602,1),(3616,134,0,602,2),(3617,115,0,602,1),(3618,99,0,602,1),(3619,93,0,602,59),(3620,142,0,602,169),(3621,97,0,603,1),(3622,134,0,603,2),(3623,115,0,603,1),(3624,99,0,603,1),(3625,93,0,603,49),(3626,142,0,603,170),(3627,97,0,604,1),(3628,134,0,604,2),(3629,115,0,604,1),(3630,99,0,604,1),(3631,93,0,604,53),(3632,142,0,604,170),(3633,97,0,605,1),(3634,134,0,605,2),(3635,115,0,605,1),(3636,99,0,605,1),(3637,93,0,605,59),(3638,142,0,605,170),(3639,97,0,606,1),(3640,134,0,606,2),(3641,115,0,606,1),(3642,99,0,606,4),(3643,143,0,606,0),(3644,144,0,606,0),(3645,145,0,606,0),(3646,146,0,606,0),(3647,147,0,606,0),(3648,97,0,607,1),(3649,134,0,607,2),(3650,115,0,607,1),(3651,99,0,607,1),(3652,93,0,607,49),(3653,142,0,607,166),(3654,97,0,608,1),(3655,134,0,608,2),(3656,115,0,608,1),(3657,99,0,608,1),(3658,93,0,608,50),(3659,142,0,608,166),(3660,97,0,609,1),(3661,134,0,609,2),(3662,115,0,609,1),(3663,99,0,609,1),(3664,93,0,609,58),(3665,142,0,609,166),(3666,97,0,610,1),(3667,134,0,610,2),(3668,115,0,610,1),(3669,99,0,610,1),(3670,93,0,610,49),(3671,142,0,610,167),(3672,97,0,611,1),(3673,134,0,611,2),(3674,115,0,611,1),(3675,99,0,611,1),(3676,93,0,611,50),(3677,142,0,611,167),(3678,97,0,612,1),(3679,134,0,612,2),(3680,115,0,612,1),(3681,99,0,612,1),(3682,93,0,612,58),(3683,142,0,612,167),(3684,97,0,613,1),(3685,134,0,613,2),(3686,115,0,613,1),(3687,99,0,613,1),(3688,93,0,613,49),(3689,142,0,613,168),(3690,97,0,614,1),(3691,134,0,614,2),(3692,115,0,614,1),(3693,99,0,614,1),(3694,93,0,614,50),(3695,142,0,614,168),(3696,97,0,615,1),(3697,134,0,615,2),(3698,115,0,615,1),(3699,99,0,615,1),(3700,93,0,615,58),(3701,142,0,615,168),(3702,97,0,616,1),(3703,134,0,616,2),(3704,115,0,616,1),(3705,99,0,616,1),(3706,93,0,616,49),(3707,142,0,616,169),(3708,97,0,617,1),(3709,134,0,617,2),(3710,115,0,617,1),(3711,99,0,617,1),(3712,93,0,617,50),(3713,142,0,617,169),(3714,97,0,618,1),(3715,134,0,618,2),(3716,115,0,618,1),(3717,99,0,618,1),(3718,93,0,618,58),(3719,142,0,618,169),(3720,97,0,619,1),(3721,134,0,619,2),(3722,115,0,619,1),(3723,99,0,619,1),(3724,93,0,619,49),(3725,142,0,619,170),(3726,97,0,620,1),(3727,134,0,620,2),(3728,115,0,620,1),(3729,99,0,620,1),(3730,93,0,620,50),(3731,142,0,620,170),(3732,97,0,621,1),(3733,134,0,621,2),(3734,115,0,621,1),(3735,99,0,621,1),(3736,93,0,621,58),(3737,142,0,621,170),(3738,97,0,622,1),(3739,134,0,622,2),(3740,115,0,622,1),(3741,99,0,622,4),(3742,143,0,622,0),(3743,144,0,622,0),(3744,145,0,622,1),(3745,146,0,622,1),(3746,147,0,622,0),(3747,97,0,623,1),(3748,134,0,623,2),(3749,115,0,623,1),(3750,99,0,623,1),(3751,93,0,623,52),(3752,142,0,623,166),(3753,97,0,624,1),(3754,134,0,624,2),(3755,115,0,624,1),(3756,99,0,624,1),(3757,93,0,624,56),(3758,142,0,624,166),(3759,97,0,625,1),(3760,134,0,625,2),(3761,115,0,625,1),(3762,99,0,625,1),(3763,93,0,625,58),(3764,142,0,625,166),(3765,97,0,626,1),(3766,134,0,626,2),(3767,115,0,626,1),(3768,99,0,626,1),(3769,93,0,626,52),(3770,142,0,626,167),(3771,97,0,627,1),(3772,134,0,627,2),(3773,115,0,627,1),(3774,99,0,627,1),(3775,93,0,627,56),(3776,142,0,627,167),(3777,97,0,628,1),(3778,134,0,628,2),(3779,115,0,628,1),(3780,99,0,628,1),(3781,93,0,628,58),(3782,142,0,628,167),(3783,97,0,629,1),(3784,134,0,629,2),(3785,115,0,629,1),(3786,99,0,629,1),(3787,93,0,629,52),(3788,142,0,629,168),(3789,97,0,630,1),(3790,134,0,630,2),(3791,115,0,630,1),(3792,99,0,630,1),(3793,93,0,630,56),(3794,142,0,630,168),(3795,97,0,631,1),(3796,134,0,631,2),(3797,115,0,631,1),(3798,99,0,631,1),(3799,93,0,631,58),(3800,142,0,631,168),(3801,97,0,632,1),(3802,134,0,632,2),(3803,115,0,632,1),(3804,99,0,632,1),(3805,93,0,632,52),(3806,142,0,632,169),(3807,97,0,633,1),(3808,134,0,633,2),(3809,115,0,633,1),(3810,99,0,633,1),(3811,93,0,633,56),(3812,142,0,633,169),(3813,97,0,634,1),(3814,134,0,634,2),(3815,115,0,634,1),(3816,99,0,634,1),(3817,93,0,634,58),(3818,142,0,634,169),(3819,97,0,635,1),(3820,134,0,635,2),(3821,115,0,635,1),(3822,99,0,635,1),(3823,93,0,635,52),(3824,142,0,635,170),(3825,97,0,636,1),(3826,134,0,636,2),(3827,115,0,636,1),(3828,99,0,636,1),(3829,93,0,636,56),(3830,142,0,636,170),(3831,97,0,637,1),(3832,134,0,637,2),(3833,115,0,637,1),(3834,99,0,637,1),(3835,93,0,637,58),(3836,142,0,637,170),(3837,97,0,638,1),(3838,134,0,638,2),(3839,115,0,638,1),(3840,99,0,638,4),(3841,143,0,638,0),(3842,144,0,638,0),(3843,145,0,638,0),(3844,146,0,638,0),(3845,147,0,638,0),(3846,97,0,639,1),(3847,134,0,639,2),(3848,115,0,639,1),(3849,99,0,639,1),(3850,93,0,639,52),(3851,142,0,639,166),(3852,97,0,640,1),(3853,134,0,640,2),(3854,115,0,640,1),(3855,99,0,640,1),(3856,93,0,640,58),(3857,142,0,640,166),(3858,97,0,641,1),(3859,134,0,641,2),(3860,115,0,641,1),(3861,99,0,641,1),(3862,93,0,641,59),(3863,142,0,641,166),(3864,97,0,642,1),(3865,134,0,642,2),(3866,115,0,642,1),(3867,99,0,642,1),(3868,93,0,642,52),(3869,142,0,642,167),(3870,97,0,643,1),(3871,134,0,643,2),(3872,115,0,643,1),(3873,99,0,643,1),(3874,93,0,643,58),(3875,142,0,643,167),(3876,97,0,644,1),(3877,134,0,644,2),(3878,115,0,644,1),(3879,99,0,644,1),(3880,93,0,644,59),(3881,142,0,644,167),(3882,97,0,645,1),(3883,134,0,645,2),(3884,115,0,645,1),(3885,99,0,645,1),(3886,93,0,645,52),(3887,142,0,645,168),(3888,97,0,646,1),(3889,134,0,646,2),(3890,115,0,646,1),(3891,99,0,646,1),(3892,93,0,646,58),(3893,142,0,646,168),(3894,97,0,647,1),(3895,134,0,647,2),(3896,115,0,647,1),(3897,99,0,647,1),(3898,93,0,647,59),(3899,142,0,647,168),(3900,97,0,648,1),(3901,134,0,648,2),(3902,115,0,648,1),(3903,99,0,648,1),(3904,93,0,648,52),(3905,142,0,648,169),(3906,97,0,649,1),(3907,134,0,649,2),(3908,115,0,649,1),(3909,99,0,649,1),(3910,93,0,649,58),(3911,142,0,649,169),(3912,97,0,650,1),(3913,134,0,650,2),(3914,115,0,650,1),(3915,99,0,650,1),(3916,93,0,650,59),(3917,142,0,650,169),(3918,97,0,651,1),(3919,134,0,651,2),(3920,115,0,651,1),(3921,99,0,651,1),(3922,93,0,651,52),(3923,142,0,651,170),(3924,97,0,652,1),(3925,134,0,652,2),(3926,115,0,652,1),(3927,99,0,652,1),(3928,93,0,652,58),(3929,142,0,652,170),(3930,97,0,653,1),(3931,134,0,653,2),(3932,115,0,653,1),(3933,99,0,653,1),(3934,93,0,653,59),(3935,142,0,653,170),(3936,97,0,654,1),(3937,134,0,654,2),(3938,115,0,654,1),(3939,99,0,654,4),(3940,143,0,654,0),(3941,144,0,654,0),(3942,145,0,654,0),(3943,146,0,654,0),(3944,147,0,654,0),(3945,97,0,655,1),(3946,134,0,655,2),(3947,115,0,655,1),(3948,99,0,655,1),(3949,93,0,655,50),(3950,142,0,655,166),(3951,97,0,656,1),(3952,134,0,656,2),(3953,115,0,656,1),(3954,99,0,656,1),(3955,93,0,656,58),(3956,142,0,656,166),(3957,97,0,657,1),(3958,134,0,657,2),(3959,115,0,657,1),(3960,99,0,657,1),(3961,93,0,657,60),(3962,142,0,657,166),(3963,97,0,658,1),(3964,134,0,658,2),(3965,115,0,658,1),(3966,99,0,658,1),(3967,93,0,658,50),(3968,142,0,658,167),(3969,97,0,659,1),(3970,134,0,659,2),(3971,115,0,659,1),(3972,99,0,659,1),(3973,93,0,659,58),(3974,142,0,659,167),(3975,97,0,660,1),(3976,134,0,660,2),(3977,115,0,660,1),(3978,99,0,660,1),(3979,93,0,660,60),(3980,142,0,660,167),(3981,97,0,661,1),(3982,134,0,661,2),(3983,115,0,661,1),(3984,99,0,661,1),(3985,93,0,661,50),(3986,142,0,661,168),(3987,97,0,662,1),(3988,134,0,662,2),(3989,115,0,662,1),(3990,99,0,662,1),(3991,93,0,662,58),(3992,142,0,662,168),(3993,97,0,663,1),(3994,134,0,663,2),(3995,115,0,663,1),(3996,99,0,663,1),(3997,93,0,663,60),(3998,142,0,663,168),(3999,97,0,664,1),(4000,134,0,664,2),(4001,115,0,664,1),(4002,99,0,664,1),(4003,93,0,664,50),(4004,142,0,664,169),(4005,97,0,665,1),(4006,134,0,665,2),(4007,115,0,665,1),(4008,99,0,665,1),(4009,93,0,665,58),(4010,142,0,665,169),(4011,97,0,666,1),(4012,134,0,666,2),(4013,115,0,666,1),(4014,99,0,666,1),(4015,93,0,666,60),(4016,142,0,666,169),(4017,97,0,667,1),(4018,134,0,667,2),(4019,115,0,667,1),(4020,99,0,667,1),(4021,93,0,667,50),(4022,142,0,667,170),(4023,97,0,668,1),(4024,134,0,668,2),(4025,115,0,668,1),(4026,99,0,668,1),(4027,93,0,668,58),(4028,142,0,668,170),(4029,97,0,669,1),(4030,134,0,669,2),(4031,115,0,669,1),(4032,99,0,669,1),(4033,93,0,669,60),(4034,142,0,669,170),(4035,97,0,670,1),(4036,134,0,670,2),(4037,115,0,670,1),(4038,99,0,670,4),(4039,143,0,670,0),(4040,144,0,670,0),(4041,145,0,670,0),(4042,146,0,670,0),(4043,147,0,670,0),(4044,97,0,671,1),(4045,134,0,671,2),(4046,115,0,671,1),(4047,99,0,671,1),(4048,93,0,671,50),(4049,142,0,671,166),(4050,97,0,672,1),(4051,134,0,672,2),(4052,115,0,672,1),(4053,99,0,672,1),(4054,93,0,672,50),(4055,142,0,672,167),(4056,97,0,673,1),(4057,134,0,673,2),(4058,115,0,673,1),(4059,99,0,673,1),(4060,93,0,673,50),(4061,142,0,673,168),(4062,97,0,674,1),(4063,134,0,674,2),(4064,115,0,674,1),(4065,99,0,674,1),(4066,93,0,674,50),(4067,142,0,674,169),(4068,97,0,675,1),(4069,134,0,675,2),(4070,115,0,675,1),(4071,99,0,675,1),(4072,93,0,675,50),(4073,142,0,675,170),(4074,97,0,676,1),(4075,134,0,676,2),(4076,115,0,676,1),(4077,99,0,676,4),(4078,143,0,676,0),(4079,144,0,676,1),(4080,145,0,676,1),(4081,146,0,676,1),(4082,147,0,676,0),(4083,97,0,677,1),(4084,134,0,677,2),(4085,115,0,677,1),(4086,99,0,677,1),(4087,93,0,677,50),(4088,142,0,677,166),(4089,97,0,678,1),(4090,134,0,678,2),(4091,115,0,678,1),(4092,99,0,678,1),(4093,93,0,678,50),(4094,142,0,678,167),(4095,97,0,679,1),(4096,134,0,679,2),(4097,115,0,679,1),(4098,99,0,679,1),(4099,93,0,679,50),(4100,142,0,679,168),(4101,97,0,680,1),(4102,134,0,680,2),(4103,115,0,680,1),(4104,99,0,680,1),(4105,93,0,680,50),(4106,142,0,680,169),(4107,97,0,681,1),(4108,134,0,681,2),(4109,115,0,681,1),(4110,99,0,681,1),(4111,93,0,681,50),(4112,142,0,681,170),(4113,97,0,682,1),(4114,134,0,682,2),(4115,115,0,682,1),(4116,99,0,682,4),(4117,143,0,682,0),(4118,144,0,682,1),(4119,145,0,682,0),(4120,146,0,682,0),(4121,147,0,682,0),(4122,97,0,683,1),(4123,134,0,683,2),(4124,115,0,683,1),(4125,99,0,683,1),(4126,93,0,683,49),(4127,142,0,683,166),(4128,97,0,684,1),(4129,134,0,684,2),(4130,115,0,684,1),(4131,99,0,684,1),(4132,93,0,684,49),(4133,142,0,684,167),(4134,97,0,685,1),(4135,134,0,685,2),(4136,115,0,685,1),(4137,99,0,685,1),(4138,93,0,685,49),(4139,
Showing 512.00 KB of 10.93 MB. Use Edit/Download for full content.

Directory Contents

Dirs: 6 × Files: 28

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2025-10-28 21:02:43
Edit Download
php53 DIR
- drwxr-xr-x 2025-10-28 21:02:44
Edit Download
php56 DIR
- drwxr-xr-x 2025-10-28 21:02:44
Edit Download
php71 DIR
- drwxr-xr-x 2025-10-28 21:02:43
Edit Download
php81 DIR
- drwxr-xr-x 2025-10-28 21:02:43
Edit Download
php82 DIR
- drwxr-xr-x 2025-10-28 21:02:43
Edit Download
6.82 KB lrw-r--r-- 2025-10-28 12:12:08
Edit Download
13.69 KB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
131.49 KB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
4.37 KB lrw-r--r-- 2025-10-28 12:12:08
Edit Download
433 B lrw-r--r-- 2024-08-29 11:56:30
Edit Download
2.04 KB lrw-r--r-- 2024-08-29 11:56:30
Edit Download
323 B lrw-r--r-- 2024-08-29 11:56:30
Edit Download
6.83 KB lrw-r--r-- 2025-10-28 12:12:08
Edit Download
4.59 KB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
2.02 KB lrw-r--r-- 2024-08-29 11:56:30
Edit Download
16.29 KB lrw-r--r-- 2025-10-28 12:12:08
Edit Download
1.55 KB lrw-r--r-- 2025-04-29 11:50:26
Edit Download
763.70 KB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
37.71 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
2.50 KB lrw-r--r-- 2025-10-28 12:12:08
Edit Download
3.48 KB lrw-r--r-- 2025-06-20 12:32:06
Edit Download
4.29 KB lrw-r--r-- 2024-08-29 11:56:30
Edit Download
2.54 KB lrw-r--r-- 2025-10-28 12:12:08
Edit Download
195.30 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
10.93 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
52.92 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
73.22 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
80.44 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
19.94 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
72.88 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
3.40 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
20.01 MB lrw-r--r-- 2025-10-28 10:20:36
Edit Download
14.49 KB lrw-r--r-- 2025-10-28 10:20:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).