Your IP : 216.73.216.189


Current Path : /var/www/magento.test.indacotrentino.com/www/scripts/dump/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/scripts/dump/20220919-local-magento.sql

-- MySQL dump 10.13  Distrib 8.0.30, for macos12.4 (x86_64)
--
-- Host: 127.0.0.1    Database: magento
-- ------------------------------------------------------
-- Server version	5.5.5-10.4.25-MariaDB-1:10.4.25+maria~focal

/*!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 `admin_adobe_ims_webapi`
--

DROP TABLE IF EXISTS `admin_adobe_ims_webapi`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_adobe_ims_webapi` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Admin User Id',
  `access_token_hash` varchar(255) DEFAULT NULL COMMENT 'Access Token Hash',
  `access_token` text DEFAULT NULL 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 `ADMIN_ADOBE_IMS_WEBAPI_ACCESS_TOKEN_HASH` (`access_token_hash`),
  KEY `ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Adobe IMS Webapi';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_adobe_ims_webapi`
--

/*!40000 ALTER TABLE `admin_adobe_ims_webapi` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_adobe_ims_webapi` ENABLE KEYS */;

--
-- Table structure for table `admin_analytics_usage_version_log`
--

DROP TABLE IF EXISTS `admin_analytics_usage_version_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_analytics_usage_version_log` (
  `id` int(10) 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 `ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_analytics_usage_version_log`
--

/*!40000 ALTER TABLE `admin_analytics_usage_version_log` DISABLE KEYS */;
INSERT INTO `admin_analytics_usage_version_log` VALUES (1,'2.4.4');
/*!40000 ALTER TABLE `admin_analytics_usage_version_log` ENABLE KEYS */;

--
-- Table structure for table `admin_passwords`
--

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

--
-- Dumping data for table `admin_passwords`
--

/*!40000 ALTER TABLE `admin_passwords` DISABLE KEYS */;
INSERT INTO `admin_passwords` VALUES (1,1,'403bc73c73e706575734bc4e54cf193194a2a3a863067fcfa47acabbd1092485:A1Jwz2PMLnQLlvt3hxCwhT3I6xqNYSQd:3_32_2_67108864',0,1659260864),(2,2,'fc7675c2005ff67d5333a8069287e748d1028a3a2a52b29fb93b8cd0758ebf21:Fz05KZcdlL7GDUgiJWEj8VONYFysMTbd:3_32_2_67108864',0,1659620639),(3,3,'a8d917b8975ad1edade24feb10c6c40505882514917555d6012508b384234812:3EEJ5wiys0f5fUnIR0CHh5z9srIEFvyB:3_32_2_67108864',0,1659692601),(4,1,'cf0d4a99d56955b30c27b7cfa52cec65a8ff24292be6e186a49dccc5fa1c3e34:kMe52Wbx07Z5fTdF86ZvAQlgru0VjhKI:3_32_2_67108864',0,1660824600);
/*!40000 ALTER TABLE `admin_passwords` ENABLE KEYS */;

--
-- Table structure for table `admin_system_messages`
--

DROP TABLE IF EXISTS `admin_system_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_system_messages` (
  `identity` varchar(100) NOT NULL COMMENT 'Message ID',
  `severity` smallint(5) 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=utf8 COMMENT='Admin System Messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_system_messages`
--

/*!40000 ALTER TABLE `admin_system_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_system_messages` ENABLE KEYS */;

--
-- Table structure for table `admin_user`
--

DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_user` (
  `user_id` int(10) 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(5) unsigned NOT NULL DEFAULT 0 COMMENT 'User Login Number',
  `reload_acl_flag` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Reload ACL',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'User Is Active',
  `extra` text DEFAULT NULL COMMENT 'User Extra Data',
  `rp_token` text DEFAULT NULL 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(6) 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 `ADMIN_USER_USERNAME` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Admin User Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user`
--

/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'admin','indaco','roberto@torresani.eu','admin','cf0d4a99d56955b30c27b7cfa52cec65a8ff24292be6e186a49dccc5fa1c3e34:kMe52Wbx07Z5fTdF86ZvAQlgru0VjhKI:3_32_2_67108864','2022-07-31 09:47:44','2022-09-16 07:51:49','2022-09-02 15:17:50',244,0,1,'{\"configState\":{\"general_locale\":\"1\",\"general_store_information\":\"1\",\"general_region\":\"1\",\"general_country\":\"1\",\"general_single_store_mode\":\"0\",\"smtp_general\":\"1\",\"smtp_configuration_option\":\"1\",\"smtp_module\":\"1\",\"smtp_developer\":\"1\",\"mageplaza_general\":\"1\",\"buybutton_general_settings\":\"1\",\"oauth_consumer\":\"1\",\"oauth_access_token_lifetime\":\"0\",\"oauth_cleanup\":\"0\",\"oauth_authentication_lock\":\"0\",\"pr_gdpr_addon_general\":\"1\",\"pr_gdpr_addon_dashboard\":\"1\",\"plumbase_notifications\":\"1\",\"plumbase_menu\":\"1\",\"plumbase_system\":\"1\",\"plumbase_developer\":\"1\",\"plumbase_installed_extensions\":\"1\",\"prgdpr_dashboard\":\"0\",\"prgdpr_removal_settings\":\"0\",\"prgdpr_email\":\"0\",\"prgdpr_general\":\"1\",\"pr_cookie_main_settings\":\"1\",\"pr_cookie_cookie_notice\":\"1\",\"pr_cookie_settings_bar\":\"1\",\"pr_cookie_settings_link\":\"1\",\"pr_cookie_gtm\":\"1\",\"pr_cookie_general\":\"1\",\"web_cookie\":\"1\",\"web_url\":\"0\",\"web_seo\":\"0\",\"web_unsecure\":\"0\",\"web_secure\":\"0\",\"web_default\":\"0\",\"web_default_layouts\":\"0\",\"web_session\":\"0\",\"web_browser_capabilities\":\"0\",\"sales_pdf_invoice\":\"1\",\"sales_dashboard\":\"1\",\"sales_msrp\":\"1\",\"dev_front_end_development_workflow\":\"1\",\"dev_template\":\"1\",\"dev_debug\":\"1\",\"dev_static\":\"0\",\"dev_caching\":\"0\",\"dev_translate_inline\":\"1\",\"dev_js\":\"1\",\"system_full_page_cache\":\"1\",\"admin_security\":\"1\",\"admin_emails\":\"0\",\"admin_startup\":\"0\",\"admin_url\":\"0\",\"admin_dashboard\":\"0\",\"admin_captcha\":\"0\",\"admin_usage\":\"0\",\"dev_css\":\"1\",\"dev_restrict\":\"1\",\"dev_image\":\"0\",\"dev_grid\":\"0\",\"cataloginventory_options\":\"0\",\"cataloginventory_item_options\":\"1\",\"cataloginventory_bulk_operations\":\"1\",\"cataloginventory_indexer\":\"1\",\"cataloginventory_source_selection_distance_based\":\"1\",\"cataloginventory_source_selection_distance_based_google\":\"1\",\"shipping_shipping_policy\":\"1\",\"shipping_origin\":\"1\",\"carriers_flatrate\":\"1\",\"carriers_tablerate\":\"0\",\"payment_it_other_paypal_payment_solutions\":\"1\",\"payment_it_checkmo\":\"0\",\"payment_it_banktransfer\":\"1\",\"payment_it_account\":\"1\",\"payment_it_recommended_solutions\":\"1\",\"payment_it_express_checkout_other\":\"0\",\"payment_it_paypal_group_all_in_one\":\"1\",\"payment_it_other_payment_methods\":\"1\",\"payment_it_free\":\"0\",\"payment_it_cashondelivery\":\"0\",\"payment_it_purchaseorder\":\"0\"}}',NULL,NULL,'en_GB',0,NULL,NULL),(2,'Daniele','Dellagiacoma','daniele.dellagiacoma@deltainformatica.eu','ddellagiacoma','fc7675c2005ff67d5333a8069287e748d1028a3a2a52b29fb93b8cd0758ebf21:Fz05KZcdlL7GDUgiJWEj8VONYFysMTbd:3_32_2_67108864','2022-08-04 13:43:59','2022-08-11 13:09:27','2022-08-11 13:09:27',143,0,1,'{\"configState\":{\"oauth_consumer\":\"1\",\"oauth_access_token_lifetime\":\"0\",\"oauth_cleanup\":\"0\",\"oauth_authentication_lock\":\"0\"}}',NULL,NULL,'it_IT',0,NULL,NULL),(3,'Andrea','Gottardi','andrea.gottardi@deltainformatica.eu','agottardi','a8d917b8975ad1edade24feb10c6c40505882514917555d6012508b384234812:3EEJ5wiys0f5fUnIR0CHh5z9srIEFvyB:3_32_2_67108864','2022-08-05 09:43:21','2022-08-10 13:02:19',NULL,0,0,1,'null','0:3:UYAWg+sxXBB1YtqYObpLlAHGJTjJ/JWZCOjC7GBgz2cMxGkEd0MSXX9B56InkXMWUgZN9I+djhQkWDkO','2022-08-05 13:16:18','en_US',1,'2022-08-10 13:02:19',NULL);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;

--
-- Table structure for table `admin_user_expiration`
--

DROP TABLE IF EXISTS `admin_user_expiration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_user_expiration` (
  `user_id` int(10) 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 `ADMIN_USER_EXPIRATION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin User expiration dates table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user_expiration`
--

/*!40000 ALTER TABLE `admin_user_expiration` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_user_expiration` ENABLE KEYS */;

--
-- Table structure for table `admin_user_session`
--

DROP TABLE IF EXISTS `admin_user_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_user_session` (
  `id` int(10) 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(10) unsigned DEFAULT NULL COMMENT 'Admin User ID',
  `status` smallint(5) 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 `ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
  KEY `ADMIN_USER_SESSION_USER_ID` (`user_id`),
  CONSTRAINT `ADMIN_USER_SESSION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8 COMMENT='Admin User sessions table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user_session`
--

/*!40000 ALTER TABLE `admin_user_session` DISABLE KEYS */;
INSERT INTO `admin_user_session` VALUES (1,NULL,1,2,'2022-07-31 09:53:05','2022-09-02 15:17:50','5.77.88.196'),(2,NULL,1,2,'2022-07-31 11:51:49','2022-09-02 15:17:50','5.77.88.196'),(3,NULL,1,2,'2022-07-31 12:34:54','2022-09-02 15:17:50','5.77.88.196'),(4,NULL,1,2,'2022-08-04 10:07:31','2022-09-02 15:17:50','151.49.194.8'),(5,NULL,1,0,'2022-08-04 13:42:17','2022-08-04 13:44:35','77.83.112.61'),(6,NULL,2,1,'2022-08-04 13:44:39','2022-08-04 13:46:55','77.83.112.61'),(7,NULL,1,2,'2022-08-04 14:19:58','2022-09-02 15:17:50','151.49.194.8'),(8,NULL,1,2,'2022-08-04 15:54:51','2022-09-02 15:17:50','151.49.194.8'),(9,NULL,1,2,'2022-08-05 06:52:56','2022-09-02 15:17:50','213.21.147.71'),(10,NULL,1,2,'2022-08-05 09:07:25','2022-09-02 15:17:50','213.21.147.71'),(11,NULL,2,1,'2022-08-05 09:16:44','2022-08-05 09:37:18','213.21.147.71'),(12,NULL,1,2,'2022-08-05 09:33:58','2022-08-05 09:37:36','213.21.147.71'),(13,NULL,1,2,'2022-08-05 09:37:36','2022-08-05 09:42:21','213.21.147.71'),(14,NULL,1,0,'2022-08-05 09:42:21','2022-08-05 09:43:27','213.21.147.71'),(15,NULL,3,1,'2022-08-05 09:43:31','2022-08-05 09:43:31','213.21.147.71'),(16,NULL,2,1,'2022-08-05 10:25:43','2022-08-05 10:27:23','213.21.147.71'),(17,NULL,2,1,'2022-08-05 12:43:57','2022-08-05 12:43:57','213.21.147.71'),(18,NULL,1,2,'2022-08-05 12:54:27','2022-09-02 15:17:50','213.21.147.71'),(19,NULL,1,2,'2022-08-05 13:18:21','2022-09-02 15:17:50','213.21.147.71'),(20,NULL,2,1,'2022-08-05 13:20:07','2022-08-05 13:20:07','213.21.147.71'),(21,NULL,1,2,'2022-08-05 15:45:19','2022-09-02 15:17:50','213.21.147.71'),(22,NULL,2,1,'2022-08-08 07:42:46','2022-08-08 07:42:46','77.83.112.61'),(23,NULL,1,2,'2022-08-08 07:42:58','2022-09-02 15:17:50','82.59.232.201'),(24,NULL,2,1,'2022-08-08 07:58:49','2022-08-08 07:58:49','77.83.112.61'),(25,NULL,2,1,'2022-08-08 08:33:50','2022-08-08 08:33:50','77.83.112.61'),(26,NULL,2,1,'2022-08-08 10:25:24','2022-08-08 10:25:53','77.83.112.61'),(27,NULL,2,1,'2022-08-08 12:41:02','2022-08-08 14:00:58','77.83.112.61'),(28,NULL,1,2,'2022-08-08 12:48:59','2022-09-02 15:17:50','82.59.232.201'),(29,NULL,1,2,'2022-08-08 13:50:08','2022-08-08 13:52:13','82.59.232.201'),(30,NULL,1,2,'2022-08-08 13:52:13','2022-08-08 13:55:55','37.186.230.194'),(31,NULL,1,2,'2022-08-08 13:55:55','2022-08-08 13:57:31','82.59.232.201'),(32,NULL,1,2,'2022-08-08 13:57:31','2022-09-02 15:17:50','37.186.230.194'),(33,NULL,1,2,'2022-08-08 14:18:03','2022-09-02 15:17:50','82.59.232.201'),(34,NULL,2,1,'2022-08-08 14:48:29','2022-08-08 15:00:32','77.83.112.61'),(35,NULL,2,1,'2022-08-08 15:21:30','2022-08-08 15:26:06','77.83.112.61'),(36,NULL,1,2,'2022-08-09 11:16:02','2022-09-02 15:17:50','151.49.194.8'),(37,NULL,2,1,'2022-08-09 11:57:24','2022-08-09 12:11:52','213.21.147.71'),(38,NULL,1,2,'2022-08-09 12:12:22','2022-09-02 15:17:50','213.21.147.71'),(39,NULL,2,1,'2022-08-09 12:29:46','2022-08-09 12:34:39','213.21.147.71'),(40,NULL,1,2,'2022-08-09 12:46:18','2022-09-02 15:17:50','213.21.147.71'),(41,NULL,1,2,'2022-08-09 13:16:49','2022-09-02 15:17:50','213.21.147.71'),(42,NULL,2,1,'2022-08-09 14:43:19','2022-08-09 14:58:28','213.21.147.71'),(43,NULL,1,2,'2022-08-09 14:50:19','2022-09-02 15:17:50','213.21.147.71'),(44,NULL,2,1,'2022-08-10 07:34:06','2022-08-10 07:34:06','77.83.112.61'),(45,NULL,1,2,'2022-08-10 10:50:20','2022-09-02 15:17:50','151.49.194.8'),(46,NULL,1,2,'2022-08-10 13:02:23','2022-09-02 15:17:50','93.40.240.77'),(47,NULL,2,1,'2022-08-10 13:14:05','2022-08-10 13:14:05','77.83.112.61'),(48,NULL,2,1,'2022-08-10 14:26:33','2022-08-10 14:26:33','77.83.112.61'),(49,NULL,1,2,'2022-08-10 14:48:34','2022-09-02 15:17:50','93.40.240.77'),(50,NULL,2,1,'2022-08-10 14:48:46','2022-08-10 14:56:12','77.83.112.61'),(51,NULL,1,2,'2022-08-11 09:01:11','2022-09-02 15:17:50','151.49.194.8'),(52,NULL,1,2,'2022-08-11 12:06:51','2022-09-02 15:17:50','151.49.194.8'),(53,NULL,2,1,'2022-08-11 13:09:27','2022-08-11 13:12:06','77.83.112.45'),(54,NULL,1,2,'2022-08-12 13:08:44','2022-09-02 15:17:50','213.21.147.71'),(55,NULL,1,2,'2022-08-12 14:13:40','2022-09-02 15:17:50','213.21.147.71'),(56,NULL,1,2,'2022-08-12 15:30:06','2022-09-02 15:17:50','213.21.147.71'),(57,NULL,1,2,'2022-08-18 12:10:01','2022-09-02 15:17:50','192.168.192.1'),(58,NULL,1,2,'2022-08-18 12:26:17','2022-09-02 15:17:50','192.168.192.1'),(59,NULL,1,2,'2022-08-18 13:16:03','2022-09-02 15:17:50','192.168.192.1'),(60,NULL,1,2,'2022-08-18 13:36:04','2022-09-02 15:17:50','192.168.192.1'),(61,NULL,1,2,'2022-08-18 14:49:22','2022-09-02 15:17:50','192.168.112.1'),(62,NULL,1,2,'2022-08-18 15:58:12','2022-09-02 15:17:50','192.168.112.1'),(63,NULL,1,2,'2022-08-19 07:08:08','2022-09-02 15:17:50','192.168.112.1'),(64,NULL,1,2,'2022-08-19 07:31:23','2022-09-02 15:17:50','192.168.112.1'),(65,NULL,1,2,'2022-08-19 07:59:26','2022-09-02 15:17:50','192.168.112.1'),(66,NULL,1,1,'2022-09-02 15:17:50','2022-09-16 13:48:41','192.168.112.1');
/*!40000 ALTER TABLE `admin_user_session` ENABLE KEYS */;

--
-- Table structure for table `adminnotification_inbox`
--

DROP TABLE IF EXISTS `adminnotification_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adminnotification_inbox` (
  `notification_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification ID',
  `severity` smallint(5) 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 DEFAULT NULL COMMENT 'Description',
  `url` varchar(255) DEFAULT NULL COMMENT 'Url',
  `is_read` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag if notification read',
  `is_remove` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag if notification might be removed',
  PRIMARY KEY (`notification_id`),
  KEY `ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  KEY `ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  KEY `ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adminnotification_inbox`
--

/*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */;
INSERT INTO `adminnotification_inbox` VALUES (1,4,'2022-07-31 09:47:43','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',1,0);
/*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */;

--
-- Table structure for table `adobe_stock_asset`
--

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

--
-- Dumping data for table `adobe_stock_asset`
--

/*!40000 ALTER TABLE `adobe_stock_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_stock_asset` ENABLE KEYS */;

--
-- Table structure for table `adobe_stock_category`
--

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

--
-- Dumping data for table `adobe_stock_category`
--

/*!40000 ALTER TABLE `adobe_stock_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_stock_category` ENABLE KEYS */;

--
-- Table structure for table `adobe_stock_creator`
--

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

--
-- Dumping data for table `adobe_stock_creator`
--

/*!40000 ALTER TABLE `adobe_stock_creator` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_stock_creator` ENABLE KEYS */;

--
-- Table structure for table `adobe_user_profile`
--

DROP TABLE IF EXISTS `adobe_user_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adobe_user_profile` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int(10) 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 DEFAULT NULL COMMENT 'Access Token',
  `refresh_token` text DEFAULT NULL 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 `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` (`admin_user_id`),
  KEY `ADOBE_USER_PROFILE_ID` (`id`),
  KEY `ADOBE_USER_PROFILE_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe IMS User Profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adobe_user_profile`
--

/*!40000 ALTER TABLE `adobe_user_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_user_profile` ENABLE KEYS */;

--
-- Table structure for table `authorization_role`
--

DROP TABLE IF EXISTS `authorization_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `authorization_role` (
  `role_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent Role ID',
  `tree_level` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Role Tree Level',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Role Sort Order',
  `role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type',
  `user_id` int(10) 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 `AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorization_role`
--

/*!40000 ALTER TABLE `authorization_role` DISABLE KEYS */;
INSERT INTO `authorization_role` VALUES (1,0,1,1,'G',0,'2','Administrators'),(4,1,2,0,'U',1,'2','admin'),(5,1,2,0,'U',2,'2','Daniele'),(6,0,1,0,'U',2,'1','12'),(7,1,2,0,'U',3,'2','Andrea'),(8,0,1,0,'U',3,'1','13');
/*!40000 ALTER TABLE `authorization_role` ENABLE KEYS */;

--
-- Table structure for table `authorization_rule`
--

DROP TABLE IF EXISTS `authorization_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `authorization_rule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID',
  `role_id` int(10) 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 `AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `AUTHORIZATION_RULE_ROLE_ID_AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `authorization_role` (`role_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=279 DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorization_rule`
--

/*!40000 ALTER TABLE `authorization_rule` DISABLE KEYS */;
INSERT INTO `authorization_rule` VALUES (5,1,'Magento_Backend::all',NULL,'allow'),(7,8,'Magento_Backend::all',NULL,'allow'),(8,6,'Magento_Backend::all',NULL,'deny'),(9,6,'Magento_Backend::admin',NULL,'allow'),(10,6,'Magento_Backend::dashboard',NULL,'allow'),(11,6,'Magento_Analytics::analytics',NULL,'allow'),(12,6,'Magento_Analytics::analytics_api',NULL,'allow'),(13,6,'Webkul_BuyButton::buybutton',NULL,'allow'),(14,6,'Webkul_BuyButton::select',NULL,'allow'),(15,6,'Magento_Sales::sales',NULL,'allow'),(16,6,'Magento_Sales::sales_operation',NULL,'allow'),(17,6,'Magento_Sales::sales_order',NULL,'allow'),(18,6,'Magento_Sales::actions',NULL,'allow'),(19,6,'Magento_Sales::create',NULL,'allow'),(20,6,'Magento_Sales::actions_view',NULL,'allow'),(21,6,'Magento_Sales::email',NULL,'allow'),(22,6,'Magento_Sales::reorder',NULL,'allow'),(23,6,'Magento_Sales::actions_edit',NULL,'allow'),(24,6,'Magento_Sales::cancel',NULL,'allow'),(25,6,'Magento_Sales::review_payment',NULL,'allow'),(26,6,'Magento_Sales::capture',NULL,'allow'),(27,6,'Magento_Sales::invoice',NULL,'allow'),(28,6,'Magento_Sales::creditmemo',NULL,'allow'),(29,6,'Magento_Sales::hold',NULL,'allow'),(30,6,'Magento_Sales::unhold',NULL,'allow'),(31,6,'Magento_Sales::ship',NULL,'allow'),(32,6,'Magento_Sales::comment',NULL,'allow'),(33,6,'Magento_Sales::emails',NULL,'allow'),(34,6,'Magento_Paypal::authorization',NULL,'allow'),(35,6,'Magento_Sales::sales_invoice',NULL,'allow'),(36,6,'Magento_Sales::shipment',NULL,'allow'),(37,6,'Magento_Sales::sales_creditmemo',NULL,'allow'),(38,6,'Magento_Paypal::billing_agreement',NULL,'allow'),(39,6,'Magento_Paypal::billing_agreement_actions',NULL,'allow'),(40,6,'Magento_Paypal::billing_agreement_actions_view',NULL,'allow'),(41,6,'Magento_Paypal::actions_manage',NULL,'allow'),(42,6,'Magento_Paypal::use',NULL,'allow'),(43,6,'Magento_Sales::transactions',NULL,'allow'),(44,6,'Magento_Sales::transactions_fetch',NULL,'allow'),(45,6,'Magento_Catalog::catalog',NULL,'allow'),(46,6,'Magento_Catalog::catalog_inventory',NULL,'allow'),(47,6,'Magento_Catalog::products',NULL,'allow'),(48,6,'Magento_Catalog::update_attributes',NULL,'allow'),(49,6,'Magento_Catalog::edit_product_design',NULL,'allow'),(50,6,'Magento_Catalog::categories',NULL,'allow'),(51,6,'Magento_Catalog::edit_category_design',NULL,'allow'),(52,6,'Magento_Customer::customer',NULL,'allow'),(53,6,'Magento_Customer::manage',NULL,'allow'),(54,6,'Magento_Customer::actions',NULL,'allow'),(55,6,'Magento_Customer::delete',NULL,'allow'),(56,6,'Magento_Customer::reset_password',NULL,'allow'),(57,6,'Magento_Customer::invalidate_tokens',NULL,'allow'),(58,6,'Magento_LoginAsCustomer::allow_shopping_assistance',NULL,'allow'),(59,6,'Magento_Customer::online',NULL,'allow'),(60,6,'Magento_Customer::group',NULL,'allow'),(61,6,'Magento_LoginAsCustomer::login',NULL,'allow'),(62,6,'Magento_LoginAsCustomerLog::login_log',NULL,'allow'),(63,6,'Magento_Cart::cart',NULL,'allow'),(64,6,'Magento_Cart::manage',NULL,'allow'),(65,6,'Magento_Backend::myaccount',NULL,'allow'),(66,6,'Magento_Backend::marketing',NULL,'allow'),(67,6,'Magento_CatalogRule::promo',NULL,'allow'),(68,6,'Magento_CatalogRule::promo_catalog',NULL,'allow'),(69,6,'Magento_SalesRule::quote',NULL,'allow'),(70,6,'Mageplaza_Smtp::email_marketing_menu',NULL,'allow'),(71,6,'Magento_Backend::marketing_communications',NULL,'allow'),(72,6,'Magento_Email::template',NULL,'allow'),(73,6,'Magento_Newsletter::template',NULL,'allow'),(74,6,'Magento_Newsletter::queue',NULL,'allow'),(75,6,'Magento_Newsletter::subscriber',NULL,'allow'),(76,6,'Magento_Backend::marketing_seo',NULL,'allow'),(77,6,'Magento_Search::search',NULL,'allow'),(78,6,'Magento_Search::synonyms',NULL,'allow'),(79,6,'Magento_UrlRewrite::urlrewrite',NULL,'allow'),(80,6,'Magento_Sitemap::sitemap',NULL,'allow'),(81,6,'Magento_Backend::marketing_user_content',NULL,'allow'),(82,6,'Magento_Review::reviews_all',NULL,'allow'),(83,6,'Magento_Review::pending',NULL,'allow'),(84,6,'Mageplaza_Core::menu',NULL,'allow'),(85,6,'Mageplaza_Smtp::smtp',NULL,'allow'),(86,6,'Mageplaza_Smtp::log',NULL,'allow'),(87,6,'Mageplaza_Smtp::abandoned_cart',NULL,'allow'),(88,6,'Mageplaza_Core::documentation',NULL,'allow'),(89,6,'Mageplaza_Core::userguide',NULL,'allow'),(90,6,'Mageplaza_Core::activate',NULL,'allow'),(91,6,'Magento_Backend::content',NULL,'allow'),(92,6,'Magento_Backend::content_elements',NULL,'allow'),(93,6,'Magento_Cms::page',NULL,'allow'),(94,6,'Magento_Cms::save',NULL,'allow'),(95,6,'Magento_Cms::save_design',NULL,'allow'),(96,6,'Magento_Cms::page_delete',NULL,'allow'),(97,6,'Magento_Cms::block',NULL,'allow'),(98,6,'Magento_Widget::widget_instance',NULL,'allow'),(99,6,'Magento_Cms::media_gallery',NULL,'allow'),(100,6,'Magento_MediaGalleryUiApi::insert_assets',NULL,'allow'),(101,6,'Magento_MediaGalleryUiApi::upload_assets',NULL,'allow'),(102,6,'Magento_MediaGalleryUiApi::edit_assets',NULL,'allow'),(103,6,'Magento_AdobeStockImageAdminUi::media_gallery',NULL,'allow'),(104,6,'Magento_AdobeStockImageAdminUi::save_preview_images',NULL,'allow'),(105,6,'Magento_AdobeStockImageAdminUi::license_images',NULL,'allow'),(106,6,'Magento_MediaGalleryUiApi::delete_assets',NULL,'allow'),(107,6,'Magento_MediaGalleryUiApi::create_folder',NULL,'allow'),(108,6,'Magento_MediaGalleryUiApi::delete_folder',NULL,'allow'),(109,6,'Magento_PageBuilder::templates',NULL,'allow'),(110,6,'Magento_PageBuilder::template_save',NULL,'allow'),(111,6,'Magento_PageBuilder::template_apply',NULL,'allow'),(112,6,'Magento_PageBuilder::template_delete',NULL,'allow'),(113,6,'Magento_Backend::design',NULL,'allow'),(114,6,'Magento_Theme::theme',NULL,'allow'),(115,6,'Magento_Backend::schedule',NULL,'allow'),(116,6,'Magento_Backend::content_translation',NULL,'allow'),(117,6,'Magento_Reports::report',NULL,'allow'),(118,6,'Magento_Reports::report_marketing',NULL,'allow'),(119,6,'Magento_Reports::shopcart',NULL,'allow'),(120,6,'Magento_Reports::product',NULL,'allow'),(121,6,'Magento_Reports::abandoned',NULL,'allow'),(122,6,'Magento_Reports::report_search',NULL,'allow'),(123,6,'Magento_Newsletter::problem',NULL,'allow'),(124,6,'Magento_Reports::review',NULL,'allow'),(125,6,'Magento_Reports::review_customer',NULL,'allow'),(126,6,'Magento_Reports::review_product',NULL,'allow'),(127,6,'Magento_Reports::salesroot',NULL,'allow'),(128,6,'Magento_Reports::salesroot_sales',NULL,'allow'),(129,6,'Magento_Reports::tax',NULL,'allow'),(130,6,'Magento_Reports::invoiced',NULL,'allow'),(131,6,'Magento_Reports::shipping',NULL,'allow'),(132,6,'Magento_Reports::refunded',NULL,'allow'),(133,6,'Magento_Reports::coupons',NULL,'allow'),(134,6,'Magento_Paypal::paypal_settlement_reports',NULL,'allow'),(135,6,'Magento_Paypal::paypal_settlement_reports_view',NULL,'allow'),(136,6,'Magento_Paypal::fetch',NULL,'allow'),(137,6,'PayPal_Braintree::settlement_report',NULL,'allow'),(138,6,'Magento_Reports::customers',NULL,'allow'),(139,6,'Magento_Reports::totals',NULL,'allow'),(140,6,'Magento_Reports::customers_orders',NULL,'allow'),(141,6,'Magento_Reports::accounts',NULL,'allow'),(142,6,'Magento_Reports::report_products',NULL,'allow'),(143,6,'Magento_Reports::viewed',NULL,'allow'),(144,6,'Magento_Reports::bestsellers',NULL,'allow'),(145,6,'Magento_Reports::lowstock',NULL,'allow'),(146,6,'Magento_Reports::sold',NULL,'allow'),(147,6,'Magento_Reports::downloads',NULL,'allow'),(148,6,'Magento_Reports::statistics',NULL,'allow'),(149,6,'Magento_Reports::statistics_refresh',NULL,'allow'),(150,6,'Magento_Analytics::business_intelligence',NULL,'allow'),(151,6,'Magento_Analytics::advanced_reporting',NULL,'allow'),(152,6,'Magento_Analytics::bi_essentials',NULL,'allow'),(153,6,'Magento_Backend::stores',NULL,'allow'),(154,6,'Magento_Backend::stores_settings',NULL,'allow'),(155,6,'Magento_Backend::store',NULL,'allow'),(156,6,'Magento_Config::config',NULL,'allow'),(157,6,'Magento_Cms::config_cms',NULL,'allow'),(158,6,'Magento_Catalog::config_catalog',NULL,'allow'),(159,6,'Magento_CatalogSearch::config_catalog_search',NULL,'allow'),(160,6,'Magento_CatalogInventory::cataloginventory',NULL,'allow'),(161,6,'Magento_Payment::payment',NULL,'allow'),(162,6,'Magento_Payment::payment_services',NULL,'allow'),(163,6,'Magento_Contact::contact',NULL,'allow'),(164,6,'Magento_Downloadable::downloadable',NULL,'allow'),(165,6,'Magento_GoogleAnalytics::google',NULL,'allow'),(166,6,'Magento_LoginAsCustomer::config_section',NULL,'allow'),(167,6,'Magento_Newsletter::newsletter',NULL,'allow'),(168,6,'Mageplaza_Smtp::configuration',NULL,'allow'),(169,6,'Mageplaza_Smtp::email_marketing',NULL,'allow'),(170,6,'Magento_Shipping::carriers',NULL,'allow'),(171,6,'Magento_InventoryInStorePickupApi::inStorePickup',NULL,'allow'),(172,6,'Magento_InventoryInStorePickupApi::notify_orders_are_ready_for_pickup',NULL,'allow'),(173,6,'Magento_Shipping::config_shipping',NULL,'allow'),(174,6,'Magento_Shipping::shipping_policy',NULL,'allow'),(175,6,'Magento_Multishipping::config_multishipping',NULL,'allow'),(176,6,'Magento_ReCaptchaUi::config',NULL,'allow'),(177,6,'Magento_Securitytxt::config',NULL,'allow'),(178,6,'Mageplaza_Core::configuration',NULL,'allow'),(179,6,'Mageplaza_Core::marketplace',NULL,'allow'),(180,6,'Magento_Config::config_general',NULL,'allow'),(181,6,'Magento_Config::web',NULL,'allow'),(182,6,'Magento_Config::config_design',NULL,'allow'),(183,6,'Magento_Customer::config_customer',NULL,'allow'),(184,6,'Magento_Paypal::paypal',NULL,'allow'),(185,6,'Webkul_BuyButton::auth',NULL,'allow'),(186,6,'Magento_Tax::config_tax',NULL,'allow'),(187,6,'Magento_Checkout::checkout',NULL,'allow'),(188,6,'Magento_Sales::config_sales',NULL,'allow'),(189,6,'Magento_Persistent::persistent',NULL,'allow'),(190,6,'Magento_Sales::sales_email',NULL,'allow'),(191,6,'Magento_Sales::sales_pdf',NULL,'allow'),(192,6,'Magento_Reports::reports',NULL,'allow'),(193,6,'Magento_Sitemap::config_sitemap',NULL,'allow'),(194,6,'Magento_Config::config_system',NULL,'allow'),(195,6,'Magento_Wishlist::config_wishlist',NULL,'allow'),(196,6,'Magento_SalesRule::config_promo',NULL,'allow'),(197,6,'Magento_Config::config_admin',NULL,'allow'),(198,6,'Magento_Config::trans_email',NULL,'allow'),(199,6,'Magento_Config::dev',NULL,'allow'),(200,6,'Magento_Config::currency',NULL,'allow'),(201,6,'Magento_Rss::rss',NULL,'allow'),(202,6,'Magento_Config::sendfriend',NULL,'allow'),(203,6,'Magento_Analytics::analytics_settings',NULL,'allow'),(204,6,'Magento_NewRelicReporting::config_newrelicreporting',NULL,'allow'),(205,6,'Magento_CheckoutAgreements::checkoutagreement',NULL,'allow'),(206,6,'Magento_Sales::order_statuses',NULL,'allow'),(207,6,'Magento_InventoryApi::inventory',NULL,'allow'),(208,6,'Magento_InventoryApi::source',NULL,'allow'),(209,6,'Magento_InventoryApi::source_edit',NULL,'allow'),(210,6,'Magento_InventoryApi::stock',NULL,'allow'),(211,6,'Magento_InventoryApi::stock_edit',NULL,'allow'),(212,6,'Magento_InventoryApi::stock_delete',NULL,'allow'),(213,6,'Magento_InventoryApi::stock_source_link',NULL,'allow'),(214,6,'Magento_InventorySalesApi::stock',NULL,'allow'),(215,6,'Magento_Tax::manage_tax',NULL,'allow'),(216,6,'Magento_CurrencySymbol::system_currency',NULL,'allow'),(217,6,'Magento_CurrencySymbol::currency_rates',NULL,'allow'),(218,6,'Magento_CurrencySymbol::symbols',NULL,'allow'),(219,6,'Magento_Backend::stores_attributes',NULL,'allow'),(220,6,'Magento_Catalog::attributes_attributes',NULL,'allow'),(221,6,'Magento_Catalog::sets',NULL,'allow'),(222,6,'Magento_Review::ratings',NULL,'allow'),(223,6,'Magento_Swatches::iframe',NULL,'allow'),(224,6,'Magento_Backend::stores_other_settings',NULL,'allow'),(225,6,'Magento_Backend::system',NULL,'allow'),(226,6,'Magento_AdobeIms::adobe_ims',NULL,'allow'),(227,6,'Magento_AdobeIms::actions',NULL,'allow'),(228,6,'Magento_AdobeIms::login',NULL,'allow'),(229,6,'Magento_AdobeIms::logout',NULL,'allow'),(230,6,'Magento_AdobeStockAsset::adobe_stock_asset',NULL,'allow'),(231,6,'Magento_AdobeStockAsset::actions',NULL,'allow'),(232,6,'Magento_AdobeStockAsset::actions_delete',NULL,'allow'),(233,6,'Magento_AdobeStockAsset::actions_save',NULL,'allow'),(234,6,'Magento_AdobeStockAsset::actions_view',NULL,'allow'),(235,6,'Magento_AdobeStockAsset::actions_get',NULL,'allow'),(236,6,'Magento_Backend::convert',NULL,'allow'),(237,6,'Magento_ImportExport::import',NULL,'allow'),(238,6,'Magento_ImportExport::export',NULL,'allow'),(239,6,'Magento_TaxImportExport::import_export',NULL,'allow'),(240,6,'Magento_ImportExport::history',NULL,'allow'),(241,6,'Magento_Backend::extensions',NULL,'allow'),(242,6,'Magento_Backend::local',NULL,'allow'),(243,6,'Magento_Backend::custom',NULL,'allow'),(244,6,'Magento_Integration::extensions',NULL,'allow'),(245,6,'Magento_Integration::integrations',NULL,'allow'),(246,6,'Magento_Backend::tools',NULL,'allow'),(247,6,'Magento_Backend::cache',NULL,'allow'),(248,6,'Magento_Backend::main_actions',NULL,'allow'),(249,6,'Magento_Backend::flush_cache_storage',NULL,'allow'),(250,6,'Magento_Backend::flush_magento_cache',NULL,'allow'),(251,6,'Magento_Backend::mass_actions',NULL,'allow'),(252,6,'Magento_Backend::toggling_cache_type',NULL,'allow'),(253,6,'Magento_Backend::refresh_cache_type',NULL,'allow'),(254,6,'Magento_Backend::additional_cache_management',NULL,'allow'),(255,6,'Magento_Backend::flush_catalog_images',NULL,'allow'),(256,6,'Magento_Backend::flush_js_css',NULL,'allow'),(257,6,'Magento_Backend::flush_static_files',NULL,'allow'),(258,6,'Magento_Backup::backup',NULL,'allow'),(259,6,'Magento_Backup::rollback',NULL,'allow'),(260,6,'Magento_Indexer::index',NULL,'allow'),(261,6,'Magento_Indexer::changeMode',NULL,'allow'),(262,6,'Magento_Indexer::invalidate',NULL,'allow'),(263,6,'Magento_User::acl',NULL,'allow'),(264,6,'Magento_User::acl_users',NULL,'allow'),(265,6,'Magento_User::locks',NULL,'allow'),(266,6,'Magento_User::acl_roles',NULL,'allow'),(267,6,'Magento_Logging::magento_logging',NULL,'allow'),(268,6,'Magento_Logging::magento_logging_events',NULL,'allow'),(269,6,'Magento_Logging::system_magento_logging_bulk_operations',NULL,'allow'),(270,6,'Magento_Backend::system_other_settings',NULL,'allow'),(271,6,'Magento_AdminNotification::adminnotification',NULL,'allow'),(272,6,'Magento_AdminNotification::show_toolbar',NULL,'allow'),(273,6,'Magento_AdminNotification::show_list',NULL,'allow'),(274,6,'Magento_AdminNotification::mark_as_read',NULL,'allow'),(275,6,'Magento_AdminNotification::adminnotification_remove',NULL,'allow'),(276,6,'Magento_Variable::variable',NULL,'allow'),(277,6,'Magento_EncryptionKey::crypt_key',NULL,'allow'),(278,6,'Magento_Backend::global_search',NULL,'allow');
/*!40000 ALTER TABLE `authorization_rule` ENABLE KEYS */;

--
-- Table structure for table `braintree_credit_prices`
--

DROP TABLE IF EXISTS `braintree_credit_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `braintree_credit_prices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `term` int(11) 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 `BRAINTREE_CREDIT_PRICES_PRODUCT_ID_TERM` (`product_id`,`term`),
  KEY `BRAINTREE_CREDIT_PRICES_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Braintree credit rates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `braintree_credit_prices`
--

/*!40000 ALTER TABLE `braintree_credit_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `braintree_credit_prices` ENABLE KEYS */;

--
-- Table structure for table `braintree_transaction_details`
--

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

--
-- Dumping data for table `braintree_transaction_details`
--

/*!40000 ALTER TABLE `braintree_transaction_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `braintree_transaction_details` ENABLE KEYS */;

--
-- Table structure for table `cache`
--

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

--
-- Dumping data for table `cache`
--

/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;

--
-- Table structure for table `cache_tag`
--

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

--
-- Dumping data for table `cache_tag`
--

/*!40000 ALTER TABLE `cache_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_tag` ENABLE KEYS */;

--
-- Table structure for table `captcha_log`
--

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

--
-- Dumping data for table `captcha_log`
--

/*!40000 ALTER TABLE `captcha_log` DISABLE KEYS */;
INSERT INTO `captcha_log` VALUES ('2','agottardi',1,'2022-08-10 13:02:19'),('2','raffaele.decarli+1@thraed.solutions',1,'2022-09-16 08:57:57'),('2','raffaele.decarli@thread.solutions',11,'2022-09-16 08:57:24');
/*!40000 ALTER TABLE `captcha_log` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_entity`
--

DROP TABLE IF EXISTS `catalog_category_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `parent_id` int(10) 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(11) NOT NULL COMMENT 'Position',
  `level` int(11) NOT NULL DEFAULT 0 COMMENT 'Tree Level',
  `children_count` int(11) NOT NULL COMMENT 'Child Count',
  PRIMARY KEY (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  KEY `CATALOG_CATEGORY_ENTITY_PATH` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity`
--

/*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */;
INSERT INTO `catalog_category_entity` VALUES (1,3,0,'2022-07-31 09:47:40','2022-09-14 09:16:12','1',0,0,79),(2,3,1,'2022-07-31 09:47:41','2022-09-14 09:16:12','1/2',1,1,79),(3,3,2,'2022-07-31 12:59:01','2022-09-13 15:36:54','1/2/3',1,2,70),(4,3,3,'2022-07-31 12:59:02','2022-07-31 12:59:05','1/2/3/4',1,3,6),(5,3,4,'2022-07-31 12:59:03','2022-07-31 12:59:03','1/2/3/4/5',1,4,0),(6,3,4,'2022-07-31 12:59:03','2022-07-31 12:59:03','1/2/3/4/6',2,4,0),(7,3,4,'2022-07-31 12:59:04','2022-07-31 12:59:04','1/2/3/4/7',3,4,0),(8,3,4,'2022-07-31 12:59:04','2022-07-31 12:59:04','1/2/3/4/8',4,4,0),(9,3,4,'2022-07-31 12:59:04','2022-07-31 12:59:04','1/2/3/4/9',5,4,0),(10,3,4,'2022-07-31 12:59:05','2022-07-31 12:59:05','1/2/3/4/10',6,4,0),(11,3,3,'2022-07-31 12:59:05','2022-07-31 12:59:08','1/2/3/11',2,3,5),(12,3,11,'2022-07-31 12:59:05','2022-07-31 12:59:05','1/2/3/11/12',1,4,0),(13,3,11,'2022-07-31 12:59:06','2022-07-31 12:59:08','1/2/3/11/13',2,4,3),(14,3,13,'2022-07-31 12:59:07','2022-07-31 12:59:07','1/2/3/11/13/14',1,5,0),(15,3,13,'2022-07-31 12:59:07','2022-07-31 12:59:07','1/2/3/11/13/15',2,5,0),(16,3,13,'2022-07-31 12:59:08','2022-07-31 12:59:08','1/2/3/11/13/16',3,5,0),(17,3,3,'2022-07-31 12:59:08','2022-07-31 12:59:10','1/2/3/17',3,3,6),(18,3,17,'2022-07-31 12:59:08','2022-07-31 12:59:08','1/2/3/17/18',1,4,0),(19,3,17,'2022-07-31 12:59:09','2022-07-31 12:59:10','1/2/3/17/19',2,4,4),(20,3,19,'2022-07-31 12:59:09','2022-07-31 12:59:09','1/2/3/17/19/20',1,5,0),(21,3,19,'2022-07-31 12:59:09','2022-07-31 12:59:09','1/2/3/17/19/21',2,5,0),(22,3,19,'2022-07-31 12:59:10','2022-07-31 12:59:10','1/2/3/17/19/22',3,5,0),(23,3,19,'2022-07-31 12:59:10','2022-07-31 12:59:10','1/2/3/17/19/23',4,5,0),(24,3,3,'2022-07-31 12:59:11','2022-07-31 12:59:11','1/2/3/24',4,3,2),(25,3,24,'2022-07-31 12:59:11','2022-07-31 12:59:11','1/2/3/24/25',1,4,0),(26,3,24,'2022-07-31 12:59:11','2022-07-31 12:59:11','1/2/3/24/26',2,4,0),(27,3,3,'2022-07-31 12:59:12','2022-07-31 12:59:12','1/2/3/27',5,3,2),(28,3,27,'2022-07-31 12:59:12','2022-07-31 12:59:12','1/2/3/27/28',1,4,0),(29,3,27,'2022-07-31 12:59:12','2022-07-31 12:59:12','1/2/3/27/29',2,4,0),(30,3,3,'2022-07-31 12:59:13','2022-07-31 12:59:14','1/2/3/30',6,3,3),(31,3,30,'2022-07-31 12:59:13','2022-07-31 12:59:13','1/2/3/30/31',1,4,0),(32,3,30,'2022-07-31 12:59:14','2022-07-31 12:59:14','1/2/3/30/32',2,4,0),(33,3,30,'2022-07-31 12:59:14','2022-07-31 12:59:14','1/2/3/30/33',3,4,0),(34,3,3,'2022-07-31 12:59:14','2022-07-31 12:59:15','1/2/3/34',7,3,2),(35,3,34,'2022-07-31 12:59:15','2022-07-31 12:59:15','1/2/3/34/35',1,4,0),(36,3,34,'2022-07-31 12:59:15','2022-07-31 12:59:15','1/2/3/34/36',2,4,0),(37,3,3,'2022-07-31 12:59:15','2022-07-31 12:59:16','1/2/3/37',8,3,3),(38,3,37,'2022-07-31 12:59:16','2022-07-31 12:59:16','1/2/3/37/38',1,4,0),(39,3,37,'2022-07-31 12:59:16','2022-07-31 12:59:16','1/2/3/37/39',2,4,0),(40,3,37,'2022-07-31 12:59:16','2022-07-31 12:59:16','1/2/3/37/40',3,4,0),(41,3,3,'2022-07-31 12:59:17','2022-07-31 12:59:18','1/2/3/41',9,3,3),(42,3,41,'2022-07-31 12:59:17','2022-07-31 12:59:17','1/2/3/41/42',1,4,0),(43,3,41,'2022-07-31 12:59:18','2022-07-31 12:59:18','1/2/3/41/43',2,4,0),(44,3,41,'2022-07-31 12:59:18','2022-07-31 12:59:18','1/2/3/41/44',3,4,0),(45,3,3,'2022-07-31 12:59:18','2022-07-31 12:59:20','1/2/3/45',10,3,4),(46,3,45,'2022-07-31 12:59:19','2022-07-31 12:59:19','1/2/3/45/46',1,4,0),(47,3,45,'2022-07-31 12:59:19','2022-07-31 12:59:19','1/2/3/45/47',2,4,0),(48,3,45,'2022-07-31 12:59:19','2022-07-31 12:59:19','1/2/3/45/48',3,4,0),(49,3,45,'2022-07-31 12:59:20','2022-08-12 14:15:03','1/2/3/45/49',4,4,0),(50,3,3,'2022-07-31 12:59:20','2022-07-31 12:59:22','1/2/3/50',11,3,5),(51,3,50,'2022-07-31 12:59:21','2022-07-31 12:59:21','1/2/3/50/51',1,4,0),(52,3,50,'2022-07-31 12:59:21','2022-07-31 12:59:21','1/2/3/50/52',2,4,0),(53,3,50,'2022-07-31 12:59:21','2022-07-31 12:59:21','1/2/3/50/53',3,4,0),(54,3,50,'2022-07-31 12:59:22','2022-07-31 12:59:22','1/2/3/50/54',4,4,0),(55,3,50,'2022-07-31 12:59:22','2022-07-31 12:59:22','1/2/3/50/55',5,4,0),(56,3,3,'2022-07-31 12:59:22','2022-07-31 12:59:23','1/2/3/56',12,3,2),(57,3,56,'2022-07-31 12:59:23','2022-07-31 12:59:23','1/2/3/56/57',1,4,0),(58,3,56,'2022-07-31 12:59:23','2022-07-31 12:59:23','1/2/3/56/58',2,4,0),(59,3,3,'2022-07-31 12:59:24','2022-07-31 12:59:29','1/2/3/59',13,3,14),(60,3,59,'2022-07-31 12:59:24','2022-07-31 12:59:24','1/2/3/59/60',1,4,0),(61,3,59,'2022-07-31 12:59:25','2022-07-31 12:59:25','1/2/3/59/61',2,4,0),(62,3,59,'2022-07-31 12:59:25','2022-07-31 12:59:25','1/2/3/59/62',3,4,0),(63,3,59,'2022-07-31 12:59:25','2022-07-31 12:59:25','1/2/3/59/63',4,4,0),(64,3,59,'2022-07-31 12:59:26','2022-07-31 12:59:26','1/2/3/59/64',5,4,0),(65,3,59,'2022-07-31 12:59:26','2022-07-31 12:59:26','1/2/3/59/65',6,4,0),(66,3,59,'2022-07-31 12:59:26','2022-07-31 12:59:26','1/2/3/59/66',7,4,0),(67,3,59,'2022-07-31 12:59:27','2022-07-31 12:59:27','1/2/3/59/67',8,4,0),(68,3,59,'2022-07-31 12:59:27','2022-07-31 12:59:27','1/2/3/59/68',9,4,0),(69,3,59,'2022-07-31 12:59:27','2022-07-31 12:59:27','1/2/3/59/69',10,4,0),(70,3,59,'2022-07-31 12:59:28','2022-07-31 12:59:28','1/2/3/59/70',11,4,0),(71,3,59,'2022-07-31 12:59:28','2022-07-31 12:59:28','1/2/3/59/71',12,4,0),(72,3,59,'2022-07-31 12:59:28','2022-07-31 12:59:28','1/2/3/59/72',13,4,0),(73,3,59,'2022-07-31 12:59:29','2022-07-31 12:59:29','1/2/3/59/73',14,4,0),(74,3,2,'2022-07-31 12:59:29','2022-07-31 12:59:31','1/2/74',2,2,5),(75,3,74,'2022-07-31 12:59:29','2022-07-31 12:59:29','1/2/74/75',1,3,0),(76,3,74,'2022-07-31 12:59:30','2022-07-31 12:59:30','1/2/74/76',2,3,0),(77,3,74,'2022-07-31 12:59:30','2022-07-31 12:59:30','1/2/74/77',3,3,0),(78,3,74,'2022-07-31 12:59:30','2022-07-31 12:59:30','1/2/74/78',4,3,0),(79,3,74,'2022-07-31 12:59:31','2022-07-31 12:59:31','1/2/74/79',5,3,0),(80,3,2,'2022-09-14 09:13:54','2022-09-14 09:16:13','1/2/80',3,2,0);
/*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_category_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_datetime`
--

/*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_datetime` VALUES (1,61,0,49,NULL),(2,62,0,49,NULL),(3,61,0,3,NULL),(4,62,0,3,NULL),(5,61,0,80,NULL),(6,62,0,80,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_category_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_decimal`
--

/*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_entity_int`
--

DROP TABLE IF EXISTS `catalog_category_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_int`
--

/*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_int` VALUES (1,69,0,1,1),(2,69,0,2,1),(3,46,0,2,1),(4,46,0,3,1),(5,54,0,3,1),(6,69,0,3,1),(7,46,0,4,1),(8,54,0,4,1),(9,69,0,4,1),(10,46,0,5,1),(11,54,0,5,1),(12,69,0,5,1),(13,46,0,6,1),(14,54,0,6,1),(15,69,0,6,1),(16,46,0,7,1),(17,54,0,7,1),(18,69,0,7,1),(19,46,0,8,1),(20,54,0,8,1),(21,69,0,8,1),(22,46,0,9,1),(23,54,0,9,1),(24,69,0,9,1),(25,46,0,10,1),(26,54,0,10,1),(27,69,0,10,1),(28,46,0,11,1),(29,54,0,11,1),(30,69,0,11,1),(31,46,0,12,1),(32,54,0,12,1),(33,69,0,12,1),(34,46,0,13,1),(35,54,0,13,1),(36,69,0,13,1),(37,46,0,14,1),(38,54,0,14,1),(39,69,0,14,1),(40,46,0,15,1),(41,54,0,15,1),(42,69,0,15,1),(43,46,0,16,1),(44,54,0,16,1),(45,69,0,16,1),(46,46,0,17,1),(47,54,0,17,1),(48,69,0,17,1),(49,46,0,18,1),(50,54,0,18,1),(51,69,0,18,1),(52,46,0,19,1),(53,54,0,19,1),(54,69,0,19,1),(55,46,0,20,1),(56,54,0,20,1),(57,69,0,20,1),(58,46,0,21,1),(59,54,0,21,1),(60,69,0,21,1),(61,46,0,22,1),(62,54,0,22,1),(63,69,0,22,1),(64,46,0,23,1),(65,54,0,23,1),(66,69,0,23,1),(67,46,0,24,1),(68,54,0,24,1),(69,69,0,24,1),(70,46,0,25,1),(71,54,0,25,1),(72,69,0,25,1),(73,46,0,26,1),(74,54,0,26,1),(75,69,0,26,1),(76,46,0,27,1),(77,54,0,27,1),(78,69,0,27,1),(79,46,0,28,1),(80,54,0,28,1),(81,69,0,28,1),(82,46,0,29,1),(83,54,0,29,1),(84,69,0,29,1),(85,46,0,30,1),(86,54,0,30,1),(87,69,0,30,1),(88,46,0,31,1),(89,54,0,31,1),(90,69,0,31,1),(91,46,0,32,1),(92,54,0,32,1),(93,69,0,32,1),(94,46,0,33,1),(95,54,0,33,1),(96,69,0,33,1),(97,46,0,34,1),(98,54,0,34,1),(99,69,0,34,1),(100,46,0,35,1),(101,54,0,35,1),(102,69,0,35,1),(103,46,0,36,1),(104,54,0,36,1),(105,69,0,36,1),(106,46,0,37,1),(107,54,0,37,1),(108,69,0,37,1),(109,46,0,38,1),(110,54,0,38,1),(111,69,0,38,1),(112,46,0,39,1),(113,54,0,39,1),(114,69,0,39,1),(115,46,0,40,1),(116,54,0,40,1),(117,69,0,40,1),(118,46,0,41,1),(119,54,0,41,1),(120,69,0,41,1),(121,46,0,42,1),(122,54,0,42,1),(123,69,0,42,1),(124,46,0,43,1),(125,54,0,43,1),(126,69,0,43,1),(127,46,0,44,1),(128,54,0,44,1),(129,69,0,44,1),(130,46,0,45,1),(131,54,0,45,1),(132,69,0,45,1),(133,46,0,46,1),(134,54,0,46,1),(135,69,0,46,1),(136,46,0,47,1),(137,54,0,47,1),(138,69,0,47,1),(139,46,0,48,1),(140,54,0,48,1),(141,69,0,48,1),(142,46,0,49,1),(143,54,0,49,1),(144,69,0,49,1),(145,46,0,50,1),(146,54,0,50,1),(147,69,0,50,1),(148,46,0,51,1),(149,54,0,51,1),(150,69,0,51,1),(151,46,0,52,1),(152,54,0,52,1),(153,69,0,52,1),(154,46,0,53,1),(155,54,0,53,1),(156,69,0,53,1),(157,46,0,54,1),(158,54,0,54,1),(159,69,0,54,1),(160,46,0,55,1),(161,54,0,55,1),(162,69,0,55,1),(163,46,0,56,1),(164,54,0,56,1),(165,69,0,56,1),(166,46,0,57,1),(167,54,0,57,1),(168,69,0,57,1),(169,46,0,58,1),(170,54,0,58,1),(171,69,0,58,1),(172,46,0,59,1),(173,54,0,59,1),(174,69,0,59,1),(175,46,0,60,1),(176,54,0,60,1),(177,69,0,60,1),(178,46,0,61,1),(179,54,0,61,1),(180,69,0,61,1),(181,46,0,62,1),(182,54,0,62,1),(183,69,0,62,1),(184,46,0,63,1),(185,54,0,63,1),(186,69,0,63,1),(187,46,0,64,1),(188,54,0,64,1),(189,69,0,64,1),(190,46,0,65,1),(191,54,0,65,1),(192,69,0,65,1),(193,46,0,66,1),(194,54,0,66,1),(195,69,0,66,1),(196,46,0,67,1),(197,54,0,67,1),(198,69,0,67,1),(199,46,0,68,1),(200,54,0,68,1),(201,69,0,68,1),(202,46,0,69,1),(203,54,0,69,1),(204,69,0,69,1),(205,46,0,70,1),(206,54,0,70,1),(207,69,0,70,1),(208,46,0,71,1),(209,54,0,71,1),(210,69,0,71,1),(211,46,0,72,1),(212,54,0,72,1),(213,69,0,72,1),(214,46,0,73,1),(215,54,0,73,1),(216,69,0,73,1),(217,46,0,74,1),(218,54,0,74,1),(219,69,0,74,1),(220,46,0,75,1),(221,54,0,75,1),(222,69,0,75,1),(223,46,0,76,1),(224,54,0,76,1),(225,69,0,76,1),(226,46,0,77,1),(227,54,0,77,1),(228,69,0,77,1),(229,46,0,78,1),(230,54,0,78,1),(231,69,0,78,1),(232,46,0,79,1),(233,54,0,79,1),(234,69,0,79,1),(235,53,0,49,NULL),(236,70,0,49,0),(237,71,0,49,0),(238,53,0,3,NULL),(239,70,0,3,0),(240,71,0,3,0),(241,46,0,80,1),(242,54,0,80,1),(243,69,0,80,1),(244,70,0,80,0),(245,71,0,80,0),(246,53,0,80,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_entity_text`
--

DROP TABLE IF EXISTS `catalog_category_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` mediumtext DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_text`
--

/*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_text` VALUES (1,47,0,49,NULL),(2,50,0,49,NULL),(3,51,0,49,NULL),(4,47,0,3,'<style>#html-body [data-pb-style=F052I34],#html-body [data-pb-style=KCOQH84]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=F052I34]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=KCOQH84]{align-self:stretch}#html-body [data-pb-style=WO49SO4]{display:flex;width:100%}#html-body [data-pb-style=OXUV2WG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"F052I34\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"KCOQH84\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"WO49SO4\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OXUV2WG\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center;\">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Nulla porttitor accumsan tincidunt. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Donec sollicitudin molestie malesuada. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem.</p></div></div></div></div></div></div>'),(5,50,0,3,NULL),(6,51,0,3,NULL),(7,47,0,80,'<style>#html-body [data-pb-style=I3L9AOG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"I3L9AOG\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Donec rutrum congue leo eget malesuada. Pellentesque in ipsum id orci porta dapibus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Cras ultricies ligula sed magna dictum porta. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Vivamus suscipit tortor eget felis porttitor volutpat. Cras ultricies ligula sed magna dictum porta. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec rutrum congue leo eget malesuada.</p>\r\n<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Donec rutrum congue leo eget malesuada. Pellentesque in ipsum id orci porta dapibus. Sed porttitor lectus nibh. Pellentesque in ipsum id orci porta dapibus. Pellentesque in ipsum id orci porta dapibus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Sed porttitor lectus nibh. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.</p></div></div></div>'),(8,50,0,80,NULL),(9,51,0,80,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_category_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=260 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_varchar`
--

/*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_varchar` VALUES (1,45,0,1,'Root Catalog'),(2,52,0,2,'PRODUCTS'),(3,45,0,2,'Default Category'),(4,45,0,3,'Alimentari'),(5,121,0,3,'alimentari'),(6,122,0,3,'alimentari'),(7,45,0,4,'Consigli e promozioni'),(8,121,0,4,'consigli-e-promozioni'),(9,122,0,4,'alimentari/consigli-e-promozioni'),(10,45,0,5,'Best sellers'),(11,121,0,5,'best-sellers'),(12,122,0,5,'alimentari/consigli-e-promozioni/best-sellers'),(13,45,0,6,'Marchio Trentino'),(14,121,0,6,'marchio-trentino'),(15,122,0,6,'alimentari/consigli-e-promozioni/marchio-trentino'),(16,45,0,7,'Promozioni'),(17,121,0,7,'promozioni'),(18,122,0,7,'alimentari/consigli-e-promozioni/promozioni'),(19,45,0,8,'Selezioni del mese'),(20,121,0,8,'selezioni-del-mese'),(21,122,0,8,'alimentari/consigli-e-promozioni/selezioni-del-mese'),(22,45,0,9,'Altre selezioni'),(23,121,0,9,'altre-selezioni'),(24,122,0,9,'alimentari/consigli-e-promozioni/altre-selezioni'),(25,45,0,10,'Ricette'),(26,121,0,10,'ricette'),(27,122,0,10,'alimentari/consigli-e-promozioni/ricette'),(28,45,0,11,'Formaggi e lattici'),(29,121,0,11,'formaggi-e-lattici'),(30,122,0,11,'alimentari/formaggi-e-lattici'),(31,45,0,12,'Formaggi'),(32,121,0,12,'formaggi'),(33,122,0,12,'alimentari/formaggi-e-lattici/formaggi'),(34,45,0,13,'Lattici, Yogurt'),(35,121,0,13,'lattici-yogurt'),(36,122,0,13,'alimentari/formaggi-e-lattici/lattici-yogurt'),(37,45,0,14,'Latte'),(38,121,0,14,'latte'),(39,122,0,14,'alimentari/formaggi-e-lattici/lattici-yogurt/latte'),(40,45,0,15,'Mozzarelle'),(41,121,0,15,'mozzarelle'),(42,122,0,15,'alimentari/formaggi-e-lattici/lattici-yogurt/mozzarelle'),(43,45,0,16,'Yogurt'),(44,121,0,16,'yogurt'),(45,122,0,16,'alimentari/formaggi-e-lattici/lattici-yogurt/yogurt'),(46,45,0,17,'Carni e salumi'),(47,121,0,17,'carni-e-salumi'),(48,122,0,17,'alimentari/carni-e-salumi'),(49,45,0,18,'Salumi'),(50,121,0,18,'salumi'),(51,122,0,18,'alimentari/carni-e-salumi/salumi'),(52,45,0,19,'Carni'),(53,121,0,19,'carni'),(54,122,0,19,'alimentari/carni-e-salumi/carni'),(55,45,0,20,'Carne Salada'),(56,121,0,20,'carne-salada'),(57,122,0,20,'alimentari/carni-e-salumi/carni/carne-salada'),(58,45,0,21,'Carne Fumada'),(59,121,0,21,'carne-fumada'),(60,122,0,21,'alimentari/carni-e-salumi/carni/carne-fumada'),(61,45,0,22,'Carne Salmistrata'),(62,121,0,22,'carne-salmistrata'),(63,122,0,22,'alimentari/carni-e-salumi/carni/carne-salmistrata'),(64,45,0,23,'Tagli di carne'),(65,121,0,23,'tagli-di-carne'),(66,122,0,23,'alimentari/carni-e-salumi/carni/tagli-di-carne'),(67,45,0,24,'Frutta e verdura'),(68,121,0,24,'frutta-e-verdura'),(69,122,0,24,'alimentari/frutta-e-verdura'),(70,45,0,25,'Frutta'),(71,121,0,25,'frutta'),(72,122,0,25,'alimentari/frutta-e-verdura/frutta'),(73,45,0,26,'Verdura'),(74,121,0,26,'verdura'),(75,122,0,26,'alimentari/frutta-e-verdura/verdura'),(76,45,0,27,'Pesce'),(77,121,0,27,'pesce'),(78,122,0,27,'alimentari/pesce'),(79,45,0,28,'Trota'),(80,121,0,28,'trota'),(81,122,0,28,'alimentari/pesce/trota'),(82,45,0,29,'Salmerino'),(83,121,0,29,'salmerino'),(84,122,0,29,'alimentari/pesce/salmerino'),(85,45,0,30,'Pane, pasta, farine'),(86,121,0,30,'pane-pasta-farine'),(87,122,0,30,'alimentari/pane-pasta-farine'),(88,45,0,31,'Farine'),(89,121,0,31,'farine'),(90,122,0,31,'alimentari/pane-pasta-farine/farine'),(91,45,0,32,'Pasta'),(92,121,0,32,'pasta'),(93,122,0,32,'alimentari/pane-pasta-farine/pasta'),(94,45,0,33,'Pane e derivati'),(95,121,0,33,'pane-e-derivati'),(96,122,0,33,'alimentari/pane-pasta-farine/pane-e-derivati'),(97,45,0,34,'Dispensa'),(98,121,0,34,'dispensa'),(99,122,0,34,'alimentari/dispensa'),(100,45,0,35,'Olio, Aceto, Spezie'),(101,121,0,35,'olio-aceto-spezie'),(102,122,0,35,'alimentari/dispensa/olio-aceto-spezie'),(103,45,0,36,'Passate, Sughi conserve e salse'),(104,121,0,36,'passate-sughi-conserve-e-salse'),(105,122,0,36,'alimentari/dispensa/passate-sughi-conserve-e-salse'),(106,45,0,37,'Dolci e snack'),(107,121,0,37,'dolci-e-snack'),(108,122,0,37,'alimentari/dolci-e-snack'),(109,45,0,38,'Marmellate'),(110,121,0,38,'marmellate'),(111,122,0,38,'alimentari/dolci-e-snack/marmellate'),(112,45,0,39,'Pasticceria e biscotti'),(113,121,0,39,'pasticceria-e-biscotti'),(114,122,0,39,'alimentari/dolci-e-snack/pasticceria-e-biscotti'),(115,45,0,40,'snack'),(116,121,0,40,'snack'),(117,122,0,40,'alimentari/dolci-e-snack/snack'),(118,45,0,41,'Miele e tisane'),(119,121,0,41,'miele-e-tisane'),(120,122,0,41,'alimentari/miele-e-tisane'),(121,45,0,42,'Marmellate'),(122,121,0,42,'marmellate'),(123,122,0,42,'alimentari/miele-e-tisane/marmellate'),(124,45,0,43,'Tisane'),(125,121,0,43,'tisane'),(126,122,0,43,'alimentari/miele-e-tisane/tisane'),(127,45,0,44,'Caffè'),(128,121,0,44,'caffe'),(129,122,0,44,'alimentari/miele-e-tisane/caffe'),(130,45,0,45,'Vino'),(131,121,0,45,'vino'),(132,122,0,45,'alimentari/vino'),(133,45,0,46,'Vino Rosso e Rosato'),(134,121,0,46,'vino-rosso-e-rosato'),(135,122,0,46,'alimentari/vino/vino-rosso-e-rosato'),(136,45,0,47,'Vino Bianco'),(137,121,0,47,'vino-bianco'),(138,122,0,47,'alimentari/vino/vino-bianco'),(139,45,0,48,'Bollicine'),(140,121,0,48,'bollicine'),(141,122,0,48,'alimentari/vino/bollicine'),(142,45,0,49,'Vini Dolci e Liquorosi'),(143,121,0,49,'vini-dolci-e-liquorosi'),(144,122,0,49,'alimentari/vino/vini-dolci-e-liquorosi'),(145,45,0,50,'Birra, sidro e bevande'),(146,121,0,50,'birra-sidro-e-bevande'),(147,122,0,50,'alimentari/birra-sidro-e-bevande'),(148,45,0,51,'Birra Chiara'),(149,121,0,51,'birra-chiara'),(150,122,0,51,'alimentari/birra-sidro-e-bevande/birra-chiara'),(151,45,0,52,'Birra Ambrata'),(152,121,0,52,'birra-ambrata'),(153,122,0,52,'alimentari/birra-sidro-e-bevande/birra-ambrata'),(154,45,0,53,'Birra Scura'),(155,121,0,53,'birra-scura'),(156,122,0,53,'alimentari/birra-sidro-e-bevande/birra-scura'),(157,45,0,54,'Sidro'),(158,121,0,54,'sidro'),(159,122,0,54,'alimentari/birra-sidro-e-bevande/sidro'),(160,45,0,55,'Succhi'),(161,121,0,55,'succhi'),(162,122,0,55,'alimentari/birra-sidro-e-bevande/succhi'),(163,45,0,56,'Liquori e distillati'),(164,121,0,56,'liquori-e-distillati'),(165,122,0,56,'alimentari/liquori-e-distillati'),(166,45,0,57,'Grappa'),(167,121,0,57,'grappa'),(168,122,0,57,'alimentari/liquori-e-distillati/grappa'),(169,45,0,58,'Liquori'),(170,121,0,58,'liquori'),(171,122,0,58,'alimentari/liquori-e-distillati/liquori'),(172,45,0,59,'Prodotti e territori'),(173,121,0,59,'prodotti-e-territori'),(174,122,0,59,'alimentari/prodotti-e-territori'),(175,45,0,60,'Val di Sole'),(176,121,0,60,'val-di-sole'),(177,122,0,60,'alimentari/prodotti-e-territori/val-di-sole'),(178,45,0,61,'Val di Non'),(179,121,0,61,'val-di-non'),(180,122,0,61,'alimentari/prodotti-e-territori/val-di-non'),(181,45,0,62,'Val di Fiemme'),(182,121,0,62,'val-di-fiemme'),(183,122,0,62,'alimentari/prodotti-e-territori/val-di-fiemme'),(184,45,0,63,'Val di Fassa'),(185,121,0,63,'val-di-fassa'),(186,122,0,63,'alimentari/prodotti-e-territori/val-di-fassa'),(187,45,0,64,'Garda Trentino e Valle di Ledro'),(188,121,0,64,'garda-trentino-e-valle-di-ledro'),(189,122,0,64,'alimentari/prodotti-e-territori/garda-trentino-e-valle-di-ledro'),(190,45,0,65,'Rovereto e Vallagarina'),(191,121,0,65,'rovereto-e-vallagarina'),(192,122,0,65,'alimentari/prodotti-e-territori/rovereto-e-vallagarina'),(193,45,0,66,'Trento e Monte Bondone'),(194,121,0,66,'trento-e-monte-bondone'),(195,122,0,66,'alimentari/prodotti-e-territori/trento-e-monte-bondone'),(196,45,0,67,'Rotaliana e Paganella'),(197,121,0,67,'rotaliana-e-paganella'),(198,122,0,67,'alimentari/prodotti-e-territori/rotaliana-e-paganella'),(199,45,0,68,'Valsugana'),(200,121,0,68,'valsugana'),(201,122,0,68,'alimentari/prodotti-e-territori/valsugana'),(202,45,0,69,'Primiero'),(203,121,0,69,'primiero'),(204,122,0,69,'alimentari/prodotti-e-territori/primiero'),(205,45,0,70,'Altopiano di Pinè e Valle di Cembra'),(206,121,0,70,'altopiano-di-pine-e-valle-di-cembra'),(207,122,0,70,'alimentari/prodotti-e-territori/altopiano-di-pine-e-valle-di-cembra'),(208,45,0,71,'Giudicarie e Rendena'),(209,121,0,71,'giudicarie-e-rendena'),(210,122,0,71,'alimentari/prodotti-e-territori/giudicarie-e-rendena'),(211,45,0,72,'Altipiani cimbri'),(212,121,0,72,'altipiani-cimbri'),(213,122,0,72,'alimentari/prodotti-e-territori/altipiani-cimbri'),(214,45,0,73,'Valle dei Laghi'),(215,121,0,73,'valle-dei-laghi'),(216,122,0,73,'alimentari/prodotti-e-territori/valle-dei-laghi'),(217,45,0,74,'Prodotti del territorio'),(218,121,0,74,'prodotti-del-territorio'),(219,122,0,74,'prodotti-del-territorio'),(220,45,0,75,'Arredamento'),(221,121,0,75,'arredamento'),(222,122,0,75,'prodotti-del-territorio/arredamento'),(223,45,0,76,'Prodotti Termali'),(224,121,0,76,'prodotti-termali'),(225,122,0,76,'prodotti-del-territorio/prodotti-termali'),(226,45,0,77,'Abbigliamento'),(227,121,0,77,'abbigliamento'),(228,122,0,77,'prodotti-del-territorio/abbigliamento'),(229,45,0,78,'Sport'),(230,121,0,78,'sport'),(231,122,0,78,'prodotti-del-territorio/sport'),(232,45,0,79,'Artigianato Artistico'),(233,121,0,79,'artigianato-artistico'),(234,122,0,79,'prodotti-del-territorio/artigianato-artistico'),(236,48,0,49,NULL),(237,49,0,49,NULL),(238,52,0,49,'PRODUCTS'),(239,60,0,49,NULL),(240,63,0,49,NULL),(243,48,0,3,'/media/catalog/category/Ultra_HD_4K_Landscape_62666923_1.jpg'),(244,49,0,3,NULL),(245,52,0,3,'PRODUCTS'),(246,60,0,3,NULL),(247,63,0,3,NULL),(248,45,0,80,'InTrentino'),(249,48,0,80,'/media/catalog/category/Ultra_HD_4K_Landscape_36969872.jpg'),(250,52,0,80,'PRODUCTS'),(251,63,0,80,'category-full-width'),(252,121,0,80,'intrentino'),(255,49,0,80,NULL),(256,60,0,80,NULL),(257,122,0,80,'intrentino');
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_product`
--

DROP TABLE IF EXISTS `catalog_category_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_product` (
  `entity_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`entity_id`,`category_id`,`product_id`),
  UNIQUE KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Category Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product`
--

/*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */;
INSERT INTO `catalog_category_product` VALUES (1,3,1,0),(2,45,2,0),(3,41,3,0),(9,74,9,0),(10,3,10,0),(11,3,11,0),(12,3,12,0),(13,3,13,0),(14,3,14,0),(15,3,15,0),(16,3,16,0),(17,3,17,0),(18,3,18,0),(19,3,19,0),(20,3,20,0),(21,3,21,0),(22,3,22,0);
/*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_product_index`
--

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

--
-- Dumping data for table `catalog_category_product_index`
--

/*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_product_index_replica`
--

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

--
-- Dumping data for table `catalog_category_product_index_replica`
--

/*!40000 ALTER TABLE `catalog_category_product_index_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_replica` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_product_index_store1`
--

DROP TABLE IF EXISTS `catalog_category_product_index_store1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_category_product_index_store1` (
  `category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category Id',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Id',
  `position` int(11) DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Id',
  `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `IDX_4B965DC45C352D6E4C9DC0FF50B1FCF5` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_47AB760CD6A893ACEA69A9C2E0112C60` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_store1`
--

/*!40000 ALTER TABLE `catalog_category_product_index_store1` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index_store1` VALUES (2,1,0,1,1,4),(2,2,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),(3,2,10000,0,1,4),(3,1,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),(45,2,0,1,1,4),(74,9,0,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index_store1` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_product_index_store1_replica`
--

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

--
-- Dumping data for table `catalog_category_product_index_store1_replica`
--

/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index_store1_replica` VALUES (2,1,0,1,1,4),(2,2,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),(3,2,10000,0,1,4),(3,1,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),(45,2,0,1,1,4),(74,9,0,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` ENABLE KEYS */;

--
-- Table structure for table `catalog_category_product_index_tmp`
--

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

--
-- Dumping data for table `catalog_category_product_index_tmp`
--

/*!40000 ALTER TABLE `catalog_category_product_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_compare_item`
--

DROP TABLE IF EXISTS `catalog_compare_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_compare_item` (
  `catalog_compare_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare Item ID',
  `visitor_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `list_id` int(10) unsigned DEFAULT NULL COMMENT 'List ID',
  PRIMARY KEY (`catalog_compare_item_id`),
  KEY `CATALOG_COMPARE_ITEM_LIST_ID_CATALOG_COMPARE_LIST_LIST_ID` (`list_id`),
  KEY `CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  KEY `CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_LIST_ID_CATALOG_COMPARE_LIST_LIST_ID` FOREIGN KEY (`list_id`) REFERENCES `catalog_compare_list` (`list_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Catalog Compare Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_compare_item`
--

/*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */;
INSERT INTO `catalog_compare_item` VALUES (1,26,NULL,14,1,NULL),(2,0,3,14,1,NULL),(3,0,3,13,1,NULL);
/*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */;

--
-- Table structure for table `catalog_compare_list`
--

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

--
-- Dumping data for table `catalog_compare_list`
--

/*!40000 ALTER TABLE `catalog_compare_list` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_compare_list` ENABLE KEYS */;

--
-- Table structure for table `catalog_eav_attribute`
--

DROP TABLE IF EXISTS `catalog_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `frontend_input_renderer` varchar(255) DEFAULT NULL COMMENT 'Frontend Input Renderer',
  `is_global` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Global',
  `is_visible` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Visible',
  `is_searchable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Searchable',
  `is_filterable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Filterable',
  `is_comparable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Comparable',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `is_html_allowed_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is HTML Allowed On Front',
  `is_used_for_price_rules` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used For Price Rules',
  `is_filterable_in_search` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Filterable In Search',
  `used_in_product_listing` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used In Product Listing',
  `used_for_sort_by` smallint(5) 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(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible In Advanced Search',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  `is_wysiwyg_enabled` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is WYSIWYG Enabled',
  `is_used_for_promo_rules` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used For Promo Rules',
  `is_required_in_admin_store` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Required In Admin Store',
  `is_used_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint(5) 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 DEFAULT NULL COMMENT 'Additional swatch attributes data',
  PRIMARY KEY (`attribute_id`),
  KEY `CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  KEY `CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`),
  CONSTRAINT `CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog EAV Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_eav_attribute`
--

/*!40000 ALTER TABLE `catalog_eav_attribute` DISABLE KEYS */;
INSERT INTO `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,0,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,downloadable,bundle,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,downloadable,bundle,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,downloadable,bundle,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,downloadable,bundle,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,downloadable,bundle,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,downloadable,bundle',0,0,0,0,0,0,0,0,1,0,NULL),(93,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,virtual,configurable',1,0,0,0,0,1,0,1,1,0,NULL),(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,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable,bundle,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,grouped,configurable',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,'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),(120,'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),(121,NULL,0,1,1,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,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,NULL,0,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(124,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(125,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(126,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(127,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(128,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',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,1,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(131,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(132,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(133,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(134,'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),(135,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(136,NULL,2,1,1,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(163,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(164,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(165,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(166,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(167,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(168,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(169,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(170,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(171,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(172,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(173,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(174,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(175,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(176,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(177,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(178,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(179,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(180,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(181,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(182,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(183,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(184,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(185,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(186,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(187,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(188,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(205,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(206,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(207,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(208,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(209,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(210,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(211,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(212,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL);
/*!40000 ALTER TABLE `catalog_eav_attribute` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_bundle_option`
--

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

--
-- Dumping data for table `catalog_product_bundle_option`
--

/*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_bundle_option_value`
--

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

--
-- Dumping data for table `catalog_product_bundle_option_value`
--

/*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_bundle_price_index`
--

DROP TABLE IF EXISTS `catalog_product_bundle_price_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_bundle_price_index` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `customer_group_id` int(10) 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 `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Price Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_price_index`
--

/*!40000 ALTER TABLE `catalog_product_bundle_price_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_price_index` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_bundle_selection`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_bundle_selection` (
  `selection_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Selection ID',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option ID',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `position` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Position',
  `is_default` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Default',
  `selection_price_type` smallint(5) 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(6) NOT NULL DEFAULT 0 COMMENT 'Selection Can Change Qty',
  PRIMARY KEY (`selection_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_selection`
--

/*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_bundle_selection_price`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_bundle_selection_price` (
  `selection_id` int(10) unsigned NOT NULL COMMENT 'Selection ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `selection_price_type` smallint(5) 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(10) unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_selection_price`
--

/*!40000 ALTER TABLE `catalog_product_bundle_selection_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_selection_price` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_bundle_stock_index`
--

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

--
-- Dumping data for table `catalog_product_bundle_stock_index`
--

/*!40000 ALTER TABLE `catalog_product_bundle_stock_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_stock_index` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint(5) 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(6) NOT NULL DEFAULT 0 COMMENT 'Has Options',
  `required_options` smallint(5) 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 `CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `CATALOG_PRODUCT_ENTITY_SKU` (`sku`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity`
--

/*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity` VALUES (1,9,'simple','vinotest',0,0,'2022-07-31 13:04:22','2022-08-29 13:52:34'),(2,9,'simple','primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',0,0,'2022-08-08 14:48:10','2022-08-08 15:21:14'),(3,4,'simple','prodottoprova-69e46421-28b0-4595-b964-4a01c8ba83ce',0,0,'2022-08-10 14:53:54','2022-08-10 14:55:55'),(9,4,'simple','prodotto lorem ipsum',0,0,'2022-08-30 07:23:52','2022-08-30 07:23:52'),(10,4,'simple','La Birra!',0,0,'2022-09-01 07:31:32','2022-09-01 07:31:32'),(11,4,'simple','La morte !',0,0,'2022-09-01 07:32:49','2022-09-01 07:32:49'),(12,4,'simple','Bepi merlot',0,0,'2022-09-01 07:33:51','2022-09-01 07:33:51'),(13,4,'simple','Spremuta di fragole',0,0,'2022-09-01 07:35:20','2022-09-13 15:10:54'),(14,4,'simple','Formaj',0,0,'2022-09-01 07:36:34','2022-09-01 07:36:34'),(15,4,'simple','prodotto lorem ipsum 2',0,0,'2022-09-13 08:42:19','2022-09-13 08:46:47'),(16,4,'simple','prodotto lorem ipsum 3',0,0,'2022-09-13 09:06:52','2022-09-13 09:06:52'),(17,4,'simple','prodotto lorem ipsum 4',0,0,'2022-09-13 09:08:08','2022-09-15 07:47:10'),(18,4,'simple','prodotto lorem ipsum 5',0,0,'2022-09-13 09:09:32','2022-09-13 09:09:32'),(19,4,'simple','prodotto lorem ipsum 6',0,0,'2022-09-13 09:11:01','2022-09-13 09:11:01'),(20,4,'simple','prodotto lorem ipsum 7',0,0,'2022-09-13 09:15:39','2022-09-13 09:15:39'),(21,4,'simple','prodotto lorem ipsum 8',0,0,'2022-09-13 09:16:58','2022-09-13 09:16:58'),(22,4,'simple','prodotto lorem ipsum 9',0,0,'2022-09-13 09:18:06','2022-09-13 09:18:06');
/*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_product_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DTIME_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_datetime`
--

/*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_datetime` VALUES (1,79,0,2,'2022-08-08 00:00:00'),(2,79,0,3,'2022-08-10 00:00:00'),(3,79,0,15,'2022-09-13 00:00:00');
/*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_product_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_decimal`
--

/*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_decimal` VALUES (1,77,0,1,1.000000),(2,77,0,2,12.000000),(3,78,0,2,12.000000),(4,82,0,2,1.000000),(5,77,0,3,35.000000),(6,78,0,3,35.000000),(7,82,0,3,400.000000),(17,77,0,9,199.900000),(18,82,0,9,1.000000),(19,77,0,10,1.000000),(20,82,0,10,1.000000),(21,77,0,11,0.990000),(22,82,0,11,1.000000),(23,77,0,12,10.000000),(24,77,0,13,100.000000),(25,82,0,13,1.000000),(26,77,0,14,100.000000),(27,82,0,14,1.000000),(28,77,0,15,99.000000),(29,78,0,15,90.000000),(30,81,0,15,90.000000),(31,82,0,15,1.000000),(32,77,0,16,123.000000),(33,82,0,16,2.000000),(34,77,0,17,54.000000),(35,82,0,17,2.000000),(36,77,0,18,89.000000),(37,82,0,18,50.000000),(38,77,0,19,62.000000),(39,82,0,19,1.000000),(40,77,0,20,96.000000),(41,82,0,20,3.000000),(42,77,0,21,876.000000),(43,82,0,21,2.000000),(44,77,0,22,173.000000),(45,82,0,22,1.000000);
/*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_gallery` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_gallery`
--

/*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_int`
--

DROP TABLE IF EXISTS `catalog_product_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID_STORE_ID_VALUE` (`attribute_id`,`store_id`,`value`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_INT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_int`
--

/*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_int` VALUES (1,97,0,1,1),(2,136,0,1,2),(3,99,0,1,4),(4,179,0,1,0),(5,180,0,1,0),(6,181,0,1,0),(7,182,0,1,0),(8,97,0,2,1),(9,99,0,2,4),(10,115,0,2,1),(11,136,0,2,2),(12,164,0,2,28),(13,168,0,2,31),(14,170,0,2,36),(15,179,0,2,0),(16,180,0,2,1),(17,181,0,2,1),(18,182,0,2,0),(19,97,0,3,1),(20,99,0,3,1),(21,115,0,3,1),(22,136,0,3,2),(38,97,0,9,1),(39,99,0,9,4),(40,136,0,9,2),(41,97,0,10,1),(42,99,0,10,4),(43,136,0,10,2),(44,97,0,11,1),(45,99,0,11,4),(46,136,0,11,2),(47,97,0,12,1),(48,99,0,12,4),(49,136,0,12,2),(50,97,0,13,1),(51,99,0,13,4),(52,136,0,13,2),(53,97,0,14,1),(54,99,0,14,4),(55,136,0,14,2),(56,97,0,15,1),(57,99,0,15,4),(58,136,0,15,2),(59,97,0,16,1),(60,99,0,16,4),(61,136,0,16,2),(62,97,0,17,1),(63,99,0,17,4),(64,136,0,17,2),(65,97,0,18,1),(66,99,0,18,4),(67,136,0,18,2),(68,97,0,19,1),(69,99,0,19,4),(70,136,0,19,2),(71,97,0,20,1),(72,99,0,20,4),(73,136,0,20,2),(74,97,0,21,1),(75,99,0,21,4),(76,136,0,21,2),(77,97,0,22,1),(78,99,0,22,4),(79,136,0,22,2);
/*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_media_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_media_gallery` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  `media_type` varchar(32) NOT NULL DEFAULT 'image' COMMENT 'Media entry type',
  `disabled` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Visibility status',
  PRIMARY KEY (`value_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery`
--

/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery` VALUES (7,90,'/r/i/ripmo_1_1.jpg','image',0),(8,90,'/7/d/7dad96ae-0c38-4d1c-9154-97ea66f5b347.png','image',0),(9,90,'/7/e/7ece25db-46d8-42a9-a09c-e189c9ff6dcc.png','image',0),(10,90,'/4/6/46e2ad5b-8fe2-4530-be0c-3d2835eff0eb.png','image',0),(11,90,'/8/a/8a737456-973e-4f74-9c96-1fa521f7e055.png','image',0),(12,90,'/7/8/78232264-8b43-46a8-b581-7270e68503e9.png','image',0),(13,90,'/0/8/088acaf8-cfbb-4042-acc5-c2818407d016.png','image',0),(14,90,'/a/4/a47c3c22-fa36-404a-9200-2b668b4ebed2.png','image',0),(15,90,'/3/f/3f0721a2-968b-42d8-8254-7054b585cc40.png','image',0),(16,90,'/u/l/ultra_hd_4k_landscape_52344986.jpg','image',0),(17,90,'/u/l/ultra_hd_4k_landscape_62668813.jpg','image',0),(18,90,'/u/l/ultra_hd_4k_landscape_62666923.jpg','image',0),(19,90,'/u/l/ultra_hd_4k_landscape_62555578.jpg','image',0),(20,90,'/u/l/ultra_hd_4k_landscape_10865297.jpg','image',0),(21,90,'/u/l/ultra_hd_4k_landscape_76715545.jpg','image',0),(22,90,'/u/l/ultra_hd_4k_landscape_82118087.jpg','image',0),(23,90,'/u/l/ultra_hd_4k_landscape_14125479.jpg','image',0),(24,90,'/u/l/ultra_hd_4k_landscape_62666923_1.jpg','image',0),(25,90,'/u/l/ultra_hd_4k_landscape_62668813_1.jpg','image',0),(26,90,'/u/l/ultra_hd_4k_landscape_52344986_1.jpg','image',0),(27,90,'/u/l/ultra_hd_4k_landscape_52866729.jpg','image',0),(28,90,'/u/l/ultra_hd_4k_landscape_52344986_2.jpg','image',0),(29,90,'/u/l/ultra_hd_4k_landscape_62668813_2.jpg','image',0),(30,90,'/u/l/ultra_hd_4k_landscape_62666923_2.jpg','image',0),(31,90,'/u/l/ultra_hd_4k_landscape_38913472.jpg','image',0),(32,90,'/u/l/ultra_hd_4k_landscape_37847660.jpg','image',0),(33,90,'/u/l/ultra_hd_4k_landscape_42068686.jpg','image',0),(34,90,'/u/l/ultra_hd_4k_landscape_41663532.jpg','image',0),(35,90,'/u/l/ultra_hd_4k_landscape_33189115.jpg','image',0),(36,90,'/u/l/ultra_hd_4k_landscape_42068686_1.jpg','image',0),(37,90,'/u/l/ultra_hd_4k_landscape_62555578_1.jpg','image',0),(38,90,'/u/l/ultra_hd_4k_landscape_25462071.jpg','image',0),(39,90,'/u/l/ultra_hd_4k_landscape_28291967.jpg','image',0),(40,90,'/u/l/ultra_hd_4k_landscape_92736155.jpg','image',0),(41,90,'/u/l/ultra_hd_4k_landscape_92429623.jpg','image',0),(42,90,'/u/l/ultra_hd_4k_landscape_25568773.jpg','image',0);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_media_gallery_value`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_media_gallery_value` (
  `value_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Value ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  `position` int(10) unsigned DEFAULT NULL COMMENT 'Position',
  `disabled` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Disabled',
  `record_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record ID',
  PRIMARY KEY (`record_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_VALUE_ID` (`value_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_VAL_ID_STORE_ID` (`entity_id`,`value_id`,`store_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VAL_ID_CAT_PRD_ENTT_MDA_GLR_VAL_ID` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value`
--

/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value` VALUES (7,0,1,NULL,2,0,8),(8,0,10,NULL,1,0,9),(9,0,11,NULL,1,0,10),(10,0,12,NULL,1,0,11),(12,0,14,NULL,1,0,13),(13,0,15,NULL,1,0,17),(14,0,15,NULL,2,0,18),(15,0,15,NULL,3,0,19),(16,0,16,NULL,1,0,20),(17,0,16,NULL,2,0,21),(18,0,16,NULL,3,0,22),(19,0,16,NULL,4,0,23),(24,0,18,NULL,1,0,28),(25,0,18,NULL,2,0,29),(26,0,18,NULL,3,0,30),(27,0,19,NULL,1,0,31),(28,0,19,NULL,2,0,32),(29,0,19,NULL,3,0,33),(30,0,19,NULL,4,0,34),(31,0,20,NULL,1,0,35),(32,0,20,NULL,2,0,36),(33,0,20,NULL,3,0,37),(34,0,20,NULL,4,0,38),(35,0,21,NULL,0,0,39),(36,0,21,NULL,1,0,40),(37,0,21,NULL,2,0,41),(38,0,22,NULL,1,0,42),(39,0,22,NULL,2,0,43),(40,0,22,NULL,3,0,44),(41,0,22,NULL,4,0,45),(42,0,22,NULL,5,0,46),(11,0,13,NULL,1,0,47),(20,0,17,NULL,1,0,52),(21,0,17,NULL,2,0,53),(22,0,17,NULL,3,0,54),(23,0,17,NULL,4,0,55);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_media_gallery_value_to_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_to_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_media_gallery_value_to_entity` (
  `value_id` int(10) unsigned NOT NULL COMMENT 'Value media Entry ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Product Entity ID',
  PRIMARY KEY (`value_id`,`entity_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` (`entity_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_A6C6C8FAA386736921D3A7C4B50B1185` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Media value to Product entity table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value_to_entity`
--

/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value_to_entity` VALUES (7,1),(8,10),(9,11),(10,12),(11,13),(12,14),(13,15),(14,15),(15,15),(16,16),(17,16),(18,16),(19,16),(20,17),(21,17),(22,17),(23,17),(24,18),(25,18),(26,18),(27,19),(28,19),(29,19),(30,19),(31,20),(32,20),(33,20),(34,20),(35,21),(36,21),(37,21),(38,22),(39,22),(40,22),(41,22),(42,22);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_media_gallery_value_video`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_video`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_media_gallery_value_video` (
  `value_id` int(10) unsigned NOT NULL COMMENT 'Media Entity ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `provider` varchar(32) DEFAULT NULL COMMENT 'Video provider ID',
  `url` text DEFAULT NULL COMMENT 'Video URL',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text DEFAULT NULL COMMENT 'Page Meta Description',
  `metadata` text DEFAULT NULL COMMENT 'Video meta data',
  PRIMARY KEY (`value_id`,`store_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_6FDF205946906B0E653E60AA769899F8` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Video Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value_video`
--

/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_text`
--

DROP TABLE IF EXISTS `catalog_product_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` mediumtext DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TEXT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_text`
--

/*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_text` VALUES (1,85,0,1,'Vino Test'),(2,163,0,2,'alcuni       '),(3,173,0,2,'          '),(4,174,0,2,'          '),(5,177,0,2,'          '),(6,178,0,2,'          '),(7,188,0,2,'          '),(13,76,0,9,'<p>descrizione</p>'),(14,85,0,9,'prodotto lorem ipsum'),(15,85,0,10,'La Birra!'),(16,85,0,11,'La morte !'),(17,85,0,12,'Bepi merlot'),(18,85,0,13,'Spremuta di fragole'),(19,85,0,14,'Formaj'),(20,76,0,15,'<p>\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>'),(21,85,0,15,'prodotto lorem ipsum 2'),(22,76,0,16,'<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Donec sollicitudin molestie malesuada. Sed porttitor lectus nibh. Nulla porttitor accumsan tincidunt. Vivamus suscipit tortor eget felis porttitor volutpat. Proin eget tortor risus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>'),(23,85,0,16,'prodotto lorem ipsum 3'),(24,76,0,17,'<p>Sed porttitor lectus nibh. Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Pellentesque in ipsum id orci porta dapibus. Donec rutrum congue leo eget malesuada. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sollicitudin molestie malesuada.</p>\r\n<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Sed porttitor lectus nibh. Pellentesque in ipsum id orci porta dapibus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Proin eget tortor risus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sollicitudin molestie malesuada. Donec rutrum congue leo eget malesuada. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>'),(25,85,0,17,'prodotto lorem ipsum 4'),(26,76,0,18,'<p>Cras ultricies ligula sed magna dictum porta. Vivamus suscipit tortor eget felis porttitor volutpat. Sed porttitor lectus nibh. Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Pellentesque in ipsum id orci porta dapibus. Cras ultricies ligula sed magna dictum porta.</p>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Nulla porttitor accumsan tincidunt. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Donec rutrum congue leo eget malesuada. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Curabitur aliquet quam id dui posuere blandit.</p>'),(27,85,0,18,'prodotto lorem ipsum 5'),(28,76,0,19,'<p>Cras ultricies ligula sed magna dictum porta. Vivamus suscipit tortor eget felis porttitor volutpat. Sed porttitor lectus nibh. Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Pellentesque in ipsum id orci porta dapibus. Cras ultricies ligula sed magna dictum porta.</p>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Nulla porttitor accumsan tincidunt. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Donec rutrum congue leo eget malesuada. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Curabitur aliquet quam id dui posuere blandit.</p>'),(29,85,0,19,'prodotto lorem ipsum 6'),(30,76,0,20,'<p>Quisque velit nisi, pretium ut lacinia in, elementum id enim. Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. Vivamus suscipit tortor eget felis porttitor volutpat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Sed porttitor lectus nibh. Nulla quis lorem ut libero malesuada feugiat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Nulla porttitor accumsan tincidunt.</p>\r\n<p>Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur aliquet quam id dui posuere blandit. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Proin eget tortor risus. Nulla porttitor accumsan tincidunt. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>'),(31,85,0,20,'prodotto lorem ipsum 7'),(32,76,0,21,'<p>Sed porttitor lectus nibh. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Nulla porttitor accumsan tincidunt. Nulla porttitor accumsan tincidunt. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Pellentesque in ipsum id orci porta dapibus.</p>\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Nulla porttitor accumsan tincidunt. Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur aliquet quam id dui posuere blandit. Donec rutrum congue leo eget malesuada. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>'),(33,85,0,21,'prodotto lorem ipsum 8'),(34,76,0,22,'<p>Donec rutrum congue leo eget malesuada. Proin eget tortor risus. Proin eget tortor risus. Proin eget tortor risus. Vivamus suscipit tortor eget felis porttitor volutpat. Nulla quis lorem ut libero malesuada feugiat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Quisque velit nisi, pretium ut lacinia in, elementum id enim.</p>\r\n<p>Cras ultricies ligula sed magna dictum porta. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Cras ultricies ligula sed magna dictum porta. Nulla porttitor accumsan tincidunt. Proin eget tortor risus. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Curabitur aliquet quam id dui posuere blandit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada.</p>'),(35,85,0,22,'prodotto lorem ipsum 9'),(36,75,0,13,'<style>#html-body [data-pb-style=M5U5OWT]{border-width:1px}#html-body [data-pb-style=FC31EK1]{text-align:left}#html-body [data-pb-style=I44319W]{border-width:1px;min-height:300px}#html-body [data-pb-style=UG9LS90]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}</style><div class=\"tab-align-left\" data-content-type=\"tabs\" data-appearance=\"default\" data-active-tab=\"\" data-element=\"main\"><ul role=\"tablist\" class=\"tabs-navigation\" data-element=\"navigation\" data-pb-style=\"FC31EK1\"><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"M5U5OWT\"><a href=\"#KGUF0M4\" class=\"tab-title\"><span class=\"tab-title\">Tab 1</span></a></li></ul><div class=\"tabs-content\" data-element=\"content\" data-pb-style=\"I44319W\"><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Tab 1\" data-background-images=\"{}\" data-element=\"main\" id=\"KGUF0M4\" data-pb-style=\"UG9LS90\"></div></div></div>'),(37,76,0,13,'<p>Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Proin eget tortor risus. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Proin eget tortor risus. Curabitur aliquet quam id dui posuere blandit. Proin eget tortor risus. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Cras ultricies ligula sed magna dictum porta. Vivamus suscipit tortor eget felis porttitor volutpat. Nulla porttitor accumsan tincidunt.</p>\r\n<p>Nulla quis lorem ut libero malesuada feugiat. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Donec sollicitudin molestie malesuada. Vivamus suscipit tortor eget felis porttitor volutpat. Nulla porttitor accumsan tincidunt. Nulla quis lorem ut libero malesuada feugiat. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.</p>');
/*!40000 ALTER TABLE `catalog_product_entity_text` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_tier_price`
--

DROP TABLE IF EXISTS `catalog_product_entity_tier_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_tier_price` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `all_groups` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Applicable To All Customer Groups',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `qty` decimal(12,4) NOT NULL DEFAULT 1.0000 COMMENT 'QTY',
  `value` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Value',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `percentage_value` decimal(5,2) DEFAULT NULL COMMENT 'Percentage value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `UNQ_E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_tier_price`
--

/*!40000 ALTER TABLE `catalog_product_entity_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_tier_price` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_product_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_VCHR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=348 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_varchar`
--

/*!40000 ALTER TABLE `catalog_product_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_varchar` VALUES (1,134,0,1,'2'),(2,86,0,1,'Vino Test '),(3,84,0,1,'Vino Test'),(4,120,0,1,'0'),(5,73,0,1,'Vino Test'),(6,106,0,1,'container2'),(7,104,0,1,'product-full-width'),(8,123,0,1,'vino-test'),(9,87,0,1,'/r/i/ripmo_1_1.jpg'),(10,88,0,1,'/r/i/ripmo_1_1.jpg'),(11,89,0,1,'/r/i/ripmo_1_1.jpg'),(12,135,0,1,'/r/i/ripmo_1_1.jpg'),(17,73,0,2,'primo prodotto - Delta Informatica'),(18,106,0,2,'container2'),(19,120,0,2,'0'),(20,123,0,2,'primo-prodotto-delta-informatica'),(21,166,0,2,'asd'),(22,167,0,2,'14'),(27,73,0,3,'prodottoprova - Federazione Trentina della Cooperazione'),(28,106,0,3,'container2'),(29,120,0,3,'0'),(30,123,0,3,'prodottoprova-federazione-trentina-della-cooperazione'),(115,73,0,9,'prodotto lorem ipsum'),(116,84,0,9,'prodotto lorem ipsum'),(117,86,0,9,'prodotto lorem ipsum '),(118,104,0,9,'product-full-width'),(119,106,0,9,'container2'),(120,114,0,9,'IT'),(121,120,0,9,'0'),(122,123,0,9,'prodotto-lorem-ipsum'),(123,134,0,9,'2'),(124,73,0,10,'La Birra!'),(125,84,0,10,'La Birra!'),(126,86,0,10,'La Birra! '),(127,87,0,10,'/7/d/7dad96ae-0c38-4d1c-9154-97ea66f5b347.png'),(128,88,0,10,'/7/d/7dad96ae-0c38-4d1c-9154-97ea66f5b347.png'),(129,89,0,10,'/7/d/7dad96ae-0c38-4d1c-9154-97ea66f5b347.png'),(130,104,0,10,'product-full-width'),(131,106,0,10,'container2'),(132,120,0,10,'0'),(133,123,0,10,'la-birra'),(134,134,0,10,'2'),(135,135,0,10,'/7/d/7dad96ae-0c38-4d1c-9154-97ea66f5b347.png'),(140,73,0,11,'La morte !'),(141,84,0,11,'La morte !'),(142,86,0,11,'La morte ! '),(143,87,0,11,'/7/e/7ece25db-46d8-42a9-a09c-e189c9ff6dcc.png'),(144,88,0,11,'/7/e/7ece25db-46d8-42a9-a09c-e189c9ff6dcc.png'),(145,89,0,11,'/7/e/7ece25db-46d8-42a9-a09c-e189c9ff6dcc.png'),(146,104,0,11,'product-full-width'),(147,106,0,11,'container2'),(148,120,0,11,'0'),(149,123,0,11,'la-morte'),(150,134,0,11,'2'),(151,135,0,11,'/7/e/7ece25db-46d8-42a9-a09c-e189c9ff6dcc.png'),(156,73,0,12,'Bepi merlot'),(157,84,0,12,'Bepi merlot'),(158,86,0,12,'Bepi merlot '),(159,87,0,12,'/4/6/46e2ad5b-8fe2-4530-be0c-3d2835eff0eb.png'),(160,88,0,12,'/4/6/46e2ad5b-8fe2-4530-be0c-3d2835eff0eb.png'),(161,89,0,12,'/4/6/46e2ad5b-8fe2-4530-be0c-3d2835eff0eb.png'),(162,104,0,12,'product-full-width'),(163,106,0,12,'container2'),(164,120,0,12,'0'),(165,123,0,12,'bepi-merlot'),(166,134,0,12,'2'),(167,135,0,12,'/4/6/46e2ad5b-8fe2-4530-be0c-3d2835eff0eb.png'),(172,73,0,13,'Spremuta di fragole'),(173,84,0,13,'Spremuta di fragole'),(174,86,0,13,'Spremuta di fragole '),(175,87,0,13,'/8/a/8a737456-973e-4f74-9c96-1fa521f7e055.png'),(176,88,0,13,'/8/a/8a737456-973e-4f74-9c96-1fa521f7e055.png'),(177,89,0,13,'/8/a/8a737456-973e-4f74-9c96-1fa521f7e055.png'),(178,104,0,13,'product-full-width'),(179,106,0,13,'container2'),(180,120,0,13,'0'),(181,123,0,13,'spremuta-di-fragole'),(182,134,0,13,'2'),(183,135,0,13,'/8/a/8a737456-973e-4f74-9c96-1fa521f7e055.png'),(188,73,0,14,'Formaj'),(189,84,0,14,'Formaj'),(190,86,0,14,'Formaj '),(191,87,0,14,'/7/8/78232264-8b43-46a8-b581-7270e68503e9.png'),(192,88,0,14,'/7/8/78232264-8b43-46a8-b581-7270e68503e9.png'),(193,89,0,14,'/7/8/78232264-8b43-46a8-b581-7270e68503e9.png'),(194,104,0,14,'product-full-width'),(195,106,0,14,'container2'),(196,120,0,14,'0'),(197,123,0,14,'formaj'),(198,134,0,14,'2'),(199,135,0,14,'/7/8/78232264-8b43-46a8-b581-7270e68503e9.png'),(204,73,0,15,'prodotto lorem ipsum 2'),(205,84,0,15,'prodotto lorem ipsum 2'),(206,86,0,15,'prodotto lorem ipsum 2 '),(207,87,0,15,'/0/8/088acaf8-cfbb-4042-acc5-c2818407d016.png'),(208,88,0,15,'/0/8/088acaf8-cfbb-4042-acc5-c2818407d016.png'),(209,89,0,15,'/0/8/088acaf8-cfbb-4042-acc5-c2818407d016.png'),(210,104,0,15,'product-full-width'),(211,106,0,15,'container2'),(212,120,0,15,'0'),(213,123,0,15,'prodotto-lorem-ipsum-2'),(214,134,0,15,'2'),(215,135,0,15,'/0/8/088acaf8-cfbb-4042-acc5-c2818407d016.png'),(224,73,0,16,'prodotto lorem ipsum 3'),(225,84,0,16,'prodotto lorem ipsum 3'),(226,86,0,16,'prodotto lorem ipsum 3 '),(227,87,0,16,'/u/l/ultra_hd_4k_landscape_52344986.jpg'),(228,88,0,16,'/u/l/ultra_hd_4k_landscape_52344986.jpg'),(229,89,0,16,'/u/l/ultra_hd_4k_landscape_52344986.jpg'),(230,104,0,16,'product-full-width'),(231,106,0,16,'container2'),(232,120,0,16,'0'),(233,123,0,16,'prodotto-lorem-ipsum-3'),(234,134,0,16,'2'),(235,135,0,16,'/u/l/ultra_hd_4k_landscape_52344986.jpg'),(240,73,0,17,'prodotto lorem ipsum 4'),(241,84,0,17,'prodotto lorem ipsum 4'),(242,86,0,17,'prodotto lorem ipsum 4 '),(243,87,0,17,'/u/l/ultra_hd_4k_landscape_10865297.jpg'),(244,88,0,17,'/u/l/ultra_hd_4k_landscape_10865297.jpg'),(245,89,0,17,'/u/l/ultra_hd_4k_landscape_10865297.jpg'),(246,104,0,17,'product-full-width'),(247,106,0,17,'container2'),(248,120,0,17,'0'),(249,123,0,17,'prodotto-lorem-ipsum-4'),(250,134,0,17,'2'),(251,135,0,17,'/u/l/ultra_hd_4k_landscape_10865297.jpg'),(256,73,0,18,'prodotto lorem ipsum 5'),(257,84,0,18,'prodotto lorem ipsum 5'),(258,86,0,18,'prodotto lorem ipsum 5 '),(259,87,0,18,'/u/l/ultra_hd_4k_landscape_62666923_1.jpg'),(260,88,0,18,'/u/l/ultra_hd_4k_landscape_62666923_1.jpg'),(261,89,0,18,'/u/l/ultra_hd_4k_landscape_62666923_1.jpg'),(262,104,0,18,'product-full-width'),(263,106,0,18,'container2'),(264,120,0,18,'0'),(265,123,0,18,'prodotto-lorem-ipsum-5'),(266,134,0,18,'2'),(267,135,0,18,'/u/l/ultra_hd_4k_landscape_62666923_1.jpg'),(272,73,0,19,'prodotto lorem ipsum 6'),(273,84,0,19,'prodotto lorem ipsum 6'),(274,86,0,19,'prodotto lorem ipsum 6 '),(275,87,0,19,'/u/l/ultra_hd_4k_landscape_52866729.jpg'),(276,88,0,19,'/u/l/ultra_hd_4k_landscape_52866729.jpg'),(277,89,0,19,'/u/l/ultra_hd_4k_landscape_52866729.jpg'),(278,104,0,19,'product-full-width'),(279,106,0,19,'container2'),(280,120,0,19,'0'),(281,123,0,19,'prodotto-lorem-ipsum-6'),(282,134,0,19,'2'),(283,135,0,19,'/u/l/ultra_hd_4k_landscape_52866729.jpg'),(288,73,0,20,'prodotto lorem ipsum 7'),(289,84,0,20,'prodotto lorem ipsum 7'),(290,86,0,20,'prodotto lorem ipsum 7 '),(291,87,0,20,'/u/l/ultra_hd_4k_landscape_38913472.jpg'),(292,88,0,20,'/u/l/ultra_hd_4k_landscape_38913472.jpg'),(293,89,0,20,'/u/l/ultra_hd_4k_landscape_38913472.jpg'),(294,104,0,20,'product-full-width'),(295,106,0,20,'container2'),(296,120,0,20,'0'),(297,123,0,20,'prodotto-lorem-ipsum-7'),(298,134,0,20,'2'),(299,135,0,20,'/u/l/ultra_hd_4k_landscape_38913472.jpg'),(304,73,0,21,'prodotto lorem ipsum 8'),(305,84,0,21,'prodotto lorem ipsum 8'),(306,86,0,21,'prodotto lorem ipsum 8 '),(307,87,0,21,'/u/l/ultra_hd_4k_landscape_42068686_1.jpg'),(308,88,0,21,'/u/l/ultra_hd_4k_landscape_42068686_1.jpg'),(309,89,0,21,'/u/l/ultra_hd_4k_landscape_42068686_1.jpg'),(310,104,0,21,'product-full-width'),(311,106,0,21,'container2'),(312,120,0,21,'0'),(313,123,0,21,'prodotto-lorem-ipsum-8'),(314,134,0,21,'2'),(315,135,0,21,'/u/l/ultra_hd_4k_landscape_42068686_1.jpg'),(320,73,0,22,'prodotto lorem ipsum 9'),(321,84,0,22,'prodotto lorem ipsum 9'),(322,86,0,22,'prodotto lorem ipsum 9 '),(323,87,0,22,'/u/l/ultra_hd_4k_landscape_25462071.jpg'),(324,88,0,22,'/u/l/ultra_hd_4k_landscape_25462071.jpg'),(325,89,0,22,'/u/l/ultra_hd_4k_landscape_25462071.jpg'),(326,104,0,22,'product-full-width'),(327,106,0,22,'container2'),(328,120,0,22,'0'),(329,123,0,22,'prodotto-lorem-ipsum-9'),(330,134,0,22,'2'),(331,135,0,22,'/u/l/ultra_hd_4k_landscape_25462071.jpg');
/*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_frontend_action`
--

DROP TABLE IF EXISTS `catalog_product_frontend_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_frontend_action` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Action ID',
  `type_id` varchar(64) NOT NULL COMMENT 'Type of product action',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `added_at` bigint(20) NOT NULL COMMENT 'Added At',
  PRIMARY KEY (`action_id`),
  UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_VISITOR_ID_PRODUCT_ID_TYPE_ID` (`visitor_id`,`product_id`,`type_id`),
  UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_CUSTOMER_ID_PRODUCT_ID_TYPE_ID` (`customer_id`,`product_id`,`type_id`),
  KEY `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_FRONTEND_ACTION_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Frontend Action Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_frontend_action`
--

/*!40000 ALTER TABLE `catalog_product_frontend_action` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_frontend_action` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav`
--

DROP TABLE IF EXISTS `catalog_product_index_eav`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav`
--

/*!40000 ALTER TABLE `catalog_product_index_eav` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav` VALUES (1,99,1,4,1),(2,99,1,4,2),(9,99,1,4,9),(10,99,1,4,10),(11,99,1,4,11),(12,99,1,4,12),(13,99,1,4,13),(14,99,1,4,14),(15,99,1,4,15),(16,99,1,4,16),(17,99,1,4,17),(18,99,1,4,18),(19,99,1,4,19),(20,99,1,4,20),(21,99,1,4,21),(22,99,1,4,22);
/*!40000 ALTER TABLE `catalog_product_index_eav` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_decimal`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_decimal` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_decimal_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_decimal_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_decimal_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_decimal_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal_replica`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_decimal_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_decimal_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_replica`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_replica` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav_replica` VALUES (1,99,1,4,1),(2,99,1,4,2),(9,99,1,4,9),(10,99,1,4,10),(11,99,1,4,11),(12,99,1,4,12),(13,99,1,4,13),(14,99,1,4,14),(15,99,1,4,15),(16,99,1,4,16),(17,99,1,4,17),(18,99,1,4,18),(19,99,1,4,19),(20,99,1,4,20),(21,99,1,4,21),(22,99,1,4,22);
/*!40000 ALTER TABLE `catalog_product_index_eav_replica` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_eav_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_eav_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_eav_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price`
--

DROP TABLE IF EXISTS `catalog_product_index_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price`
--

/*!40000 ALTER TABLE `catalog_product_index_price` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price` VALUES (1,0,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,1,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,2,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,3,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(2,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(3,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(9,0,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(9,1,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(9,2,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(9,3,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(10,0,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(10,1,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(10,2,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(10,3,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(11,0,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(11,1,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(11,2,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(11,3,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(13,0,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(13,1,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(13,2,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(13,3,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,0,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,1,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,2,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,3,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(15,0,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(15,1,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(15,2,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(15,3,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(17,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(17,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(17,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(17,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(18,0,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(18,1,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(18,2,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(18,3,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(19,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(19,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(19,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(19,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(20,0,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(20,1,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(20,2,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(20,3,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(21,0,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(21,1,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(21,2,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(21,3,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(22,0,1,2,173.000000,173.000000,173.000000,173.000000,NULL),(22,1,1,2,173.000000,173.000000,173.000000,173.000000,NULL),(22,2,1,2,173.000000,173.000000,173.000000,173.000000,NULL),(22,3,1,2,173.000000,173.000000,173.000000,173.000000,NULL);
/*!40000 ALTER TABLE `catalog_product_index_price` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_bundle_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_bundle_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_bundle_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_bundle_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_opt_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_bundle_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_bundle_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_opt_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_bundle_sel_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_bundle_sel_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `selection_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Selection ID',
  `group_type` smallint(5) unsigned DEFAULT 0 COMMENT 'Group Type',
  `is_required` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Required',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_sel_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_bundle_sel_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_bundle_sel_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `selection_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Selection ID',
  `group_type` smallint(5) unsigned DEFAULT 0 COMMENT 'Group Type',
  `is_required` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Required',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_sel_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_bundle_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_bundle_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_agr_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_agr_idx` (
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_agr_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_agr_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_agr_tmp` (
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_agr_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_downlod_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_downlod_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_downlod_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Indexer Table for price of downloadable products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_downlod_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_downlod_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_downlod_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_downlod_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary Indexer Table for price of downloadable products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_downlod_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_final_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_final_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_final_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_final_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_final_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_final_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_final_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_final_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_final_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_final_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_opt_agr_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_opt_agr_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_agr_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_opt_agr_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_opt_agr_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_agr_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_idx`
--

/*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_replica`
--

/*!40000 ALTER TABLE `catalog_product_index_price_replica` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price_replica` VALUES (1,0,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,1,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,2,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,3,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(2,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(3,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(9,0,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(9,1,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(9,2,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(9,3,1,2,199.900000,199.900000,199.900000,199.900000,NULL),(10,0,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(10,1,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(10,2,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(10,3,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(11,0,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(11,1,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(11,2,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(11,3,1,2,0.990000,0.990000,0.990000,0.990000,NULL),(13,0,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(13,1,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(13,2,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(13,3,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,0,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,1,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,2,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(14,3,1,2,100.000000,100.000000,100.000000,100.000000,NULL),(15,0,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(15,1,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(15,2,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(15,3,1,2,99.000000,90.000000,90.000000,90.000000,NULL),(17,0,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(17,1,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(17,2,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(17,3,1,2,54.000000,54.000000,54.000000,54.000000,NULL),(18,0,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(18,1,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(18,2,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(18,3,1,2,89.000000,89.000000,89.000000,89.000000,NULL),(19,0,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(19,1,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(19,2,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(19,3,1,2,62.000000,62.000000,62.000000,62.000000,NULL),(20,0,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(20,1,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(20,2,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(20,3,1,2,96.000000,96.000000,96.000000,96.000000,NULL),(21,0,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(21,1,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(21,2,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(21,3,1,2,876.000000,876.000000,876.000000,876.000000,NULL),(22,0,1,2,173.000000,173.000000,173.000000,173.000000,NULL),(22,1,1,2,173.000000,173.000000,173.000000,173.000000,NULL),(22,2,1,2,173.000000,173.000000,173.000000,173.000000,NULL),(22,3,1,2,173.000000,173.000000,173.000000,173.000000,NULL);
/*!40000 ALTER TABLE `catalog_product_index_price_replica` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_price_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_price_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_tmp`
--

/*!40000 ALTER TABLE `catalog_product_index_price_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_tier_price`
--

DROP TABLE IF EXISTS `catalog_product_index_tier_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_tier_price` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_tier_price`
--

/*!40000 ALTER TABLE `catalog_product_index_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_tier_price` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_index_website`
--

DROP TABLE IF EXISTS `catalog_product_index_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_index_website` (
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `default_store_id` smallint(5) unsigned NOT NULL COMMENT 'Default store ID for website',
  `website_date` date DEFAULT NULL COMMENT 'Website Date',
  `rate` float DEFAULT 1 COMMENT 'Rate',
  PRIMARY KEY (`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`),
  CONSTRAINT `CAT_PRD_IDX_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Website Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_website`
--

/*!40000 ALTER TABLE `catalog_product_index_website` DISABLE KEYS */;
INSERT INTO `catalog_product_index_website` VALUES (1,1,'2022-09-16',1);
/*!40000 ALTER TABLE `catalog_product_index_website` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_link`
--

DROP TABLE IF EXISTS `catalog_product_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `linked_product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Linked Product ID',
  `link_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Link Type ID',
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `CATALOG_PRODUCT_LINK_LINK_TYPE_ID_PRODUCT_ID_LINKED_PRODUCT_ID` (`link_type_id`,`product_id`,`linked_product_id`),
  KEY `CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`),
  KEY `CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`),
  CONSTRAINT `CATALOG_PRODUCT_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_LNK_LNKED_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`linked_product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_LNK_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Product Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link`
--

/*!40000 ALTER TABLE `catalog_product_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_link_attribute`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_link_attribute` (
  `product_link_attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Link Attribute ID',
  `link_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Link Type ID',
  `product_link_attribute_code` varchar(32) DEFAULT NULL COMMENT 'Product Link Attribute Code',
  `data_type` varchar(32) DEFAULT NULL COMMENT 'Data Type',
  PRIMARY KEY (`product_link_attribute_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute`
--

/*!40000 ALTER TABLE `catalog_product_link_attribute` DISABLE KEYS */;
INSERT INTO `catalog_product_link_attribute` VALUES (1,1,'position','int'),(2,4,'position','int'),(3,5,'position','int'),(4,3,'position','int'),(5,3,'qty','decimal');
/*!40000 ALTER TABLE `catalog_product_link_attribute` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_link_attribute_decimal`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_link_attribute_decimal` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID',
  `value` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_DEC_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Decimal Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute_decimal`
--

/*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_link_attribute_int`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_link_attribute_int` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_INT_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Integer Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute_int`
--

/*!40000 ALTER TABLE `catalog_product_link_attribute_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_int` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_link_attribute_varchar`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_link_attribute_varchar` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_VCHR_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Varchar Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute_varchar`
--

/*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_link_type`
--

DROP TABLE IF EXISTS `catalog_product_link_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_link_type` (
  `link_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link Type ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  PRIMARY KEY (`link_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_type`
--

/*!40000 ALTER TABLE `catalog_product_link_type` DISABLE KEYS */;
INSERT INTO `catalog_product_link_type` VALUES (1,'relation'),(3,'super'),(4,'up_sell'),(5,'cross_sell');
/*!40000 ALTER TABLE `catalog_product_link_type` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_option`
--

DROP TABLE IF EXISTS `catalog_product_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `type` varchar(50) DEFAULT NULL COMMENT 'Type',
  `is_require` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Is Required',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `max_characters` int(10) unsigned DEFAULT NULL COMMENT 'Max Characters',
  `file_extension` varchar(50) DEFAULT NULL COMMENT 'File Extension',
  `image_size_x` smallint(5) unsigned DEFAULT NULL COMMENT 'Image Size X',
  `image_size_y` smallint(5) unsigned DEFAULT NULL COMMENT 'Image Size Y',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option`
--

/*!40000 ALTER TABLE `catalog_product_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_option_price`
--

DROP TABLE IF EXISTS `catalog_product_option_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_option_price` (
  `option_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Price ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_price_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_OPT_PRICE_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_price`
--

/*!40000 ALTER TABLE `catalog_product_option_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_price` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_option_title`
--

DROP TABLE IF EXISTS `catalog_product_option_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_option_title` (
  `option_title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Title ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_title_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_OPT_TTL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_title`
--

/*!40000 ALTER TABLE `catalog_product_option_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_title` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_option_type_price`
--

DROP TABLE IF EXISTS `catalog_product_option_type_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_option_type_price` (
  `option_type_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Price ID',
  `option_type_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option Type ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_type_price_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_type_price`
--

/*!40000 ALTER TABLE `catalog_product_option_type_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_type_price` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_option_type_title`
--

DROP TABLE IF EXISTS `catalog_product_option_type_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_option_type_title` (
  `option_type_title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Title ID',
  `option_type_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option Type ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_type_title_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_type_title`
--

/*!40000 ALTER TABLE `catalog_product_option_type_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_type_title` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_option_type_value`
--

DROP TABLE IF EXISTS `catalog_product_option_type_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_option_type_value` (
  `option_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`option_type_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`),
  CONSTRAINT `CAT_PRD_OPT_TYPE_VAL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_type_value`
--

/*!40000 ALTER TABLE `catalog_product_option_type_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_type_value` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_relation`
--

DROP TABLE IF EXISTS `catalog_product_relation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_relation` (
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID',
  PRIMARY KEY (`parent_id`,`child_id`),
  KEY `CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`),
  CONSTRAINT `CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Relation Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_relation`
--

/*!40000 ALTER TABLE `catalog_product_relation` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_relation` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_super_attribute`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_super_attribute` (
  `product_super_attribute_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Super Attribute ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `position` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`product_super_attribute_id`),
  UNIQUE KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`),
  CONSTRAINT `CAT_PRD_SPR_ATTR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_super_attribute`
--

/*!40000 ALTER TABLE `catalog_product_super_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_attribute` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_super_attribute_label`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_super_attribute_label` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_super_attribute_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Super Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `use_default` smallint(5) unsigned DEFAULT 0 COMMENT 'Use Default Value',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_super_attribute_label`
--

/*!40000 ALTER TABLE `catalog_product_super_attribute_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_attribute_label` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_super_link`
--

DROP TABLE IF EXISTS `catalog_product_super_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_super_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent ID',
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`),
  KEY `CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`),
  CONSTRAINT `CAT_PRD_SPR_LNK_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_SPR_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_super_link`
--

/*!40000 ALTER TABLE `catalog_product_super_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_link` ENABLE KEYS */;

--
-- Table structure for table `catalog_product_website`
--

DROP TABLE IF EXISTS `catalog_product_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_product_website` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`product_id`,`website_id`),
  KEY `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Website Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_website`
--

/*!40000 ALTER TABLE `catalog_product_website` DISABLE KEYS */;
INSERT INTO `catalog_product_website` VALUES (1,1),(2,1),(3,1),(9,1),(10,1),(11,1),(12,1),(13,1),(14,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1),(21,1),(22,1);
/*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */;

--
-- Table structure for table `catalog_url_rewrite_product_category`
--

DROP TABLE IF EXISTS `catalog_url_rewrite_product_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalog_url_rewrite_product_category` (
  `url_rewrite_id` int(10) unsigned NOT NULL COMMENT 'url_rewrite_id',
  `category_id` int(10) unsigned NOT NULL COMMENT 'category_id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_id',
  PRIMARY KEY (`url_rewrite_id`),
  KEY `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  KEY `CATALOG_URL_REWRITE_PRODUCT_CATEGORY_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_BB79E64705D7F17FE181F23144528FC8` FOREIGN KEY (`url_rewrite_id`) REFERENCES `url_rewrite` (`url_rewrite_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='url_rewrite_relation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_url_rewrite_product_category`
--

/*!40000 ALTER TABLE `catalog_url_rewrite_product_category` DISABLE KEYS */;
INSERT INTO `catalog_url_rewrite_product_category` VALUES (83,3,1),(86,3,2),(95,3,10),(97,3,11),(99,3,12),(101,3,13),(103,3,14),(105,3,15),(107,3,16),(109,3,17),(111,3,18),(113,3,19),(115,3,20),(117,3,21),(119,3,22),(85,45,2),(93,74,9);
/*!40000 ALTER TABLE `catalog_url_rewrite_product_category` ENABLE KEYS */;

--
-- Table structure for table `cataloginventory_stock`
--

DROP TABLE IF EXISTS `cataloginventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cataloginventory_stock` (
  `stock_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Stock ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_name` varchar(255) DEFAULT NULL COMMENT 'Stock Name',
  PRIMARY KEY (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock`
--

/*!40000 ALTER TABLE `cataloginventory_stock` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock` VALUES (1,0,'Default');
/*!40000 ALTER TABLE `cataloginventory_stock` ENABLE KEYS */;

--
-- Table structure for table `cataloginventory_stock_item`
--

DROP TABLE IF EXISTS `cataloginventory_stock_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cataloginventory_stock_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `stock_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Stock ID',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `min_qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Min Qty',
  `use_config_min_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Min Qty',
  `is_qty_decimal` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Qty Decimal',
  `backorders` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Backorders',
  `use_config_backorders` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Backorders',
  `min_sale_qty` decimal(12,4) NOT NULL DEFAULT 1.0000 COMMENT 'Min Sale Qty',
  `use_config_min_sale_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Min Sale Qty',
  `max_sale_qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Max Sale Qty',
  `use_config_max_sale_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Max Sale Qty',
  `is_in_stock` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is In Stock',
  `low_stock_date` timestamp NULL DEFAULT NULL COMMENT 'Low Stock Date',
  `notify_stock_qty` decimal(12,4) DEFAULT NULL COMMENT 'Notify Stock Qty',
  `use_config_notify_stock_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Notify Stock Qty',
  `manage_stock` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Manage Stock',
  `use_config_manage_stock` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Manage Stock',
  `stock_status_changed_auto` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Stock Status Changed Automatically',
  `use_config_qty_increments` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Qty Increments',
  `qty_increments` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Increments',
  `use_config_enable_qty_inc` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Enable Qty Increments',
  `enable_qty_increments` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Enable Qty Increments',
  `is_decimal_divided` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Divided into Multiple Boxes for Shipping',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  PRIMARY KEY (`item_id`),
  UNIQUE KEY `CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID_PRODUCT_ID` (`website_id`,`product_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`),
  CONSTRAINT `CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_item`
--

/*!40000 ALTER TABLE `cataloginventory_stock_item` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_item` VALUES (1,1,1,1000.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(2,2,1,10.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(3,3,1,10.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(9,9,1,199.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(10,10,1,1000000.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(11,11,1,10.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(12,12,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2022-09-01 07:33:51',1.0000,1,1,1,1,1,1.0000,1,0,0,0),(13,13,1,100.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(14,14,1,100.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(15,15,1,100.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(16,16,1,2.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(17,17,1,1.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(18,18,1,1.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(19,19,1,6.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(20,20,1,2.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(21,21,1,3.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(22,22,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0);
/*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */;

--
-- Table structure for table `cataloginventory_stock_status`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cataloginventory_stock_status` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status`
--

/*!40000 ALTER TABLE `cataloginventory_stock_status` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status` VALUES (1,0,1,1000.0000,1),(2,0,1,10.0000,1),(3,0,1,10.0000,1),(9,0,1,199.0000,1),(10,0,1,1000000.0000,1),(11,0,1,10.0000,1),(12,0,1,0.0000,0),(13,0,1,100.0000,1),(14,0,1,100.0000,1),(15,0,1,100.0000,1),(16,0,1,2.0000,0),(17,0,1,1.0000,1),(18,0,1,1.0000,1),(19,0,1,6.0000,1),(20,0,1,2.0000,1),(21,0,1,3.0000,1),(22,0,1,34.0000,1);
/*!40000 ALTER TABLE `cataloginventory_stock_status` ENABLE KEYS */;

--
-- Table structure for table `cataloginventory_stock_status_idx`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cataloginventory_stock_status_idx` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_idx`
--

/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` ENABLE KEYS */;

--
-- Table structure for table `cataloginventory_stock_status_replica`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cataloginventory_stock_status_replica` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_replica`
--

/*!40000 ALTER TABLE `cataloginventory_stock_status_replica` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status_replica` VALUES (1,0,1,1000.0000,1),(2,0,1,10.0000,1),(3,0,1,10.0000,1),(9,0,1,199.0000,1),(10,0,1,1000000.0000,1),(11,0,1,10.0000,1),(12,0,1,0.0000,0),(13,0,1,100.0000,1),(14,0,1,100.0000,1),(15,0,1,100.0000,1),(16,0,1,2.0000,0),(17,0,1,1.0000,1),(18,0,1,1.0000,1),(19,0,1,6.0000,1),(20,0,1,2.0000,1),(21,0,1,3.0000,1),(22,0,1,34.0000,1);
/*!40000 ALTER TABLE `cataloginventory_stock_status_replica` ENABLE KEYS */;

--
-- Table structure for table `cataloginventory_stock_status_tmp`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cataloginventory_stock_status_tmp` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock ID',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_tmp`
--

/*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` ENABLE KEYS */;

--
-- Table structure for table `catalogrule`
--

DROP TABLE IF EXISTS `catalogrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `is_active` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Active',
  `conditions_serialized` mediumtext DEFAULT NULL COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext DEFAULT NULL COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Stop Rules Processing',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Discount Amount',
  PRIMARY KEY (`rule_id`),
  KEY `CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule`
--

/*!40000 ALTER TABLE `catalogrule` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_customer_group`
--

DROP TABLE IF EXISTS `catalogrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_customer_group` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `CATALOGRULE_CUSTOMER_GROUP_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `CATRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_customer_group`
--

/*!40000 ALTER TABLE `catalogrule_customer_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_customer_group` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_group_website`
--

DROP TABLE IF EXISTS `catalogrule_group_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_group_website` (
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_group_website`
--

/*!40000 ALTER TABLE `catalogrule_group_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_group_website` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_group_website_replica`
--

DROP TABLE IF EXISTS `catalogrule_group_website_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_group_website_replica` (
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_group_website_replica`
--

/*!40000 ALTER TABLE `catalogrule_group_website_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_group_website_replica` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_product`
--

DROP TABLE IF EXISTS `catalogrule_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_product` (
  `rule_product_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID',
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `from_time` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'From Time',
  `to_time` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'To time',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Action Amount',
  `action_stop` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Action Stop',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_product_id`),
  UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product`
--

/*!40000 ALTER TABLE `catalogrule_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_product_price`
--

DROP TABLE IF EXISTS `catalogrule_product_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_product_price` (
  `rule_product_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL COMMENT 'Rule Date',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `rule_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Rule Price',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY (`rule_product_price_id`),
  UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_price`
--

/*!40000 ALTER TABLE `catalogrule_product_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_price` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_product_price_replica`
--

DROP TABLE IF EXISTS `catalogrule_product_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_product_price_replica` (
  `rule_product_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL COMMENT 'Rule Date',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `rule_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Rule Price',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY (`rule_product_price_id`),
  UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_price_replica`
--

/*!40000 ALTER TABLE `catalogrule_product_price_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_price_replica` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_product_replica`
--

DROP TABLE IF EXISTS `catalogrule_product_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_product_replica` (
  `rule_product_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID',
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `from_time` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'From Time',
  `to_time` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'To time',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Action Amount',
  `action_stop` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Action Stop',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_product_id`),
  UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_replica`
--

/*!40000 ALTER TABLE `catalogrule_product_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_replica` ENABLE KEYS */;

--
-- Table structure for table `catalogrule_website`
--

DROP TABLE IF EXISTS `catalogrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogrule_website` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CATALOGRULE_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOGRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_website`
--

/*!40000 ALTER TABLE `catalogrule_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_website` ENABLE KEYS */;

--
-- Table structure for table `catalogsearch_recommendations`
--

DROP TABLE IF EXISTS `catalogsearch_recommendations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `catalogsearch_recommendations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `query_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Query ID',
  `relation_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Relation ID',
  PRIMARY KEY (`id`),
  KEY `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` (`query_id`),
  KEY `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` (`relation_id`),
  CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`relation_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Advanced Search Recommendations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogsearch_recommendations`
--

/*!40000 ALTER TABLE `catalogsearch_recommendations` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogsearch_recommendations` ENABLE KEYS */;

--
-- Table structure for table `checkout_agreement`
--

DROP TABLE IF EXISTS `checkout_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `checkout_agreement` (
  `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `content` text DEFAULT NULL COMMENT 'Content',
  `content_height` varchar(25) DEFAULT NULL COMMENT 'Content Height',
  `checkbox_text` text DEFAULT NULL COMMENT 'Checkbox Text',
  `is_active` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Active',
  `is_html` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Html',
  `mode` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Applied mode',
  PRIMARY KEY (`agreement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `checkout_agreement`
--

/*!40000 ALTER TABLE `checkout_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `checkout_agreement` ENABLE KEYS */;

--
-- Table structure for table `checkout_agreement_store`
--

DROP TABLE IF EXISTS `checkout_agreement_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `checkout_agreement_store` (
  `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`agreement_id`,`store_id`),
  KEY `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `checkout_agreement_store`
--

/*!40000 ALTER TABLE `checkout_agreement_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `checkout_agreement_store` ENABLE KEYS */;

--
-- Table structure for table `cms_block`
--

DROP TABLE IF EXISTS `cms_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_block` (
  `block_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) NOT NULL COMMENT 'Block Title',
  `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier',
  `content` mediumtext DEFAULT NULL COMMENT 'Block Content',
  `creation_time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Block Creation Time',
  `update_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Block Modification Time',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Is Block Active',
  PRIMARY KEY (`block_id`),
  KEY `CMS_BLOCK_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='CMS Block Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_block`
--

/*!40000 ALTER TABLE `cms_block` DISABLE KEYS */;
INSERT INTO `cms_block` VALUES (1,'Privacy FAQs','prgdpr_privacy_faqs','<div class=\"prgdpr__faq\">\n                <h2 class=\"prgdpr__title\">Privacy FAQs</h2>\n                <p class=\"prgdpr__descr\">Learn how our policies put transparency, simplicity, and control into action for you.</p>\n                <ul class=\"prgdpr-accordion\">\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What information do you collect about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>Initially, we collect basic information from you to create your account, including your full name, email and password. We collect further data, such as address, and billing information or other information you provide when you checkout at our store. We also collect some information about users who visit our websites using cookies and similar technologies. See the Privacy Policy and/or Cookie Policy for the particular website(s) or service(s) you are using for more details about the specific types of information we may collect and your choices related to that data.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">How do you use information about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>We primarily use information about you to provide, personalize, improve, update and expand and improve our services to you. For example, we use information about you to create your account and deliver our products and services. We may also use your information to improve or develop new products and services, and for internal business purposes. We may also use personal information about you to verify your identity, communicate with you and to deliver advertisements, issuing surveys and questionnaires to collect additional user information for use in the services, marketing new products and offers from us or our business partners, detecting and protecting against error, fraud, or other criminal or malicious activity. See our Privacy Policy for more details.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">Do you share information about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>We do not share your personal information with third-parties without your additional consent other than as described in our Privacy Policy. Otherwise, we share information as described in our Privacy Policy, such as with our affiliated companies, our service providers, our advertising partners, and in other limited scenarios, such as in response to valid legal process or as appropriate to protect the rights, property, safety, confidentiality, or reputation of our company, our affiliates, and our users. You can read the Privacy Policy for the particular website(s) or service(s) you are using for more details about how we share your data and your choices related to that sharing.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">How can I review, update, or delete information about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>You can review, update, or delete most information about yourself through your account page on our website. If you have questions about how to review, update, or delete information, you should contact our Patch Protection Office or Customer Services team.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What happens to my information if I delete my account?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>When you delete your account, we remove your information from our store (it may take up to 30 days to make sure everything is deleted). During that period, you won\'t be able to use your account. Our company also retains certain data to comply with local laws, such as sales receipts to comply with local tax laws.</p>\n                            <p>Please keep in mind that once your account has been deleted you won\'t be able to reactivate your account or retrieve anything you\'ve added, including:</p>\n                            <ul>\n                                <li>Your billing information</li>\n                                <li>Your orders, invoices, shipments</li>\n                                <li>Any history of interactions with our support</li>\n                                <li>Any content you have created associated with your store account</li>\n                                <li>You also will no longer be able to return any products or services and will lose any existing store rewards or credits</li>\n                            </ul>\n                            <p>If you decide that you no longer wish to delete your store account, you can cancel your deletion request within 24 hours of making the deletion request by login in to your account.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What are you doing to protect my personal information?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>We work hard to protect our customers from unauthorized access, use and disclosure of information. We store and process the information we collect on computer systems with limited access, which are located in controlled facilities. Any sensitive information is protected through the use of best-practice physical, environmental and digital security systems.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What can I do to protect my personal information?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>There are a number of measures that you can take to protect your personal information, including:</p>\n                            <ul>\n                                <li>Use strong passwords for all your online accounts</li>\n                                <li>Do keep passwords securely (never written down, or shared with anyone) and changed periodically</li>\n                                <li>Don\'t automatically trust every website or email which asks you to provide your personal information. Take time to check that the request is valid, and that the personal information requested is absolutely necessary for the services that you are looking to use</li>\n                            </ul>\n                        </div>\n                    </li>\n                </ul>\n            </div>\n            <div class=\"prgdpr__footer\">\n                <p class=\"prgdpr__footer-text-top\">Please contact our Patch Protection Officer with any questions or concerns via email at <a href=\"mailto:privacy@domain.com\">privacy@domain.com</a> or via postal mail at:</p>\n                <p class=\"prgdpr__address\">Patch Protection Officer<br /> Your Company<br /> 123 Street, Suite 444<br /> New York, NY 10001<br /> USA</p>\n            </div>','2022-08-11 08:56:22','2022-08-11 08:56:22',1),(2,'Icon baloon','icon-baloon','<style>#html-body [data-pb-style=F2DILFW],#html-body [data-pb-style=VBFK86D]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=F2DILFW]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=VBFK86D]{align-self:stretch}#html-body [data-pb-style=MOW61TB]{display:flex;width:100%}#html-body [data-pb-style=J16RN1J]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}#html-body [data-pb-style=EISDJC2]{text-align:center}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"F2DILFW\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"VBFK86D\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"MOW61TB\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"J16RN1J\"><div class=\"icon-baloon\" data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"EISDJC2\">&lt;div class=\"rounded-circle bg-gray95\"&gt;\r\n&lt;i class=\"fas fa-rocket\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;</div></div></div></div></div></div>','2022-08-26 14:36:15','2022-08-26 16:24:57',1),(3,'shop with us','shop-with-us','<style>#html-body [data-pb-style=H2BHB9S],#html-body [data-pb-style=RITB2PW]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=RITB2PW]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=H2BHB9S]{align-self:stretch}#html-body [data-pb-style=ISN3ODC]{display:flex;width:100%}#html-body [data-pb-style=ECS2MTV],#html-body [data-pb-style=O6PDDFJ]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=O6PDDFJ]{width:75%}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"RITB2PW\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"H2BHB9S\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"ISN3ODC\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"ECS2MTV\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\">&lt;div class=\"icon-baloon\"&gt;\r\n&lt;i class=\"fa fas-rocket\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"O6PDDFJ\"><h5 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">CONSEGNA GRATIS</h5><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"SSVQO17\"><span style=\"color: #999999;\">Per ordini superiori ai 60 EurO</span></p></div></div></div></div></div></div>','2022-08-29 07:25:02','2022-08-29 07:25:02',1);
/*!40000 ALTER TABLE `cms_block` ENABLE KEYS */;

--
-- Table structure for table `cms_block_store`
--

DROP TABLE IF EXISTS `cms_block_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_block_store` (
  `block_id` smallint(6) NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`block_id`,`store_id`),
  KEY `CMS_BLOCK_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE,
  CONSTRAINT `CMS_BLOCK_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_block_store`
--

/*!40000 ALTER TABLE `cms_block_store` DISABLE KEYS */;
INSERT INTO `cms_block_store` VALUES (1,0),(2,0),(3,0);
/*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */;

--
-- Table structure for table `cms_page`
--

DROP TABLE IF EXISTS `cms_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_page` (
  `page_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Page Title',
  `page_layout` varchar(255) DEFAULT NULL COMMENT 'Page Layout',
  `meta_keywords` text DEFAULT NULL COMMENT 'Page Meta Keywords',
  `meta_description` text DEFAULT NULL COMMENT 'Page Meta Description',
  `identifier` varchar(100) DEFAULT NULL COMMENT 'Page String Identifier',
  `content_heading` varchar(255) DEFAULT NULL COMMENT 'Page Content Heading',
  `content` mediumtext DEFAULT NULL COMMENT 'Page Content',
  `creation_time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Page Creation Time',
  `update_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Page Modification Time',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Is Page Active',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Page Sort Order',
  `layout_update_xml` text DEFAULT NULL COMMENT 'Page Layout Update Content',
  `custom_theme` varchar(100) DEFAULT NULL COMMENT 'Page Custom Theme',
  `custom_root_template` varchar(255) DEFAULT NULL COMMENT 'Page Custom Template',
  `custom_layout_update_xml` text DEFAULT NULL COMMENT 'Page Custom Layout Update Content',
  `layout_update_selected` varchar(128) DEFAULT NULL COMMENT 'Page Custom Layout File',
  `custom_theme_from` date DEFAULT NULL COMMENT 'Page Custom Theme Active From Date',
  `custom_theme_to` date DEFAULT NULL COMMENT 'Page Custom Theme Active To Date',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Page Meta Title',
  PRIMARY KEY (`page_id`),
  KEY `CMS_PAGE_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `CMS_PAGE_TITLE_META_KEYWORDS_META_DESCRIPTION_IDENTIFIER_CONTENT` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_page`
--

/*!40000 ALTER TABLE `cms_page` DISABLE KEYS */;
INSERT INTO `cms_page` VALUES (1,'404 Not Found','2columns-right','Page keywords','Page description','no-route','Whoops, our bad...','<dl>\r\n<dt>The page you requested was not found, and we have a fine guess why.</dt>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li>If you typed the URL directly, please make sure the spelling is correct.</li>\r\n<li>If you clicked on a link to get here, the link is outdated.</li>\r\n</ul></dd>\r\n</dl>\r\n<dl>\r\n<dt>What can you do?</dt>\r\n<dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\r\n<li>Use the search bar at the top of the page to search for your products.</li>\r\n<li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a> <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li></ul></dd></dl>\r\n','2022-07-31 09:47:40','2022-07-31 09:47:40',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Home page','1column','','','home','','<style>#html-body [data-pb-style=RDUTT9Y]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;margin-bottom:25px}#html-body [data-pb-style=RIW37YL]{min-height:460px;border-radius:8px}#html-body [data-pb-style=ND5X96U]{background-position:center center;background-size:cover;background-repeat:no-repeat}#html-body [data-pb-style=SGU9CMM]{background-color:transparent}#html-body [data-pb-style=MPRHLUK]{opacity:1;visibility:visible}#html-body [data-pb-style=BORXY78]{background-position:left top;background-size:cover;background-repeat:no-repeat}#html-body [data-pb-style=MEIPXX2]{background-color:transparent}#html-body [data-pb-style=S5F6G1L],#html-body [data-pb-style=UW59ER9]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=UW59ER9]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=S5F6G1L]{align-self:stretch}#html-body [data-pb-style=TR1RA1L]{display:flex;width:100%}#html-body [data-pb-style=FH8P8X7]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}#html-body [data-pb-style=D01IT43]{text-align:center}#html-body [data-pb-style=A4KPTAM],#html-body [data-pb-style=TMCCUY5]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=A4KPTAM]{justify-content:flex-start;display:flex;flex-direction:column;margin-left:-16px;margin-right:-16px}#html-body [data-pb-style=TMCCUY5]{margin-left:16px;margin-right:16px;align-self:stretch}#html-body [data-pb-style=TTLAJRQ]{display:flex;width:100%}#html-body [data-pb-style=WIYGHP8]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=WHHOWH1]{text-align:center}#html-body [data-pb-style=F5BUPHW]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=XI2FX20]{text-align:center}#html-body [data-pb-style=JLICG9B]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;align-self:stretch}#html-body [data-pb-style=OK5VNQH]{text-align:center}#html-body [data-pb-style=M1RC8OK]{text-align:center;margin-top:45px;margin-bottom:45px}#html-body [data-pb-style=UY0AFXG]{display:inline-block}#html-body [data-pb-style=K0KRLJW]{text-align:center}#html-body [data-pb-style=LHD4YPT],#html-body [data-pb-style=N4DF0NR]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=LHD4YPT]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=N4DF0NR]{margin-left:-16px;margin-right:-16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=R6JKLF4]{display:flex;width:100%}#html-body [data-pb-style=AN5JHRG],#html-body [data-pb-style=DFVCSS1]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=AN5JHRG]{justify-content:flex-start;display:flex;flex-direction:column;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=DFVCSS1]{border-radius:8px}#html-body [data-pb-style=M0T5QL5]{border-radius:8px;min-height:300px;background-color:transparent}#html-body [data-pb-style=I0B1YP4],#html-body [data-pb-style=YLU8JIY]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=YLU8JIY]{justify-content:flex-start;display:flex;flex-direction:column;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=I0B1YP4]{border-radius:8px}#html-body [data-pb-style=WCHAM5M]{border-radius:8px;min-height:300px;background-color:transparent}#html-body [data-pb-style=EKQ8Q3J],#html-body [data-pb-style=W096GRA]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=W096GRA]{justify-content:flex-start;display:flex;flex-direction:column;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=EKQ8Q3J]{border-radius:8px}#html-body [data-pb-style=DLT0LY4]{border-radius:8px;min-height:300px;background-color:transparent}#html-body [data-pb-style=IXKRHCB]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=CC5YU1V],#html-body [data-pb-style=XD1WDSF]{text-align:center}#html-body [data-pb-style=TWO6RCX]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;margin-left:-16px;margin-right:-16px}#html-body [data-pb-style=NWB5OO3]{padding-left:16px;padding-right:16px}#html-body [data-pb-style=KB7MGCR]{width:100%;border-width:1px;border-color:#cecece;display:inline-block}#html-body [data-pb-style=BPCS61F]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;padding-left:16px;padding-right:16px;align-self:stretch}#html-body [data-pb-style=P127WR6]{display:flex;width:100%}#html-body [data-pb-style=OK9RPYM]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=WAKFX4D]{padding-left:16px;padding-right:16px}#html-body [data-pb-style=PFOEXYN],#html-body [data-pb-style=XXXDYR0]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=FF2HR0U]{padding-left:16px;padding-right:16px}#html-body [data-pb-style=WO1FBJ3]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=YQPD3OG]{padding-left:16px;padding-right:16px}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"RDUTT9Y\"><div class=\"pagebuilder-slider\" data-content-type=\"slider\" data-appearance=\"default\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-fade=\"true\" data-infinite-loop=\"true\" data-show-arrows=\"true\" data-show-dots=\"false\" data-element=\"main\" data-pb-style=\"RIW37YL\"><div data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"poster\" data-show-button=\"always\" data-show-overlay=\"always\" data-element=\"main\"><a href=\"#\" target=\"\" data-link-type=\"default\" title=\"\" data-element=\"link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/slider/F8C5D6EC-AC17-4B6E-9C22-B94A3CD67C93.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"ND5X96U\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"SGU9CMM\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h5><span style=\"color: #ffffff;\">Questo è un testo piccolo</span></h5><h1><span style=\"color: #ffffff;\"><strong>CARNE E SALUMI.</strong></span><br><span style=\"color: #ffffff;\"><strong>QUALITÀ CERTIFICATA</strong></span><br><span style=\"color: #ffffff;\"><strong>E SAPORE TRENTINO</strong></span></h1><h4><span style=\"color: #ffffff;\">Solo animali nati e allevati in Trentino</span></h4></div><button type=\"button\" class=\"pagebuilder-slide-button pagebuilder-button-primary\" data-element=\"button\" data-pb-style=\"MPRHLUK\">Acquista Ora</button></div></div></div></a></div><div data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/slider/D7444B57-5CB5-4B4B-9C13-078CA25A4A91.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"BORXY78\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"MEIPXX2\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h5>sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h5><h1>Lorem ipsum dolor sit amet, consectetur adipiscing elit</h1><h4>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h4></div></div></div></div></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"UW59ER9\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"S5F6G1L\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"TR1RA1L\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FH8P8X7\"><h2 class=\"text-primary\" data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"D01IT43\">Perchè acquistare su Indaco?</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"VOLCTGR\" style=\"text-align: center;\"><span style=\"color: #999999;\">Progetto realizzato con il sostegno economico della Provincia autonoma di Trento tramite la legge 6/99</span><br>&nbsp;</p></div></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"A4KPTAM\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"TMCCUY5\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"TTLAJRQ\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WIYGHP8\"><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"2\" type_name=\"CMS Static Block\"}}</div><h5 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"WHHOWH1\">L’autenticità del Trentino</h5><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center;\"><span style=\"color: #999999;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"F5BUPHW\"><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"2\" type_name=\"CMS Static Block\"}}</div><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"XI2FX20\">Prodotti sostenibili</h4><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"TMRMSER\" style=\"text-align: center;\"><span style=\"color: #999999;\">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"JLICG9B\"><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"2\" type_name=\"CMS Static Block\"}}</div><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"OK5VNQH\">Valorizzazione della filiera</h4><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"U3OGMJK\" style=\"text-align: center;\"><span style=\"color: #999999;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</span></p></div></div></div></div><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"M1RC8OK\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"UY0AFXG\"><a class=\"pagebuilder-button-primary\" href=\"{{widget type=\'Magento\\Cms\\Block\\Widget\\Page\\Link\' page_id=\'2\' template=\'Magento_PageBuilder::widget/link_href.phtml\' type_name=\'CMS Page Link\' }}\" target=\"\" data-link-type=\"page\" data-element=\"link\" data-pb-style=\"K0KRLJW\"><span data-element=\"link_text\">SCOPRI DI PIÙ</span></a></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"LHD4YPT\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"N4DF0NR\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"R6JKLF4\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"AN5JHRG\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" class=\"bg-overlay\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/banner/896189F5-5470-48B3-B9F4-BB6894612E11.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"DFVCSS1\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"M0T5QL5\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><div class=\"sc-bdvvtL eOzZrD\"><div class=\"sc-bdvvtL ikmxdg\"><div id=\"css-content\" class=\"sc-bdvvtL hmcaLA\"><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\">FRUTTA BIO DIRETTAMENTE A CASA TUA!</span></h3><p><strong><span style=\"color: #a2bf1a;\">VEDI TUTTO BIO</span></strong></p></div></div></div></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"YLU8JIY\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/banner/30D840EE-33E9-457A-89BB-3F88D31CAB32.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"I0B1YP4\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"WCHAM5M\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\">LEGNO E ARTIGIANATO<br></span></h3><p><span style=\"color: #a2bf1a;\"><strong>VEDI TUTTO LEGNO</strong></span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"W096GRA\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" class=\"ribbon-intrentino\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/banner/3C57434A-138C-467E-BF50-3DE6CB9DB635.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"EKQ8Q3J\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"DLT0LY4\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><div class=\"sc-bdvvtL eOzZrD\"><div class=\"sc-bdvvtL ikmxdg\"><div id=\"css-content\" class=\"sc-bdvvtL hmcaLA\"><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\"><img style=\"width: 176px; height: 46px;\" src=\"https://magento.test/media/wysiwyg/D489DEA0-6721-4063-B0BA-873A05C1B22E.png\" alt=\"intrentino logo\" width=\"176\" height=\"46\"></span></h3><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\">LE EMOZIONI #inTrentino HANNO UN SAPORE DIVERSO</span></h3><p><span style=\"color: #a2bf1a;\"><strong>VEDI TUTTO INTRENTINO</strong></span></p></div></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"IXKRHCB\"><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"CC5YU1V\">I selezionati</h4><div data-content-type=\"products\" data-appearance=\"carousel\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-infinite-loop=\"false\" data-show-arrows=\"false\" data-show-dots=\"true\" data-carousel-mode=\"default\" data-center-padding=\"90px\" data-element=\"main\">{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" template=\"Magento_PageBuilder::catalog/product/widget/content/carousel.phtml\" anchor_text=\"\" id_path=\"\" show_pager=\"0\" products_count=\"20\" condition_option=\"category_ids\" condition_option_value=\"3\" type_name=\"Catalog Products Carousel\" conditions_encoded=\"^[`1`:^[`aggregator`:`all`,`new_child`:``,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`value`:`1`^],`1--1`:^[`operator`:`==`,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`category_ids`,`value`:`3`^]^]\" sort_order=\"position\"}}</div><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"XD1WDSF\">I bestseller</h4><div data-content-type=\"products\" data-appearance=\"carousel\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-infinite-loop=\"false\" data-show-arrows=\"false\" data-show-dots=\"true\" data-carousel-mode=\"default\" data-center-padding=\"90px\" data-element=\"main\">{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" template=\"Magento_PageBuilder::catalog/product/widget/content/carousel.phtml\" anchor_text=\"\" id_path=\"\" show_pager=\"0\" products_count=\"20\" condition_option=\"category_ids\" condition_option_value=\"74\" type_name=\"Catalog Products Carousel\" conditions_encoded=\"^[`1`:^[`aggregator`:`all`,`new_child`:``,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`value`:`1`^],`1--1`:^[`operator`:`==`,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`category_ids`,`value`:`74`^]^]\" sort_order=\"position\"}}</div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div class=\"icon-baloon-list\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"TWO6RCX\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"NWB5OO3\"><hr data-element=\"line\" data-pb-style=\"KB7MGCR\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"BPCS61F\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"P127WR6\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OK9RPYM\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"WAKFX4D\">&lt;div class=\"container-fluid\"&gt;\r\n  &lt;div class=\"row align-items-center\"&gt;\r\n    &lt;div class=\"col-auto\"&gt;\r\n      &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n        &lt;div class=\"rounded-circle\"&gt;\r\n           &lt;i class=\"fas fa-rocket\"&gt;&lt;/i&gt;\r\n        &lt;/div&gt;\r\n      &lt;/div&gt;\r\n    &lt;/div&gt;\r\n    &lt;div class=\"col\"&gt;\r\n      &lt;h6 class=\"my-0\"&gt;CONSEGNA GRATIS&lt;/h6&gt;\r\n      &lt;p class=\"text-small text-muted mb-0\"&gt;Per ordini superiori ai 60 Euro&lt;/p&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PFOEXYN\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\">&lt;div class=\"container-fluid\"&gt;\r\n&lt;div class=\"row align-items-center\"&gt;\r\n  &lt;div class=\"col-auto\"&gt;\r\n    &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n&lt;div class=\"rounded-circle\"&gt;\r\n&lt;i class=\"fa-solid fa-comment-dots\"&gt;&lt;/i&gt;&lt;/div&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n  &lt;div class=\"col\"&gt;\r\n     &lt;h6 class=\"my-0\"&gt;SUPPORTO TELEFONICO 24/7&lt;/h6&gt;\r\n     &lt;p class=\"text-muted text-small mb-0\"&gt;Assistenza dedicata&lt;/p&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;\r\n  &lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"XXXDYR0\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FF2HR0U\">&lt;div class=\"container-fluid\"&gt;\r\n&lt;div class=\"row align-items-center\"&gt;\r\n  &lt;div class=\"col-auto\"&gt;\r\n    &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n&lt;div class=\"rounded-circle\"&gt;\r\n&lt;i class=\"fas fa-credit-card\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n  &lt;div class=\"col\"&gt;\r\n     &lt;h6 class=\"my-0\"&gt;PAGAMENTO SICURO&lt;/h4&gt;\r\n     &lt;p class=\"text-muted text-small mb-0\"&gt;100% pagamento sicuro&lt;/p&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WO1FBJ3\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"YQPD3OG\">&lt;div class=\"container-fluid\"&gt;\r\n&lt;div class=\"row align-items-center\"&gt;\r\n  &lt;div class=\"col-auto\"&gt;\r\n    &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n&lt;div class=\"rounded-circle\"&gt;\r\n&lt;i class=\"fas fa-arrow-right-arrow-left\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n  &lt;div class=\"col\"&gt;\r\n     &lt;h6 class=\"my-0\"&gt;30 GIORNI RESO GRATUITO&lt;/h6&gt;\r\n     &lt;p class=\"text-muted text-small mb-0\"&gt;In caso di merce non conforme&lt;/p&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;/div&gt;</div></div></div></div></div></div>','2022-07-31 09:47:40','2022-09-05 16:29:09',1,0,'<!--\n    <referenceContainer name=\"right\">\n        <referenceBlock name=\"catalog.compare.sidebar\" remove=\"true\" />\n    </referenceContainer>-->','','',NULL,NULL,NULL,NULL,''),(3,'Enable Cookies','1column',NULL,NULL,'enable-cookies','What are Cookies?','<div class=\"enable-cookies cms-content\">\r\n<p>\"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.</p>\r\n<p style=\"margin-bottom: 20px;\">Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:</p>\r\n<ul>\r\n<li><a href=\"https://support.google.com/accounts/answer/61416?hl=en\" target=\"_blank\">Google Chrome</a></li>\r\n<li><a href=\"http://windows.microsoft.com/en-us/internet-explorer/delete-manage-cookies\" target=\"_blank\">Internet Explorer</a></li>\r\n<li><a href=\"http://support.apple.com/kb/PH19214\" target=\"_blank\">Safari</a></li>\r\n<li><a href=\"https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences\" target=\"_blank\">Mozilla/Firefox</a></li>\r\n</ul>\r\n</div>','2022-07-31 09:47:40','2022-07-31 09:47:40',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Privacy and Cookie Policy','1column',NULL,NULL,'privacy-policy-cookie-restriction-mode','Privacy and Cookie Policy','<div class=\"privacy-policy cms-content\">\n    <div class=\"message info\">\n        <span>\n            Please replace this text with you Privacy Policy.\n            Please add any additional cookies your website uses below (e.g. Google Analytics).\n        </span>\n    </div>\n    <p>\n        This privacy policy sets out how this website (hereafter \"the Store\") uses and protects any information that\n        you give the Store while using this website. The Store is committed to ensuring that your privacy is protected.\n        Should we ask you to provide certain information by which you can be identified when using this website, then\n        you can be assured that it will only be used in accordance with this privacy statement. The Store may change\n        this policy from time to time by updating this page. You should check this page from time to time to ensure\n        that you are happy with any changes.\n    </p>\n    <h2>What we collect</h2>\n    <p>We may collect the following information:</p>\n    <ul>\n        <li>name</li>\n        <li>contact information including email address</li>\n        <li>demographic information such as postcode, preferences and interests</li>\n        <li>other information relevant to customer surveys and/or offers</li>\n    </ul>\n    <p>\n        For the exhaustive list of cookies we collect see the <a href=\"#list\">List of cookies we collect</a> section.\n    </p>\n    <h2>What we do with the information we gather</h2>\n    <p>\n        We require this information to understand your needs and provide you with a better service,\n        and in particular for the following reasons:\n    </p>\n    <ul>\n        <li>Internal record keeping.</li>\n        <li>We may use the information to improve our products and services.</li>\n        <li>\n            We may periodically send promotional emails about new products, special offers or other information which we\n            think you may find interesting using the email address which you have provided.\n        </li>\n        <li>\n            From time to time, we may also use your information to contact you for market research purposes.\n            We may contact you by email, phone, fax or mail. We may use the information to customise the website\n            according to your interests.\n        </li>\n    </ul>\n    <h2>Security</h2>\n    <p>\n        We are committed to ensuring that your information is secure. In order to prevent unauthorised access or\n        disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and\n        secure the information we collect online.\n    </p>\n    <h2>How we use cookies</h2>\n    <p>\n        A cookie is a small file which asks permission to be placed on your computer\'s hard drive.\n        Once you agree, the file is added and the cookie helps analyse web traffic or lets you know when you visit\n        a particular site. Cookies allow web applications to respond to you as an individual. The web application\n        can tailor its operations to your needs, likes and dislikes by gathering and remembering information about\n        your preferences.\n    </p>\n    <p>\n        We use traffic log cookies to identify which pages are being used. This helps us analyse data about web page\n        traffic and improve our website in order to tailor it to customer needs. We only use this information for\n        statistical analysis purposes and then the data is removed from the system.\n    </p>\n    <p>\n        Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find\n        useful and which you do not. A cookie in no way gives us access to your computer or any information about you,\n        other than the data you choose to share with us. You can choose to accept or decline cookies.\n        Most web browsers automatically accept cookies, but you can usually modify your browser setting\n        to decline cookies if you prefer. This may prevent you from taking full advantage of the website.\n    </p>\n    <h2>Links to other websites</h2>\n    <p>\n        Our website may contain links to other websites of interest. However, once you have used these links\n        to leave our site, you should note that we do not have any control over that other website.\n        Therefore, we cannot be responsible for the protection and privacy of any information which you provide whilst\n        visiting such sites and such sites are not governed by this privacy statement.\n        You should exercise caution and look at the privacy statement applicable to the website in question.\n    </p>\n    <h2>Controlling your personal information</h2>\n    <p>You may choose to restrict the collection or use of your personal information in the following ways:</p>\n    <ul>\n        <li>\n            whenever you are asked to fill in a form on the website, look for the box that you can click to indicate\n            that you do not want the information to be used by anybody for direct marketing purposes\n        </li>\n        <li>\n            if you have previously agreed to us using your personal information for direct marketing purposes,\n            you may change your mind at any time by letting us know using our Contact Us information\n        </li>\n    </ul>\n    <p>\n        We will not sell, distribute or lease your personal information to third parties unless we have your permission\n        or are required by law to do so. We may use your personal information to send you promotional information\n        about third parties which we think you may find interesting if you tell us that you wish this to happen.\n    </p>\n    <p>\n        You may request details of personal information which we hold about you under the Data Protection Act 1998.\n        A small fee will be payable. If you would like a copy of the information held on you please email us this\n        request using our Contact Us information.\n    </p>\n    <p>\n        If you believe that any information we are holding on you is incorrect or incomplete,\n        please write to or email us as soon as possible, at the above address.\n        We will promptly correct any information found to be incorrect.\n    </p>\n    <h2><a name=\"list\"></a>List of cookies we collect</h2>\n    <p>The table below lists the cookies we collect and what information they store.</p>\n    <table class=\"data-table data-table-definition-list\">\n        <thead>\n        <tr>\n            <th>Cookie Name</th>\n            <th>Cookie Description</th>\n        </tr>\n        </thead>\n        <tbody>\n            <tr>\n                <th>FORM_KEY</th>\n                <td>Stores randomly generated key used to prevent forged requests.</td>\n            </tr>\n            <tr>\n                <th>PHPSESSID</th>\n                <td>Your session ID on the server.</td>\n            </tr>\n            <tr>\n                <th>GUEST-VIEW</th>\n                <td>Allows guests to view and edit their orders.</td>\n            </tr>\n            <tr>\n                <th>PERSISTENT_SHOPPING_CART</th>\n                <td>A link to information about your cart and viewing history, if you have asked for this.</td>\n            </tr>\n            <tr>\n                <th>STF</th>\n                <td>Information on products you have emailed to friends.</td>\n            </tr>\n            <tr>\n                <th>STORE</th>\n                <td>The store view or language you have selected.</td>\n            </tr>\n            <tr>\n                <th>USER_ALLOWED_SAVE_COOKIE</th>\n                <td>Indicates whether a customer allowed to use cookies.</td>\n            </tr>\n            <tr>\n                <th>MAGE-CACHE-SESSID</th>\n                <td>Facilitates caching of content on the browser to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>MAGE-CACHE-STORAGE</th>\n                <td>Facilitates caching of content on the browser to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>MAGE-CACHE-STORAGE-SECTION-INVALIDATION</th>\n                <td>Facilitates caching of content on the browser to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>MAGE-CACHE-TIMEOUT</th>\n                <td>Facilitates caching of content on the browser to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>SECTION-DATA-IDS</th>\n                <td>Facilitates caching of content on the browser to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>PRIVATE_CONTENT_VERSION</th>\n                <td>Facilitates caching of content on the browser to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>X-MAGENTO-VARY</th>\n                <td>Facilitates caching of content on the server to make pages load faster.</td>\n            </tr>\n            <tr>\n                <th>MAGE-TRANSLATION-FILE-VERSION</th>\n                <td>Facilitates translation of content to other languages.</td>\n            </tr>\n            <tr>\n                <th>MAGE-TRANSLATION-STORAGE</th>\n                <td>Facilitates translation of content to other languages.</td>\n            </tr>\n        </tbody>\n    </table>\n</div>','2022-07-31 09:47:40','2022-07-31 09:47:40',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `cms_page` ENABLE KEYS */;

--
-- Table structure for table `cms_page_store`
--

DROP TABLE IF EXISTS `cms_page_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_page_store` (
  `page_id` smallint(6) NOT NULL COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`page_id`,`store_id`),
  KEY `CMS_PAGE_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `CMS_PAGE_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_page_store`
--

/*!40000 ALTER TABLE `cms_page_store` DISABLE KEYS */;
INSERT INTO `cms_page_store` VALUES (1,0),(2,0),(3,0),(4,0);
/*!40000 ALTER TABLE `cms_page_store` ENABLE KEYS */;

--
-- Table structure for table `core_config_data`
--

DROP TABLE IF EXISTS `core_config_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_config_data` (
  `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config ID',
  `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope',
  `scope_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Config Scope ID',
  `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path',
  `value` text DEFAULT NULL COMMENT 'Config Value',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`config_id`),
  UNIQUE KEY `CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`)
) ENGINE=InnoDB AUTO_INCREMENT=432 DEFAULT CHARSET=utf8 COMMENT='Config Data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_config_data`
--

/*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */;
INSERT INTO `core_config_data` VALUES (1,'default',0,'web/seo/use_rewrites','1','2022-07-31 09:47:34'),(2,'default',0,'web/unsecure/base_url','https://magento.test/','2022-08-18 10:09:40'),(3,'default',0,'general/locale/code','it_IT','2022-07-31 09:47:34'),(4,'default',0,'general/locale/timezone','Europe/Rome','2022-07-31 09:47:34'),(5,'default',0,'currency/options/base','EUR','2022-07-31 09:47:34'),(6,'default',0,'currency/options/default','EUR','2022-07-31 09:47:34'),(7,'default',0,'currency/options/allow','EUR','2022-07-31 09:47:34'),(8,'default',0,'general/region/display_all','1','2022-07-31 09:47:35'),(9,'default',0,'general/region/state_required','AL,AR,AU,BY,BO,BR,BG,CA,CL,CN,CO,HR,DK,EC,EE,GR,GY,IS,IN,IT,LV,LT,MX,PY,PE,PL,PT,RO,ES,SR,SE,CH,US,UY,VE','2022-07-31 11:54:50'),(10,'default',0,'catalog/category/root_id','2','2022-07-31 09:47:41'),(11,'default',0,'analytics/subscription/enabled','1','2022-07-31 09:47:43'),(12,'default',0,'crontab/default/jobs/analytics_subscribe/schedule/cron_expr','0 * * * *','2022-07-31 09:47:43'),(13,'default',0,'crontab/default/jobs/analytics_collect_data/schedule/cron_expr','00 02 * * *','2022-07-31 09:47:43'),(14,'default',0,'msp_securitysuite_recaptcha/frontend/enabled','0','2022-07-31 09:47:43'),(15,'default',0,'msp_securitysuite_recaptcha/backend/enabled','0','2022-07-31 09:47:43'),(16,'default',0,'twofactorauth/duo/application_key','OZXtQvUSaNrBmKswkyf5sowmt1nWzTE5ERZIm3rjBpjEoRqm5FLOOzhcI1iSV74I','2022-07-31 09:47:43'),(17,'default',0,'admin/usage/enabled','0','2022-07-31 09:53:29'),(18,'default',0,'general/country/default','IT','2022-07-31 11:54:50'),(19,'default',0,'general/country/destinations',NULL,'2022-07-31 11:54:50'),(20,'default',0,'general/locale/weight_unit','kgs','2022-07-31 11:54:50'),(21,'default',0,'general/locale/firstday','1','2022-07-31 11:54:50'),(22,'default',0,'general/store_information/name','Indaco','2022-07-31 11:54:50'),(23,'default',0,'general/store_information/phone','+39 0461 123456','2022-07-31 11:54:50'),(24,'default',0,'general/store_information/hours',NULL,'2022-07-31 11:54:50'),(25,'default',0,'general/store_information/country_id','IT','2022-07-31 11:54:50'),(26,'default',0,'general/store_information/region_id','909','2022-07-31 11:54:50'),(27,'default',0,'general/store_information/postcode','38121','2022-07-31 11:54:50'),(28,'default',0,'general/store_information/city','Trento','2022-07-31 11:54:50'),(29,'default',0,'general/store_information/street_line1',NULL,'2022-07-31 11:54:50'),(30,'default',0,'general/store_information/street_line2',NULL,'2022-07-31 11:54:50'),(31,'default',0,'general/store_information/merchant_vat_number','01234567890','2022-07-31 11:54:50'),(32,'default',0,'general/single_store_mode/enabled','0','2022-07-31 11:54:50'),(33,'default',0,'free/module/email','roberto@torresani.eu','2022-07-31 13:31:11'),(34,'default',0,'free/module/name','Roberto Torresani','2022-07-31 13:31:11'),(35,'default',0,'free/module/create','1','2022-07-31 13:31:11'),(36,'default',0,'free/module/subscribe','1','2022-07-31 13:31:11'),(37,'default',0,'smtp/module/active','1','2022-07-31 13:31:11'),(38,'default',0,'smtp/module/product_key','SMTP-M2Z6AERV7JUQ6C0I2FNC','2022-07-31 13:31:11'),(39,'default',0,'smtp/module/email','roberto@torresani.eu','2022-07-31 13:31:11'),(40,'default',0,'smtp/module/name','Roberto Torresani','2022-07-31 13:31:11'),(41,'default',0,'smtp/module/create','1','2022-07-31 13:31:11'),(42,'default',0,'smtp/module/subscribe','1','2022-07-31 13:31:11'),(43,'default',0,'smtp/general/enabled','1','2022-07-31 13:32:47'),(44,'default',0,'smtp/general/log_email','1','2022-07-31 13:32:47'),(45,'default',0,'smtp/general/clean_email','10','2022-07-31 13:32:47'),(46,'default',0,'smtp/general/blacklist',NULL,'2022-07-31 13:32:47'),(47,'default',0,'smtp/configuration_option/host','smtps.aruba.it','2022-07-31 13:32:47'),(48,'default',0,'smtp/configuration_option/port','465','2022-07-31 13:32:47'),(49,'default',0,'smtp/configuration_option/protocol','ssl','2022-07-31 13:32:47'),(50,'default',0,'smtp/configuration_option/authentication','plain','2022-07-31 13:32:47'),(51,'default',0,'smtp/configuration_option/username','posit@servicemail.biz','2022-07-31 13:32:47'),(52,'default',0,'smtp/configuration_option/password','0:3:m3+rGUK3gxmzWyOeod3sNkLR7ki7C9KixjK83990pli8aooAwf31','2022-07-31 13:32:47'),(53,'default',0,'smtp/configuration_option/return_path_email',NULL,'2022-07-31 13:32:47'),(54,'default',0,'smtp/configuration_option/test_email/from','general','2022-07-31 13:32:47'),(55,'default',0,'smtp/configuration_option/test_email/to',NULL,'2022-07-31 13:32:47'),(56,'default',0,'smtp/developer/developer_mode','0','2022-07-31 13:32:47'),(57,'default',0,'mageplaza/general/notice_enable','0','2022-07-31 13:33:51'),(58,'default',0,'mageplaza/general/menu','0','2022-07-31 13:33:51'),(59,'default',0,'buybutton/general_settings/access_key','6733f1af4dbc12f39ab4812ab0b0048cb15882db','2022-08-08 13:59:13'),(60,'default',0,'buybutton/general_settings/do_redirect','0','2022-08-08 13:59:13'),(61,'default',0,'oauth/consumer/enable_integration_as_bearer','0','2022-08-09 13:17:04'),(62,'default',0,'pr_gdpr_addon/general/enabled','1','2022-08-11 09:26:51'),(63,'default',0,'pr_gdpr_addon/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-11 09:10:54'),(64,'default',0,'prgdpr/dashboard/protection_officer_email','dpo_TEST@indaco.store','2022-08-11 09:26:51'),(65,'default',0,'plumbase/notifications/enabled','1','2022-08-11 09:16:05'),(66,'default',0,'plumbase/menu/enabled','1','2022-08-11 09:16:05'),(67,'default',0,'plumbase/system/enabled_statistic','0','2022-08-11 09:16:05'),(68,'default',0,'plumbase/general/new_changes','1','2022-08-11 09:16:05'),(69,'default',0,'prgdpr/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-11 09:16:16'),(70,'default',0,'prgdpr/general/enabled','1','2022-08-11 09:41:27'),(71,'default',0,'prgdpr/dashboard/privacy_policy_page','4','2022-08-11 09:39:47'),(72,'default',0,'prgdpr/dashboard/cookie_policy_page','4','2022-08-11 09:39:47'),(73,'default',0,'prgdpr/dashboard/guest_enable','1','2022-08-11 09:39:47'),(74,'default',0,'prgdpr/dashboard/guest_expiration_link','1','2022-08-11 09:39:47'),(75,'default',0,'prgdpr/removal_settings/anonymization_key','Deleted','2022-08-11 09:39:47'),(76,'default',0,'prgdpr/removal_settings/automatic_delete_requests/enabled','0','2022-08-11 09:39:47'),(77,'default',0,'prgdpr/email/sender_name','Support Team','2022-08-11 09:39:47'),(78,'default',0,'prgdpr/email/sender_email','data-privacy-support@example.com','2022-08-11 09:39:47'),(79,'default',0,'prgdpr/email/download_confirmation_template','prgdpr_email_download_confirmation_template','2022-08-11 09:39:47'),(80,'default',0,'prgdpr/email/removal_request_template','prgdpr_email_removal_request_template','2022-08-11 09:39:47'),(81,'default',0,'prgdpr/email/admin_removal_request_template','prgdpr_email_admin_removal_request_template','2022-08-11 09:39:47'),(82,'default',0,'prgdpr/email/automatic_removal_request_template','prgdpr_email_automatic_removal_request_template','2022-08-11 09:39:47'),(83,'default',0,'prgdpr/email/guest_email_template','prgdpr_email_guest_email_template','2022-08-11 09:39:47'),(84,'default',0,'pr_cookie/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-11 09:40:44'),(85,'default',0,'pr_cookie/general/enabled','1','2022-08-11 09:58:13'),(86,'default',0,'pr_cookie/main_settings/geo_targeting','all','2022-08-11 09:58:13'),(87,'default',0,'pr_cookie/main_settings/states_geo_targeting','all','2022-08-11 09:58:13'),(88,'default',0,'pr_cookie/main_settings/use_cookie_before_opt_in','0','2022-08-11 09:58:13'),(89,'default',0,'pr_cookie/main_settings/consent_expiry','365','2022-08-11 09:58:13'),(90,'default',0,'pr_cookie/main_settings/block_unknown_cookie','0','2022-08-11 09:58:13'),(91,'default',0,'pr_cookie/main_settings/reload_after_accept','1','2022-08-11 09:58:13'),(92,'default',0,'pr_cookie/main_settings/reload_after_decline','0','2022-08-11 09:58:13'),(93,'default',0,'pr_cookie/cookie_notice/display_style','wall','2022-08-11 10:17:44'),(94,'default',0,'pr_cookie/cookie_notice/hide_on_urls',NULL,'2022-08-11 09:58:13'),(95,'default',0,'pr_cookie/cookie_notice/text','<p>This website requires cookies to provide all of its features. For more information on what data is contained in the cookies, please see our <a href=\"{{store url=&quot;privacy-policy-cookie-restriction-mode&quot;}}\" target=\"_blank\" rel=\"noopener\">Cookie Policy</a> page. To accept cookies from this site, please click the Accept Cookies button below.</p>','2022-08-11 10:17:44'),(96,'default',0,'pr_cookie/cookie_notice/text_color','#e6e6e6','2022-08-11 09:58:13'),(97,'default',0,'pr_cookie/cookie_notice/background_color','#002244E3','2022-08-11 09:58:13'),(98,'default',0,'pr_cookie/cookie_notice/accept_button/label','Accept Cookies','2022-08-11 09:58:13'),(99,'default',0,'pr_cookie/cookie_notice/accept_button/text_color',NULL,'2022-08-11 09:58:13'),(100,'default',0,'pr_cookie/cookie_notice/accept_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(101,'default',0,'pr_cookie/cookie_notice/accept_button/background_color',NULL,'2022-08-11 09:58:13'),(102,'default',0,'pr_cookie/cookie_notice/accept_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(103,'default',0,'pr_cookie/cookie_notice/decline_button/enabled','1','2022-08-11 09:58:13'),(104,'default',0,'pr_cookie/cookie_notice/decline_button/label','Decline','2022-08-11 09:58:13'),(105,'default',0,'pr_cookie/cookie_notice/decline_button/text_color',NULL,'2022-08-11 09:58:13'),(106,'default',0,'pr_cookie/cookie_notice/decline_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(107,'default',0,'pr_cookie/cookie_notice/decline_button/background_color',NULL,'2022-08-11 09:58:13'),(108,'default',0,'pr_cookie/cookie_notice/decline_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(109,'default',0,'pr_cookie/cookie_notice/settings_button/enabled','1','2022-08-11 09:58:13'),(110,'default',0,'pr_cookie/cookie_notice/settings_button/label','Customize Settings','2022-08-11 09:58:13'),(111,'default',0,'pr_cookie/cookie_notice/settings_button/type','link','2022-08-11 09:58:13'),(112,'default',0,'pr_cookie/cookie_notice/settings_button/link_color',NULL,'2022-08-11 09:58:13'),(113,'default',0,'pr_cookie/cookie_notice/settings_button/link_color_on_hover',NULL,'2022-08-11 09:58:13'),(114,'default',0,'pr_cookie/settings_bar/show_details','1','2022-08-11 09:58:13'),(115,'default',0,'pr_cookie/settings_bar/overview_title','Privacy and Cookies','2022-08-11 09:58:13'),(116,'default',0,'pr_cookie/settings_bar/overview_text','<p>A cookie is information stored on your computer by a website you visit. Cookies provide a way for the site to recognize you and keep track of your preferences. Ecommerce websites place cookies on visitors\' browsers to retain login credentials, identify customers, and provide a customized shopping experience.</p>\r\n<p>We respect the privacy of individuals and recognize the importance of personal data entrusted to us by our customers. Any website visitor may choose not to allow some types of cookies. Click on cookie category headings and cookie details to find out more and change our default settings. However, blocking some types of cookies may impact your website experience and prevent you from using all the features on our store.</p>','2022-08-11 09:58:13'),(117,'default',0,'pr_cookie/settings_bar/text_color','inherit','2022-08-11 09:58:13'),(118,'default',0,'pr_cookie/settings_bar/background_color','inherit','2022-08-11 09:58:13'),(119,'default',0,'pr_cookie/settings_bar/accept_button/label','Accept All','2022-08-11 09:58:13'),(120,'default',0,'pr_cookie/settings_bar/accept_button/text_color',NULL,'2022-08-11 09:58:13'),(121,'default',0,'pr_cookie/settings_bar/accept_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(122,'default',0,'pr_cookie/settings_bar/accept_button/background_color',NULL,'2022-08-11 09:58:13'),(123,'default',0,'pr_cookie/settings_bar/accept_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(124,'default',0,'pr_cookie/settings_bar/decline_button/enabled','1','2022-08-11 09:58:13'),(125,'default',0,'pr_cookie/settings_bar/decline_button/label','Decline All','2022-08-11 09:58:13'),(126,'default',0,'pr_cookie/settings_bar/decline_button/text_color',NULL,'2022-08-11 09:58:13'),(127,'default',0,'pr_cookie/settings_bar/decline_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(128,'default',0,'pr_cookie/settings_bar/decline_button/background_color',NULL,'2022-08-11 09:58:13'),(129,'default',0,'pr_cookie/settings_bar/decline_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(130,'default',0,'pr_cookie/settings_bar/confirm_button/label','Confirm My Choices','2022-08-11 09:58:13'),(131,'default',0,'pr_cookie/settings_bar/confirm_button/text_color',NULL,'2022-08-11 09:58:13'),(132,'default',0,'pr_cookie/settings_bar/confirm_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(133,'default',0,'pr_cookie/settings_bar/confirm_button/background_color',NULL,'2022-08-11 09:58:13'),(134,'default',0,'pr_cookie/settings_bar/confirm_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(135,'default',0,'pr_cookie/settings_link/show_footer_link','1','2022-08-11 09:58:13'),(136,'default',0,'pr_cookie/settings_link/widget_code','{{widget type=\"Plumrocket\\CookieConsent\\Block\\Widget\\CookieSettingsButton\" title=\"Cookie Settings\" template=\"widget/cookie_settings_button.phtml\"}}','2022-08-11 09:58:13'),(137,'default',0,'prgdpr/gtm/enabled','0','2022-08-11 09:58:13'),(138,'default',0,'web/unsecure/base_static_url',NULL,'2022-08-11 10:05:06'),(139,'default',0,'web/unsecure/base_media_url',NULL,'2022-08-11 10:05:06'),(140,'default',0,'web/secure/base_url','https://magento.test/','2022-08-18 10:09:39'),(141,'default',0,'web/secure/base_static_url',NULL,'2022-08-11 10:05:06'),(142,'default',0,'web/secure/base_media_url',NULL,'2022-08-11 10:05:06'),(143,'default',0,'web/secure/enable_hsts','0','2022-08-11 10:05:06'),(144,'default',0,'web/secure/enable_upgrade_insecure','0','2022-08-11 10:05:06'),(145,'default',0,'web/default_layouts/default_product_layout','product-full-width','2022-08-11 10:05:06'),(146,'default',0,'web/default_layouts/default_category_layout','category-full-width','2022-08-11 10:05:06'),(147,'default',0,'web/default_layouts/default_cms_layout','cms-full-width','2022-08-11 10:05:06'),(148,'default',0,'web/cookie/cookie_path',NULL,'2022-08-11 10:05:06'),(149,'default',0,'web/cookie/cookie_domain',NULL,'2022-08-11 10:05:06'),(150,'default',0,'web/cookie/cookie_httponly','0','2022-08-11 10:05:06'),(151,'default',0,'pr_cookie/cookie_notice/title','We use cookies','2022-08-11 10:15:05'),(152,'default',0,'pr_cookie/cookie_notice/title_color','#f6f6f6','2022-08-11 10:15:05'),(153,'default',0,'pr_cookie/cookie_notice/overlay_background_color',NULL,'2022-08-11 10:15:05'),(154,'default',0,'pr_cookie/cookie_notice/overlay_blur','0','2022-08-11 10:15:05'),(155,'stores',1,'design/theme/theme_id','4','2022-08-18 12:10:47'),(156,'default',0,'system/full_page_cache/varnish/access_list','localhost','2022-08-18 14:50:28'),(157,'default',0,'system/full_page_cache/varnish/backend_host','localhost','2022-08-18 14:50:28'),(158,'default',0,'system/full_page_cache/varnish/backend_port','8080','2022-08-18 14:50:28'),(159,'default',0,'system/full_page_cache/varnish/grace_period','300','2022-08-18 14:50:28'),(160,'default',0,'admin/security/session_lifetime','31536000','2022-08-19 08:01:29'),(161,'default',0,'dev/front_end_development_workflow/type','client_side_compilation','2022-08-25 08:33:13'),(162,'default',0,'dev/restrict/allow_ips','127.0.0.1','2022-08-22 13:10:02'),(163,'default',0,'dev/debug/template_hints_storefront','1','2022-08-22 12:36:15'),(164,'default',0,'dev/debug/template_hints_admin','1','2022-08-22 13:10:22'),(165,'default',0,'dev/debug/template_hints_blocks','1','2022-08-22 12:36:15'),(166,'default',0,'dev/template/allow_symlink','0','2022-08-19 08:02:26'),(167,'default',0,'dev/translate_inline/active','0','2022-08-19 08:02:26'),(168,'default',0,'dev/translate_inline/active_admin','0','2022-08-19 08:02:26'),(169,'default',0,'dev/debug/template_hints_storefront_show_with_parameter','1','2022-08-22 12:36:15'),(170,'default',0,'catalog/search/elasticsearch7_server_hostname','elasticsearch','2022-08-24 08:53:43'),(171,'default',0,'adobe_ims/integration/logging_enabled','0','2022-08-24 15:12:09'),(172,'websites',1,'design/theme/theme_id','4','2022-08-31 14:51:35'),(173,'default',0,'design/theme/theme_id','4','2022-08-31 14:51:59'),(174,'default',0,'design/pagination/pagination_frame','5','2022-08-31 14:51:59'),(175,'default',0,'design/pagination/pagination_frame_skip',NULL,'2022-08-31 14:51:59'),(176,'default',0,'design/pagination/anchor_text_for_previous',NULL,'2022-08-31 14:51:59'),(177,'default',0,'design/pagination/anchor_text_for_next',NULL,'2022-08-31 14:51:59'),(178,'default',0,'design/head/default_title','Magento Commerce','2022-08-31 14:51:59'),(179,'default',0,'design/head/title_prefix',NULL,'2022-08-31 14:51:59'),(180,'default',0,'design/head/title_suffix',NULL,'2022-08-31 14:51:59'),(181,'default',0,'design/head/default_description',NULL,'2022-08-31 14:51:59'),(182,'default',0,'design/head/default_keywords',NULL,'2022-08-31 14:51:59'),(183,'default',0,'design/head/includes',NULL,'2022-08-31 14:51:59'),(184,'default',0,'design/head/demonotice','0','2022-08-31 14:51:59'),(185,'default',0,'design/header/logo_width',NULL,'2022-08-31 14:51:59'),(186,'default',0,'design/header/logo_height',NULL,'2022-08-31 14:51:59'),(187,'default',0,'design/header/logo_alt',NULL,'2022-08-31 14:51:59'),(188,'default',0,'design/header/welcome','Default welcome msg!','2022-08-31 14:51:59'),(189,'default',0,'design/header/translate_title','1','2022-08-31 14:51:59'),(190,'default',0,'design/footer/copyright','Copyright © 2013-present Magento, Inc. All rights reserved.','2022-08-31 14:51:59'),(191,'default',0,'design/footer/absolute_footer',NULL,'2022-08-31 14:51:59'),(192,'default',0,'design/footer/report_bugs','1','2022-08-31 14:51:59'),(193,'default',0,'design/search_engine_robots/default_robots','INDEX,FOLLOW','2022-08-31 14:51:59'),(194,'default',0,'design/search_engine_robots/custom_instructions',NULL,'2022-08-31 14:51:59'),(195,'default',0,'design/watermark/image_size',NULL,'2022-08-31 14:51:59'),(196,'default',0,'design/watermark/image_imageOpacity',NULL,'2022-08-31 14:51:59'),(197,'default',0,'design/watermark/image_position','stretch','2022-08-31 14:51:59'),(198,'default',0,'design/watermark/small_image_size',NULL,'2022-08-31 14:51:59'),(199,'default',0,'design/watermark/small_image_imageOpacity',NULL,'2022-08-31 14:51:59'),(200,'default',0,'design/watermark/small_image_position','stretch','2022-08-31 14:51:59'),(201,'default',0,'design/watermark/thumbnail_size',NULL,'2022-08-31 14:51:59'),(202,'default',0,'design/watermark/thumbnail_imageOpacity',NULL,'2022-08-31 14:51:59'),(203,'default',0,'design/watermark/thumbnail_position','stretch','2022-08-31 14:51:59'),(204,'default',0,'design/email/logo_alt',NULL,'2022-08-31 14:51:59'),(205,'default',0,'design/email/logo_width',NULL,'2022-08-31 14:51:59'),(206,'default',0,'design/email/logo_height',NULL,'2022-08-31 14:51:59'),(207,'default',0,'design/email/header_template','design_email_header_template','2022-08-31 14:51:59'),(208,'default',0,'design/email/footer_template','design_email_footer_template','2022-08-31 14:51:59'),(209,'default',0,'paypal/general/merchant_country',NULL,'2022-09-16 07:48:05'),(210,'default',0,'payment/paypal_express/active','0','2022-09-16 07:48:05'),(211,'default',0,'payment/paypal_express/in_context','0','2022-09-16 07:48:05'),(212,'default',0,'payment/paypal_paylater/experience_active','0','2022-09-16 07:48:05'),(213,'default',0,'paypal/general/business_account',NULL,'2022-09-16 07:48:05'),(214,'default',0,'paypal/wpp/api_authentication','0','2022-09-16 07:48:05'),(215,'default',0,'paypal/wpp/api_username',NULL,'2022-09-16 07:48:05'),(216,'default',0,'paypal/wpp/api_password',NULL,'2022-09-16 07:48:05'),(217,'default',0,'paypal/wpp/api_signature',NULL,'2022-09-16 07:48:05'),(218,'default',0,'paypal/wpp/sandbox_flag','0','2022-09-16 07:48:05'),(219,'default',0,'paypal/wpp/use_proxy','0','2022-09-16 07:48:05'),(220,'default',0,'payment/paypal_express/title','PayPal Express Checkout','2022-09-16 07:48:05'),(221,'default',0,'payment/paypal_express/sort_order',NULL,'2022-09-16 07:48:05'),(222,'default',0,'payment/paypal_express/payment_action','Authorization','2022-09-16 07:48:05'),(223,'default',0,'payment/paypal_express/visible_on_product','1','2022-09-16 07:48:05'),(224,'default',0,'payment/paypal_express/visible_on_cart','1','2022-09-16 07:48:05'),(225,'default',0,'payment/paypal_express/allowspecific','0','2022-09-16 07:48:05'),(226,'default',0,'payment/paypal_express/debug','0','2022-09-16 07:48:05'),(227,'default',0,'payment/paypal_express/verify_peer','1','2022-09-16 07:48:05'),(228,'default',0,'payment/paypal_express/line_items_enabled','1','2022-09-16 07:48:05'),(229,'default',0,'payment/paypal_express/transfer_shipping_options','0','2022-09-16 07:48:05'),(230,'default',0,'paypal/wpp/button_flavor','dynamic','2022-09-16 07:48:05'),(231,'default',0,'payment/paypal_express/solution_type','Mark','2022-09-16 07:48:05'),(232,'default',0,'payment/paypal_express/require_billing_address','0','2022-09-16 07:48:05'),(233,'default',0,'payment/paypal_express/allow_ba_signup','never','2022-09-16 07:48:05'),(234,'default',0,'payment/paypal_express/skip_order_review_step','1','2022-09-16 07:48:05'),(235,'default',0,'payment/paypal_billing_agreement/active','1','2022-09-16 07:48:05'),(236,'default',0,'payment/paypal_billing_agreement/title','PayPal Billing Agreement','2022-09-16 07:48:05'),(237,'default',0,'payment/paypal_billing_agreement/sort_order',NULL,'2022-09-16 07:48:05'),(238,'default',0,'payment/paypal_billing_agreement/payment_action','Authorization','2022-09-16 07:48:05'),(239,'default',0,'payment/paypal_billing_agreement/allowspecific','0','2022-09-16 07:48:05'),(240,'default',0,'payment/paypal_billing_agreement/debug','0','2022-09-16 07:48:05'),(241,'default',0,'payment/paypal_billing_agreement/verify_peer','1','2022-09-16 07:48:05'),(242,'default',0,'payment/paypal_billing_agreement/line_items_enabled','0','2022-09-16 07:48:05'),(243,'default',0,'payment/paypal_billing_agreement/allow_billing_agreement_wizard','1','2022-09-16 07:48:06'),(244,'default',0,'paypal/fetch_reports/ftp_login',NULL,'2022-09-16 07:48:06'),(245,'default',0,'paypal/fetch_reports/ftp_password',NULL,'2022-09-16 07:48:06'),(246,'default',0,'paypal/fetch_reports/ftp_sandbox','0','2022-09-16 07:48:06'),(247,'default',0,'paypal/fetch_reports/ftp_ip',NULL,'2022-09-16 07:48:06'),(248,'default',0,'paypal/fetch_reports/ftp_path',NULL,'2022-09-16 07:48:06'),(249,'default',0,'paypal/fetch_reports/active','0','2022-09-16 07:48:06'),(250,'default',0,'paypal/fetch_reports/schedule','1','2022-09-16 07:48:06'),(251,'default',0,'paypal/fetch_reports/time','00,00,00','2022-09-16 07:48:06'),(252,'default',0,'paypal/style/logo',NULL,'2022-09-16 07:48:06'),(253,'default',0,'paypal/style/page_style',NULL,'2022-09-16 07:48:06'),(254,'default',0,'paypal/style/paypal_hdrimg',NULL,'2022-09-16 07:48:06'),(255,'default',0,'paypal/style/paypal_hdrbackcolor',NULL,'2022-09-16 07:48:06'),(256,'default',0,'paypal/style/paypal_hdrbordercolor',NULL,'2022-09-16 07:48:06'),(257,'default',0,'paypal/style/paypal_payflowcolor',NULL,'2022-09-16 07:48:06'),(258,'default',0,'paypal/style/checkout_page_button_customize','0','2022-09-16 07:48:06'),(259,'default',0,'paypal/style/product_page_button_customize','0','2022-09-16 07:48:06'),(260,'default',0,'paypal/style/cart_page_button_customize','0','2022-09-16 07:48:06'),(261,'default',0,'paypal/style/mini_cart_page_button_customize','0','2022-09-16 07:48:06'),(262,'default',0,'paypal/style/disable_funding_options',NULL,'2022-09-16 07:48:06'),(263,'default',0,'payment/braintree/active','0','2022-09-16 07:48:06'),(264,'default',0,'payment/braintree_cc_vault/active','0','2022-09-16 07:48:06'),(265,'default',0,'payment/braintree/title','Credit Card','2022-09-16 07:48:06'),(266,'default',0,'payment/braintree/environment','sandbox','2022-09-16 07:48:06'),(267,'default',0,'payment/braintree/payment_action','authorize','2022-09-16 07:48:06'),(268,'default',0,'payment/braintree/sandbox_merchant_id',NULL,'2022-09-16 07:48:06'),(269,'default',0,'payment/braintree/sandbox_public_key',NULL,'2022-09-16 07:48:06'),(270,'default',0,'payment/braintree/sandbox_private_key',NULL,'2022-09-16 07:48:06'),(271,'default',0,'payment/braintree_cc_vault/title','Stored Cards','2022-09-16 07:48:06'),(272,'default',0,'payment/braintree/merchant_account_id',NULL,'2022-09-16 07:48:06'),(273,'default',0,'payment/braintree/skip_admin','0','2022-09-16 07:48:06'),(274,'default',0,'payment/braintree/fraudprotection_threshold',NULL,'2022-09-16 07:48:06'),(275,'default',0,'payment/braintree/debug','0','2022-09-16 07:48:06'),(276,'default',0,'payment/braintree/useccv','1','2022-09-16 07:48:06'),(277,'default',0,'payment/braintree/send_line_items','1','2022-09-16 07:48:06'),(278,'default',0,'payment/braintree/cctypes','AE,VI,MC,DI,JCB,DN,MI','2022-09-16 07:48:06'),(279,'default',0,'payment/braintree/sort_order',NULL,'2022-09-16 07:48:06'),(280,'default',0,'payment/braintree/allowspecific','0','2022-09-16 07:48:06'),(281,'default',0,'payment/braintree/specificcountry',NULL,'2022-09-16 07:48:06'),(282,'default',0,'payment/braintree/countrycreditcard','[]','2022-09-16 07:48:06'),(283,'default',0,'payment/braintree_ach_direct_debit/active','0','2022-09-16 07:48:06'),(284,'default',0,'payment/braintree_ach_direct_debit/sort_order',NULL,'2022-09-16 07:48:06'),(285,'default',0,'payment/braintree_applepay/active','0','2022-09-16 07:48:06'),(286,'default',0,'payment/braintree_applepay/payment_action','authorize','2022-09-16 07:48:06'),(287,'default',0,'payment/braintree_applepay/merchant_name','Store','2022-09-16 07:48:06'),(288,'default',0,'payment/braintree_applepay/sort_order',NULL,'2022-09-16 07:48:06'),(289,'default',0,'payment/braintree_local_payment/active','0','2022-09-16 07:48:06'),(290,'default',0,'payment/braintree_local_payment/sort_order',NULL,'2022-09-16 07:48:06'),(291,'default',0,'payment/braintree_googlepay/active','0','2022-09-16 07:48:06'),(292,'default',0,'payment/braintree_googlepay/payment_action','authorize','2022-09-16 07:48:06'),(293,'default',0,'payment/braintree_googlepay/btn_color','0','2022-09-16 07:48:06'),(294,'default',0,'payment/braintree_googlepay/merchant_id','testmode','2022-09-16 07:48:06'),(295,'default',0,'payment/braintree_googlepay/cctypes','VISA,MASTERCARD,AMEX','2022-09-16 07:48:06'),(296,'default',0,'payment/braintree_googlepay/sort_order',NULL,'2022-09-16 07:48:06'),(297,'default',0,'payment/braintree_venmo/active','0','2022-09-16 07:48:06'),(298,'default',0,'payment/braintree_venmo/sort_order',NULL,'2022-09-16 07:48:06'),(299,'default',0,'payment/braintree_paypal/active','0','2022-09-16 07:48:06'),(300,'default',0,'payment/braintree_paypal_credit/active','0','2022-09-16 07:48:06'),(301,'default',0,'payment/braintree_paypal_paylater/active','0','2022-09-16 07:48:06'),(302,'default',0,'payment/braintree_paypal/title','PayPal','2022-09-16 07:48:06'),(303,'default',0,'payment/braintree_paypal_vault/active','0','2022-09-16 07:48:06'),(304,'default',0,'payment/braintree_paypal/sort_order','2','2022-09-16 07:48:06'),(305,'default',0,'payment/braintree_paypal/merchant_name_override',NULL,'2022-09-16 07:48:06'),(306,'default',0,'payment/braintree_paypal/payment_action','authorize','2022-09-16 07:48:06'),(307,'default',0,'payment/braintree_paypal/allowspecific','0','2022-09-16 07:48:06'),(308,'default',0,'payment/braintree_paypal/specificcountry',NULL,'2022-09-16 07:48:06'),(309,'default',0,'payment/braintree_paypal/require_billing_address','0','2022-09-16 07:48:06'),(310,'default',0,'payment/braintree_paypal/debug','0','2022-09-16 07:48:06'),(311,'default',0,'payment/braintree_paypal/display_on_shopping_cart','1','2022-09-16 07:48:06'),(312,'default',0,'payment/braintree_paypal/payment_location','cart','2022-09-16 07:48:06'),(313,'default',0,'payment/braintree_paypal/paypal_button_type','paypal','2022-09-16 07:48:06'),(314,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_show','1','2022-09-16 07:48:06'),(315,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_layout','horizontal','2022-09-16 07:48:06'),(316,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_tagline','0','2022-09-16 07:48:06'),(317,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_label','paypal','2022-09-16 07:48:06'),(318,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_color','gold','2022-09-16 07:48:06'),(319,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_shape','rect','2022-09-16 07:48:06'),(320,'default',0,'payment/braintree_paypal/button_location_cart_type_paypal_size','responsive','2022-09-16 07:48:06'),(321,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_show','1','2022-09-16 07:48:06'),(322,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_layout','horizontal','2022-09-16 07:48:06'),(323,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_tagline','0','2022-09-16 07:48:06'),(324,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_label','paypal','2022-09-16 07:48:06'),(325,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_color','gold','2022-09-16 07:48:06'),(326,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_shape','rect','2022-09-16 07:48:06'),(327,'default',0,'payment/braintree_paypal/button_location_cart_type_paylater_size','responsive','2022-09-16 07:48:06'),(328,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_show','1','2022-09-16 07:48:06'),(329,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_layout','horizontal','2022-09-16 07:48:06'),(330,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_tagline','0','2022-09-16 07:48:06'),(331,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_label','paypal','2022-09-16 07:48:06'),(332,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_color','gold','2022-09-16 07:48:06'),(333,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_shape','rect','2022-09-16 07:48:06'),(334,'default',0,'payment/braintree_paypal/button_location_cart_type_credit_size','responsive','2022-09-16 07:48:06'),(335,'default',0,'payment/braintree_paypal/button_location_cart_type_messaging_show','1','2022-09-16 07:48:06'),(336,'default',0,'payment/braintree_paypal/button_location_cart_type_messaging_layout','text','2022-09-16 07:48:06'),(337,'default',0,'payment/braintree_paypal/button_location_cart_type_messaging_logo','inline','2022-09-16 07:48:06'),(338,'default',0,'payment/braintree_paypal/button_location_cart_type_messaging_logo_position','left','2022-09-16 07:48:06'),(339,'default',0,'payment/braintree_paypal/button_location_cart_type_messaging_text_color','black','2022-09-16 07:48:06'),(340,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_show','1','2022-09-16 07:48:06'),(341,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_layout','horizontal','2022-09-16 07:48:06'),(342,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_tagline','0','2022-09-16 07:48:06'),(343,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_label','paypal','2022-09-16 07:48:06'),(344,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_color','gold','2022-09-16 07:48:06'),(345,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_shape','rect','2022-09-16 07:48:06'),(346,'default',0,'payment/braintree_paypal/button_location_checkout_type_paypal_size','responsive','2022-09-16 07:48:06'),(347,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_show','1','2022-09-16 07:48:06'),(348,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_layout','horizontal','2022-09-16 07:48:06'),(349,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_tagline','0','2022-09-16 07:48:06'),(350,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_label','paypal','2022-09-16 07:48:06'),(351,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_color','gold','2022-09-16 07:48:06'),(352,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_shape','rect','2022-09-16 07:48:06'),(353,'default',0,'payment/braintree_paypal/button_location_checkout_type_paylater_size','responsive','2022-09-16 07:48:06'),(354,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_show','1','2022-09-16 07:48:06'),(355,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_layout','horizontal','2022-09-16 07:48:06'),(356,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_tagline','0','2022-09-16 07:48:06'),(357,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_label','paypal','2022-09-16 07:48:06'),(358,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_color','gold','2022-09-16 07:48:06'),(359,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_shape','rect','2022-09-16 07:48:06'),(360,'default',0,'payment/braintree_paypal/button_location_checkout_type_credit_size','responsive','2022-09-16 07:48:06'),(361,'default',0,'payment/braintree_paypal/button_location_checkout_type_messaging_show','1','2022-09-16 07:48:06'),(362,'default',0,'payment/braintree_paypal/button_location_checkout_type_messaging_layout','text','2022-09-16 07:48:06'),(363,'default',0,'payment/braintree_paypal/button_location_checkout_type_messaging_logo','inline','2022-09-16 07:48:06'),(364,'default',0,'payment/braintree_paypal/button_location_checkout_type_messaging_logo_position','left','2022-09-16 07:48:06'),(365,'default',0,'payment/braintree_paypal/button_location_checkout_type_messaging_text_color','black','2022-09-16 07:48:06'),(366,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_show','1','2022-09-16 07:48:06'),(367,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_layout','horizontal','2022-09-16 07:48:06'),(368,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_tagline','0','2022-09-16 07:48:06'),(369,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_label','paypal','2022-09-16 07:48:06'),(370,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_color','gold','2022-09-16 07:48:06'),(371,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_shape','rect','2022-09-16 07:48:06'),(372,'default',0,'payment/braintree_paypal/button_location_productpage_type_paypal_size','responsive','2022-09-16 07:48:06'),(373,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_show','1','2022-09-16 07:48:06'),(374,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_layout','horizontal','2022-09-16 07:48:06'),(375,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_tagline','0','2022-09-16 07:48:06'),(376,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_label','paypal','2022-09-16 07:48:06'),(377,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_color','gold','2022-09-16 07:48:06'),(378,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_shape','rect','2022-09-16 07:48:06'),(379,'default',0,'payment/braintree_paypal/button_location_productpage_type_paylater_size','responsive','2022-09-16 07:48:06'),(380,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_show','1','2022-09-16 07:48:06'),(381,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_layout','horizontal','2022-09-16 07:48:06'),(382,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_tagline','0','2022-09-16 07:48:06'),(383,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_label','paypal','2022-09-16 07:48:06'),(384,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_color','gold','2022-09-16 07:48:06'),(385,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_shape','rect','2022-09-16 07:48:06'),(386,'default',0,'payment/braintree_paypal/button_location_productpage_type_credit_size','responsive','2022-09-16 07:48:06'),(387,'default',0,'payment/braintree_paypal/button_location_productpage_type_messaging_show','1','2022-09-16 07:48:06'),(388,'default',0,'payment/braintree_paypal/button_location_productpage_type_messaging_layout','text','2022-09-16 07:48:06'),(389,'default',0,'payment/braintree_paypal/button_location_productpage_type_messaging_logo','inline','2022-09-16 07:48:06'),(390,'default',0,'payment/braintree_paypal/button_location_productpage_type_messaging_logo_position','left','2022-09-16 07:48:06'),(391,'default',0,'payment/braintree_paypal/button_location_productpage_type_messaging_text_color','black','2022-09-16 07:48:06'),(392,'default',0,'payment/braintree/verify_3dsecure','0','2022-09-16 07:48:06'),(393,'default',0,'payment/braintree/threshold_amount',NULL,'2022-09-16 07:48:06'),(394,'default',0,'payment/braintree/verify_all_countries','0','2022-09-16 07:48:06'),(395,'default',0,'payment/braintree/verify_specific_countries',NULL,'2022-09-16 07:48:06'),(396,'default',0,'payment/braintree/descriptor_name',NULL,'2022-09-16 07:48:06'),(397,'default',0,'payment/braintree/descriptor_phone',NULL,'2022-09-16 07:48:06'),(398,'default',0,'payment/braintree/descriptor_url',NULL,'2022-09-16 07:48:06'),(399,'default',0,'payment/hosted_pro/active','0','2022-09-16 07:48:06'),(400,'default',0,'payment/hosted_pro/title','Payment by cards or by PayPal account','2022-09-16 07:48:06'),(401,'default',0,'payment/hosted_pro/sort_order',NULL,'2022-09-16 07:48:06'),(402,'default',0,'payment/hosted_pro/payment_action','Authorization','2022-09-16 07:48:06'),(403,'default',0,'payment/hosted_pro/display_ec','0','2022-09-16 07:48:06'),(404,'default',0,'payment/hosted_pro/allowspecific','0','2022-09-16 07:48:06'),(405,'default',0,'payment/hosted_pro/debug','0','2022-09-16 07:48:06'),(406,'default',0,'payment/hosted_pro/verify_peer','1','2022-09-16 07:48:06'),(407,'default',0,'payment/wps_express/active','0','2022-09-16 07:48:06'),(408,'default',0,'payment/free/specificcountry',NULL,'2022-09-16 07:48:06'),(409,'default',0,'payment/checkmo/specificcountry',NULL,'2022-09-16 07:48:06'),(410,'default',0,'payment/checkmo/payable_to',NULL,'2022-09-16 07:48:06'),(411,'default',0,'payment/checkmo/mailing_address',NULL,'2022-09-16 07:48:06'),(412,'default',0,'payment/checkmo/min_order_total',NULL,'2022-09-16 07:48:06'),(413,'default',0,'payment/checkmo/max_order_total',NULL,'2022-09-16 07:48:06'),(414,'default',0,'payment/checkmo/sort_order',NULL,'2022-09-16 07:48:06'),(415,'default',0,'payment/banktransfer/active','1','2022-09-16 07:48:06'),(416,'default',0,'payment/banktransfer/specificcountry',NULL,'2022-09-16 07:48:06'),(417,'default',0,'payment/banktransfer/instructions',NULL,'2022-09-16 07:48:06'),(418,'default',0,'payment/banktransfer/min_order_total',NULL,'2022-09-16 07:48:06'),(419,'default',0,'payment/banktransfer/max_order_total',NULL,'2022-09-16 07:48:06'),(420,'default',0,'payment/banktransfer/sort_order',NULL,'2022-09-16 07:48:06'),(421,'default',0,'payment/cashondelivery/specificcountry',NULL,'2022-09-16 07:48:06'),(422,'default',0,'payment/cashondelivery/instructions',NULL,'2022-09-16 07:48:06'),(423,'default',0,'payment/cashondelivery/min_order_total',NULL,'2022-09-16 07:48:06'),(424,'default',0,'payment/cashondelivery/max_order_total',NULL,'2022-09-16 07:48:06'),(425,'default',0,'payment/cashondelivery/sort_order',NULL,'2022-09-16 07:48:06'),(426,'default',0,'payment/purchaseorder/specificcountry',NULL,'2022-09-16 07:48:06'),(427,'default',0,'payment/purchaseorder/min_order_total',NULL,'2022-09-16 07:48:06'),(428,'default',0,'payment/purchaseorder/max_order_total',NULL,'2022-09-16 07:48:06'),(429,'default',0,'payment/purchaseorder/sort_order',NULL,'2022-09-16 07:48:06'),(430,'default',0,'payment/cashondelivery/active','1','2022-09-16 07:49:17'),(431,'default',0,'dev/static/sign','0','2022-09-16 13:32:52');
/*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */;

--
-- Table structure for table `cron_schedule`
--

DROP TABLE IF EXISTS `cron_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cron_schedule` (
  `schedule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Schedule ID',
  `job_code` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Job Code',
  `status` varchar(7) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  `messages` text DEFAULT NULL COMMENT 'Messages',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Scheduled At',
  `executed_at` timestamp NULL DEFAULT NULL COMMENT 'Executed At',
  `finished_at` timestamp NULL DEFAULT NULL COMMENT 'Finished At',
  PRIMARY KEY (`schedule_id`),
  KEY `CRON_SCHEDULE_JOB_CODE_STATUS_SCHEDULED_AT` (`job_code`,`status`,`scheduled_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cron Schedule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cron_schedule`
--

/*!40000 ALTER TABLE `cron_schedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `cron_schedule` ENABLE KEYS */;

--
-- Table structure for table `customer_address_entity`
--

DROP TABLE IF EXISTS `customer_address_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_address_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `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',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Active',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `country_id` varchar(255) NOT NULL COMMENT 'Country',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `firstname` varchar(255) NOT NULL COMMENT 'First Name',
  `lastname` varchar(255) NOT NULL COMMENT 'Last Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Zip/Postal Code',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `region` varchar(255) DEFAULT NULL COMMENT 'State/Province',
  `region_id` int(10) unsigned DEFAULT NULL COMMENT 'State/Province',
  `street` text NOT NULL COMMENT 'Street Address',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `telephone` varchar(255) NOT NULL COMMENT 'Phone Number',
  `vat_id` varchar(255) DEFAULT NULL COMMENT 'VAT number',
  `vat_is_valid` int(10) unsigned DEFAULT NULL COMMENT 'VAT number validity',
  `vat_request_date` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request date',
  `vat_request_id` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request ID',
  `vat_request_success` int(10) unsigned DEFAULT NULL COMMENT 'VAT number validation request success',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`),
  CONSTRAINT `CUSTOMER_ADDRESS_ENTITY_PARENT_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity`
--

/*!40000 ALTER TABLE `customer_address_entity` DISABLE KEYS */;
INSERT INTO `customer_address_entity` VALUES (1,NULL,1,'2022-08-04 16:23:32','2022-08-04 16:23:32',1,'Trento',NULL,'IT',NULL,'Roberto','Torresani',NULL,'38121',NULL,'Trento',909,'Via Trentino',NULL,'3404922491',NULL,NULL,NULL,NULL,NULL),(2,NULL,2,'2022-08-09 08:08:25','2022-08-09 08:08:25',1,'Trento',NULL,'IT',NULL,'Daniele','Dellagiacoma',NULL,'38121',NULL,'Trento',909,'via Kufstein, 5',NULL,'3462547685',NULL,NULL,NULL,NULL,NULL),(4,NULL,5,'2022-09-16 07:57:27','2022-09-16 07:57:27',1,'trento',NULL,'IT',NULL,'Raffaele','Decarli',NULL,'38123',NULL,'Trento',909,'le man dal cul',NULL,'1234567890',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_address_entity` ENABLE KEYS */;

--
-- Table structure for table `customer_address_entity_datetime`
--

DROP TABLE IF EXISTS `customer_address_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_address_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_datetime`
--

/*!40000 ALTER TABLE `customer_address_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_datetime` ENABLE KEYS */;

--
-- Table structure for table `customer_address_entity_decimal`
--

DROP TABLE IF EXISTS `customer_address_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_address_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_DEC_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_decimal`
--

/*!40000 ALTER TABLE `customer_address_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_decimal` ENABLE KEYS */;

--
-- Table structure for table `customer_address_entity_int`
--

DROP TABLE IF EXISTS `customer_address_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_address_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_INT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_int`
--

/*!40000 ALTER TABLE `customer_address_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_int` ENABLE KEYS */;

--
-- Table structure for table `customer_address_entity_text`
--

DROP TABLE IF EXISTS `customer_address_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_address_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_text`
--

/*!40000 ALTER TABLE `customer_address_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_text` ENABLE KEYS */;

--
-- Table structure for table `customer_address_entity_varchar`
--

DROP TABLE IF EXISTS `customer_address_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_address_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_varchar`
--

/*!40000 ALTER TABLE `customer_address_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_varchar` ENABLE KEYS */;

--
-- Table structure for table `customer_eav_attribute`
--

DROP TABLE IF EXISTS `customer_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `is_visible` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Visible',
  `input_filter` varchar(255) DEFAULT NULL COMMENT 'Input Filter',
  `multiline_count` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Multiline Count',
  `validate_rules` text DEFAULT NULL COMMENT 'Validate Rules',
  `is_system` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is System',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `data_model` varchar(255) DEFAULT NULL COMMENT 'Data Model',
  `is_used_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Filterable in Grid',
  `is_searchable_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Searchable in Grid',
  `grid_filter_condition_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Grid Filter Condition Type',
  PRIMARY KEY (`attribute_id`),
  KEY `CUSTOMER_EAV_ATTRIBUTE_SORT_ORDER` (`sort_order`),
  CONSTRAINT `CUSTOMER_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_eav_attribute`
--

/*!40000 ALTER TABLE `customer_eav_attribute` DISABLE KEYS */;
INSERT INTO `customer_eav_attribute` VALUES (1,1,NULL,0,NULL,1,10,NULL,1,1,1,0,0),(2,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(3,1,NULL,0,NULL,1,20,NULL,1,1,0,1,0),(4,0,NULL,0,NULL,0,30,NULL,0,0,0,0,0),(5,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,0,0,0,0,0),(6,0,'trim',0,NULL,0,50,NULL,0,0,0,0,0),(7,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,0,0,0,0,0),(8,0,NULL,0,NULL,0,70,NULL,0,0,0,0,0),(9,1,NULL,0,'{\"input_validation\":\"email\"}',1,80,NULL,1,1,1,1,0),(10,1,NULL,0,NULL,1,25,NULL,1,1,1,0,0),(11,0,'date',0,'{\"input_validation\":\"date\"}',0,90,NULL,1,1,1,0,0),(12,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(13,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(14,0,NULL,0,'{\"input_validation\":\"date\"}',1,0,NULL,0,0,0,0,0),(15,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(16,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(17,0,NULL,0,'{\"max_text_length\":255}',0,100,NULL,1,1,0,1,0),(18,0,NULL,0,NULL,1,0,NULL,1,1,1,0,0),(19,0,NULL,0,NULL,0,0,NULL,1,1,1,0,0),(20,0,NULL,0,'[]',0,110,NULL,1,1,1,0,0),(21,1,NULL,0,NULL,1,28,NULL,0,0,0,0,0),(22,0,NULL,0,NULL,0,10,NULL,0,0,0,0,0),(23,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,20,NULL,1,0,0,1,0),(24,0,'trim',0,NULL,0,30,NULL,0,0,0,0,0),(25,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,1,0,0,1,0),(26,0,NULL,0,NULL,0,50,NULL,0,0,0,0,0),(27,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,1,0,0,1,0),(28,1,NULL,2,'{\"max_text_length\":255,\"min_text_length\":1}',1,70,NULL,1,0,0,1,0),(29,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,100,NULL,1,0,0,1,0),(30,1,NULL,0,NULL,1,80,NULL,1,1,1,0,0),(31,1,NULL,0,NULL,1,90,NULL,1,1,0,1,0),(32,1,NULL,0,NULL,1,90,NULL,0,0,0,0,0),(33,1,NULL,0,'[]',1,110,'Magento\\Customer\\Model\\Attribute\\Data\\Postcode',1,1,1,1,0),(34,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,120,NULL,1,1,1,1,0),(35,0,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',0,130,NULL,1,0,0,1,0),(36,1,NULL,0,NULL,1,140,NULL,0,0,0,0,0),(37,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(38,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(39,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(40,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(41,0,NULL,0,NULL,0,0,NULL,0,0,0,0,0),(42,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(43,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(44,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(189,0,NULL,0,NULL,0,90,NULL,0,0,0,0,0);
/*!40000 ALTER TABLE `customer_eav_attribute` ENABLE KEYS */;

--
-- Table structure for table `customer_eav_attribute_website`
--

DROP TABLE IF EXISTS `customer_eav_attribute_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_eav_attribute_website` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `is_visible` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Visible',
  `is_required` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Required',
  `default_value` text DEFAULT NULL COMMENT 'Default Value',
  `multiline_count` smallint(5) unsigned DEFAULT NULL COMMENT 'Multiline Count',
  PRIMARY KEY (`attribute_id`,`website_id`),
  KEY `CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CSTR_EAV_ATTR_WS_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_EAV_ATTR_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_eav_attribute_website`
--

/*!40000 ALTER TABLE `customer_eav_attribute_website` DISABLE KEYS */;
INSERT INTO `customer_eav_attribute_website` VALUES (1,1,NULL,NULL,NULL,NULL),(3,1,NULL,NULL,NULL,NULL),(5,1,NULL,NULL,NULL,NULL),(6,1,NULL,NULL,NULL,NULL),(7,1,NULL,NULL,NULL,NULL),(9,1,NULL,NULL,NULL,NULL),(10,1,NULL,NULL,NULL,NULL),(11,1,NULL,NULL,NULL,NULL),(17,1,NULL,NULL,NULL,NULL),(18,1,NULL,NULL,NULL,NULL),(19,1,NULL,NULL,NULL,NULL),(20,1,NULL,NULL,NULL,NULL),(21,1,NULL,NULL,NULL,NULL),(23,1,NULL,NULL,NULL,NULL),(24,1,NULL,NULL,NULL,NULL),(25,1,NULL,NULL,NULL,NULL),(27,1,NULL,NULL,NULL,NULL),(28,1,NULL,NULL,NULL,NULL),(29,1,NULL,NULL,NULL,NULL),(30,1,NULL,NULL,NULL,NULL),(31,1,NULL,NULL,NULL,NULL),(32,1,NULL,NULL,NULL,NULL),(33,1,NULL,NULL,NULL,NULL),(34,1,NULL,NULL,NULL,NULL),(35,1,NULL,NULL,NULL,NULL),(36,1,NULL,NULL,NULL,NULL),(189,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_eav_attribute_website` ENABLE KEYS */;

--
-- Table structure for table `customer_entity`
--

DROP TABLE IF EXISTS `customer_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `website_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Website ID',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Group ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `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',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Active',
  `disable_auto_group_change` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Disable automatic group change based on VAT ID',
  `created_in` varchar(255) DEFAULT NULL COMMENT 'Created From',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'First Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name/Initial',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Last Name',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `dob` date DEFAULT NULL COMMENT 'Date of Birth',
  `password_hash` varchar(128) DEFAULT NULL COMMENT 'Password_hash',
  `rp_token` varchar(128) DEFAULT NULL COMMENT 'Reset password token',
  `rp_token_created_at` datetime DEFAULT NULL COMMENT 'Reset password token creation time',
  `default_billing` int(10) unsigned DEFAULT NULL COMMENT 'Default Billing Address',
  `default_shipping` int(10) unsigned DEFAULT NULL COMMENT 'Default Shipping Address',
  `taxvat` varchar(50) DEFAULT NULL COMMENT 'Tax/VAT Number',
  `confirmation` varchar(64) DEFAULT NULL COMMENT 'Is Confirmed',
  `gender` smallint(5) unsigned DEFAULT NULL COMMENT 'Gender',
  `failures_num` smallint(6) DEFAULT 0 COMMENT 'Failure Number',
  `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock Expiration Date',
  `session_cutoff` timestamp NULL DEFAULT NULL COMMENT 'Session Cutoff Time',
  `mp_smtp_email_marketing_synced` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing synced',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`),
  KEY `CUSTOMER_ENTITY_STORE_ID` (`store_id`),
  KEY `CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`),
  KEY `CUSTOMER_ENTITY_FIRSTNAME` (`firstname`),
  KEY `CUSTOMER_ENTITY_LASTNAME` (`lastname`),
  CONSTRAINT `CUSTOMER_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `CUSTOMER_ENTITY_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Customer Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity`
--

/*!40000 ALTER TABLE `customer_entity` DISABLE KEYS */;
INSERT INTO `customer_entity` VALUES (1,1,'roberto@torresani.eu',1,NULL,1,'2022-08-04 16:23:32','2022-08-04 16:23:32',1,0,'Default Store View',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'ab5a5c8ea579b26a4201833609c8f83bb5a6876da5925aabde26f6093288e27a:7eIp94Ripc81W9UXcEgMMeBiCw14Dj7r:3_32_2_67108864','0:3:JSJlpCp4/6whdxdefykbg+Z3okNSuQJV2hXDEfKbE1tRuiyrt/3alssSOU7eK9w/yzEN9OA9gW7Z0Bb9','2022-08-04 16:23:32',1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,0),(2,1,'daniele.dellagiacoma@deltainformatica.eu',1,NULL,1,'2022-08-09 08:04:52','2022-08-09 08:08:25',1,0,'Default Store View',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'3b714f75ccb6efae21667d9d9ea582ba54052e4a4b3219995ddd45f507abb32b:jJxaqZxYpMJM3j6r2gqttq4hGbp4603q:3_32_2_67108864','0:3:COqgUBBOJ8HfMUiO3mPa+fWn9EJO4jobjlGKNn0VBpUjFi5xcyuIdpVa3s35C38i8cOiO232ikI7pYAK','2022-08-09 08:04:52',2,2,NULL,NULL,NULL,0,NULL,NULL,NULL,0),(3,1,'raffaele.decarli@thread.solutions',1,NULL,1,'2022-09-02 15:27:25','2022-09-16 08:57:24',1,0,'Default Store View',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'22d254e5224fc343163466e727bf6acd667e8e62cecdf802eb8866644e8607cd:IMjNEuCphDPvP4gyOTTYXs1V8aKGtRkX:3_32_2_67108864','0:3:8IVgUDceNjQgMQ/XfQlrXNm6op+gpnF4mDsWcfwvYqNd0TwgChrtVa2hA2zMf2Ft39HfB2K3xxokdfVZ','2022-09-02 15:27:25',NULL,NULL,NULL,NULL,NULL,9,'2022-09-13 12:59:03',NULL,NULL,0),(5,1,'raffaele.decarli+1@thread.solutions',1,NULL,1,'2022-09-16 07:55:57','2022-09-16 07:57:27',1,0,'Default Store View',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'0f1f87e024d42d3b52d35a8c4f3bb2f3036608950f4939cfe13888334214e7f7:uuZxB6KIYWp7Lp3HPUDUxnCJUS0wX29m:3_32_2_67108864','0:3:6nwFUYJiS9PCHL6W2xxXfq0TW49pI8yTXGcJVmGnMZrCxX/vsNhimbTiM6jmz70VOYJJOJWDY+bVF3Aa','2022-09-16 07:55:57',4,4,NULL,NULL,NULL,0,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */;

--
-- Table structure for table `customer_entity_datetime`
--

DROP TABLE IF EXISTS `customer_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_datetime`
--

/*!40000 ALTER TABLE `customer_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_datetime` ENABLE KEYS */;

--
-- Table structure for table `customer_entity_decimal`
--

DROP TABLE IF EXISTS `customer_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_decimal`
--

/*!40000 ALTER TABLE `customer_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_decimal` ENABLE KEYS */;

--
-- Table structure for table `customer_entity_int`
--

DROP TABLE IF EXISTS `customer_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_INT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_int`
--

/*!40000 ALTER TABLE `customer_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_int` ENABLE KEYS */;

--
-- Table structure for table `customer_entity_text`
--

DROP TABLE IF EXISTS `customer_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_TEXT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_text`
--

/*!40000 ALTER TABLE `customer_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_text` ENABLE KEYS */;

--
-- Table structure for table `customer_entity_varchar`
--

DROP TABLE IF EXISTS `customer_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_varchar`
--

/*!40000 ALTER TABLE `customer_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_varchar` ENABLE KEYS */;

--
-- Table structure for table `customer_form_attribute`
--

DROP TABLE IF EXISTS `customer_form_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_form_attribute` (
  `form_code` varchar(32) NOT NULL COMMENT 'Form Code',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`form_code`,`attribute_id`),
  KEY `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Form Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_form_attribute`
--

/*!40000 ALTER TABLE `customer_form_attribute` DISABLE KEYS */;
INSERT INTO `customer_form_attribute` VALUES ('adminhtml_checkout',9),('adminhtml_checkout',10),('adminhtml_checkout',11),('adminhtml_checkout',17),('adminhtml_checkout',20),('adminhtml_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('adminhtml_customer',5),('adminhtml_customer',6),('adminhtml_customer',7),('adminhtml_customer',8),('adminhtml_customer',9),('adminhtml_customer',10),('adminhtml_customer',11),('adminhtml_customer',17),('adminhtml_customer',19),('adminhtml_customer',20),('adminhtml_customer',21),('adminhtml_customer',189),('adminhtml_customer_address',22),('adminhtml_customer_address',23),('adminhtml_customer_address',24),('adminhtml_customer_address',25),('adminhtml_customer_address',26),('adminhtml_customer_address',27),('adminhtml_customer_address',28),('adminhtml_customer_address',29),('adminhtml_customer_address',30),('adminhtml_customer_address',31),('adminhtml_customer_address',32),('adminhtml_customer_address',33),('adminhtml_customer_address',34),('adminhtml_customer_address',35),('adminhtml_customer_address',36),('customer_account_create',4),('customer_account_create',5),('customer_account_create',6),('customer_account_create',7),('customer_account_create',8),('customer_account_create',9),('customer_account_create',11),('customer_account_create',17),('customer_account_create',19),('customer_account_create',20),('customer_account_edit',4),('customer_account_edit',5),('customer_account_edit',6),('customer_account_edit',7),('customer_account_edit',8),('customer_account_edit',9),('customer_account_edit',11),('customer_account_edit',17),('customer_account_edit',19),('customer_account_edit',20),('customer_address_edit',22),('customer_address_edit',23),('customer_address_edit',24),('customer_address_edit',25),('customer_address_edit',26),('customer_address_edit',27),('customer_address_edit',28),('customer_address_edit',29),('customer_address_edit',30),('customer_address_edit',31),('customer_address_edit',32),('customer_address_edit',33),('customer_address_edit',34),('customer_address_edit',35),('customer_address_edit',36),('customer_register_address',22),('customer_register_address',23),('customer_register_address',24),('customer_register_address',25),('customer_register_address',26),('customer_register_address',27),('customer_register_address',28),('customer_register_address',29),('customer_register_address',30),('customer_register_address',31),('customer_register_address',32),('customer_register_address',33),('customer_register_address',34),('customer_register_address',35),('customer_register_address',36);
/*!40000 ALTER TABLE `customer_form_attribute` ENABLE KEYS */;

--
-- Table structure for table `customer_grid_flat`
--

DROP TABLE IF EXISTS `customer_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_grid_flat` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `name` text DEFAULT NULL COMMENT 'Name',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` int(11) DEFAULT NULL COMMENT 'Group_id',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at',
  `website_id` int(11) DEFAULT NULL COMMENT 'Website_id',
  `confirmation` varchar(255) DEFAULT NULL COMMENT 'Confirmation',
  `created_in` text DEFAULT NULL COMMENT 'Created_in',
  `dob` date DEFAULT NULL COMMENT 'Dob',
  `gender` int(11) DEFAULT NULL COMMENT 'Gender',
  `taxvat` varchar(255) DEFAULT NULL COMMENT 'Taxvat',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock_expires',
  `shipping_full` text DEFAULT NULL COMMENT 'Shipping_full',
  `billing_full` text DEFAULT NULL COMMENT 'Billing_full',
  `billing_firstname` varchar(255) DEFAULT NULL COMMENT 'Billing_firstname',
  `billing_lastname` varchar(255) DEFAULT NULL COMMENT 'Billing_lastname',
  `billing_telephone` varchar(255) DEFAULT NULL COMMENT 'Billing_telephone',
  `billing_postcode` varchar(255) DEFAULT NULL COMMENT 'Billing_postcode',
  `billing_country_id` varchar(255) DEFAULT NULL COMMENT 'Billing_country_id',
  `billing_region` varchar(255) DEFAULT NULL COMMENT 'Billing_region',
  `billing_region_id` int(11) DEFAULT NULL COMMENT 'Billing_region_id',
  `billing_street` varchar(255) DEFAULT NULL COMMENT 'Billing_street',
  `billing_city` varchar(255) DEFAULT NULL COMMENT 'Billing_city',
  `billing_fax` varchar(255) DEFAULT NULL COMMENT 'Billing_fax',
  `billing_vat_id` varchar(255) DEFAULT NULL COMMENT 'Billing_vat_id',
  `billing_company` varchar(255) DEFAULT NULL COMMENT 'Billing_company',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_GRID_FLAT_GROUP_ID` (`group_id`),
  KEY `CUSTOMER_GRID_FLAT_CREATED_AT` (`created_at`),
  KEY `CUSTOMER_GRID_FLAT_WEBSITE_ID` (`website_id`),
  KEY `CUSTOMER_GRID_FLAT_CONFIRMATION` (`confirmation`),
  KEY `CUSTOMER_GRID_FLAT_DOB` (`dob`),
  KEY `CUSTOMER_GRID_FLAT_GENDER` (`gender`),
  KEY `CUSTOMER_GRID_FLAT_BILLING_COUNTRY_ID` (`billing_country_id`),
  FULLTEXT KEY `FTI_8746F705702DD5F6D45B8C7CE7FE9F2F` (`name`,`email`,`created_in`,`taxvat`,`shipping_full`,`billing_full`,`billing_firstname`,`billing_lastname`,`billing_telephone`,`billing_postcode`,`billing_region`,`billing_city`,`billing_fax`,`billing_company`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='customer_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_grid_flat`
--

/*!40000 ALTER TABLE `customer_grid_flat` DISABLE KEYS */;
INSERT INTO `customer_grid_flat` VALUES (1,'Roberto Torresani','roberto@torresani.eu',1,'2022-08-04 16:23:32',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'Via Trentino Trento Trento 38121','Via Trentino Trento Trento 38121','Roberto','Torresani','3404922491','38121','IT','Trento',909,'Via Trentino','Trento',NULL,NULL,NULL),(2,'Daniele Dellagiacoma','daniele.dellagiacoma@deltainformatica.eu',1,'2022-08-09 08:04:52',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'via Kufstein, 5 Trento Trento 38121','via Kufstein, 5 Trento Trento 38121','Daniele','Dellagiacoma','3462547685','38121','IT','Trento',909,'via Kufstein, 5','Trento',NULL,NULL,NULL),(3,'Raffaele Decarli','raffaele.decarli@thread.solutions',1,'2022-09-02 15:27:25',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Raffaele Decarli','raffaele.decarli+1@thread.solutions',1,'2022-09-16 07:55:57',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'le man dal cul trento Trento 38123','le man dal cul trento Trento 38123','Raffaele','Decarli','1234567890','38123','IT','Trento',909,'le man dal cul','trento',NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_grid_flat` ENABLE KEYS */;

--
-- Table structure for table `customer_group`
--

DROP TABLE IF EXISTS `customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_group` (
  `customer_group_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_code` varchar(32) NOT NULL COMMENT 'Customer Group Code',
  `tax_class_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Tax Class ID',
  PRIMARY KEY (`customer_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_group`
--

/*!40000 ALTER TABLE `customer_group` DISABLE KEYS */;
INSERT INTO `customer_group` VALUES (0,'NOT LOGGED IN',3),(1,'General',3),(2,'Wholesale',3),(3,'Retailer',3);
/*!40000 ALTER TABLE `customer_group` ENABLE KEYS */;

--
-- Table structure for table `customer_group_excluded_website`
--

DROP TABLE IF EXISTS `customer_group_excluded_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_group_excluded_website` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Excluded Website ID from Customer Group',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_GROUP_EXCLUDED_WEBSITE_CUSTOMER_GROUP_ID_WEBSITE_ID` (`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Excluded Websites From Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_group_excluded_website`
--

/*!40000 ALTER TABLE `customer_group_excluded_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_group_excluded_website` ENABLE KEYS */;

--
-- Table structure for table `customer_log`
--

DROP TABLE IF EXISTS `customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_log` (
  `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `customer_id` int(11) NOT NULL COMMENT 'Customer ID',
  `last_login_at` timestamp NULL DEFAULT NULL COMMENT 'Last Login Time',
  `last_logout_at` timestamp NULL DEFAULT NULL COMMENT 'Last Logout Time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `CUSTOMER_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COMMENT='Customer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_log`
--

/*!40000 ALTER TABLE `customer_log` DISABLE KEYS */;
INSERT INTO `customer_log` VALUES (1,1,'2022-08-12 15:39:37','2022-08-11 09:53:02'),(3,2,'2022-08-09 11:59:07',NULL),(10,3,'2022-09-07 14:28:27','2022-09-07 14:23:29'),(25,4,'2022-09-16 07:35:55',NULL),(26,5,'2022-09-16 09:50:01','2022-09-16 09:49:28');
/*!40000 ALTER TABLE `customer_log` ENABLE KEYS */;

--
-- Table structure for table `customer_visitor`
--

DROP TABLE IF EXISTS `customer_visitor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_visitor` (
  `visitor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `last_visit_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Last Visit Time',
  PRIMARY KEY (`visitor_id`),
  KEY `CUSTOMER_VISITOR_CUSTOMER_ID` (`customer_id`),
  KEY `CUSTOMER_VISITOR_LAST_VISIT_AT` (`last_visit_at`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COMMENT='Visitor Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_visitor`
--

/*!40000 ALTER TABLE `customer_visitor` DISABLE KEYS */;
INSERT INTO `customer_visitor` VALUES (1,NULL,NULL,'2022-07-31 13:22:52','2022-07-31 13:34:26'),(2,1,NULL,'2022-08-04 16:21:54','2022-08-04 16:23:31'),(3,1,NULL,'2022-08-05 14:44:07','2022-08-05 14:45:52'),(4,NULL,NULL,'2022-08-05 14:50:24','2022-08-05 14:50:24'),(5,NULL,NULL,'2022-08-08 12:50:41','2022-08-08 12:50:41'),(6,NULL,NULL,'2022-08-08 15:04:01','2022-08-08 15:24:48'),(7,2,NULL,'2022-08-09 08:02:01','2022-08-09 08:08:42'),(8,2,NULL,'2022-08-09 11:59:07','2022-08-09 12:25:54'),(9,1,NULL,'2022-08-11 09:11:33','2022-08-11 09:11:34'),(10,1,NULL,'2022-08-11 09:50:48','2022-08-11 09:53:01'),(11,1,NULL,'2022-08-11 09:58:39','2022-08-11 10:19:54'),(12,NULL,NULL,'2022-08-11 15:29:49','2022-08-11 15:29:49'),(13,1,NULL,'2022-08-12 15:28:20','2022-08-12 15:39:44'),(14,NULL,NULL,'2022-08-18 10:43:28','2022-08-18 10:43:28'),(15,NULL,NULL,'2022-08-22 08:26:25','2022-08-22 08:31:25'),(16,NULL,NULL,'2022-08-30 06:55:21','2022-08-30 06:55:21'),(17,NULL,NULL,'2022-08-30 10:35:54','2022-08-30 10:35:54'),(18,NULL,NULL,'2022-08-30 13:50:12','2022-08-30 13:50:12'),(19,NULL,NULL,'2022-08-31 10:59:30','2022-08-31 10:59:30'),(20,NULL,NULL,'2022-08-31 15:33:25','2022-08-31 15:33:25'),(21,NULL,NULL,'2022-09-01 08:50:26','2022-09-01 09:58:29'),(22,NULL,NULL,'2022-09-01 13:20:13','2022-09-01 14:50:58'),(23,3,NULL,'2022-09-02 15:27:24','2022-09-02 15:27:26'),(24,3,NULL,'2022-09-05 08:34:20','2022-09-05 08:51:27'),(25,NULL,NULL,'2022-09-05 12:32:17','2022-09-05 12:32:17'),(26,NULL,NULL,'2022-09-06 07:35:04','2022-09-06 09:48:40'),(27,3,NULL,'2022-09-06 11:50:17','2022-09-06 12:37:07'),(28,3,NULL,'2022-09-06 13:27:05','2022-09-06 14:52:46'),(29,NULL,NULL,'2022-09-07 10:17:27','2022-09-07 10:17:27'),(30,3,NULL,'2022-09-07 12:03:16','2022-09-07 13:19:43'),(31,3,NULL,'2022-09-07 13:35:52','2022-09-07 13:52:31'),(32,3,NULL,'2022-09-07 13:55:14','2022-09-07 14:05:42'),(33,3,NULL,'2022-09-07 14:13:17','2022-09-07 14:23:29'),(34,3,NULL,'2022-09-07 14:28:14','2022-09-07 14:28:26'),(35,NULL,NULL,'2022-09-08 13:26:09','2022-09-08 13:26:15'),(36,NULL,NULL,'2022-09-12 08:46:52','2022-09-12 08:47:41'),(37,NULL,NULL,'2022-09-12 14:36:30','2022-09-12 14:36:30'),(38,NULL,NULL,'2022-09-13 12:51:37','2022-09-13 15:48:55'),(39,NULL,NULL,'2022-09-13 13:44:46','2022-09-13 13:44:51'),(40,NULL,NULL,'2022-09-14 09:57:58','2022-09-14 09:57:58'),(41,NULL,NULL,'2022-09-14 12:15:33','2022-09-14 16:12:27'),(42,NULL,NULL,'2022-09-14 19:15:09','2022-09-14 21:03:10'),(43,NULL,NULL,'2022-09-15 07:46:58','2022-09-15 10:11:52'),(44,NULL,NULL,'2022-09-15 12:02:46','2022-09-15 14:12:19'),(45,4,NULL,'2022-09-16 07:16:11','2022-09-16 07:52:44'),(46,NULL,NULL,'2022-09-16 07:54:02','2022-09-16 07:54:19'),(47,5,NULL,'2022-09-16 07:55:23','2022-09-16 08:46:11'),(48,NULL,NULL,'2022-09-16 08:57:24','2022-09-16 09:13:43'),(49,5,NULL,'2022-09-16 09:13:56','2022-09-16 09:43:28'),(50,5,NULL,'2022-09-16 09:43:59','2022-09-16 09:49:27'),(51,5,NULL,'2022-09-16 09:50:01','2022-09-16 09:50:01'),(52,NULL,NULL,'2022-09-16 13:04:41','2022-09-16 13:04:41'),(53,NULL,NULL,'2022-09-16 14:47:18','2022-09-16 14:47:18'),(54,NULL,NULL,'2022-09-16 14:54:34','2022-09-16 14:54:34'),(55,NULL,NULL,'2022-09-16 15:20:02','2022-09-16 15:20:02');
/*!40000 ALTER TABLE `customer_visitor` ENABLE KEYS */;

--
-- Table structure for table `design_change`
--

DROP TABLE IF EXISTS `design_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `design_change` (
  `design_change_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Design Change ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `design` varchar(255) DEFAULT NULL COMMENT 'Design',
  `date_from` date DEFAULT NULL COMMENT 'First Date of Design Activity',
  `date_to` date DEFAULT NULL COMMENT 'Last Date of Design Activity',
  PRIMARY KEY (`design_change_id`),
  KEY `DESIGN_CHANGE_STORE_ID` (`store_id`),
  CONSTRAINT `DESIGN_CHANGE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Design Changes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `design_change`
--

/*!40000 ALTER TABLE `design_change` DISABLE KEYS */;
/*!40000 ALTER TABLE `design_change` ENABLE KEYS */;

--
-- Table structure for table `design_config_grid_flat`
--

DROP TABLE IF EXISTS `design_config_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `design_config_grid_flat` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `store_website_id` int(11) DEFAULT NULL COMMENT 'Store_website_id',
  `store_group_id` int(11) DEFAULT NULL COMMENT 'Store_group_id',
  `store_id` int(11) DEFAULT NULL COMMENT 'Store_id',
  `theme_theme_id` varchar(255) DEFAULT NULL COMMENT 'Theme_theme_id',
  PRIMARY KEY (`entity_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`),
  FULLTEXT KEY `DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='design_config_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `design_config_grid_flat`
--

/*!40000 ALTER TABLE `design_config_grid_flat` DISABLE KEYS */;
INSERT INTO `design_config_grid_flat` VALUES (0,NULL,NULL,NULL,'4'),(1,1,NULL,NULL,'4'),(2,1,1,1,'4');
/*!40000 ALTER TABLE `design_config_grid_flat` ENABLE KEYS */;

--
-- Table structure for table `directory_country`
--

DROP TABLE IF EXISTS `directory_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `directory_country` (
  `country_id` varchar(2) NOT NULL COMMENT 'Country ID in ISO-2',
  `iso2_code` varchar(2) DEFAULT NULL COMMENT 'Country ISO-2 format',
  `iso3_code` varchar(3) DEFAULT NULL COMMENT 'Country ISO-3',
  PRIMARY KEY (`country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country`
--

/*!40000 ALTER TABLE `directory_country` DISABLE KEYS */;
INSERT INTO `directory_country` VALUES ('AD','AD','AND'),('AE','AE','ARE'),('AF','AF','AFG'),('AG','AG','ATG'),('AI','AI','AIA'),('AL','AL','ALB'),('AM','AM','ARM'),('AN','AN','ANT'),('AO','AO','AGO'),('AQ','AQ','ATA'),('AR','AR','ARG'),('AS','AS','ASM'),('AT','AT','AUT'),('AU','AU','AUS'),('AW','AW','ABW'),('AX','AX','ALA'),('AZ','AZ','AZE'),('BA','BA','BIH'),('BB','BB','BRB'),('BD','BD','BGD'),('BE','BE','BEL'),('BF','BF','BFA'),('BG','BG','BGR'),('BH','BH','BHR'),('BI','BI','BDI'),('BJ','BJ','BEN'),('BL','BL','BLM'),('BM','BM','BMU'),('BN','BN','BRN'),('BO','BO','BOL'),('BQ','BQ','BES'),('BR','BR','BRA'),('BS','BS','BHS'),('BT','BT','BTN'),('BV','BV','BVT'),('BW','BW','BWA'),('BY','BY','BLR'),('BZ','BZ','BLZ'),('CA','CA','CAN'),('CC','CC','CCK'),('CD','CD','COD'),('CF','CF','CAF'),('CG','CG','COG'),('CH','CH','CHE'),('CI','CI','CIV'),('CK','CK','COK'),('CL','CL','CHL'),('CM','CM','CMR'),('CN','CN','CHN'),('CO','CO','COL'),('CR','CR','CRI'),('CU','CU','CUB'),('CV','CV','CPV'),('CW','CW','CUW'),('CX','CX','CXR'),('CY','CY','CYP'),('CZ','CZ','CZE'),('DE','DE','DEU'),('DJ','DJ','DJI'),('DK','DK','DNK'),('DM','DM','DMA'),('DO','DO','DOM'),('DZ','DZ','DZA'),('EC','EC','ECU'),('EE','EE','EST'),('EG','EG','EGY'),('EH','EH','ESH'),('ER','ER','ERI'),('ES','ES','ESP'),('ET','ET','ETH'),('FI','FI','FIN'),('FJ','FJ','FJI'),('FK','FK','FLK'),('FM','FM','FSM'),('FO','FO','FRO'),('FR','FR','FRA'),('GA','GA','GAB'),('GB','GB','GBR'),('GD','GD','GRD'),('GE','GE','GEO'),('GF','GF','GUF'),('GG','GG','GGY'),('GH','GH','GHA'),('GI','GI','GIB'),('GL','GL','GRL'),('GM','GM','GMB'),('GN','GN','GIN'),('GP','GP','GLP'),('GQ','GQ','GNQ'),('GR','GR','GRC'),('GS','GS','SGS'),('GT','GT','GTM'),('GU','GU','GUM'),('GW','GW','GNB'),('GY','GY','GUY'),('HK','HK','HKG'),('HM','HM','HMD'),('HN','HN','HND'),('HR','HR','HRV'),('HT','HT','HTI'),('HU','HU','HUN'),('ID','ID','IDN'),('IE','IE','IRL'),('IL','IL','ISR'),('IM','IM','IMN'),('IN','IN','IND'),('IO','IO','IOT'),('IQ','IQ','IRQ'),('IR','IR','IRN'),('IS','IS','ISL'),('IT','IT','ITA'),('JE','JE','JEY'),('JM','JM','JAM'),('JO','JO','JOR'),('JP','JP','JPN'),('KE','KE','KEN'),('KG','KG','KGZ'),('KH','KH','KHM'),('KI','KI','KIR'),('KM','KM','COM'),('KN','KN','KNA'),('KP','KP','PRK'),('KR','KR','KOR'),('KW','KW','KWT'),('KY','KY','CYM'),('KZ','KZ','KAZ'),('LA','LA','LAO'),('LB','LB','LBN'),('LC','LC','LCA'),('LI','LI','LIE'),('LK','LK','LKA'),('LR','LR','LBR'),('LS','LS','LSO'),('LT','LT','LTU'),('LU','LU','LUX'),('LV','LV','LVA'),('LY','LY','LBY'),('MA','MA','MAR'),('MC','MC','MCO'),('MD','MD','MDA'),('ME','ME','MNE'),('MF','MF','MAF'),('MG','MG','MDG'),('MH','MH','MHL'),('MK','MK','MKD'),('ML','ML','MLI'),('MM','MM','MMR'),('MN','MN','MNG'),('MO','MO','MAC'),('MP','MP','MNP'),('MQ','MQ','MTQ'),('MR','MR','MRT'),('MS','MS','MSR'),('MT','MT','MLT'),('MU','MU','MUS'),('MV','MV','MDV'),('MW','MW','MWI'),('MX','MX','MEX'),('MY','MY','MYS'),('MZ','MZ','MOZ'),('NA','NA','NAM'),('NC','NC','NCL'),('NE','NE','NER'),('NF','NF','NFK'),('NG','NG','NGA'),('NI','NI','NIC'),('NL','NL','NLD'),('NO','NO','NOR'),('NP','NP','NPL'),('NR','NR','NRU'),('NU','NU','NIU'),('NZ','NZ','NZL'),('OM','OM','OMN'),('PA','PA','PAN'),('PE','PE','PER'),('PF','PF','PYF'),('PG','PG','PNG'),('PH','PH','PHL'),('PK','PK','PAK'),('PL','PL','POL'),('PM','PM','SPM'),('PN','PN','PCN'),('PS','PS','PSE'),('PT','PT','PRT'),('PW','PW','PLW'),('PY','PY','PRY'),('QA','QA','QAT'),('RE','RE','REU'),('RO','RO','ROU'),('RS','RS','SRB'),('RU','RU','RUS'),('RW','RW','RWA'),('SA','SA','SAU'),('SB','SB','SLB'),('SC','SC','SYC'),('SD','SD','SDN'),('SE','SE','SWE'),('SG','SG','SGP'),('SH','SH','SHN'),('SI','SI','SVN'),('SJ','SJ','SJM'),('SK','SK','SVK'),('SL','SL','SLE'),('SM','SM','SMR'),('SN','SN','SEN'),('SO','SO','SOM'),('SR','SR','SUR'),('ST','ST','STP'),('SV','SV','SLV'),('SX','SX','SXM'),('SY','SY','SYR'),('SZ','SZ','SWZ'),('TC','TC','TCA'),('TD','TD','TCD'),('TF','TF','ATF'),('TG','TG','TGO'),('TH','TH','THA'),('TJ','TJ','TJK'),('TK','TK','TKL'),('TL','TL','TLS'),('TM','TM','TKM'),('TN','TN','TUN'),('TO','TO','TON'),('TR','TR','TUR'),('TT','TT','TTO'),('TV','TV','TUV'),('TW','TW','TWN'),('TZ','TZ','TZA'),('UA','UA','UKR'),('UG','UG','UGA'),('UM','UM','UMI'),('US','US','USA'),('UY','UY','URY'),('UZ','UZ','UZB'),('VA','VA','VAT'),('VC','VC','VCT'),('VE','VE','VEN'),('VG','VG','VGB'),('VI','VI','VIR'),('VN','VN','VNM'),('VU','VU','VUT'),('WF','WF','WLF'),('WS','WS','WSM'),('XK','XK','XKX'),('YE','YE','YEM'),('YT','YT','MYT'),('ZA','ZA','ZAF'),('ZM','ZM','ZMB'),('ZW','ZW','ZWE');
/*!40000 ALTER TABLE `directory_country` ENABLE KEYS */;

--
-- Table structure for table `directory_country_format`
--

DROP TABLE IF EXISTS `directory_country_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `directory_country_format` (
  `country_format_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Country Format ID',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID in ISO-2',
  `type` varchar(30) DEFAULT NULL COMMENT 'Country Format Type',
  `format` text NOT NULL COMMENT 'Country Format',
  PRIMARY KEY (`country_format_id`),
  UNIQUE KEY `DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Format';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_format`
--

/*!40000 ALTER TABLE `directory_country_format` DISABLE KEYS */;
/*!40000 ALTER TABLE `directory_country_format` ENABLE KEYS */;

--
-- Table structure for table `directory_country_region`
--

DROP TABLE IF EXISTS `directory_country_region`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `directory_country_region` (
  `region_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Region ID',
  `country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Country ID in ISO-2',
  `code` varchar(32) DEFAULT NULL COMMENT 'Region code',
  `default_name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`region_id`),
  KEY `DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1108 DEFAULT CHARSET=utf8 COMMENT='Directory Country Region';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_region`
--

/*!40000 ALTER TABLE `directory_country_region` DISABLE KEYS */;
INSERT INTO `directory_country_region` VALUES (1,'US','AL','Alabama'),(2,'US','AK','Alaska'),(3,'US','AS','American Samoa'),(4,'US','AZ','Arizona'),(5,'US','AR','Arkansas'),(6,'US','AE','Armed Forces Africa'),(7,'US','AA','Armed Forces Americas'),(8,'US','AE','Armed Forces Canada'),(9,'US','AE','Armed Forces Europe'),(10,'US','AE','Armed Forces Middle East'),(11,'US','AP','Armed Forces Pacific'),(12,'US','CA','California'),(13,'US','CO','Colorado'),(14,'US','CT','Connecticut'),(15,'US','DE','Delaware'),(16,'US','DC','District of Columbia'),(17,'US','FM','Federated States Of Micronesia'),(18,'US','FL','Florida'),(19,'US','GA','Georgia'),(20,'US','GU','Guam'),(21,'US','HI','Hawaii'),(22,'US','ID','Idaho'),(23,'US','IL','Illinois'),(24,'US','IN','Indiana'),(25,'US','IA','Iowa'),(26,'US','KS','Kansas'),(27,'US','KY','Kentucky'),(28,'US','LA','Louisiana'),(29,'US','ME','Maine'),(30,'US','MH','Marshall Islands'),(31,'US','MD','Maryland'),(32,'US','MA','Massachusetts'),(33,'US','MI','Michigan'),(34,'US','MN','Minnesota'),(35,'US','MS','Mississippi'),(36,'US','MO','Missouri'),(37,'US','MT','Montana'),(38,'US','NE','Nebraska'),(39,'US','NV','Nevada'),(40,'US','NH','New Hampshire'),(41,'US','NJ','New Jersey'),(42,'US','NM','New Mexico'),(43,'US','NY','New York'),(44,'US','NC','North Carolina'),(45,'US','ND','North Dakota'),(46,'US','MP','Northern Mariana Islands'),(47,'US','OH','Ohio'),(48,'US','OK','Oklahoma'),(49,'US','OR','Oregon'),(50,'US','PW','Palau'),(51,'US','PA','Pennsylvania'),(52,'US','PR','Puerto Rico'),(53,'US','RI','Rhode Island'),(54,'US','SC','South Carolina'),(55,'US','SD','South Dakota'),(56,'US','TN','Tennessee'),(57,'US','TX','Texas'),(58,'US','UT','Utah'),(59,'US','VT','Vermont'),(60,'US','VI','Virgin Islands'),(61,'US','VA','Virginia'),(62,'US','WA','Washington'),(63,'US','WV','West Virginia'),(64,'US','WI','Wisconsin'),(65,'US','WY','Wyoming'),(66,'CA','AB','Alberta'),(67,'CA','BC','British Columbia'),(68,'CA','MB','Manitoba'),(69,'CA','NL','Newfoundland and Labrador'),(70,'CA','NB','New Brunswick'),(71,'CA','NS','Nova Scotia'),(72,'CA','NT','Northwest Territories'),(73,'CA','NU','Nunavut'),(74,'CA','ON','Ontario'),(75,'CA','PE','Prince Edward Island'),(76,'CA','QC','Quebec'),(77,'CA','SK','Saskatchewan'),(78,'CA','YT','Yukon Territory'),(79,'DE','NDS','Niedersachsen'),(80,'DE','BAW','Baden-Württemberg'),(81,'DE','BAY','Bayern'),(82,'DE','BER','Berlin'),(83,'DE','BRG','Brandenburg'),(84,'DE','BRE','Bremen'),(85,'DE','HAM','Hamburg'),(86,'DE','HES','Hessen'),(87,'DE','MEC','Mecklenburg-Vorpommern'),(88,'DE','NRW','Nordrhein-Westfalen'),(89,'DE','RHE','Rheinland-Pfalz'),(90,'DE','SAR','Saarland'),(91,'DE','SAS','Sachsen'),(92,'DE','SAC','Sachsen-Anhalt'),(93,'DE','SCN','Schleswig-Holstein'),(94,'DE','THE','Thüringen'),(95,'AT','WI','Wien'),(96,'AT','NO','Niederösterreich'),(97,'AT','OO','Oberösterreich'),(98,'AT','SB','Salzburg'),(99,'AT','KN','Kärnten'),(100,'AT','ST','Steiermark'),(101,'AT','TI','Tirol'),(102,'AT','BL','Burgenland'),(103,'AT','VB','Vorarlberg'),(104,'CH','AG','Aargau'),(105,'CH','AI','Appenzell Innerrhoden'),(106,'CH','AR','Appenzell Ausserrhoden'),(107,'CH','BE','Bern'),(108,'CH','BL','Basel-Landschaft'),(109,'CH','BS','Basel-Stadt'),(110,'CH','FR','Friburg'),(111,'CH','GE','Geneva'),(112,'CH','GL','Glarus'),(113,'CH','GR','Graubünden'),(114,'CH','JU','Jura'),(115,'CH','LU','Lucerne'),(116,'CH','NE','Neuchâtel'),(117,'CH','NW','Nidwalden'),(118,'CH','OW','Obwalden'),(119,'CH','SG','St. Gallen'),(120,'CH','SH','Schaffhausen'),(121,'CH','SO','Solothurn'),(122,'CH','SZ','Schwyz'),(123,'CH','TG','Thurgau'),(124,'CH','TI','Ticino'),(125,'CH','UR','Uri'),(126,'CH','VD','Vaud'),(127,'CH','VS','Wallis'),(128,'CH','ZG','Zug'),(129,'CH','ZH','Zürich'),(130,'ES','A Coruсa','A Coruña'),(131,'ES','Alava','Alava'),(132,'ES','Albacete','Albacete'),(133,'ES','Alicante','Alicante'),(134,'ES','Almeria','Almeria'),(135,'ES','Asturias','Asturias'),(136,'ES','Avila','Avila'),(137,'ES','Badajoz','Badajoz'),(138,'ES','Baleares','Baleares'),(139,'ES','Barcelona','Barcelona'),(140,'ES','Burgos','Burgos'),(141,'ES','Caceres','Caceres'),(142,'ES','Cadiz','Cadiz'),(143,'ES','Cantabria','Cantabria'),(144,'ES','Castellon','Castellon'),(145,'ES','Ceuta','Ceuta'),(146,'ES','Ciudad Real','Ciudad Real'),(147,'ES','Cordoba','Cordoba'),(148,'ES','Cuenca','Cuenca'),(149,'ES','Girona','Girona'),(150,'ES','Granada','Granada'),(151,'ES','Guadalajara','Guadalajara'),(152,'ES','Guipuzcoa','Guipuzcoa'),(153,'ES','Huelva','Huelva'),(154,'ES','Huesca','Huesca'),(155,'ES','Jaen','Jaen'),(156,'ES','La Rioja','La Rioja'),(157,'ES','Las Palmas','Las Palmas'),(158,'ES','Leon','Leon'),(159,'ES','Lleida','Lleida'),(160,'ES','Lugo','Lugo'),(161,'ES','Madrid','Madrid'),(162,'ES','Malaga','Malaga'),(163,'ES','Melilla','Melilla'),(164,'ES','Murcia','Murcia'),(165,'ES','Navarra','Navarra'),(166,'ES','Ourense','Ourense'),(167,'ES','Palencia','Palencia'),(168,'ES','Pontevedra','Pontevedra'),(169,'ES','Salamanca','Salamanca'),(170,'ES','Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,'ES','Segovia','Segovia'),(172,'ES','Sevilla','Sevilla'),(173,'ES','Soria','Soria'),(174,'ES','Tarragona','Tarragona'),(175,'ES','Teruel','Teruel'),(176,'ES','Toledo','Toledo'),(177,'ES','Valencia','Valencia'),(178,'ES','Valladolid','Valladolid'),(179,'ES','Vizcaya','Vizcaya'),(180,'ES','Zamora','Zamora'),(181,'ES','Zaragoza','Zaragoza'),(182,'FR','1','Ain'),(183,'FR','2','Aisne'),(184,'FR','3','Allier'),(185,'FR','4','Alpes-de-Haute-Provence'),(186,'FR','5','Hautes-Alpes'),(187,'FR','6','Alpes-Maritimes'),(188,'FR','7','Ardèche'),(189,'FR','8','Ardennes'),(190,'FR','9','Ariège'),(191,'FR','10','Aube'),(192,'FR','11','Aude'),(193,'FR','12','Aveyron'),(194,'FR','13','Bouches-du-Rhône'),(195,'FR','14','Calvados'),(196,'FR','15','Cantal'),(197,'FR','16','Charente'),(198,'FR','17','Charente-Maritime'),(199,'FR','18','Cher'),(200,'FR','19','Corrèze'),(201,'FR','2A','Corse-du-Sud'),(202,'FR','2B','Haute-Corse'),(203,'FR','21','Côte-d\'Or'),(204,'FR','22','Côtes-d\'Armor'),(205,'FR','23','Creuse'),(206,'FR','24','Dordogne'),(207,'FR','25','Doubs'),(208,'FR','26','Drôme'),(209,'FR','27','Eure'),(210,'FR','28','Eure-et-Loir'),(211,'FR','29','Finistère'),(212,'FR','30','Gard'),(213,'FR','31','Haute-Garonne'),(214,'FR','32','Gers'),(215,'FR','33','Gironde'),(216,'FR','34','Hérault'),(217,'FR','35','Ille-et-Vilaine'),(218,'FR','36','Indre'),(219,'FR','37','Indre-et-Loire'),(220,'FR','38','Isère'),(221,'FR','39','Jura'),(222,'FR','40','Landes'),(223,'FR','41','Loir-et-Cher'),(224,'FR','42','Loire'),(225,'FR','43','Haute-Loire'),(226,'FR','44','Loire-Atlantique'),(227,'FR','45','Loiret'),(228,'FR','46','Lot'),(229,'FR','47','Lot-et-Garonne'),(230,'FR','48','Lozère'),(231,'FR','49','Maine-et-Loire'),(232,'FR','50','Manche'),(233,'FR','51','Marne'),(234,'FR','52','Haute-Marne'),(235,'FR','53','Mayenne'),(236,'FR','54','Meurthe-et-Moselle'),(237,'FR','55','Meuse'),(238,'FR','56','Morbihan'),(239,'FR','57','Moselle'),(240,'FR','58','Nièvre'),(241,'FR','59','Nord'),(242,'FR','60','Oise'),(243,'FR','61','Orne'),(244,'FR','62','Pas-de-Calais'),(245,'FR','63','Puy-de-Dôme'),(246,'FR','64','Pyrénées-Atlantiques'),(247,'FR','65','Hautes-Pyrénées'),(248,'FR','66','Pyrénées-Orientales'),(249,'FR','67','Bas-Rhin'),(250,'FR','68','Haut-Rhin'),(251,'FR','69','Rhône'),(252,'FR','70','Haute-Saône'),(253,'FR','71','Saône-et-Loire'),(254,'FR','72','Sarthe'),(255,'FR','73','Savoie'),(256,'FR','74','Haute-Savoie'),(257,'FR','75','Paris'),(258,'FR','76','Seine-Maritime'),(259,'FR','77','Seine-et-Marne'),(260,'FR','78','Yvelines'),(261,'FR','79','Deux-Sèvres'),(262,'FR','80','Somme'),(263,'FR','81','Tarn'),(264,'FR','82','Tarn-et-Garonne'),(265,'FR','83','Var'),(266,'FR','84','Vaucluse'),(267,'FR','85','Vendée'),(268,'FR','86','Vienne'),(269,'FR','87','Haute-Vienne'),(270,'FR','88','Vosges'),(271,'FR','89','Yonne'),(272,'FR','90','Territoire-de-Belfort'),(273,'FR','91','Essonne'),(274,'FR','92','Hauts-de-Seine'),(275,'FR','93','Seine-Saint-Denis'),(276,'FR','94','Val-de-Marne'),(277,'FR','95','Val-d\'Oise'),(278,'RO','AB','Alba'),(279,'RO','AR','Arad'),(280,'RO','AG','Argeş'),(281,'RO','BC','Bacău'),(282,'RO','BH','Bihor'),(283,'RO','BN','Bistriţa-Năsăud'),(284,'RO','BT','Botoşani'),(285,'RO','BV','Braşov'),(286,'RO','BR','Brăila'),(287,'RO','B','Bucureşti'),(288,'RO','BZ','Buzău'),(289,'RO','CS','Caraş-Severin'),(290,'RO','CL','Călăraşi'),(291,'RO','CJ','Cluj'),(292,'RO','CT','Constanţa'),(293,'RO','CV','Covasna'),(294,'RO','DB','Dâmboviţa'),(295,'RO','DJ','Dolj'),(296,'RO','GL','Galaţi'),(297,'RO','GR','Giurgiu'),(298,'RO','GJ','Gorj'),(299,'RO','HR','Harghita'),(300,'RO','HD','Hunedoara'),(301,'RO','IL','Ialomiţa'),(302,'RO','IS','Iaşi'),(303,'RO','IF','Ilfov'),(304,'RO','MM','Maramureş'),(305,'RO','MH','Mehedinţi'),(306,'RO','MS','Mureş'),(307,'RO','NT','Neamţ'),(308,'RO','OT','Olt'),(309,'RO','PH','Prahova'),(310,'RO','SM','Satu-Mare'),(311,'RO','SJ','Sălaj'),(312,'RO','SB','Sibiu'),(313,'RO','SV','Suceava'),(314,'RO','TR','Teleorman'),(315,'RO','TM','Timiş'),(316,'RO','TL','Tulcea'),(317,'RO','VS','Vaslui'),(318,'RO','VL','Vâlcea'),(319,'RO','VN','Vrancea'),(320,'FI','Lappi','Lappi'),(321,'FI','Pohjois-Pohjanmaa','Pohjois-Pohjanmaa'),(322,'FI','Kainuu','Kainuu'),(323,'FI','Pohjois-Karjala','Pohjois-Karjala'),(324,'FI','Pohjois-Savo','Pohjois-Savo'),(325,'FI','Etelä-Savo','Etelä-Savo'),(326,'FI','Etelä-Pohjanmaa','Etelä-Pohjanmaa'),(327,'FI','Pohjanmaa','Pohjanmaa'),(328,'FI','Pirkanmaa','Pirkanmaa'),(329,'FI','Satakunta','Satakunta'),(330,'FI','Keski-Pohjanmaa','Keski-Pohjanmaa'),(331,'FI','Keski-Suomi','Keski-Suomi'),(332,'FI','Varsinais-Suomi','Varsinais-Suomi'),(333,'FI','Etelä-Karjala','Etelä-Karjala'),(334,'FI','Päijät-Häme','Päijät-Häme'),(335,'FI','Kanta-Häme','Kanta-Häme'),(336,'FI','Uusimaa','Uusimaa'),(337,'FI','Itä-Uusimaa','Itä-Uusimaa'),(338,'FI','Kymenlaakso','Kymenlaakso'),(339,'FI','Ahvenanmaa','Ahvenanmaa'),(340,'EE','EE-37','Harjumaa'),(341,'EE','EE-39','Hiiumaa'),(342,'EE','EE-44','Ida-Virumaa'),(343,'EE','EE-49','Jõgevamaa'),(344,'EE','EE-51','Järvamaa'),(345,'EE','EE-57','Läänemaa'),(346,'EE','EE-59','Lääne-Virumaa'),(347,'EE','EE-65','Põlvamaa'),(348,'EE','EE-67','Pärnumaa'),(349,'EE','EE-70','Raplamaa'),(350,'EE','EE-74','Saaremaa'),(351,'EE','EE-78','Tartumaa'),(352,'EE','EE-82','Valgamaa'),(353,'EE','EE-84','Viljandimaa'),(354,'EE','EE-86','Võrumaa'),(355,'LV','LV-DGV','Daugavpils'),(356,'LV','LV-JEL','Jelgava'),(357,'LV','Jēkabpils','Jēkabpils'),(358,'LV','LV-JUR','Jūrmala'),(359,'LV','LV-LPX','Liepāja'),(360,'LV','LV-LE','Liepājas novads'),(361,'LV','LV-REZ','Rēzekne'),(362,'LV','LV-RIX','Rīga'),(363,'LV','LV-RI','Rīgas novads'),(364,'LV','Valmiera','Valmiera'),(365,'LV','LV-VEN','Ventspils'),(366,'LV','Aglonas novads','Aglonas novads'),(367,'LV','LV-AI','Aizkraukles novads'),(368,'LV','Aizputes novads','Aizputes novads'),(369,'LV','Aknīstes novads','Aknīstes novads'),(370,'LV','Alojas novads','Alojas novads'),(371,'LV','Alsungas novads','Alsungas novads'),(372,'LV','LV-AL','Alūksnes novads'),(373,'LV','Amatas novads','Amatas novads'),(374,'LV','Apes novads','Apes novads'),(375,'LV','Auces novads','Auces novads'),(376,'LV','Babītes novads','Babītes novads'),(377,'LV','Baldones novads','Baldones novads'),(378,'LV','Baltinavas novads','Baltinavas novads'),(379,'LV','LV-BL','Balvu novads'),(380,'LV','LV-BU','Bauskas novads'),(381,'LV','Beverīnas novads','Beverīnas novads'),(382,'LV','Brocēnu novads','Brocēnu novads'),(383,'LV','Burtnieku novads','Burtnieku novads'),(384,'LV','Carnikavas novads','Carnikavas novads'),(385,'LV','Cesvaines novads','Cesvaines novads'),(386,'LV','Ciblas novads','Ciblas novads'),(387,'LV','LV-CE','Cēsu novads'),(388,'LV','Dagdas novads','Dagdas novads'),(389,'LV','LV-DA','Daugavpils novads'),(390,'LV','LV-DO','Dobeles novads'),(391,'LV','Dundagas novads','Dundagas novads'),(392,'LV','Durbes novads','Durbes novads'),(393,'LV','Engures novads','Engures novads'),(394,'LV','Garkalnes novads','Garkalnes novads'),(395,'LV','Grobiņas novads','Grobiņas novads'),(396,'LV','LV-GU','Gulbenes novads'),(397,'LV','Iecavas novads','Iecavas novads'),(398,'LV','Ikšķiles novads','Ikšķiles novads'),(399,'LV','Ilūkstes novads','Ilūkstes novads'),(400,'LV','Inčukalna novads','Inčukalna novads'),(401,'LV','Jaunjelgavas novads','Jaunjelgavas novads'),(402,'LV','Jaunpiebalgas novads','Jaunpiebalgas novads'),(403,'LV','Jaunpils novads','Jaunpils novads'),(404,'LV','LV-JL','Jelgavas novads'),(405,'LV','LV-JK','Jēkabpils novads'),(406,'LV','Kandavas novads','Kandavas novads'),(407,'LV','Kokneses novads','Kokneses novads'),(408,'LV','Krimuldas novads','Krimuldas novads'),(409,'LV','Krustpils novads','Krustpils novads'),(410,'LV','LV-KR','Krāslavas novads'),(411,'LV','LV-KU','Kuldīgas novads'),(412,'LV','Kārsavas novads','Kārsavas novads'),(413,'LV','Lielvārdes novads','Lielvārdes novads'),(414,'LV','LV-LM','Limbažu novads'),(415,'LV','Lubānas novads','Lubānas novads'),(416,'LV','LV-LU','Ludzas novads'),(417,'LV','Līgatnes novads','Līgatnes novads'),(418,'LV','Līvānu novads','Līvānu novads'),(419,'LV','LV-MA','Madonas novads'),(420,'LV','Mazsalacas novads','Mazsalacas novads'),(421,'LV','Mālpils novads','Mālpils novads'),(422,'LV','Mārupes novads','Mārupes novads'),(423,'LV','Naukšēnu novads','Naukšēnu novads'),(424,'LV','Neretas novads','Neretas novads'),(425,'LV','Nīcas novads','Nīcas novads'),(426,'LV','LV-OG','Ogres novads'),(427,'LV','Olaines novads','Olaines novads'),(428,'LV','Ozolnieku novads','Ozolnieku novads'),(429,'LV','LV-PR','Preiļu novads'),(430,'LV','Priekules novads','Priekules novads'),(431,'LV','Priekuļu novads','Priekuļu novads'),(432,'LV','Pārgaujas novads','Pārgaujas novads'),(433,'LV','Pāvilostas novads','Pāvilostas novads'),(434,'LV','Pļaviņu novads','Pļaviņu novads'),(435,'LV','Raunas novads','Raunas novads'),(436,'LV','Riebiņu novads','Riebiņu novads'),(437,'LV','Rojas novads','Rojas novads'),(438,'LV','Ropažu novads','Ropažu novads'),(439,'LV','Rucavas novads','Rucavas novads'),(440,'LV','Rugāju novads','Rugāju novads'),(441,'LV','Rundāles novads','Rundāles novads'),(442,'LV','LV-RE','Rēzeknes novads'),(443,'LV','Rūjienas novads','Rūjienas novads'),(444,'LV','Salacgrīvas novads','Salacgrīvas novads'),(445,'LV','Salas novads','Salas novads'),(446,'LV','Salaspils novads','Salaspils novads'),(447,'LV','LV-SA','Saldus novads'),(448,'LV','Saulkrastu novads','Saulkrastu novads'),(449,'LV','Siguldas novads','Siguldas novads'),(450,'LV','Skrundas novads','Skrundas novads'),(451,'LV','Skrīveru novads','Skrīveru novads'),(452,'LV','Smiltenes novads','Smiltenes novads'),(453,'LV','Stopiņu novads','Stopiņu novads'),(454,'LV','Strenču novads','Strenču novads'),(455,'LV','Sējas novads','Sējas novads'),(456,'LV','LV-TA','Talsu novads'),(457,'LV','LV-TU','Tukuma novads'),(458,'LV','Tērvetes novads','Tērvetes novads'),(459,'LV','Vaiņodes novads','Vaiņodes novads'),(460,'LV','LV-VK','Valkas novads'),(461,'LV','LV-VM','Valmieras novads'),(462,'LV','Varakļānu novads','Varakļānu novads'),(463,'LV','Vecpiebalgas novads','Vecpiebalgas novads'),(464,'LV','Vecumnieku novads','Vecumnieku novads'),(465,'LV','LV-VE','Ventspils novads'),(466,'LV','Viesītes novads','Viesītes novads'),(467,'LV','Viļakas novads','Viļakas novads'),(468,'LV','Viļānu novads','Viļānu novads'),(469,'LV','Vārkavas novads','Vārkavas novads'),(470,'LV','Zilupes novads','Zilupes novads'),(471,'LV','Ādažu novads','Ādažu novads'),(472,'LV','Ērgļu novads','Ērgļu novads'),(473,'LV','Ķeguma novads','Ķeguma novads'),(474,'LV','Ķekavas novads','Ķekavas novads'),(475,'LT','LT-AL','Alytaus Apskritis'),(476,'LT','LT-KU','Kauno Apskritis'),(477,'LT','LT-KL','Klaipėdos Apskritis'),(478,'LT','LT-MR','Marijampolės Apskritis'),(479,'LT','LT-PN','Panevėžio Apskritis'),(480,'LT','LT-SA','Šiaulių Apskritis'),(481,'LT','LT-TA','Tauragės Apskritis'),(482,'LT','LT-TE','Telšių Apskritis'),(483,'LT','LT-UT','Utenos Apskritis'),(484,'LT','LT-VL','Vilniaus Apskritis'),(485,'BR','AC','Acre'),(486,'BR','AL','Alagoas'),(487,'BR','AP','Amapá'),(488,'BR','AM','Amazonas'),(489,'BR','BA','Bahia'),(490,'BR','CE','Ceará'),(491,'BR','ES','Espírito Santo'),(492,'BR','GO','Goiás'),(493,'BR','MA','Maranhão'),(494,'BR','MT','Mato Grosso'),(495,'BR','MS','Mato Grosso do Sul'),(496,'BR','MG','Minas Gerais'),(497,'BR','PA','Pará'),(498,'BR','PB','Paraíba'),(499,'BR','PR','Paraná'),(500,'BR','PE','Pernambuco'),(501,'BR','PI','Piauí'),(502,'BR','RJ','Rio de Janeiro'),(503,'BR','RN','Rio Grande do Norte'),(504,'BR','RS','Rio Grande do Sul'),(505,'BR','RO','Rondônia'),(506,'BR','RR','Roraima'),(507,'BR','SC','Santa Catarina'),(508,'BR','SP','São Paulo'),(509,'BR','SE','Sergipe'),(510,'BR','TO','Tocantins'),(511,'BR','DF','Distrito Federal'),(512,'AL','AL-01','Berat'),(513,'AL','AL-09','Dibër'),(514,'AL','AL-02','Durrës'),(515,'AL','AL-03','Elbasan'),(516,'AL','AL-04','Fier'),(517,'AL','AL-05','Gjirokastër'),(518,'AL','AL-06','Korçë'),(519,'AL','AL-07','Kukës'),(520,'AL','AL-08','Lezhë'),(521,'AL','AL-10','Shkodër'),(522,'AL','AL-11','Tiranë'),(523,'AL','AL-12','Vlorë'),(524,'AR','AR-C','Ciudad Autónoma de Buenos Aires'),(525,'AR','AR-B','Buenos Aires'),(526,'AR','AR-K','Catamarca'),(527,'AR','AR-H','Chaco'),(528,'AR','AR-U','Chubut'),(529,'AR','AR-X','Córdoba'),(530,'AR','AR-W','Corrientes'),(531,'AR','AR-E','Entre Ríos'),(532,'AR','AR-P','Formosa'),(533,'AR','AR-Y','Jujuy'),(534,'AR','AR-L','La Pampa'),(535,'AR','AR-F','La Rioja'),(536,'AR','AR-M','Mendoza'),(537,'AR','AR-N','Misiones'),(538,'AR','AR-Q','Neuquén'),(539,'AR','AR-R','Río Negro'),(540,'AR','AR-A','Salta'),(541,'AR','AR-J','San Juan'),(542,'AR','AR-D','San Luis'),(543,'AR','AR-Z','Santa Cruz'),(544,'AR','AR-S','Santa Fe'),(545,'AR','AR-G','Santiago del Estero'),(546,'AR','AR-V','Tierra del Fuego'),(547,'AR','AR-T','Tucumán'),(548,'HR','HR-01','Zagrebačka županija'),(549,'HR','HR-02','Krapinsko-zagorska županija'),(550,'HR','HR-03','Sisačko-moslavačka županija'),(551,'HR','HR-04','Karlovačka županija'),(552,'HR','HR-05','Varaždinska županija'),(553,'HR','HR-06','Koprivničko-križevačka županija'),(554,'HR','HR-07','Bjelovarsko-bilogorska županija'),(555,'HR','HR-08','Primorsko-goranska županija'),(556,'HR','HR-09','Ličko-senjska županija'),(557,'HR','HR-10','Virovitičko-podravska županija'),(558,'HR','HR-11','Požeško-slavonska županija'),(559,'HR','HR-12','Brodsko-posavska županija'),(560,'HR','HR-13','Zadarska županija'),(561,'HR','HR-14','Osječko-baranjska županija'),(562,'HR','HR-15','Šibensko-kninska županija'),(563,'HR','HR-16','Vukovarsko-srijemska županija'),(564,'HR','HR-17','Splitsko-dalmatinska županija'),(565,'HR','HR-18','Istarska županija'),(566,'HR','HR-19','Dubrovačko-neretvanska županija'),(567,'HR','HR-20','Međimurska županija'),(568,'HR','HR-21','Grad Zagreb'),(569,'IN','AN','Andaman and Nicobar Islands'),(570,'IN','AP','Andhra Pradesh'),(571,'IN','AR','Arunachal Pradesh'),(572,'IN','AS','Assam'),(573,'IN','BR','Bihar'),(574,'IN','CH','Chandigarh'),(575,'IN','CT','Chhattisgarh'),(576,'IN','DN','Dadra and Nagar Haveli'),(577,'IN','DD','Daman and Diu'),(578,'IN','DL','Delhi'),(579,'IN','GA','Goa'),(580,'IN','GJ','Gujarat'),(581,'IN','HR','Haryana'),(582,'IN','HP','Himachal Pradesh'),(583,'IN','JK','Jammu and Kashmir'),(584,'IN','JH','Jharkhand'),(585,'IN','KA','Karnataka'),(586,'IN','KL','Kerala'),(587,'IN','LD','Lakshadweep'),(588,'IN','MP','Madhya Pradesh'),(589,'IN','MH','Maharashtra'),(590,'IN','MN','Manipur'),(591,'IN','ML','Meghalaya'),(592,'IN','MZ','Mizoram'),(593,'IN','NL','Nagaland'),(594,'IN','OR','Odisha'),(595,'IN','PY','Puducherry'),(596,'IN','PB','Punjab'),(597,'IN','RJ','Rajasthan'),(598,'IN','SK','Sikkim'),(599,'IN','TN','Tamil Nadu'),(600,'IN','TG','Telangana'),(601,'IN','TR','Tripura'),(602,'IN','UP','Uttar Pradesh'),(603,'IN','UT','Uttarakhand'),(604,'IN','WB','West Bengal'),(605,'AU','ACT','Australian Capital Territory'),(606,'AU','NSW','New South Wales'),(607,'AU','VIC','Victoria'),(608,'AU','QLD','Queensland'),(609,'AU','SA','South Australia'),(610,'AU','TAS','Tasmania'),(611,'AU','WA','Western Australia'),(612,'AU','NT','Northern Territory'),(613,'BY','BY-BR','Bresckaja voblasć'),(614,'BY','BY-HO','Homieĺskaja voblasć'),(615,'BY','BY-HM','Horad Minsk'),(616,'BY','BY-HR','Hrodzienskaja voblasć'),(617,'BY','BY-MA','Mahilioŭskaja voblasć'),(618,'BY','BY-MI','Minskaja voblasć'),(619,'BY','BY-VI','Viciebskaja voblasć'),(620,'BE','VAN','Antwerpen'),(621,'BE','WBR','Brabant wallon'),(622,'BE','BRU','Brussels-Capital Region'),(623,'BE','WHT','Hainaut'),(624,'BE','VLI','Limburg'),(625,'BE','WLG','Liège'),(626,'BE','WLX','Luxembourg'),(627,'BE','WNA','Namur'),(628,'BE','VOV','Oost-Vlaanderen'),(629,'BE','VBR','Vlaams-Brabant'),(630,'BE','VWV','West-Vlaanderen'),(631,'BO','BO-C','Cochabamba'),(632,'BO','BO-H','Chuquisaca'),(633,'BO','BO-B','El Beni'),(634,'BO','BO-L','La Paz'),(635,'BO','BO-O','Oruro'),(636,'BO','BO-N','Pando'),(637,'BO','BO-P','Potosí'),(638,'BO','BO-S','Santa Cruz'),(639,'BO','BO-T','Tarija'),(640,'BG','BG-01','Blagoevgrad'),(641,'BG','BG-02','Burgas'),(642,'BG','BG-03','Varna'),(643,'BG','BG-04','Veliko Tarnovo'),(644,'BG','BG-05','Vidin'),(645,'BG','BG-06','Vratsa'),(646,'BG','BG-07','Gabrovo'),(647,'BG','BG-08','Dobrich'),(648,'BG','BG-09','Kardzhali'),(649,'BG','BG-10','Kyustendil'),(650,'BG','BG-11','Lovech'),(651,'BG','BG-12','Montana'),(652,'BG','BG-13','Pazardzhik'),(653,'BG','BG-14','Pernik'),(654,'BG','BG-15','Pleven'),(655,'BG','BG-16','Plovdiv'),(656,'BG','BG-17','Razgrad'),(657,'BG','BG-18','Ruse'),(658,'BG','BG-19','Silistra'),(659,'BG','BG-20','Sliven'),(660,'BG','BG-21','Smolyan'),(661,'BG','BG-22','Sofia City'),(662,'BG','BG-23','Sofia Province'),(663,'BG','BG-24','Stara Zagora'),(664,'BG','BG-25','Targovishte'),(665,'BG','BG-26','Haskovo'),(666,'BG','BG-27','Shumen'),(667,'BG','BG-28','Yambol'),(668,'CL','CL-AI','Aisén del General Carlos Ibañez del Campo'),(669,'CL','CL-AN','Antofagasta'),(670,'CL','CL-AP','Arica y Parinacota'),(671,'CL','CL-AR','La Araucanía'),(672,'CL','CL-AT','Atacama'),(673,'CL','CL-BI','Biobío'),(674,'CL','CL-CO','Coquimbo'),(675,'CL','CL-LI','Libertador General Bernardo O\'Higgins'),(676,'CL','CL-LL','Los Lagos'),(677,'CL','CL-LR','Los Ríos'),(678,'CL','CL-MA','Magallanes'),(679,'CL','CL-ML','Maule'),(680,'CL','CL-NB','Ñuble'),(681,'CL','CL-RM','Región Metropolitana de Santiago'),(682,'CL','CL-TA','Tarapacá'),(683,'CL','CL-VS','Valparaíso'),(684,'CN','CN-AH','Anhui Sheng'),(685,'CN','CN-BJ','Beijing Shi'),(686,'CN','CN-CQ','Chongqing Shi'),(687,'CN','CN-FJ','Fujian Sheng'),(688,'CN','CN-GS','Gansu Sheng'),(689,'CN','CN-GD','Guangdong Sheng'),(690,'CN','CN-GX','Guangxi Zhuangzu Zizhiqu'),(691,'CN','CN-GZ','Guizhou Sheng'),(692,'CN','CN-HI','Hainan Sheng'),(693,'CN','CN-HE','Hebei Sheng'),(694,'CN','CN-HL','Heilongjiang Sheng'),(695,'CN','CN-HA','Henan Sheng'),(696,'CN','CN-HK','Hong Kong SAR'),(697,'CN','CN-HB','Hubei Sheng'),(698,'CN','CN-HN','Hunan Sheng'),(699,'CN','CN-JS','Jiangsu Sheng'),(700,'CN','CN-JX','Jiangxi Sheng'),(701,'CN','CN-JL','Jilin Sheng'),(702,'CN','CN-LN','Liaoning Sheng'),(703,'CN','CN-MO','Macao SAR'),(704,'CN','CN-NM','Nei Mongol Zizhiqu'),(705,'CN','CN-NX','Ningxia Huizi Zizhiqu'),(706,'CN','CN-QH','Qinghai Sheng'),(707,'CN','CN-SN','Shaanxi Sheng'),(708,'CN','CN-SD','Shandong Sheng'),(709,'CN','CN-SH','Shanghai Shi'),(710,'CN','CN-SX','Shanxi Sheng'),(711,'CN','CN-SC','Sichuan Sheng'),(712,'CN','CN-TW','Taiwan Sheng'),(713,'CN','CN-TJ','Tianjin Shi'),(714,'CN','CN-XJ','Xinjiang Uygur Zizhiqu'),(715,'CN','CN-XZ','Xizang Zizhiqu'),(716,'CN','CN-YN','Yunnan Sheng'),(717,'CN','CN-ZJ','Zhejiang Sheng'),(718,'CO','CO-AMA','Amazonas'),(719,'CO','CO-ANT','Antioquia'),(720,'CO','CO-ARA','Arauca'),(721,'CO','CO-ATL','Atlántico'),(722,'CO','CO-BOL','Bolívar'),(723,'CO','CO-BOY','Boyacá'),(724,'CO','CO-CAL','Caldas'),(725,'CO','CO-CAQ','Caquetá'),(726,'CO','CO-CAS','Casanare'),(727,'CO','CO-CAU','Cauca'),(728,'CO','CO-CES','Cesar'),(729,'CO','CO-CHO','Chocó'),(730,'CO','CO-COR','Córdoba'),(731,'CO','CO-CUN','Cundinamarca'),(732,'CO','CO-GUA','Guainía'),(733,'CO','CO-GUV','Guaviare'),(734,'CO','CO-HUL','Huila'),(735,'CO','CO-LAG','La Guajira'),(736,'CO','CO-MAG','Magdalena'),(737,'CO','CO-MET','Meta'),(738,'CO','CO-NAR','Nariño'),(739,'CO','CO-NSA','Norte de Santander'),(740,'CO','CO-PUT','Putumayo'),(741,'CO','CO-QUI','Quindío'),(742,'CO','CO-RIS','Risaralda'),(743,'CO','CO-SAP','San Andrés y Providencia'),(744,'CO','CO-SAN','Santander'),(745,'CO','CO-SUC','Sucre'),(746,'CO','CO-TOL','Tolima'),(747,'CO','CO-VAC','Valle del Cauca'),(748,'CO','CO-VAU','Vaupés'),(749,'CO','CO-VID','Vichada'),(750,'DK','DK-84','Hovedstaden'),(751,'DK','DK-82','Midtjylland'),(752,'DK','DK-81','Nordjylland'),(753,'DK','DK-85','Sjælland'),(754,'DK','DK-83','Syddanmark'),(755,'EC','EC-A','Azuay'),(756,'EC','EC-B','Bolívar'),(757,'EC','EC-F','Cañar'),(758,'EC','EC-C','Carchi'),(759,'EC','EC-H','Chimborazo'),(760,'EC','EC-X','Cotopaxi'),(761,'EC','EC-O','El Oro'),(762,'EC','EC-E','Esmeraldas'),(763,'EC','EC-W','Galápagos'),(764,'EC','EC-G','Guayas'),(765,'EC','EC-I','Imbabura'),(766,'EC','EC-L','Loja'),(767,'EC','EC-R','Los Ríos'),(768,'EC','EC-M','Manabí'),(769,'EC','EC-S','Morona Santiago'),(770,'EC','EC-N','Napo'),(771,'EC','EC-D','Orellana'),(772,'EC','EC-Y','Pastaza'),(773,'EC','EC-P','Pichincha'),(774,'EC','EC-SE','Santa Elena'),(775,'EC','EC-SD','Santo Domingo de los Tsáchilas'),(776,'EC','EC-U','Sucumbíos'),(777,'EC','EC-T','Tungurahua'),(778,'EC','EC-Z','Zamora Chinchipe'),(779,'GR','GR-A','Anatolikí Makedonía kai Thráki'),(780,'GR','GR-I','Attikí'),(781,'GR','GR-G','Dytikí Elláda'),(782,'GR','GR-C','Dytikí Makedonía'),(783,'GR','GR-F','Ionía Nísia'),(784,'GR','GR-D','Ípeiros'),(785,'GR','GR-B','Kentrikí Makedonía'),(786,'GR','GR-M','Kríti'),(787,'GR','GR-L','Nótio Aigaío'),(788,'GR','GR-J','Pelopónnisos'),(789,'GR','GR-H','Stereá Elláda'),(790,'GR','GR-E','Thessalía'),(791,'GR','GR-K','Vóreio Aigaío'),(792,'GR','GR-69','Ágion Óros'),(793,'GY','GY-BA','Barima-Waini'),(794,'GY','GY-CU','Cuyuni-Mazaruni'),(795,'GY','GY-DE','Demerara-Mahaica'),(796,'GY','GY-EB','East Berbice-Corentyne'),(797,'GY','GY-ES','Essequibo Islands-West Demerara'),(798,'GY','GY-MA','Mahaica-Berbice'),(799,'GY','GY-PM','Pomeroon-Supenaam'),(800,'GY','GY-PT','Potaro-Siparuni'),(801,'GY','GY-UD','Upper Demerara-Berbice'),(802,'GY','GY-UT','Upper Takutu-Upper Essequibo'),(803,'IS','IS-01','Höfuðborgarsvæði'),(804,'IS','IS-02','Suðurnes'),(805,'IS','IS-03','Vesturland'),(806,'IS','IS-04','Vestfirðir'),(807,'IS','IS-05','Norðurland vestra'),(808,'IS','IS-06','Norðurland eystra'),(809,'IS','IS-07','Austurland'),(810,'IS','IS-08','Suðurland'),(811,'IT','AG','Agrigento'),(812,'IT','AL','Alessandria'),(813,'IT','AN','Ancona'),(814,'IT','AO','Aosta'),(815,'IT','AQ','L\'Aquila'),(816,'IT','AR','Arezzo'),(817,'IT','AP','Ascoli-Piceno'),(818,'IT','AT','Asti'),(819,'IT','AV','Avellino'),(820,'IT','BA','Bari'),(821,'IT','BT','Barletta-Andria-Trani'),(822,'IT','BL','Belluno'),(823,'IT','BN','Benevento'),(824,'IT','BG','Bergamo'),(825,'IT','BI','Biella'),(826,'IT','BO','Bologna'),(827,'IT','BZ','Bolzano'),(828,'IT','BS','Brescia'),(829,'IT','BR','Brindisi'),(830,'IT','CA','Cagliari'),(831,'IT','CL','Caltanissetta'),(832,'IT','CB','Campobasso'),(833,'IT','CI','Carbonia Iglesias'),(834,'IT','CE','Caserta'),(835,'IT','CT','Catania'),(836,'IT','CZ','Catanzaro'),(837,'IT','CH','Chieti'),(838,'IT','CO','Como'),(839,'IT','CS','Cosenza'),(840,'IT','CR','Cremona'),(841,'IT','KR','Crotone'),(842,'IT','CN','Cuneo'),(843,'IT','EN','Enna'),(844,'IT','FM','Fermo'),(845,'IT','FE','Ferrara'),(846,'IT','FI','Firenze'),(847,'IT','FG','Foggia'),(848,'IT','FC','Forli-Cesena'),(849,'IT','FR','Frosinone'),(850,'IT','GE','Genova'),(851,'IT','GO','Gorizia'),(852,'IT','GR','Grosseto'),(853,'IT','IM','Imperia'),(854,'IT','IS','Isernia'),(855,'IT','SP','La-Spezia'),(856,'IT','LT','Latina'),(857,'IT','LE','Lecce'),(858,'IT','LC','Lecco'),(859,'IT','LI','Livorno'),(860,'IT','LO','Lodi'),(861,'IT','LU','Lucca'),(862,'IT','MC','Macerata'),(863,'IT','MN','Mantova'),(864,'IT','MS','Massa-Carrara'),(865,'IT','MT','Matera'),(866,'IT','VS','Medio Campidano'),(867,'IT','ME','Messina'),(868,'IT','MI','Milano'),(869,'IT','MO','Modena'),(870,'IT','MB','Monza-Brianza'),(871,'IT','NA','Napoli'),(872,'IT','NO','Novara'),(873,'IT','NU','Nuoro'),(874,'IT','OG','Ogliastra'),(875,'IT','OT','Olbia Tempio'),(876,'IT','OR','Oristano'),(877,'IT','PD','Padova'),(878,'IT','PA','Palermo'),(879,'IT','PR','Parma'),(880,'IT','PV','Pavia'),(881,'IT','PG','Perugia'),(882,'IT','PU','Pesaro-Urbino'),(883,'IT','PE','Pescara'),(884,'IT','PC','Piacenza'),(885,'IT','PI','Pisa'),(886,'IT','PT','Pistoia'),(887,'IT','PN','Pordenone'),(888,'IT','PZ','Potenza'),(889,'IT','PO','Prato'),(890,'IT','RG','Ragusa'),(891,'IT','RA','Ravenna'),(892,'IT','RC','Reggio-Calabria'),(893,'IT','RE','Reggio-Emilia'),(894,'IT','RI','Rieti'),(895,'IT','RN','Rimini'),(896,'IT','RM','Roma'),(897,'IT','RO','Rovigo'),(898,'IT','SA','Salerno'),(899,'IT','SS','Sassari'),(900,'IT','SV','Savona'),(901,'IT','SI','Siena'),(902,'IT','SR','Siracusa'),(903,'IT','SO','Sondrio'),(904,'IT','TA','Taranto'),(905,'IT','TE','Teramo'),(906,'IT','TR','Terni'),(907,'IT','TO','Torino'),(908,'IT','TP','Trapani'),(909,'IT','TN','Trento'),(910,'IT','TV','Treviso'),(911,'IT','TS','Trieste'),(912,'IT','UD','Udine'),(913,'IT','VA','Varese'),(914,'IT','VE','Venezia'),(915,'IT','VB','Verbania'),(916,'IT','VC','Vercelli'),(917,'IT','VR','Verona'),(918,'IT','VV','Vibo-Valentia'),(919,'IT','VI','Vicenza'),(920,'IT','VT','Viterbo'),(921,'MX','AGU','Aguascalientes'),(922,'MX','BCN','Baja California'),(923,'MX','BCS','Baja California Sur'),(924,'MX','CAM','Campeche'),(925,'MX','CHP','Chiapas'),(926,'MX','CHH','Chihuahua'),(927,'MX','CMX','Ciudad de México'),(928,'MX','COA','Coahuila'),(929,'MX','COL','Colima'),(930,'MX','DUR','Durango'),(931,'MX','MEX','Estado de México'),(932,'MX','GUA','Guanajuato'),(933,'MX','GRO','Guerrero'),(934,'MX','HID','Hidalgo'),(935,'MX','JAL','Jalisco'),(936,'MX','MIC','Michoacán'),(937,'MX','MOR','Morelos'),(938,'MX','NAY','Nayarit'),(939,'MX','NLE','Nuevo León'),(940,'MX','OAX','Oaxaca'),(941,'MX','PUE','Puebla'),(942,'MX','QUE','Querétaro'),(943,'MX','ROO','Quintana Roo'),(944,'MX','SLP','San Luis Potosí'),(945,'MX','SIN','Sinaloa'),(946,'MX','SON','Sonora'),(947,'MX','TAB','Tabasco'),(948,'MX','TAM','Tamaulipas'),(949,'MX','TLA','Tlaxcala'),(950,'MX','VER','Veracruz'),(951,'MX','YUC','Yucatán'),(952,'MX','ZAC','Zacatecas'),(953,'PY','PY-ASU','Asunción'),(954,'PY','PY-16','Alto Paraguay'),(955,'PY','PY-10','Alto Paraná'),(956,'PY','PY-13','Amambay'),(957,'PY','PY-19','Boquerón'),(958,'PY','PY-5','Caaguazú'),(959,'PY','PY-6','Caazapá'),(960,'PY','PY-14','Canindeyú'),(961,'PY','PY-11','Central'),(962,'PY','PY-1','Concepción'),(963,'PY','PY-3','Cordillera'),(964,'PY','PY-4','Guairá'),(965,'PY','PY-7','Itapúa'),(966,'PY','PY-8','Misiones'),(967,'PY','PY-12','Ñeembucú'),(968,'PY','PY-9','Paraguarí'),(969,'PY','PY-15','Presidente Hayes'),(970,'PY','PY-2','San Pedro'),(971,'PE','PE-LMA','Municipalidad Metropolitana de Lima'),(972,'PE','PE-AMA','Amazonas'),(973,'PE','PE-ANC','Ancash'),(974,'PE','PE-APU','Apurímac'),(975,'PE','PE-ARE','Arequipa'),(976,'PE','PE-AYA','Ayacucho'),(977,'PE','PE-CAJ','Cajamarca'),(978,'PE','PE-CUS','Cusco'),(979,'PE','PE-CAL','El Callao'),(980,'PE','PE-HUV','Huancavelica'),(981,'PE','PE-HUC','Huánuco'),(982,'PE','PE-ICA','Ica'),(983,'PE','PE-JUN','Junín'),(984,'PE','PE-LAL','La Libertad'),(985,'PE','PE-LAM','Lambayeque'),(986,'PE','PE-LIM','Lima'),(987,'PE','PE-LOR','Loreto'),(988,'PE','PE-MDD','Madre de Dios'),(989,'PE','PE-MOQ','Moquegua'),(990,'PE','PE-PAS','Pasco'),(991,'PE','PE-PIU','Piura'),(992,'PE','PE-PUN','Puno'),(993,'PE','PE-SAM','San Martín'),(994,'PE','PE-TAC','Tacna'),(995,'PE','PE-TUM','Tumbes'),(996,'PE','PE-UCA','Ucayali'),(997,'PL','PL-02','dolnośląskie'),(998,'PL','PL-04','kujawsko-pomorskie'),(999,'PL','PL-06','lubelskie'),(1000,'PL','PL-08','lubuskie'),(1001,'PL','PL-10','łódzkie'),(1002,'PL','PL-12','małopolskie'),(1003,'PL','PL-14','mazowieckie'),(1004,'PL','PL-16','opolskie'),(1005,'PL','PL-18','podkarpackie'),(1006,'PL','PL-20','podlaskie'),(1007,'PL','PL-22','pomorskie'),(1008,'PL','PL-24','śląskie'),(1009,'PL','PL-26','świętokrzyskie'),(1010,'PL','PL-28','warmińsko-mazurskie'),(1011,'PL','PL-30','wielkopolskie'),(1012,'PL','PL-32','zachodniopomorskie'),(1013,'PT','PT-01','Aveiro'),(1014,'PT','PT-02','Beja'),(1015,'PT','PT-03','Braga'),(1016,'PT','PT-04','Bragança'),(1017,'PT','PT-05','Castelo Branco'),(1018,'PT','PT-06','Coimbra'),(1019,'PT','PT-07','Évora'),(1020,'PT','PT-08','Faro'),(1021,'PT','PT-09','Guarda'),(1022,'PT','PT-10','Leiria'),(1023,'PT','PT-11','Lisboa'),(1024,'PT','PT-12','Portalegre'),(1025,'PT','PT-13','Porto'),(1026,'PT','PT-14','Santarém'),(1027,'PT','PT-15','Setúbal'),(1028,'PT','PT-16','Viana do Castelo'),(1029,'PT','PT-17','Vila Real'),(1030,'PT','PT-18','Viseu'),(1031,'PT','PT-20','Região Autónoma dos Açores'),(1032,'PT','PT-30','Região Autónoma da Madeira'),(1033,'SR','SR-BR','Brokopondo'),(1034,'SR','SR-CM','Commewijne'),(1035,'SR','SR-CR','Coronie'),(1036,'SR','SR-MA','Marowijne'),(1037,'SR','SR-NI','Nickerie'),(1038,'SR','SR-PR','Para'),(1039,'SR','SR-PM','Paramaribo'),(1040,'SR','SR-SA','Saramacca'),(1041,'SR','SR-SI','Sipaliwini'),(1042,'SR','SR-WA','Wanica'),(1043,'SE','SE-K','Blekinge län'),(1044,'SE','SE-W','Dalarnas län'),(1045,'SE','SE-I','Gotlands län'),(1046,'SE','SE-X','Gävleborgs län'),(1047,'SE','SE-N','Hallands län'),(1048,'SE','SE-Z','Jämtlands län'),(1049,'SE','SE-F','Jönköpings län'),(1050,'SE','SE-H','Kalmar län'),(1051,'SE','SE-G','Kronobergs län'),(1052,'SE','SE-BD','Norrbottens län'),(1053,'SE','SE-M','Skåne län'),(1054,'SE','SE-AB','Stockholms län'),(1055,'SE','SE-D','Södermanlands län'),(1056,'SE','SE-C','Uppsala län'),(1057,'SE','SE-S','Värmlands län'),(1058,'SE','SE-AC','Västerbottens län'),(1059,'SE','SE-Y','Västernorrlands län'),(1060,'SE','SE-U','Västmanlands län'),(1061,'SE','SE-O','Västra Götalands län'),(1062,'SE','SE-T','Örebro län'),(1063,'SE','SE-E','Östergötlands län'),(1064,'UY','UY-AR','Artigas'),(1065,'UY','UY-CA','Canelones'),(1066,'UY','UY-CL','Cerro Largo'),(1067,'UY','UY-CO','Colonia'),(1068,'UY','UY-DU','Durazno'),(1069,'UY','UY-FS','Flores'),(1070,'UY','UY-FD','Florida'),(1071,'UY','UY-LA','Lavalleja'),(1072,'UY','UY-MA','Maldonado'),(1073,'UY','UY-MO','Montevideo'),(1074,'UY','UY-PA','Paysandu'),(1075,'UY','UY-RN','Río Negro'),(1076,'UY','UY-RV','Rivera'),(1077,'UY','UY-RO','Rocha'),(1078,'UY','UY-SA','Salto'),(1079,'UY','UY-SJ','San José'),(1080,'UY','UY-SO','Soriano'),(1081,'UY','UY-TA','Tacuarembó'),(1082,'UY','UY-TT','Treinta y Tres'),(1083,'VE','VE-W','Dependencias Federales'),(1084,'VE','VE-A','Distrito Capital'),(1085,'VE','VE-Z','Amazonas'),(1086,'VE','VE-B','Anzoátegui'),(1087,'VE','VE-C','Apure'),(1088,'VE','VE-D','Aragua'),(1089,'VE','VE-E','Barinas'),(1090,'VE','VE-F','Bolívar'),(1091,'VE','VE-G','Carabobo'),(1092,'VE','VE-H','Cojedes'),(1093,'VE','VE-Y','Delta Amacuro'),(1094,'VE','VE-I','Falcón'),(1095,'VE','VE-J','Guárico'),(1096,'VE','VE-K','Lara'),(1097,'VE','VE-L','Mérida'),(1098,'VE','VE-M','Miranda'),(1099,'VE','VE-N','Monagas'),(1100,'VE','VE-O','Nueva Esparta'),(1101,'VE','VE-P','Portuguesa'),(1102,'VE','VE-R','Sucre'),(1103,'VE','VE-S','Táchira'),(1104,'VE','VE-T','Trujillo'),(1105,'VE','VE-X','Vargas'),(1106,'VE','VE-U','Yaracuy'),(1107,'VE','VE-V','Zulia');
/*!40000 ALTER TABLE `directory_country_region` ENABLE KEYS */;

--
-- Table structure for table `directory_country_region_name`
--

DROP TABLE IF EXISTS `directory_country_region_name`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `directory_country_region_name` (
  `locale` varchar(16) NOT NULL COMMENT 'Locale',
  `region_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Region ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`locale`,`region_id`),
  KEY `DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`),
  CONSTRAINT `DIR_COUNTRY_REGION_NAME_REGION_ID_DIR_COUNTRY_REGION_REGION_ID` FOREIGN KEY (`region_id`) REFERENCES `directory_country_region` (`region_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Region Name';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_region_name`
--

/*!40000 ALTER TABLE `directory_country_region_name` DISABLE KEYS */;
INSERT INTO `directory_country_region_name` VALUES ('en_US',1,'Alabama'),('en_US',2,'Alaska'),('en_US',3,'American Samoa'),('en_US',4,'Arizona'),('en_US',5,'Arkansas'),('en_US',6,'Armed Forces Africa'),('en_US',7,'Armed Forces Americas'),('en_US',8,'Armed Forces Canada'),('en_US',9,'Armed Forces Europe'),('en_US',10,'Armed Forces Middle East'),('en_US',11,'Armed Forces Pacific'),('en_US',12,'California'),('en_US',13,'Colorado'),('en_US',14,'Connecticut'),('en_US',15,'Delaware'),('en_US',16,'District of Columbia'),('en_US',17,'Federated States Of Micronesia'),('en_US',18,'Florida'),('en_US',19,'Georgia'),('en_US',20,'Guam'),('en_US',21,'Hawaii'),('en_US',22,'Idaho'),('en_US',23,'Illinois'),('en_US',24,'Indiana'),('en_US',25,'Iowa'),('en_US',26,'Kansas'),('en_US',27,'Kentucky'),('en_US',28,'Louisiana'),('en_US',29,'Maine'),('en_US',30,'Marshall Islands'),('en_US',31,'Maryland'),('en_US',32,'Massachusetts'),('en_US',33,'Michigan'),('en_US',34,'Minnesota'),('en_US',35,'Mississippi'),('en_US',36,'Missouri'),('en_US',37,'Montana'),('en_US',38,'Nebraska'),('en_US',39,'Nevada'),('en_US',40,'New Hampshire'),('en_US',41,'New Jersey'),('en_US',42,'New Mexico'),('en_US',43,'New York'),('en_US',44,'North Carolina'),('en_US',45,'North Dakota'),('en_US',46,'Northern Mariana Islands'),('en_US',47,'Ohio'),('en_US',48,'Oklahoma'),('en_US',49,'Oregon'),('en_US',50,'Palau'),('en_US',51,'Pennsylvania'),('en_US',52,'Puerto Rico'),('en_US',53,'Rhode Island'),('en_US',54,'South Carolina'),('en_US',55,'South Dakota'),('en_US',56,'Tennessee'),('en_US',57,'Texas'),('en_US',58,'Utah'),('en_US',59,'Vermont'),('en_US',60,'Virgin Islands'),('en_US',61,'Virginia'),('en_US',62,'Washington'),('en_US',63,'West Virginia'),('en_US',64,'Wisconsin'),('en_US',65,'Wyoming'),('en_US',66,'Alberta'),('en_US',67,'British Columbia'),('en_US',68,'Manitoba'),('en_US',69,'Newfoundland and Labrador'),('en_US',70,'New Brunswick'),('en_US',71,'Nova Scotia'),('en_US',72,'Northwest Territories'),('en_US',73,'Nunavut'),('en_US',74,'Ontario'),('en_US',75,'Prince Edward Island'),('en_US',76,'Quebec'),('en_US',77,'Saskatchewan'),('en_US',78,'Yukon Territory'),('en_US',79,'Niedersachsen'),('en_US',80,'Baden-Württemberg'),('en_US',81,'Bayern'),('en_US',82,'Berlin'),('en_US',83,'Brandenburg'),('en_US',84,'Bremen'),('en_US',85,'Hamburg'),('en_US',86,'Hessen'),('en_US',87,'Mecklenburg-Vorpommern'),('en_US',88,'Nordrhein-Westfalen'),('en_US',89,'Rheinland-Pfalz'),('en_US',90,'Saarland'),('en_US',91,'Sachsen'),('en_US',92,'Sachsen-Anhalt'),('en_US',93,'Schleswig-Holstein'),('en_US',94,'Thüringen'),('en_US',95,'Wien'),('en_US',96,'Niederösterreich'),('en_US',97,'Oberösterreich'),('en_US',98,'Salzburg'),('en_US',99,'Kärnten'),('en_US',100,'Steiermark'),('en_US',101,'Tirol'),('en_US',102,'Burgenland'),('en_US',103,'Vorarlberg'),('en_US',104,'Aargau'),('en_US',105,'Appenzell Innerrhoden'),('en_US',106,'Appenzell Ausserrhoden'),('en_US',107,'Bern'),('en_US',108,'Basel-Landschaft'),('en_US',109,'Basel-Stadt'),('en_US',110,'Friburg'),('en_US',111,'Geneva'),('en_US',112,'Glarus'),('en_US',113,'Graubünden'),('en_US',114,'Jura'),('en_US',115,'Lucerne'),('en_US',116,'Neuchâtel'),('en_US',117,'Nidwalden'),('en_US',118,'Obwalden'),('en_US',119,'St. Gallen'),('en_US',120,'Schaffhausen'),('en_US',121,'Solothurn'),('en_US',122,'Schwyz'),('en_US',123,'Thurgau'),('en_US',124,'Ticino'),('en_US',125,'Uri'),('en_US',126,'Vaud'),('en_US',127,'Wallis'),('en_US',128,'Zug'),('en_US',129,'Zürich'),('en_US',130,'A Coruña'),('en_US',131,'Alava'),('en_US',132,'Albacete'),('en_US',133,'Alicante'),('en_US',134,'Almeria'),('en_US',135,'Asturias'),('en_US',136,'Avila'),('en_US',137,'Badajoz'),('en_US',138,'Baleares'),('en_US',139,'Barcelona'),('en_US',140,'Burgos'),('en_US',141,'Caceres'),('en_US',142,'Cadiz'),('en_US',143,'Cantabria'),('en_US',144,'Castellon'),('en_US',145,'Ceuta'),('en_US',146,'Ciudad Real'),('en_US',147,'Cordoba'),('en_US',148,'Cuenca'),('en_US',149,'Girona'),('en_US',150,'Granada'),('en_US',151,'Guadalajara'),('en_US',152,'Guipuzcoa'),('en_US',153,'Huelva'),('en_US',154,'Huesca'),('en_US',155,'Jaen'),('en_US',156,'La Rioja'),('en_US',157,'Las Palmas'),('en_US',158,'Leon'),('en_US',159,'Lleida'),('en_US',160,'Lugo'),('en_US',161,'Madrid'),('en_US',162,'Malaga'),('en_US',163,'Melilla'),('en_US',164,'Murcia'),('en_US',165,'Navarra'),('en_US',166,'Ourense'),('en_US',167,'Palencia'),('en_US',168,'Pontevedra'),('en_US',169,'Salamanca'),('en_US',170,'Santa Cruz de Tenerife'),('en_US',171,'Segovia'),('en_US',172,'Sevilla'),('en_US',173,'Soria'),('en_US',174,'Tarragona'),('en_US',175,'Teruel'),('en_US',176,'Toledo'),('en_US',177,'Valencia'),('en_US',178,'Valladolid'),('en_US',179,'Vizcaya'),('en_US',180,'Zamora'),('en_US',181,'Zaragoza'),('en_US',182,'Ain'),('en_US',183,'Aisne'),('en_US',184,'Allier'),('en_US',185,'Alpes-de-Haute-Provence'),('en_US',186,'Hautes-Alpes'),('en_US',187,'Alpes-Maritimes'),('en_US',188,'Ardèche'),('en_US',189,'Ardennes'),('en_US',190,'Ariège'),('en_US',191,'Aube'),('en_US',192,'Aude'),('en_US',193,'Aveyron'),('en_US',194,'Bouches-du-Rhône'),('en_US',195,'Calvados'),('en_US',196,'Cantal'),('en_US',197,'Charente'),('en_US',198,'Charente-Maritime'),('en_US',199,'Cher'),('en_US',200,'Corrèze'),('en_US',201,'Corse-du-Sud'),('en_US',202,'Haute-Corse'),('en_US',203,'Côte-d\'Or'),('en_US',204,'Côtes-d\'Armor'),('en_US',205,'Creuse'),('en_US',206,'Dordogne'),('en_US',207,'Doubs'),('en_US',208,'Drôme'),('en_US',209,'Eure'),('en_US',210,'Eure-et-Loir'),('en_US',211,'Finistère'),('en_US',212,'Gard'),('en_US',213,'Haute-Garonne'),('en_US',214,'Gers'),('en_US',215,'Gironde'),('en_US',216,'Hérault'),('en_US',217,'Ille-et-Vilaine'),('en_US',218,'Indre'),('en_US',219,'Indre-et-Loire'),('en_US',220,'Isère'),('en_US',221,'Jura'),('en_US',222,'Landes'),('en_US',223,'Loir-et-Cher'),('en_US',224,'Loire'),('en_US',225,'Haute-Loire'),('en_US',226,'Loire-Atlantique'),('en_US',227,'Loiret'),('en_US',228,'Lot'),('en_US',229,'Lot-et-Garonne'),('en_US',230,'Lozère'),('en_US',231,'Maine-et-Loire'),('en_US',232,'Manche'),('en_US',233,'Marne'),('en_US',234,'Haute-Marne'),('en_US',235,'Mayenne'),('en_US',236,'Meurthe-et-Moselle'),('en_US',237,'Meuse'),('en_US',238,'Morbihan'),('en_US',239,'Moselle'),('en_US',240,'Nièvre'),('en_US',241,'Nord'),('en_US',242,'Oise'),('en_US',243,'Orne'),('en_US',244,'Pas-de-Calais'),('en_US',245,'Puy-de-Dôme'),('en_US',246,'Pyrénées-Atlantiques'),('en_US',247,'Hautes-Pyrénées'),('en_US',248,'Pyrénées-Orientales'),('en_US',249,'Bas-Rhin'),('en_US',250,'Haut-Rhin'),('en_US',251,'Rhône'),('en_US',252,'Haute-Saône'),('en_US',253,'Saône-et-Loire'),('en_US',254,'Sarthe'),('en_US',255,'Savoie'),('en_US',256,'Haute-Savoie'),('en_US',257,'Paris'),('en_US',258,'Seine-Maritime'),('en_US',259,'Seine-et-Marne'),('en_US',260,'Yvelines'),('en_US',261,'Deux-Sèvres'),('en_US',262,'Somme'),('en_US',263,'Tarn'),('en_US',264,'Tarn-et-Garonne'),('en_US',265,'Var'),('en_US',266,'Vaucluse'),('en_US',267,'Vendée'),('en_US',268,'Vienne'),('en_US',269,'Haute-Vienne'),('en_US',270,'Vosges'),('en_US',271,'Yonne'),('en_US',272,'Territoire-de-Belfort'),('en_US',273,'Essonne'),('en_US',274,'Hauts-de-Seine'),('en_US',275,'Seine-Saint-Denis'),('en_US',276,'Val-de-Marne'),('en_US',277,'Val-d\'Oise'),('en_US',278,'Alba'),('en_US',279,'Arad'),('en_US',280,'Argeş'),('en_US',281,'Bacău'),('en_US',282,'Bihor'),('en_US',283,'Bistriţa-Năsăud'),('en_US',284,'Botoşani'),('en_US',285,'Braşov'),('en_US',286,'Brăila'),('en_US',287,'Bucureşti'),('en_US',288,'Buzău'),('en_US',289,'Caraş-Severin'),('en_US',290,'Călăraşi'),('en_US',291,'Cluj'),('en_US',292,'Constanţa'),('en_US',293,'Covasna'),('en_US',294,'Dâmboviţa'),('en_US',295,'Dolj'),('en_US',296,'Galaţi'),('en_US',297,'Giurgiu'),('en_US',298,'Gorj'),('en_US',299,'Harghita'),('en_US',300,'Hunedoara'),('en_US',301,'Ialomiţa'),('en_US',302,'Iaşi'),('en_US',303,'Ilfov'),('en_US',304,'Maramureş'),('en_US',305,'Mehedinţi'),('en_US',306,'Mureş'),('en_US',307,'Neamţ'),('en_US',308,'Olt'),('en_US',309,'Prahova'),('en_US',310,'Satu-Mare'),('en_US',311,'Sălaj'),('en_US',312,'Sibiu'),('en_US',313,'Suceava'),('en_US',314,'Teleorman'),('en_US',315,'Timiş'),('en_US',316,'Tulcea'),('en_US',317,'Vaslui'),('en_US',318,'Vâlcea'),('en_US',319,'Vrancea'),('en_US',320,'Lappi'),('en_US',321,'Pohjois-Pohjanmaa'),('en_US',322,'Kainuu'),('en_US',323,'Pohjois-Karjala'),('en_US',324,'Pohjois-Savo'),('en_US',325,'Etelä-Savo'),('en_US',326,'Etelä-Pohjanmaa'),('en_US',327,'Pohjanmaa'),('en_US',328,'Pirkanmaa'),('en_US',329,'Satakunta'),('en_US',330,'Keski-Pohjanmaa'),('en_US',331,'Keski-Suomi'),('en_US',332,'Varsinais-Suomi'),('en_US',333,'Etelä-Karjala'),('en_US',334,'Päijät-Häme'),('en_US',335,'Kanta-Häme'),('en_US',336,'Uusimaa'),('en_US',337,'Itä-Uusimaa'),('en_US',338,'Kymenlaakso'),('en_US',339,'Ahvenanmaa'),('en_US',340,'Harjumaa'),('en_US',341,'Hiiumaa'),('en_US',342,'Ida-Virumaa'),('en_US',343,'Jõgevamaa'),('en_US',344,'Järvamaa'),('en_US',345,'Läänemaa'),('en_US',346,'Lääne-Virumaa'),('en_US',347,'Põlvamaa'),('en_US',348,'Pärnumaa'),('en_US',349,'Raplamaa'),('en_US',350,'Saaremaa'),('en_US',351,'Tartumaa'),('en_US',352,'Valgamaa'),('en_US',353,'Viljandimaa'),('en_US',354,'Võrumaa'),('en_US',355,'Daugavpils'),('en_US',356,'Jelgava'),('en_US',357,'Jēkabpils'),('en_US',358,'Jūrmala'),('en_US',359,'Liepāja'),('en_US',360,'Liepājas novads'),('en_US',361,'Rēzekne'),('en_US',362,'Rīga'),('en_US',363,'Rīgas novads'),('en_US',364,'Valmiera'),('en_US',365,'Ventspils'),('en_US',366,'Aglonas novads'),('en_US',367,'Aizkraukles novads'),('en_US',368,'Aizputes novads'),('en_US',369,'Aknīstes novads'),('en_US',370,'Alojas novads'),('en_US',371,'Alsungas novads'),('en_US',372,'Alūksnes novads'),('en_US',373,'Amatas novads'),('en_US',374,'Apes novads'),('en_US',375,'Auces novads'),('en_US',376,'Babītes novads'),('en_US',377,'Baldones novads'),('en_US',378,'Baltinavas novads'),('en_US',379,'Balvu novads'),('en_US',380,'Bauskas novads'),('en_US',381,'Beverīnas novads'),('en_US',382,'Brocēnu novads'),('en_US',383,'Burtnieku novads'),('en_US',384,'Carnikavas novads'),('en_US',385,'Cesvaines novads'),('en_US',386,'Ciblas novads'),('en_US',387,'Cēsu novads'),('en_US',388,'Dagdas novads'),('en_US',389,'Daugavpils novads'),('en_US',390,'Dobeles novads'),('en_US',391,'Dundagas novads'),('en_US',392,'Durbes novads'),('en_US',393,'Engures novads'),('en_US',394,'Garkalnes novads'),('en_US',395,'Grobiņas novads'),('en_US',396,'Gulbenes novads'),('en_US',397,'Iecavas novads'),('en_US',398,'Ikšķiles novads'),('en_US',399,'Ilūkstes novads'),('en_US',400,'Inčukalna novads'),('en_US',401,'Jaunjelgavas novads'),('en_US',402,'Jaunpiebalgas novads'),('en_US',403,'Jaunpils novads'),('en_US',404,'Jelgavas novads'),('en_US',405,'Jēkabpils novads'),('en_US',406,'Kandavas novads'),('en_US',407,'Kokneses novads'),('en_US',408,'Krimuldas novads'),('en_US',409,'Krustpils novads'),('en_US',410,'Krāslavas novads'),('en_US',411,'Kuldīgas novads'),('en_US',412,'Kārsavas novads'),('en_US',413,'Lielvārdes novads'),('en_US',414,'Limbažu novads'),('en_US',415,'Lubānas novads'),('en_US',416,'Ludzas novads'),('en_US',417,'Līgatnes novads'),('en_US',418,'Līvānu novads'),('en_US',419,'Madonas novads'),('en_US',420,'Mazsalacas novads'),('en_US',421,'Mālpils novads'),('en_US',422,'Mārupes novads'),('en_US',423,'Naukšēnu novads'),('en_US',424,'Neretas novads'),('en_US',425,'Nīcas novads'),('en_US',426,'Ogres novads'),('en_US',427,'Olaines novads'),('en_US',428,'Ozolnieku novads'),('en_US',429,'Preiļu novads'),('en_US',430,'Priekules novads'),('en_US',431,'Priekuļu novads'),('en_US',432,'Pārgaujas novads'),('en_US',433,'Pāvilostas novads'),('en_US',434,'Pļaviņu novads'),('en_US',435,'Raunas novads'),('en_US',436,'Riebiņu novads'),('en_US',437,'Rojas novads'),('en_US',438,'Ropažu novads'),('en_US',439,'Rucavas novads'),('en_US',440,'Rugāju novads'),('en_US',441,'Rundāles novads'),('en_US',442,'Rēzeknes novads'),('en_US',443,'Rūjienas novads'),('en_US',444,'Salacgrīvas novads'),('en_US',445,'Salas novads'),('en_US',446,'Salaspils novads'),('en_US',447,'Saldus novads'),('en_US',448,'Saulkrastu novads'),('en_US',449,'Siguldas novads'),('en_US',450,'Skrundas novads'),('en_US',451,'Skrīveru novads'),('en_US',452,'Smiltenes novads'),('en_US',453,'Stopiņu novads'),('en_US',454,'Strenču novads'),('en_US',455,'Sējas novads'),('en_US',456,'Talsu novads'),('en_US',457,'Tukuma novads'),('en_US',458,'Tērvetes novads'),('en_US',459,'Vaiņodes novads'),('en_US',460,'Valkas novads'),('en_US',461,'Valmieras novads'),('en_US',462,'Varakļānu novads'),('en_US',463,'Vecpiebalgas novads'),('en_US',464,'Vecumnieku novads'),('en_US',465,'Ventspils novads'),('en_US',466,'Viesītes novads'),('en_US',467,'Viļakas novads'),('en_US',468,'Viļānu novads'),('en_US',469,'Vārkavas novads'),('en_US',470,'Zilupes novads'),('en_US',471,'Ādažu novads'),('en_US',472,'Ērgļu novads'),('en_US',473,'Ķeguma novads'),('en_US',474,'Ķekavas novads'),('en_US',475,'Alytaus Apskritis'),('en_US',476,'Kauno Apskritis'),('en_US',477,'Klaipėdos Apskritis'),('en_US',478,'Marijampolės Apskritis'),('en_US',479,'Panevėžio Apskritis'),('en_US',480,'Šiaulių Apskritis'),('en_US',481,'Tauragės Apskritis'),('en_US',482,'Telšių Apskritis'),('en_US',483,'Utenos Apskritis'),('en_US',484,'Vilniaus Apskritis'),('en_US',485,'Acre'),('en_US',486,'Alagoas'),('en_US',487,'Amapá'),('en_US',488,'Amazonas'),('en_US',489,'Bahia'),('en_US',490,'Ceará'),('en_US',491,'Espírito Santo'),('en_US',492,'Goiás'),('en_US',493,'Maranhão'),('en_US',494,'Mato Grosso'),('en_US',495,'Mato Grosso do Sul'),('en_US',496,'Minas Gerais'),('en_US',497,'Pará'),('en_US',498,'Paraíba'),('en_US',499,'Paraná'),('en_US',500,'Pernambuco'),('en_US',501,'Piauí'),('en_US',502,'Rio de Janeiro'),('en_US',503,'Rio Grande do Norte'),('en_US',504,'Rio Grande do Sul'),('en_US',505,'Rondônia'),('en_US',506,'Roraima'),('en_US',507,'Santa Catarina'),('en_US',508,'São Paulo'),('en_US',509,'Sergipe'),('en_US',510,'Tocantins'),('en_US',511,'Distrito Federal'),('en_US',512,'Berat'),('en_US',513,'Dibër'),('en_US',514,'Durrës'),('en_US',515,'Elbasan'),('en_US',516,'Fier'),('en_US',517,'Gjirokastër'),('en_US',518,'Korçë'),('en_US',519,'Kukës'),('en_US',520,'Lezhë'),('en_US',521,'Shkodër'),('en_US',522,'Tiranë'),('en_US',523,'Vlorë'),('en_US',524,'Ciudad Autónoma de Buenos Aires'),('en_US',525,'Buenos Aires'),('en_US',526,'Catamarca'),('en_US',527,'Chaco'),('en_US',528,'Chubut'),('en_US',529,'Córdoba'),('en_US',530,'Corrientes'),('en_US',531,'Entre Ríos'),('en_US',532,'Formosa'),('en_US',533,'Jujuy'),('en_US',534,'La Pampa'),('en_US',535,'La Rioja'),('en_US',536,'Mendoza'),('en_US',537,'Misiones'),('en_US',538,'Neuquén'),('en_US',539,'Río Negro'),('en_US',540,'Salta'),('en_US',541,'San Juan'),('en_US',542,'San Luis'),('en_US',543,'Santa Cruz'),('en_US',544,'Santa Fe'),('en_US',545,'Santiago del Estero'),('en_US',546,'Tierra del Fuego'),('en_US',547,'Tucumán'),('en_US',548,'Zagrebačka županija'),('en_US',549,'Krapinsko-zagorska županija'),('en_US',550,'Sisačko-moslavačka županija'),('en_US',551,'Karlovačka županija'),('en_US',552,'Varaždinska županija'),('en_US',553,'Koprivničko-križevačka županija'),('en_US',554,'Bjelovarsko-bilogorska županija'),('en_US',555,'Primorsko-goranska županija'),('en_US',556,'Ličko-senjska županija'),('en_US',557,'Virovitičko-podravska županija'),('en_US',558,'Požeško-slavonska županija'),('en_US',559,'Brodsko-posavska županija'),('en_US',560,'Zadarska županija'),('en_US',561,'Osječko-baranjska županija'),('en_US',562,'Šibensko-kninska županija'),('en_US',563,'Vukovarsko-srijemska županija'),('en_US',564,'Splitsko-dalmatinska županija'),('en_US',565,'Istarska županija'),('en_US',566,'Dubrovačko-neretvanska županija'),('en_US',567,'Međimurska županija'),('en_US',568,'Grad Zagreb'),('en_US',569,'Andaman and Nicobar Islands'),('en_US',570,'Andhra Pradesh'),('en_US',571,'Arunachal Pradesh'),('en_US',572,'Assam'),('en_US',573,'Bihar'),('en_US',574,'Chandigarh'),('en_US',575,'Chhattisgarh'),('en_US',576,'Dadra and Nagar Haveli'),('en_US',577,'Daman and Diu'),('en_US',578,'Delhi'),('en_US',579,'Goa'),('en_US',580,'Gujarat'),('en_US',581,'Haryana'),('en_US',582,'Himachal Pradesh'),('en_US',583,'Jammu and Kashmir'),('en_US',584,'Jharkhand'),('en_US',585,'Karnataka'),('en_US',586,'Kerala'),('en_US',587,'Lakshadweep'),('en_US',588,'Madhya Pradesh'),('en_US',589,'Maharashtra'),('en_US',590,'Manipur'),('en_US',591,'Meghalaya'),('en_US',592,'Mizoram'),('en_US',593,'Nagaland'),('en_US',594,'Odisha'),('en_US',595,'Puducherry'),('en_US',596,'Punjab'),('en_US',597,'Rajasthan'),('en_US',598,'Sikkim'),('en_US',599,'Tamil Nadu'),('en_US',600,'Telangana'),('en_US',601,'Tripura'),('en_US',602,'Uttar Pradesh'),('en_US',603,'Uttarakhand'),('en_US',604,'West Bengal'),('en_US',605,'Australian Capital Territory'),('en_US',606,'New South Wales'),('en_US',607,'Victoria'),('en_US',608,'Queensland'),('en_US',609,'South Australia'),('en_US',610,'Tasmania'),('en_US',611,'Western Australia'),('en_US',612,'Northern Territory'),('en_US',613,'Bresckaja voblasć'),('en_US',614,'Homieĺskaja voblasć'),('en_US',615,'Horad Minsk'),('en_US',616,'Hrodzienskaja voblasć'),('en_US',617,'Mahilioŭskaja voblasć'),('en_US',618,'Minskaja voblasć'),('en_US',619,'Viciebskaja voblasć'),('en_US',620,'Antwerpen'),('en_US',621,'Brabant wallon'),('en_US',622,'Brussels-Capital Region'),('en_US',623,'Hainaut'),('en_US',624,'Limburg'),('en_US',625,'Liège'),('en_US',626,'Luxembourg'),('en_US',627,'Namur'),('en_US',628,'Oost-Vlaanderen'),('en_US',629,'Vlaams-Brabant'),('en_US',630,'West-Vlaanderen'),('en_US',631,'Cochabamba'),('en_US',632,'Chuquisaca'),('en_US',633,'El Beni'),('en_US',634,'La Paz'),('en_US',635,'Oruro'),('en_US',636,'Pando'),('en_US',637,'Potosí'),('en_US',638,'Santa Cruz'),('en_US',639,'Tarija'),('en_US',640,'Blagoevgrad'),('en_US',641,'Burgas'),('en_US',642,'Varna'),('en_US',643,'Veliko Tarnovo'),('en_US',644,'Vidin'),('en_US',645,'Vratsa'),('en_US',646,'Gabrovo'),('en_US',647,'Dobrich'),('en_US',648,'Kardzhali'),('en_US',649,'Kyustendil'),('en_US',650,'Lovech'),('en_US',651,'Montana'),('en_US',652,'Pazardzhik'),('en_US',653,'Pernik'),('en_US',654,'Pleven'),('en_US',655,'Plovdiv'),('en_US',656,'Razgrad'),('en_US',657,'Ruse'),('en_US',658,'Silistra'),('en_US',659,'Sliven'),('en_US',660,'Smolyan'),('en_US',661,'Sofia City'),('en_US',662,'Sofia Province'),('en_US',663,'Stara Zagora'),('en_US',664,'Targovishte'),('en_US',665,'Haskovo'),('en_US',666,'Shumen'),('en_US',667,'Yambol'),('en_US',668,'Aisén del General Carlos Ibañez del Campo'),('en_US',669,'Antofagasta'),('en_US',670,'Arica y Parinacota'),('en_US',671,'La Araucanía'),('en_US',672,'Atacama'),('en_US',673,'Biobío'),('en_US',674,'Coquimbo'),('en_US',675,'Libertador General Bernardo O\'Higgins'),('en_US',676,'Los Lagos'),('en_US',677,'Los Ríos'),('en_US',678,'Magallanes'),('en_US',679,'Maule'),('en_US',680,'Ñuble'),('en_US',681,'Región Metropolitana de Santiago'),('en_US',682,'Tarapacá'),('en_US',683,'Valparaíso'),('en_US',684,'Anhui Sheng'),('en_US',685,'Beijing Shi'),('en_US',686,'Chongqing Shi'),('en_US',687,'Fujian Sheng'),('en_US',688,'Gansu Sheng'),('en_US',689,'Guangdong Sheng'),('en_US',690,'Guangxi Zhuangzu Zizhiqu'),('en_US',691,'Guizhou Sheng'),('en_US',692,'Hainan Sheng'),('en_US',693,'Hebei Sheng'),('en_US',694,'Heilongjiang Sheng'),('en_US',695,'Henan Sheng'),('en_US',696,'Hong Kong SAR'),('en_US',697,'Hubei Sheng'),('en_US',698,'Hunan Sheng'),('en_US',699,'Jiangsu Sheng'),('en_US',700,'Jiangxi Sheng'),('en_US',701,'Jilin Sheng'),('en_US',702,'Liaoning Sheng'),('en_US',703,'Macao SAR'),('en_US',704,'Nei Mongol Zizhiqu'),('en_US',705,'Ningxia Huizi Zizhiqu'),('en_US',706,'Qinghai Sheng'),('en_US',707,'Shaanxi Sheng'),('en_US',708,'Shandong Sheng'),('en_US',709,'Shanghai Shi'),('en_US',710,'Shanxi Sheng'),('en_US',711,'Sichuan Sheng'),('en_US',712,'Taiwan Sheng'),('en_US',713,'Tianjin Shi'),('en_US',714,'Xinjiang Uygur Zizhiqu'),('en_US',715,'Xizang Zizhiqu'),('en_US',716,'Yunnan Sheng'),('en_US',717,'Zhejiang Sheng'),('en_US',718,'Amazonas'),('en_US',719,'Antioquia'),('en_US',720,'Arauca'),('en_US',721,'Atlántico'),('en_US',722,'Bolívar'),('en_US',723,'Boyacá'),('en_US',724,'Caldas'),('en_US',725,'Caquetá'),('en_US',726,'Casanare'),('en_US',727,'Cauca'),('en_US',728,'Cesar'),('en_US',729,'Chocó'),('en_US',730,'Córdoba'),('en_US',731,'Cundinamarca'),('en_US',732,'Guainía'),('en_US',733,'Guaviare'),('en_US',734,'Huila'),('en_US',735,'La Guajira'),('en_US',736,'Magdalena'),('en_US',737,'Meta'),('en_US',738,'Nariño'),('en_US',739,'Norte de Santander'),('en_US',740,'Putumayo'),('en_US',741,'Quindío'),('en_US',742,'Risaralda'),('en_US',743,'San Andrés y Providencia'),('en_US',744,'Santander'),('en_US',745,'Sucre'),('en_US',746,'Tolima'),('en_US',747,'Valle del Cauca'),('en_US',748,'Vaupés'),('en_US',749,'Vichada'),('en_US',750,'Hovedstaden'),('en_US',751,'Midtjylland'),('en_US',752,'Nordjylland'),('en_US',753,'Sjælland'),('en_US',754,'Syddanmark'),('en_US',755,'Azuay'),('en_US',756,'Bolívar'),('en_US',757,'Cañar'),('en_US',758,'Carchi'),('en_US',759,'Chimborazo'),('en_US',760,'Cotopaxi'),('en_US',761,'El Oro'),('en_US',762,'Esmeraldas'),('en_US',763,'Galápagos'),('en_US',764,'Guayas'),('en_US',765,'Imbabura'),('en_US',766,'Loja'),('en_US',767,'Los Ríos'),('en_US',768,'Manabí'),('en_US',769,'Morona Santiago'),('en_US',770,'Napo'),('en_US',771,'Orellana'),('en_US',772,'Pastaza'),('en_US',773,'Pichincha'),('en_US',774,'Santa Elena'),('en_US',775,'Santo Domingo de los Tsáchilas'),('en_US',776,'Sucumbíos'),('en_US',777,'Tungurahua'),('en_US',778,'Zamora Chinchipe'),('en_US',779,'Anatolikí Makedonía kai Thráki'),('en_US',780,'Attikí'),('en_US',781,'Dytikí Elláda'),('en_US',782,'Dytikí Makedonía'),('en_US',783,'Ionía Nísia'),('en_US',784,'Ípeiros'),('en_US',785,'Kentrikí Makedonía'),('en_US',786,'Kríti'),('en_US',787,'Nótio Aigaío'),('en_US',788,'Pelopónnisos'),('en_US',789,'Stereá Elláda'),('en_US',790,'Thessalía'),('en_US',791,'Vóreio Aigaío'),('en_US',792,'Ágion Óros'),('en_US',793,'Barima-Waini'),('en_US',794,'Cuyuni-Mazaruni'),('en_US',795,'Demerara-Mahaica'),('en_US',796,'East Berbice-Corentyne'),('en_US',797,'Essequibo Islands-West Demerara'),('en_US',798,'Mahaica-Berbice'),('en_US',799,'Pomeroon-Supenaam'),('en_US',800,'Potaro-Siparuni'),('en_US',801,'Upper Demerara-Berbice'),('en_US',802,'Upper Takutu-Upper Essequibo'),('en_US',803,'Höfuðborgarsvæði'),('en_US',804,'Suðurnes'),('en_US',805,'Vesturland'),('en_US',806,'Vestfirðir'),('en_US',807,'Norðurland vestra'),('en_US',808,'Norðurland eystra'),('en_US',809,'Austurland'),('en_US',810,'Suðurland'),('en_US',811,'Agrigento'),('en_US',812,'Alessandria'),('en_US',813,'Ancona'),('en_US',814,'Aosta'),('en_US',815,'L\'Aquila'),('en_US',816,'Arezzo'),('en_US',817,'Ascoli-Piceno'),('en_US',818,'Asti'),('en_US',819,'Avellino'),('en_US',820,'Bari'),('en_US',821,'Barletta-Andria-Trani'),('en_US',822,'Belluno'),('en_US',823,'Benevento'),('en_US',824,'Bergamo'),('en_US',825,'Biella'),('en_US',826,'Bologna'),('en_US',827,'Bolzano'),('en_US',828,'Brescia'),('en_US',829,'Brindisi'),('en_US',830,'Cagliari'),('en_US',831,'Caltanissetta'),('en_US',832,'Campobasso'),('en_US',833,'Carbonia Iglesias'),('en_US',834,'Caserta'),('en_US',835,'Catania'),('en_US',836,'Catanzaro'),('en_US',837,'Chieti'),('en_US',838,'Como'),('en_US',839,'Cosenza'),('en_US',840,'Cremona'),('en_US',841,'Crotone'),('en_US',842,'Cuneo'),('en_US',843,'Enna'),('en_US',844,'Fermo'),('en_US',845,'Ferrara'),('en_US',846,'Firenze'),('en_US',847,'Foggia'),('en_US',848,'Forli-Cesena'),('en_US',849,'Frosinone'),('en_US',850,'Genova'),('en_US',851,'Gorizia'),('en_US',852,'Grosseto'),('en_US',853,'Imperia'),('en_US',854,'Isernia'),('en_US',855,'La-Spezia'),('en_US',856,'Latina'),('en_US',857,'Lecce'),('en_US',858,'Lecco'),('en_US',859,'Livorno'),('en_US',860,'Lodi'),('en_US',861,'Lucca'),('en_US',862,'Macerata'),('en_US',863,'Mantova'),('en_US',864,'Massa-Carrara'),('en_US',865,'Matera'),('en_US',866,'Medio Campidano'),('en_US',867,'Messina'),('en_US',868,'Milano'),('en_US',869,'Modena'),('en_US',870,'Monza-Brianza'),('en_US',871,'Napoli'),('en_US',872,'Novara'),('en_US',873,'Nuoro'),('en_US',874,'Ogliastra'),('en_US',875,'Olbia Tempio'),('en_US',876,'Oristano'),('en_US',877,'Padova'),('en_US',878,'Palermo'),('en_US',879,'Parma'),('en_US',880,'Pavia'),('en_US',881,'Perugia'),('en_US',882,'Pesaro-Urbino'),('en_US',883,'Pescara'),('en_US',884,'Piacenza'),('en_US',885,'Pisa'),('en_US',886,'Pistoia'),('en_US',887,'Pordenone'),('en_US',888,'Potenza'),('en_US',889,'Prato'),('en_US',890,'Ragusa'),('en_US',891,'Ravenna'),('en_US',892,'Reggio-Calabria'),('en_US',893,'Reggio-Emilia'),('en_US',894,'Rieti'),('en_US',895,'Rimini'),('en_US',896,'Roma'),('en_US',897,'Rovigo'),('en_US',898,'Salerno'),('en_US',899,'Sassari'),('en_US',900,'Savona'),('en_US',901,'Siena'),('en_US',902,'Siracusa'),('en_US',903,'Sondrio'),('en_US',904,'Taranto'),('en_US',905,'Teramo'),('en_US',906,'Terni'),('en_US',907,'Torino'),('en_US',908,'Trapani'),('en_US',909,'Trento'),('en_US',910,'Treviso'),('en_US',911,'Trieste'),('en_US',912,'Udine'),('en_US',913,'Varese'),('en_US',914,'Venezia'),('en_US',915,'Verbania'),('en_US',916,'Vercelli'),('en_US',917,'Verona'),('en_US',918,'Vibo-Valentia'),('en_US',919,'Vicenza'),('en_US',920,'Viterbo'),('en_US',921,'Aguascalientes'),('en_US',922,'Baja California'),('en_US',923,'Baja California Sur'),('en_US',924,'Campeche'),('en_US',925,'Chiapas'),('en_US',926,'Chihuahua'),('en_US',927,'Ciudad de México'),('en_US',928,'Coahuila'),('en_US',929,'Colima'),('en_US',930,'Durango'),('en_US',931,'Estado de México'),('en_US',932,'Guanajuato'),('en_US',933,'Guerrero'),('en_US',934,'Hidalgo'),('en_US',935,'Jalisco'),('en_US',936,'Michoacán'),('en_US',937,'Morelos'),('en_US',938,'Nayarit'),('en_US',939,'Nuevo León'),('en_US',940,'Oaxaca'),('en_US',941,'Puebla'),('en_US',942,'Querétaro'),('en_US',943,'Quintana Roo'),('en_US',944,'San Luis Potosí'),('en_US',945,'Sinaloa'),('en_US',946,'Sonora'),('en_US',947,'Tabasco'),('en_US',948,'Tamaulipas'),('en_US',949,'Tlaxcala'),('en_US',950,'Veracruz'),('en_US',951,'Yucatán'),('en_US',952,'Zacatecas'),('en_US',953,'Asunción'),('en_US',954,'Alto Paraguay'),('en_US',955,'Alto Paraná'),('en_US',956,'Amambay'),('en_US',957,'Boquerón'),('en_US',958,'Caaguazú'),('en_US',959,'Caazapá'),('en_US',960,'Canindeyú'),('en_US',961,'Central'),('en_US',962,'Concepción'),('en_US',963,'Cordillera'),('en_US',964,'Guairá'),('en_US',965,'Itapúa'),('en_US',966,'Misiones'),('en_US',967,'Ñeembucú'),('en_US',968,'Paraguarí'),('en_US',969,'Presidente Hayes'),('en_US',970,'San Pedro'),('en_US',971,'Municipalidad Metropolitana de Lima'),('en_US',972,'Amazonas'),('en_US',973,'Ancash'),('en_US',974,'Apurímac'),('en_US',975,'Arequipa'),('en_US',976,'Ayacucho'),('en_US',977,'Cajamarca'),('en_US',978,'Cusco'),('en_US',979,'El Callao'),('en_US',980,'Huancavelica'),('en_US',981,'Huánuco'),('en_US',982,'Ica'),('en_US',983,'Junín'),('en_US',984,'La Libertad'),('en_US',985,'Lambayeque'),('en_US',986,'Lima'),('en_US',987,'Loreto'),('en_US',988,'Madre de Dios'),('en_US',989,'Moquegua'),('en_US',990,'Pasco'),('en_US',991,'Piura'),('en_US',992,'Puno'),('en_US',993,'San Martín'),('en_US',994,'Tacna'),('en_US',995,'Tumbes'),('en_US',996,'Ucayali'),('en_US',997,'dolnośląskie'),('en_US',998,'kujawsko-pomorskie'),('en_US',999,'lubelskie'),('en_US',1000,'lubuskie'),('en_US',1001,'łódzkie'),('en_US',1002,'małopolskie'),('en_US',1003,'mazowieckie'),('en_US',1004,'opolskie'),('en_US',1005,'podkarpackie'),('en_US',1006,'podlaskie'),('en_US',1007,'pomorskie'),('en_US',1008,'śląskie'),('en_US',1009,'świętokrzyskie'),('en_US',1010,'warmińsko-mazurskie'),('en_US',1011,'wielkopolskie'),('en_US',1012,'zachodniopomorskie'),('en_US',1013,'Aveiro'),('en_US',1014,'Beja'),('en_US',1015,'Braga'),('en_US',1016,'Bragança'),('en_US',1017,'Castelo Branco'),('en_US',1018,'Coimbra'),('en_US',1019,'Évora'),('en_US',1020,'Faro'),('en_US',1021,'Guarda'),('en_US',1022,'Leiria'),('en_US',1023,'Lisboa'),('en_US',1024,'Portalegre'),('en_US',1025,'Porto'),('en_US',1026,'Santarém'),('en_US',1027,'Setúbal'),('en_US',1028,'Viana do Castelo'),('en_US',1029,'Vila Real'),('en_US',1030,'Viseu'),('en_US',1031,'Região Autónoma dos Açores'),('en_US',1032,'Região Autónoma da Madeira'),('en_US',1033,'Brokopondo'),('en_US',1034,'Commewijne'),('en_US',1035,'Coronie'),('en_US',1036,'Marowijne'),('en_US',1037,'Nickerie'),('en_US',1038,'Para'),('en_US',1039,'Paramaribo'),('en_US',1040,'Saramacca'),('en_US',1041,'Sipaliwini'),('en_US',1042,'Wanica'),('en_US',1043,'Blekinge län'),('en_US',1044,'Dalarnas län'),('en_US',1045,'Gotlands län'),('en_US',1046,'Gävleborgs län'),('en_US',1047,'Hallands län'),('en_US',1048,'Jämtlands län'),('en_US',1049,'Jönköpings län'),('en_US',1050,'Kalmar län'),('en_US',1051,'Kronobergs län'),('en_US',1052,'Norrbottens län'),('en_US',1053,'Skåne län'),('en_US',1054,'Stockholms län'),('en_US',1055,'Södermanlands län'),('en_US',1056,'Uppsala län'),('en_US',1057,'Värmlands län'),('en_US',1058,'Västerbottens län'),('en_US',1059,'Västernorrlands län'),('en_US',1060,'Västmanlands län'),('en_US',1061,'Västra Götalands län'),('en_US',1062,'Örebro län'),('en_US',1063,'Östergötlands län'),('en_US',1064,'Artigas'),('en_US',1065,'Canelones'),('en_US',1066,'Cerro Largo'),('en_US',1067,'Colonia'),('en_US',1068,'Durazno'),('en_US',1069,'Flores'),('en_US',1070,'Florida'),('en_US',1071,'Lavalleja'),('en_US',1072,'Maldonado'),('en_US',1073,'Montevideo'),('en_US',1074,'Paysandu'),('en_US',1075,'Río Negro'),('en_US',1076,'Rivera'),('en_US',1077,'Rocha'),('en_US',1078,'Salto'),('en_US',1079,'San José'),('en_US',1080,'Soriano'),('en_US',1081,'Tacuarembó'),('en_US',1082,'Treinta y Tres'),('en_US',1083,'Dependencias Federales'),('en_US',1084,'Distrito Capital'),('en_US',1085,'Amazonas'),('en_US',1086,'Anzoátegui'),('en_US',1087,'Apure'),('en_US',1088,'Aragua'),('en_US',1089,'Barinas'),('en_US',1090,'Bolívar'),('en_US',1091,'Carabobo'),('en_US',1092,'Cojedes'),('en_US',1093,'Delta Amacuro'),('en_US',1094,'Falcón'),('en_US',1095,'Guárico'),('en_US',1096,'Lara'),('en_US',1097,'Mérida'),('en_US',1098,'Miranda'),('en_US',1099,'Monagas'),('en_US',1100,'Nueva Esparta'),('en_US',1101,'Portuguesa'),('en_US',1102,'Sucre'),('en_US',1103,'Táchira'),('en_US',1104,'Trujillo'),('en_US',1105,'Vargas'),('en_US',1106,'Yaracuy'),('en_US',1107,'Zulia');
/*!40000 ALTER TABLE `directory_country_region_name` ENABLE KEYS */;

--
-- Table structure for table `directory_currency_rate`
--

DROP TABLE IF EXISTS `directory_currency_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `directory_currency_rate` (
  `currency_from` varchar(3) NOT NULL COMMENT 'Currency Code Convert From',
  `currency_to` varchar(3) NOT NULL COMMENT 'Currency Code Convert To',
  `rate` decimal(24,12) NOT NULL DEFAULT 0.000000000000 COMMENT 'Currency Conversion Rate',
  PRIMARY KEY (`currency_from`,`currency_to`),
  KEY `DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Currency Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_currency_rate`
--

/*!40000 ALTER TABLE `directory_currency_rate` DISABLE KEYS */;
INSERT INTO `directory_currency_rate` VALUES ('EUR','EUR',1.000000000000),('EUR','USD',1.415000000000),('USD','EUR',0.706700000000),('USD','USD',1.000000000000);
/*!40000 ALTER TABLE `directory_currency_rate` ENABLE KEYS */;

--
-- Table structure for table `downloadable_link`
--

DROP TABLE IF EXISTS `downloadable_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort order',
  `number_of_downloads` int(11) DEFAULT NULL COMMENT 'Number of downloads',
  `is_shareable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Shareable flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(20) DEFAULT NULL COMMENT 'Link Type',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample Url',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample File',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  PRIMARY KEY (`link_id`),
  KEY `DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`),
  CONSTRAINT `DOWNLOADABLE_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link`
--

/*!40000 ALTER TABLE `downloadable_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link` ENABLE KEYS */;

--
-- Table structure for table `downloadable_link_price`
--

DROP TABLE IF EXISTS `downloadable_link_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_link_price` (
  `price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Price ID',
  `link_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Link ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price',
  PRIMARY KEY (`price_id`),
  KEY `DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`),
  KEY `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `DOWNLOADABLE_LINK_PRICE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_price`
--

/*!40000 ALTER TABLE `downloadable_link_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_price` ENABLE KEYS */;

--
-- Table structure for table `downloadable_link_purchased`
--

DROP TABLE IF EXISTS `downloadable_link_purchased`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_link_purchased` (
  `purchased_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Purchased ID',
  `order_id` int(10) unsigned DEFAULT 0 COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_item_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Order Item ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date of creation',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of modification',
  `customer_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product name',
  `product_sku` varchar(255) DEFAULT NULL COMMENT 'Product sku',
  `link_section_title` varchar(255) DEFAULT NULL COMMENT 'Link_section_title',
  PRIMARY KEY (`purchased_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `DL_LNK_PURCHASED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_purchased`
--

/*!40000 ALTER TABLE `downloadable_link_purchased` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_purchased` ENABLE KEYS */;

--
-- Table structure for table `downloadable_link_purchased_item`
--

DROP TABLE IF EXISTS `downloadable_link_purchased_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_link_purchased_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `purchased_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Purchased ID',
  `order_item_id` int(10) unsigned DEFAULT 0 COMMENT 'Order Item ID',
  `product_id` int(10) unsigned DEFAULT 0 COMMENT 'Product ID',
  `link_hash` varchar(255) DEFAULT NULL COMMENT 'Link hash',
  `number_of_downloads_bought` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of downloads bought',
  `number_of_downloads_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of downloads used',
  `link_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Link ID',
  `link_title` varchar(255) DEFAULT NULL COMMENT 'Link Title',
  `is_shareable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Shareable Flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(255) DEFAULT NULL COMMENT 'Link Type',
  `status` varchar(50) DEFAULT NULL COMMENT 'Status',
  `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 (`item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`),
  CONSTRAINT `DL_LNK_PURCHASED_ITEM_ORDER_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`order_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE SET NULL,
  CONSTRAINT `DL_LNK_PURCHASED_ITEM_PURCHASED_ID_DL_LNK_PURCHASED_PURCHASED_ID` FOREIGN KEY (`purchased_id`) REFERENCES `downloadable_link_purchased` (`purchased_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Item Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_purchased_item`
--

/*!40000 ALTER TABLE `downloadable_link_purchased_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_purchased_item` ENABLE KEYS */;

--
-- Table structure for table `downloadable_link_title`
--

DROP TABLE IF EXISTS `downloadable_link_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_link_title` (
  `title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `link_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Link ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`),
  KEY `DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `DOWNLOADABLE_LINK_TITLE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_LINK_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_title`
--

/*!40000 ALTER TABLE `downloadable_link_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_title` ENABLE KEYS */;

--
-- Table structure for table `downloadable_sample`
--

DROP TABLE IF EXISTS `downloadable_sample`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_sample` (
  `sample_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sample ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample URL',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample file',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`sample_id`),
  KEY `DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`),
  CONSTRAINT `DOWNLOADABLE_SAMPLE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_sample`
--

/*!40000 ALTER TABLE `downloadable_sample` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_sample` ENABLE KEYS */;

--
-- Table structure for table `downloadable_sample_title`
--

DROP TABLE IF EXISTS `downloadable_sample_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `downloadable_sample_title` (
  `title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `sample_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sample ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`),
  KEY `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `DL_SAMPLE_TTL_SAMPLE_ID_DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `downloadable_sample` (`sample_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_sample_title`
--

/*!40000 ALTER TABLE `downloadable_sample_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_sample_title` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute`
--

DROP TABLE IF EXISTS `eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_code` varchar(255) NOT NULL COMMENT 'Attribute Code',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `backend_model` varchar(255) DEFAULT NULL COMMENT 'Backend Model',
  `backend_type` varchar(8) NOT NULL DEFAULT 'static' COMMENT 'Backend Type',
  `backend_table` varchar(255) DEFAULT NULL COMMENT 'Backend Table',
  `frontend_model` varchar(255) DEFAULT NULL COMMENT 'Frontend Model',
  `frontend_input` varchar(50) DEFAULT NULL COMMENT 'Frontend Input',
  `frontend_label` varchar(255) DEFAULT NULL COMMENT 'Frontend Label',
  `frontend_class` varchar(255) DEFAULT NULL COMMENT 'Frontend Class',
  `source_model` varchar(255) DEFAULT NULL COMMENT 'Source Model',
  `is_required` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Defines Is Required',
  `is_user_defined` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Defines Is User Defined',
  `default_value` text DEFAULT NULL COMMENT 'Default Value',
  `is_unique` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Defines Is Unique',
  `note` varchar(255) DEFAULT NULL COMMENT 'Note',
  PRIMARY KEY (`attribute_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`),
  KEY `EAV_ATTRIBUTE_FRONTEND_INPUT_ENTITY_TYPE_ID_IS_USER_DEFINED` (`frontend_input`,`entity_type_id`,`is_user_defined`),
  CONSTRAINT `EAV_ATTRIBUTE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute`
--

/*!40000 ALTER TABLE `eav_attribute` DISABLE KEYS */;
INSERT INTO `eav_attribute` VALUES (1,1,'website_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website','static',NULL,NULL,'select','Associate to Website',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Website',1,0,NULL,0,NULL),(2,1,'store_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Store','static',NULL,NULL,'select','Create In',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Store',1,0,NULL,0,NULL),(3,1,'created_in',NULL,NULL,'static',NULL,NULL,'text','Created From',NULL,NULL,0,0,NULL,0,NULL),(4,1,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(5,1,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(6,1,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(7,1,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(8,1,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(9,1,'email',NULL,NULL,'static',NULL,NULL,'text','Email',NULL,NULL,1,0,NULL,0,NULL),(10,1,'group_id',NULL,NULL,'static',NULL,NULL,'select','Group',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Group',1,0,NULL,0,NULL),(11,1,'dob',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','static',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Date of Birth',NULL,NULL,0,0,NULL,0,NULL),(12,1,'password_hash',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password','static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(13,1,'rp_token',NULL,NULL,'static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(14,1,'rp_token_created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,0,0,NULL,0,NULL),(15,1,'default_billing',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Billing','static',NULL,NULL,'text','Default Billing Address',NULL,NULL,0,0,NULL,0,NULL),(16,1,'default_shipping',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Shipping','static',NULL,NULL,'text','Default Shipping Address',NULL,NULL,0,0,NULL,0,NULL),(17,1,'taxvat',NULL,NULL,'static',NULL,NULL,'text','Tax/VAT Number',NULL,NULL,0,0,NULL,0,NULL),(18,1,'confirmation',NULL,NULL,'static',NULL,NULL,'text','Is Confirmed',NULL,NULL,0,0,NULL,0,NULL),(19,1,'created_at',NULL,NULL,'static',NULL,NULL,'date','Created At',NULL,NULL,0,0,NULL,0,NULL),(20,1,'gender',NULL,NULL,'static',NULL,NULL,'select','Gender',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,0,NULL,0,NULL),(21,1,'disable_auto_group_change','Magento\\Customer\\Model\\Attribute','Magento\\Customer\\Model\\Attribute\\Backend\\Data\\Boolean','static',NULL,NULL,'boolean','Disable Automatic Group Change Based on VAT ID',NULL,NULL,0,0,NULL,0,NULL),(22,2,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(23,2,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(24,2,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(25,2,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(26,2,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(27,2,'company',NULL,NULL,'static',NULL,NULL,'text','Company',NULL,NULL,0,0,NULL,0,NULL),(28,2,'street',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\DefaultBackend','static',NULL,NULL,'multiline','Street Address',NULL,NULL,1,0,NULL,0,NULL),(29,2,'city',NULL,NULL,'static',NULL,NULL,'text','City',NULL,NULL,1,0,NULL,0,NULL),(30,2,'country_id',NULL,NULL,'static',NULL,NULL,'select','Country',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Country',1,0,NULL,0,NULL),(31,2,'region',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Backend\\Region','static',NULL,NULL,'text','State/Province',NULL,NULL,0,0,NULL,0,NULL),(32,2,'region_id',NULL,NULL,'static',NULL,NULL,'hidden','State/Province',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Region',0,0,NULL,0,NULL),(33,2,'postcode',NULL,NULL,'static',NULL,NULL,'text','Zip/Postal Code',NULL,NULL,0,0,NULL,0,NULL),(34,2,'telephone',NULL,NULL,'static',NULL,NULL,'text','Phone Number',NULL,NULL,1,0,NULL,0,NULL),(35,2,'fax',NULL,NULL,'static',NULL,NULL,'text','Fax',NULL,NULL,0,0,NULL,0,NULL),(36,2,'vat_id','Magento\\Customer\\Model\\Attribute',NULL,'static',NULL,NULL,'text','VAT Number',NULL,NULL,0,0,NULL,0,NULL),(37,2,'vat_is_valid',NULL,NULL,'static',NULL,NULL,'text','VAT number validity',NULL,NULL,0,0,NULL,0,NULL),(38,2,'vat_request_id',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request ID',NULL,NULL,0,0,NULL,0,NULL),(39,2,'vat_request_date',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request date',NULL,NULL,0,0,NULL,0,NULL),(40,2,'vat_request_success',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request success',NULL,NULL,0,0,NULL,0,NULL),(41,1,'updated_at',NULL,NULL,'static',NULL,NULL,'date','Updated At',NULL,NULL,0,0,NULL,0,NULL),(42,1,'failures_num',NULL,NULL,'static',NULL,NULL,'hidden','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(43,1,'first_failure',NULL,NULL,'static',NULL,NULL,'date','First Failure Date',NULL,NULL,0,0,NULL,0,NULL),(44,1,'lock_expires',NULL,NULL,'static',NULL,NULL,'date','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(45,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(46,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,NULL,0,NULL),(47,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(48,3,'image',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(49,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(50,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(51,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(52,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Mode',0,0,NULL,0,NULL),(53,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Page',0,0,NULL,0,NULL),(54,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(55,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(56,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(57,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(58,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(59,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(60,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(61,3,'custom_design_from','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Active From',NULL,NULL,0,0,NULL,0,NULL),(62,3,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(63,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(64,3,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(65,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(66,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(67,3,'available_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','text',NULL,NULL,'multiselect','Available Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(68,3,'default_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','varchar',NULL,NULL,'select','Default Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(69,3,'include_in_menu',NULL,NULL,'int',NULL,NULL,'select','Include in Navigation Menu',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,'1',0,NULL),(70,3,'custom_use_parent_settings',NULL,NULL,'int',NULL,NULL,'select','Use Parent Category Settings',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(71,3,'custom_apply_to_products',NULL,NULL,'int',NULL,NULL,'select','Apply To Products',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(72,3,'filter_price_range',NULL,NULL,'decimal',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(73,4,'name','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute',NULL,'varchar',NULL,NULL,'text','Product Name','validate-length maximum-length-255',NULL,1,0,NULL,0,NULL),(74,4,'sku','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku','static',NULL,NULL,'text','SKU','validate-length maximum-length-64',NULL,1,0,NULL,1,NULL),(75,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(76,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,0,0,NULL,0,NULL),(77,4,'price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(78,4,'special_price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(79,4,'special_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(80,4,'special_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Special Price To Date',NULL,NULL,0,0,NULL,0,NULL),(81,4,'cost',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Cost',NULL,NULL,0,1,NULL,0,NULL),(82,4,'weight',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight','decimal',NULL,NULL,'weight','Weight',NULL,NULL,0,0,NULL,0,NULL),(83,4,'manufacturer',NULL,NULL,'int',NULL,NULL,'select','Manufacturer',NULL,NULL,0,1,NULL,0,NULL),(84,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(85,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(86,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars. Meta Description should optimally be between 150-160 characters'),(87,4,'image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Base',NULL,NULL,0,0,NULL,0,NULL),(88,4,'small_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Small',NULL,NULL,0,0,NULL,0,NULL),(89,4,'thumbnail',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(90,4,'media_gallery',NULL,NULL,'static',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(91,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(92,4,'tier_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(93,4,'color',NULL,NULL,'int',NULL,NULL,'select','Color',NULL,NULL,0,1,NULL,0,NULL),(94,4,'news_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(95,4,'news_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Set Product as New to Date',NULL,NULL,0,0,NULL,0,NULL),(96,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(97,4,'status',NULL,NULL,'int',NULL,NULL,'select','Enable Product',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status',0,0,'1',0,NULL),(98,4,'minimal_price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(99,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'Magento\\Catalog\\Model\\Product\\Visibility',0,0,'4',0,NULL),(100,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','New Theme',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(101,4,'custom_design_from',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(102,4,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(103,4,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Layout Update XML',NULL,NULL,0,0,NULL,0,NULL),(104,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(105,4,'category_ids',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category','static',NULL,NULL,'text','Categories',NULL,NULL,0,0,NULL,0,NULL),(106,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container',0,0,'container2',0,NULL),(107,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(108,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(109,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(110,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(111,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(112,4,'created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(113,4,'updated_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(114,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture',0,0,NULL,0,NULL),(115,4,'quantity_and_stock_status',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock','int',NULL,NULL,'select','Quantity',NULL,'Magento\\CatalogInventory\\Model\\Source\\Stock',0,0,'1',0,NULL),(116,4,'custom_layout',NULL,NULL,'varchar',NULL,NULL,'select','New Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(117,4,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(118,3,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(119,4,'msrp','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimum Advertised Price',NULL,NULL,0,0,NULL,0,NULL),(120,4,'msrp_display_actual_price_type',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Display Actual Price',NULL,'Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price',0,0,'0',0,NULL),(121,3,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(122,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(123,4,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key','validate-trailing-hyphen',NULL,0,0,NULL,0,NULL),(124,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(125,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(126,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(127,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(128,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL),(129,4,'price_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Price',NULL,NULL,1,0,'0',0,NULL),(130,4,'sku_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic SKU',NULL,NULL,1,0,'0',0,NULL),(131,4,'weight_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Weight',NULL,NULL,1,0,'0',0,NULL),(132,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View',1,0,NULL,0,NULL),(133,4,'shipment_type',NULL,NULL,'int',NULL,NULL,'select','Ship Bundle Items',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type',1,0,'0',0,NULL),(134,4,'gift_message_available',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Allow Gift Message',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(135,4,'swatch_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Swatch',NULL,NULL,0,0,NULL,0,NULL),(136,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'Magento\\Tax\\Model\\TaxClass\\Source\\Product',0,0,'2',0,NULL),(163,4,'indaco_allergens',NULL,NULL,'text',NULL,NULL,'textarea','Allergens',NULL,NULL,0,1,NULL,0,NULL),(164,4,'indaco_winetype',NULL,NULL,'int',NULL,NULL,'select','Wine Type',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(165,4,'indaco_productionarea',NULL,NULL,'int',NULL,NULL,'select','Production Area',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,NULL,0,NULL),(166,4,'indaco_year',NULL,NULL,'varchar',NULL,NULL,'text','Year',NULL,NULL,0,1,NULL,0,NULL),(167,4,'indaco_alcoholicvolume',NULL,NULL,'varchar',NULL,NULL,'text','Alcoholic Volume',NULL,NULL,0,1,NULL,0,NULL),(168,4,'indaco_bottleformat',NULL,NULL,'int',NULL,NULL,'select','Bottle Format',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(169,4,'indaco_grapevariety',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Grape variety',NULL,NULL,0,1,'',0,NULL),(170,4,'indaco_color',NULL,NULL,'int',NULL,NULL,'select','Color',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(171,4,'indaco_scent',NULL,NULL,'int',NULL,NULL,'select','Scent',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(172,4,'indaco_taste',NULL,NULL,'int',NULL,NULL,'select','Taste',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(173,4,'indaco_recommendedcombinations',NULL,NULL,'text',NULL,NULL,'textarea','Recommended combinations',NULL,NULL,0,1,NULL,0,NULL),(174,4,'indaco_awardsacknowledgments',NULL,NULL,'text',NULL,NULL,'textarea','Awards and acknowledgments',NULL,NULL,0,1,NULL,0,NULL),(175,4,'indaco_servicetemperature',NULL,NULL,'varchar',NULL,NULL,'text','Service temperature',NULL,NULL,0,1,NULL,0,NULL),(176,4,'indaco_vineyards',NULL,NULL,'varchar',NULL,NULL,'text','Vineyards',NULL,NULL,0,1,NULL,0,NULL),(177,4,'indaco_winemaking',NULL,NULL,'text',NULL,NULL,'textarea','Winemaking',NULL,NULL,0,1,NULL,0,NULL),(178,4,'indaco_refinement',NULL,NULL,'text',NULL,NULL,'textarea','Refinement',NULL,NULL,0,1,NULL,0,NULL),(179,4,'indaco_biological',NULL,NULL,'int',NULL,NULL,'boolean','Biological',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,NULL,0,NULL),(180,4,'indaco_biodynamic',NULL,NULL,'int',NULL,NULL,'boolean','Biodynamic',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,NULL,0,NULL),(181,4,'indaco_vegan',NULL,NULL,'int',NULL,NULL,'boolean','Vegan',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,NULL,0,NULL),(182,4,'indaco_withoutsulphites',NULL,NULL,'int',NULL,NULL,'boolean','Without added sulphites',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,NULL,0,NULL),(183,4,'indaco_dosage',NULL,NULL,'int',NULL,NULL,'select','Dosage',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(184,4,'indaco_methodproduction',NULL,NULL,'int',NULL,NULL,'select','Method of production',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(185,4,'indaco_body',NULL,NULL,'int',NULL,NULL,'select','Body',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,NULL,0,NULL),(186,4,'indaco_bottleclosure',NULL,NULL,'int',NULL,NULL,'select','Type of bottle closure',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(187,4,'indaco_containertype',NULL,NULL,'int',NULL,NULL,'select','Container type',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(188,4,'indaco_agingcontainer',NULL,NULL,'text',NULL,NULL,'textarea','Aging container material',NULL,NULL,0,1,NULL,0,NULL),(189,1,'mp_smtp_is_synced',NULL,NULL,'int',NULL,NULL,'hidden','Mp SMTP is synced',NULL,NULL,0,0,NULL,0,NULL),(190,9,'status',NULL,NULL,'static',NULL,NULL,'boolean','Is Enabled?',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,'Indicates whether the category is visible on frontend.'),(191,9,'is_essential',NULL,NULL,'static',NULL,NULL,'boolean','Is Essential?',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'0',0,'If the cookie category is defined as \"essential\" then users will not be able to disable it in the frontend. An example of essential cookies would be session cookies, persistent cookies, shopping cart cookies, etc.'),(192,9,'name',NULL,NULL,'text',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(193,9,'key',NULL,NULL,'static',NULL,NULL,'text','Category Identifier',NULL,NULL,1,0,NULL,0,NULL),(194,9,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(195,9,'sort_order',NULL,NULL,'int',NULL,NULL,'text','Sort Order',NULL,NULL,0,0,'0',0,'Sort order is a category position in \"Cookie Settings Panel\".'),(196,9,'head_scripts',NULL,NULL,'text',NULL,NULL,'textarea','Head Scripts',NULL,NULL,0,0,NULL,0,'Scripts and HTML listed here will be included right after the opening <body> tag. They will be executed if the corresponding cookie category is enabled by the customer.'),(197,9,'footer_miscellaneous_html',NULL,NULL,'text',NULL,NULL,'textarea','Footer Miscellaneous HTML',NULL,NULL,0,0,NULL,0,'Scripts and HTML listed here will be included right before the closing </body> tag. They will be executed if the corresponding cookie category is enabled by the customer.'),(198,9,'is_pre_checked',NULL,NULL,'int',NULL,NULL,'boolean','Is Pre-checked?',NULL,NULL,0,0,'0',0,'Indicates whether the category switcher is \"ON\" by default in the Cookie Settings Panel. Please note, the cookies from this category will be accepted only after the visitor confirms the choices.'),(199,10,'name',NULL,NULL,'static',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(200,10,'type',NULL,NULL,'static',NULL,NULL,'select','Type',NULL,'Plumrocket\\CookieConsent\\Model\\Cookie\\Attribute\\Source\\Type',1,0,NULL,0,'A first-party cookie is set by your Magento store. A third-party cookie is set by a third-party service, via code loaded on your website.'),(201,10,'domain',NULL,NULL,'static',NULL,NULL,'text','Domain',NULL,NULL,1,0,NULL,0,'The domain for which the cookie is valid. If this attribute is not specified, then the Magento base URL is used as the default value.'),(202,10,'duration',NULL,NULL,'static',NULL,NULL,'text','Duration',NULL,NULL,1,0,'0',0,'Set the period when the cookie should expire. If set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes).'),(203,10,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(204,10,'category_key',NULL,NULL,'static',NULL,NULL,'select','Cookie Category',NULL,'Plumrocket\\CookieConsent\\Model\\Cookie\\Attribute\\Source\\CategoryKey',1,0,NULL,0,NULL),(205,11,'status',NULL,NULL,'int',NULL,NULL,'boolean','Display Checkbox',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(206,11,'location_key',NULL,NULL,'static',NULL,NULL,'multiselect','Consent Location',NULL,'Plumrocket\\DataPrivacy\\Model\\OptionSource\\ConsentLocationsGrouped',1,0,NULL,0,'Please choose location where the consent checkbox must be displayed. Showing checkbox in \"custom location\" will require code modifications. Please read our developer\'s guide for more info.'),(207,11,'label',NULL,NULL,'text',NULL,NULL,'textarea','Checkbox Label',NULL,NULL,0,0,'I agree to <a href=\"{{url}}\" class=\"pr-inpopup\" target=\"_blank\">Privacy Policy</a>',0,NULL),(208,11,'cms_page_id',NULL,NULL,'int',NULL,NULL,'select','Link to CMS Page',NULL,'Plumrocket\\DataPrivacy\\Model\\Consent\\Checkbox\\Attribute\\Source\\CmsPage',0,0,NULL,0,'Please choose CMS page associated with this checkbox. Linked CMS page content will be displayed in popup. Leave empty if you dont want to display any CMS content.'),(209,11,'require',NULL,NULL,'int',NULL,NULL,'boolean','Required',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,'Please indicate if this checkbox must be checked in order to submit a form.'),(210,11,'geo_targeting',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Geo Targeting',NULL,'Plumrocket\\GDPR\\Model\\Checkbox\\Attribute\\Source\\GeoTargeting',0,0,'all',0,'Show consent checkbox only to visitors from the selected list of countries.'),(211,11,'internal_note',NULL,NULL,'static',NULL,NULL,'textarea','Internal Note',NULL,NULL,0,0,NULL,0,'Optional field for Admin users only. Useful to describe custom checkbox location (such as \"New Year\'s promo landing page\") or add some internal notes.'),(212,11,'geo_targeting_usa_states',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','U.S. states',NULL,'Plumrocket\\DataPrivacy\\Model\\Consent\\Checkbox\\Attribute\\Source\\GeoTargetingStates',0,0,'all',0,'You can select one or multiple U.S. states. For example,\n                        select \"California\" for CCPA law.');
/*!40000 ALTER TABLE `eav_attribute` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute_group`
--

DROP TABLE IF EXISTS `eav_attribute_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute_group` (
  `attribute_group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Group ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `attribute_group_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Group Name',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `default_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Default ID',
  `attribute_group_code` varchar(255) NOT NULL COMMENT 'Attribute Group Code',
  `tab_group_code` varchar(255) DEFAULT NULL COMMENT 'Tab Group Code',
  PRIMARY KEY (`attribute_group_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_CODE` (`attribute_set_id`,`attribute_group_code`),
  UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`),
  KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  CONSTRAINT `EAV_ATTR_GROUP_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_group`
--

/*!40000 ALTER TABLE `eav_attribute_group` DISABLE KEYS */;
INSERT INTO `eav_attribute_group` VALUES (1,1,'General',1,1,'general',NULL),(2,2,'General',1,1,'general',NULL),(3,3,'General',10,1,'general',NULL),(4,3,'General Information',2,0,'general-information',NULL),(5,3,'Display Settings',20,0,'display-settings',NULL),(6,3,'Custom Design',30,0,'custom-design',NULL),(7,4,'Product Details',10,1,'product-details','basic'),(8,4,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(9,4,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(10,4,'Images',20,0,'image-management','basic'),(11,4,'Design',50,0,'design','advanced'),(12,4,'Autosettings',60,0,'autosettings','advanced'),(13,4,'Content',15,0,'content','basic'),(14,4,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(15,5,'General',1,1,'general',NULL),(16,6,'General',1,1,'general',NULL),(17,7,'General',1,1,'general',NULL),(18,8,'General',1,1,'general',NULL),(19,4,'Bundle Items',16,0,'bundle-items',NULL),(20,4,'Gift Options',61,0,'gift-options',NULL),(21,9,'Gift Options',11,0,'gift-options',NULL),(22,9,'Autosettings',10,0,'autosettings','advanced'),(23,9,'Schedule Design Update',9,0,'schedule-design-update','advanced'),(24,9,'Design',8,0,'design','advanced'),(25,9,'Advanced Pricing',7,0,'advanced-pricing','advanced'),(26,9,'Search Engine Optimization',6,0,'search-engine-optimization','basic'),(27,9,'Images',5,0,'image-management','basic'),(28,9,'Bundle Items',4,0,'bundle-items',NULL),(29,9,'Content',2,0,'content','basic'),(30,9,'Product Details',1,1,'product-details','basic'),(31,9,'Indaco',3,0,'indaco',NULL),(32,10,'General',1,1,'general',NULL),(33,10,'General Information',2,0,'general-information',NULL),(34,11,'General',1,1,'general',NULL),(35,11,'General Information',2,0,'general-information',NULL),(36,12,'General',1,1,'general',NULL),(37,12,'General Information',2,0,'general-information',NULL);
/*!40000 ALTER TABLE `eav_attribute_group` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute_label`
--

DROP TABLE IF EXISTS `eav_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute_label` (
  `attribute_label_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Label ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`attribute_label_id`),
  KEY `EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  KEY `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`),
  CONSTRAINT `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_label`
--

/*!40000 ALTER TABLE `eav_attribute_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_attribute_label` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute_option`
--

DROP TABLE IF EXISTS `eav_attribute_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option`
--

/*!40000 ALTER TABLE `eav_attribute_option` DISABLE KEYS */;
INSERT INTO `eav_attribute_option` VALUES (1,20,0),(2,20,1),(3,20,3),(27,164,0),(28,164,1),(29,164,2),(30,164,3),(31,168,0),(32,168,1),(33,168,2),(34,169,0),(35,169,1),(36,170,0),(37,170,1),(38,171,0),(39,171,1),(40,172,0),(41,172,1),(42,183,0),(43,183,1),(44,184,0),(45,184,1),(46,186,0),(47,186,1),(48,187,0),(49,187,1);
/*!40000 ALTER TABLE `eav_attribute_option` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute_option_swatch`
--

DROP TABLE IF EXISTS `eav_attribute_option_swatch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute_option_swatch` (
  `swatch_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Swatch ID',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `type` smallint(5) unsigned NOT NULL COMMENT 'Swatch type: 0 - text, 1 - visual color, 2 - visual image',
  `value` varchar(255) DEFAULT NULL COMMENT 'Swatch Value',
  PRIMARY KEY (`swatch_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_OPTION_ID` (`store_id`,`option_id`),
  KEY `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_SWATCH_SWATCH_ID` (`swatch_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Swatches table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option_swatch`
--

/*!40000 ALTER TABLE `eav_attribute_option_swatch` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_attribute_option_swatch` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute_option_value`
--

DROP TABLE IF EXISTS `eav_attribute_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute_option_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  KEY `EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTR_OPT_VAL_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option_value`
--

/*!40000 ALTER TABLE `eav_attribute_option_value` DISABLE KEYS */;
INSERT INTO `eav_attribute_option_value` VALUES (1,1,0,'Male'),(2,2,0,'Female'),(3,3,0,'Not Specified'),(27,27,0,'Rosso'),(28,28,0,'Bianco'),(29,29,0,'Rose'),(30,30,0,'Spumante'),(31,31,0,'1'),(32,32,0,'0.75'),(33,33,0,'0.5'),(34,34,0,'lorem'),(35,35,0,'ipsum'),(36,36,0,'lorem'),(37,37,0,'ipsum'),(38,38,0,'lorem'),(39,39,0,'ipsum'),(40,40,0,'lorem'),(41,41,0,'ipsum'),(42,42,0,'lorem'),(43,43,0,'ipsum'),(44,44,0,'lorem'),(45,45,0,'ipsum'),(46,46,0,'lorem'),(47,47,0,'ipsum'),(48,48,0,'lorem'),(49,49,0,'ipsum');
/*!40000 ALTER TABLE `eav_attribute_option_value` ENABLE KEYS */;

--
-- Table structure for table `eav_attribute_set`
--

DROP TABLE IF EXISTS `eav_attribute_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_attribute_set` (
  `attribute_set_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Set ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_set_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Set Name',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`attribute_set_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`),
  KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`),
  CONSTRAINT `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Set';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_set`
--

/*!40000 ALTER TABLE `eav_attribute_set` DISABLE KEYS */;
INSERT INTO `eav_attribute_set` VALUES (1,1,'Default',2),(2,2,'Default',2),(3,3,'Default',1),(4,4,'Default',1),(5,5,'Default',1),(6,6,'Default',1),(7,7,'Default',1),(8,8,'Default',1),(9,4,'Vino',0),(10,9,'Default',1),(11,10,'Default',1),(12,11,'Default',1);
/*!40000 ALTER TABLE `eav_attribute_set` ENABLE KEYS */;

--
-- Table structure for table `eav_entity`
--

DROP TABLE IF EXISTS `eav_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `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',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Defines Is Entity Active',
  PRIMARY KEY (`entity_id`),
  KEY `EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity`
--

/*!40000 ALTER TABLE `eav_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_attribute`
--

DROP TABLE IF EXISTS `eav_entity_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_attribute` (
  `entity_attribute_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Attribute ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `attribute_group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Group ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`entity_attribute_id`),
  UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`),
  UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`),
  KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTT_ATTR_ATTR_GROUP_ID_EAV_ATTR_GROUP_ATTR_GROUP_ID` FOREIGN KEY (`attribute_group_id`) REFERENCES `eav_attribute_group` (`attribute_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=290 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Attributes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_attribute`
--

/*!40000 ALTER TABLE `eav_entity_attribute` DISABLE KEYS */;
INSERT INTO `eav_entity_attribute` VALUES (1,1,1,1,1,10),(2,1,1,1,2,20),(3,1,1,1,3,20),(4,1,1,1,4,30),(5,1,1,1,5,40),(6,1,1,1,6,50),(7,1,1,1,7,60),(8,1,1,1,8,70),(9,1,1,1,9,80),(10,1,1,1,10,25),(11,1,1,1,11,90),(12,1,1,1,12,81),(13,1,1,1,13,115),(14,1,1,1,14,120),(15,1,1,1,15,82),(16,1,1,1,16,83),(17,1,1,1,17,100),(18,1,1,1,18,0),(19,1,1,1,19,0),(20,1,1,1,20,110),(21,1,1,1,21,28),(22,2,2,2,22,10),(23,2,2,2,23,20),(24,2,2,2,24,30),(25,2,2,2,25,40),(26,2,2,2,26,50),(27,2,2,2,27,60),(28,2,2,2,28,70),(29,2,2,2,29,100),(30,2,2,2,30,80),(31,2,2,2,31,90),(32,2,2,2,32,90),(33,2,2,2,33,110),(34,2,2,2,34,120),(35,2,2,2,35,130),(36,2,2,2,36,140),(37,2,2,2,37,132),(38,2,2,2,38,133),(39,2,2,2,39,134),(40,2,2,2,40,135),(41,1,1,1,41,87),(42,1,1,1,42,100),(43,1,1,1,43,110),(44,1,1,1,44,120),(45,3,3,4,45,1),(46,3,3,4,46,2),(47,3,3,4,47,4),(48,3,3,4,48,5),(49,3,3,4,49,6),(50,3,3,4,50,7),(51,3,3,4,51,8),(52,3,3,5,52,10),(53,3,3,5,53,20),(54,3,3,5,54,30),(55,3,3,4,55,12),(56,3,3,4,56,13),(57,3,3,4,57,14),(58,3,3,4,58,15),(59,3,3,4,59,16),(60,3,3,6,60,10),(61,3,3,6,61,30),(62,3,3,6,62,40),(63,3,3,6,63,50),(64,3,3,6,64,60),(65,3,3,4,65,24),(66,3,3,4,66,25),(67,3,3,5,67,40),(68,3,3,5,68,50),(69,3,3,4,69,10),(70,3,3,6,70,5),(71,3,3,6,71,6),(72,3,3,5,72,51),(73,4,4,7,73,10),(74,4,4,7,74,20),(75,4,4,13,75,110),(76,4,4,13,76,100),(77,4,4,7,77,30),(78,4,4,8,78,3),(79,4,4,8,79,4),(80,4,4,8,80,5),(81,4,4,8,81,6),(82,4,4,7,82,70),(83,4,4,9,84,20),(84,4,4,9,85,30),(85,4,4,9,86,40),(86,4,4,10,87,1),(87,4,4,10,88,2),(88,4,4,10,89,3),(89,4,4,10,90,4),(90,4,4,7,91,6),(91,4,4,8,92,7),(92,4,4,7,94,90),(93,4,4,7,95,100),(94,4,4,10,96,5),(95,4,4,7,97,5),(96,4,4,8,98,8),(97,4,4,7,99,80),(98,4,4,14,100,40),(99,4,4,14,101,20),(100,4,4,14,102,30),(101,4,4,11,103,10),(102,4,4,11,104,5),(103,4,4,7,105,80),(104,4,4,11,106,6),(105,4,4,7,107,14),(106,4,4,7,108,15),(107,4,4,7,109,16),(108,4,4,7,110,17),(109,4,4,7,111,18),(110,4,4,7,112,19),(111,4,4,7,113,20),(112,4,4,7,114,110),(113,4,4,7,115,60),(114,4,4,14,116,50),(115,4,4,11,117,51),(116,3,3,6,118,51),(117,4,4,8,119,9),(118,4,4,8,120,10),(119,3,3,4,121,3),(120,3,3,4,122,17),(121,4,4,9,123,10),(122,4,4,7,124,11),(123,4,4,7,125,111),(124,4,4,7,126,112),(125,4,4,7,127,113),(126,4,4,7,128,114),(127,4,4,7,129,31),(128,4,4,7,130,21),(129,4,4,7,131,71),(130,4,4,8,132,11),(131,4,4,19,133,1),(132,4,4,20,134,10),(133,4,4,10,135,3),(134,4,4,7,136,40),(142,4,9,24,103,10),(149,4,9,25,98,8),(167,4,9,30,91,6),(169,4,9,30,124,11),(170,4,9,30,107,14),(171,4,9,30,108,15),(172,4,9,30,109,16),(173,4,9,30,110,17),(174,4,9,30,111,18),(175,4,9,30,112,19),(177,4,9,30,113,20),(190,4,9,30,125,111),(191,4,9,30,126,112),(192,4,9,30,127,113),(193,4,9,30,128,114),(194,4,9,30,73,2),(195,4,9,30,74,3),(196,4,9,30,77,5),(197,4,9,30,82,9),(198,4,9,30,94,13),(199,4,9,30,95,14),(200,4,9,30,97,1),(201,4,9,30,99,12),(202,4,9,30,105,11),(203,4,9,30,114,15),(204,4,9,30,115,8),(205,4,9,30,129,6),(206,4,9,30,130,4),(207,4,9,30,131,10),(208,4,9,30,136,7),(209,4,9,29,75,2),(210,4,9,29,76,1),(211,4,9,28,133,1),(212,4,9,27,87,1),(213,4,9,27,88,2),(214,4,9,27,89,3),(215,4,9,27,90,5),(216,4,9,27,96,6),(217,4,9,27,135,4),(218,4,9,26,84,2),(219,4,9,26,85,3),(220,4,9,26,86,4),(221,4,9,26,123,1),(222,4,9,25,78,1),(223,4,9,25,79,2),(224,4,9,25,80,3),(225,4,9,25,81,4),(226,4,9,25,92,5),(227,4,9,25,119,6),(228,4,9,25,120,7),(229,4,9,25,132,8),(230,4,9,24,104,1),(231,4,9,24,106,2),(232,4,9,24,117,3),(233,4,9,23,100,3),(234,4,9,23,101,1),(235,4,9,23,102,2),(236,4,9,23,116,4),(237,4,9,21,134,1),(238,4,9,31,163,1),(239,4,9,31,164,1),(240,4,9,31,165,1),(241,4,9,31,166,1),(242,4,9,31,167,1),(243,4,9,31,168,1),(244,4,9,31,169,1),(245,4,9,31,170,1),(246,4,9,31,171,1),(247,4,9,31,172,1),(248,4,9,31,173,1),(249,4,9,31,174,1),(250,4,9,31,175,1),(251,4,9,31,176,1),(252,4,9,31,177,1),(253,4,9,31,178,1),(254,4,9,31,179,1),(255,4,9,31,180,1),(256,4,9,31,181,1),(257,4,9,31,182,1),(258,4,9,31,183,1),(259,4,9,31,184,1),(260,4,9,31,185,1),(261,4,9,31,186,1),(262,4,9,31,187,1),(263,4,9,31,188,1),(266,1,1,1,189,90),(267,9,10,33,190,100),(268,9,10,33,191,200),(269,9,10,33,192,300),(270,9,10,33,193,400),(271,9,10,33,194,500),(272,9,10,33,195,600),(273,9,10,33,196,700),(274,9,10,33,197,800),(275,9,10,33,198,250),(276,10,11,35,199,100),(277,10,11,35,200,200),(278,10,11,35,201,300),(279,10,11,35,202,400),(280,10,11,35,203,500),(281,10,11,35,204,600),(282,11,12,37,205,100),(283,11,12,37,206,200),(284,11,12,37,207,300),(285,11,12,37,208,400),(286,11,12,37,209,500),(287,11,12,37,210,600),(288,11,12,37,211,700),(289,11,12,37,212,650);
/*!40000 ALTER TABLE `eav_entity_attribute` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_datetime`
--

DROP TABLE IF EXISTS `eav_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_DATETIME_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_DATETIME_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_datetime`
--

/*!40000 ALTER TABLE `eav_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_datetime` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_decimal`
--

DROP TABLE IF EXISTS `eav_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_decimal`
--

/*!40000 ALTER TABLE `eav_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_decimal` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_int`
--

DROP TABLE IF EXISTS `eav_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_INT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_INT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_int`
--

/*!40000 ALTER TABLE `eav_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_int` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_store`
--

DROP TABLE IF EXISTS `eav_entity_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_store` (
  `entity_store_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Store ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `increment_prefix` varchar(20) DEFAULT NULL COMMENT 'Increment Prefix',
  `increment_last_id` varchar(50) DEFAULT NULL COMMENT 'Last Incremented ID',
  PRIMARY KEY (`entity_store_id`),
  KEY `EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_STORE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_store`
--

/*!40000 ALTER TABLE `eav_entity_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_store` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_text`
--

DROP TABLE IF EXISTS `eav_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `EAV_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_text`
--

/*!40000 ALTER TABLE `eav_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_text` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_type`
--

DROP TABLE IF EXISTS `eav_entity_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_type` (
  `entity_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Type ID',
  `entity_type_code` varchar(50) NOT NULL COMMENT 'Entity Type Code',
  `entity_model` varchar(255) NOT NULL COMMENT 'Entity Model',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `entity_table` varchar(255) DEFAULT NULL COMMENT 'Entity Table',
  `value_table_prefix` varchar(255) DEFAULT NULL COMMENT 'Value Table Prefix',
  `entity_id_field` varchar(255) DEFAULT NULL COMMENT 'Entity ID Field',
  `is_data_sharing` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Defines Is Data Sharing',
  `data_sharing_key` varchar(100) DEFAULT 'default' COMMENT 'Data Sharing Key',
  `default_attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Default Attribute Set ID',
  `increment_model` varchar(255) DEFAULT NULL COMMENT 'Increment Model',
  `increment_per_store` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Increment Per Store',
  `increment_pad_length` smallint(5) unsigned NOT NULL DEFAULT 8 COMMENT 'Increment Pad Length',
  `increment_pad_char` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Increment Pad Char',
  `additional_attribute_table` varchar(255) DEFAULT NULL COMMENT 'Additional Attribute Table',
  `entity_attribute_collection` varchar(255) DEFAULT NULL COMMENT 'Entity Attribute Collection',
  PRIMARY KEY (`entity_type_id`),
  KEY `EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_type`
--

/*!40000 ALTER TABLE `eav_entity_type` DISABLE KEYS */;
INSERT INTO `eav_entity_type` VALUES (1,'customer','Magento\\Customer\\Model\\ResourceModel\\Customer','Magento\\Customer\\Model\\Attribute','customer_entity',NULL,NULL,1,'default',1,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Attribute\\Collection'),(2,'customer_address','Magento\\Customer\\Model\\ResourceModel\\Address','Magento\\Customer\\Model\\Attribute','customer_address_entity',NULL,NULL,1,'default',2,NULL,0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Collection'),(3,'catalog_category','Magento\\Catalog\\Model\\ResourceModel\\Category','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_category_entity',NULL,NULL,1,'default',3,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(4,'catalog_product','Magento\\Catalog\\Model\\ResourceModel\\Product','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_product_entity',NULL,NULL,1,'default',4,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Product\\Attribute\\Collection'),(5,'order','Magento\\Sales\\Model\\ResourceModel\\Order',NULL,'sales_order',NULL,NULL,1,'default',5,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(6,'invoice','Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice',NULL,'sales_invoice',NULL,NULL,1,'default',6,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(7,'creditmemo','Magento\\Sales\\Model\\ResourceModel\\Order\\Creditmemo',NULL,'sales_creditmemo',NULL,NULL,1,'default',7,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(8,'shipment','Magento\\Sales\\Model\\ResourceModel\\Order\\Shipment',NULL,'sales_shipment',NULL,NULL,1,'default',8,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(9,'pr_cookie_category','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Category','Plumrocket\\CookieConsent\\Model\\Eav\\Attribute','pr_cookie_category_entity',NULL,NULL,1,'default',10,NULL,0,8,'0','plumrocket_eav_attribute_additional','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(10,'pr_cookie','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Cookie','Plumrocket\\CookieConsent\\Model\\Eav\\Attribute','pr_cookie_entity',NULL,NULL,1,'default',11,NULL,0,8,'0','plumrocket_eav_attribute_additional','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Cookie\\Attribute\\Collection'),(11,'prgdpr_checkbox','Plumrocket\\DataPrivacy\\Model\\ResourceModel\\Consent\\Checkbox','Plumrocket\\DataPrivacy\\Model\\Consent\\Checkbox\\Attribute','prgdpr_checkbox_entity',NULL,NULL,1,'default',12,NULL,0,8,'0','catalog_eav_attribute','Plumrocket\\DataPrivacy\\Model\\ResourceModel\\Consent\\Checkbox\\Attribute\\Collection');
/*!40000 ALTER TABLE `eav_entity_type` ENABLE KEYS */;

--
-- Table structure for table `eav_entity_varchar`
--

DROP TABLE IF EXISTS `eav_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_varchar`
--

/*!40000 ALTER TABLE `eav_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_varchar` ENABLE KEYS */;

--
-- Table structure for table `eav_form_element`
--

DROP TABLE IF EXISTS `eav_form_element`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_form_element` (
  `element_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Element ID',
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type ID',
  `fieldset_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Fieldset ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `sort_order` int(11) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`element_id`),
  UNIQUE KEY `EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`),
  KEY `EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`),
  KEY `EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_FORM_ELEMENT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_ELEMENT_FIELDSET_ID_EAV_FORM_FIELDSET_FIELDSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE SET NULL,
  CONSTRAINT `EAV_FORM_ELEMENT_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COMMENT='Eav Form Element';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_element`
--

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

--
-- Table structure for table `eav_form_fieldset`
--

DROP TABLE IF EXISTS `eav_form_fieldset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_form_fieldset` (
  `fieldset_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Fieldset ID',
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type ID',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `sort_order` int(11) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`fieldset_id`),
  UNIQUE KEY `EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`),
  CONSTRAINT `EAV_FORM_FIELDSET_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_fieldset`
--

/*!40000 ALTER TABLE `eav_form_fieldset` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_form_fieldset` ENABLE KEYS */;

--
-- Table structure for table `eav_form_fieldset_label`
--

DROP TABLE IF EXISTS `eav_form_fieldset_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_form_fieldset_label` (
  `fieldset_id` smallint(5) unsigned NOT NULL COMMENT 'Fieldset ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`fieldset_id`,`store_id`),
  KEY `EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_FORM_FIELDSET_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_FSET_LBL_FSET_ID_EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_fieldset_label`
--

/*!40000 ALTER TABLE `eav_form_fieldset_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_form_fieldset_label` ENABLE KEYS */;

--
-- Table structure for table `eav_form_type`
--

DROP TABLE IF EXISTS `eav_form_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_form_type` (
  `type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Type ID',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  `is_system` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is System',
  `theme` varchar(64) DEFAULT NULL COMMENT 'Theme',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`type_id`),
  UNIQUE KEY `EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`),
  KEY `EAV_FORM_TYPE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_FORM_TYPE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Eav Form Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_type`
--

/*!40000 ALTER TABLE `eav_form_type` DISABLE KEYS */;
INSERT INTO `eav_form_type` VALUES (1,'checkout_onepage_register','checkout_onepage_register',1,'',0),(2,'checkout_onepage_register_guest','checkout_onepage_register_guest',1,'',0),(3,'checkout_onepage_billing_address','checkout_onepage_billing_address',1,'',0),(4,'checkout_onepage_shipping_address','checkout_onepage_shipping_address',1,'',0);
/*!40000 ALTER TABLE `eav_form_type` ENABLE KEYS */;

--
-- Table structure for table `eav_form_type_entity`
--

DROP TABLE IF EXISTS `eav_form_type_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `eav_form_type_entity` (
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  PRIMARY KEY (`type_id`,`entity_type_id`),
  KEY `EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  CONSTRAINT `EAV_FORM_TYPE_ENTITY_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_TYPE_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Type Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_type_entity`
--

/*!40000 ALTER TABLE `eav_form_type_entity` DISABLE KEYS */;
INSERT INTO `eav_form_type_entity` VALUES (1,1),(1,2),(2,1),(2,2),(3,2),(4,2);
/*!40000 ALTER TABLE `eav_form_type_entity` ENABLE KEYS */;

--
-- Table structure for table `email_template`
--

DROP TABLE IF EXISTS `email_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_template` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) NOT NULL COMMENT 'Template Name',
  `template_text` text NOT NULL COMMENT 'Template Content',
  `template_styles` text DEFAULT NULL COMMENT 'Templste Styles',
  `template_type` int(10) unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) NOT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `added_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date of Template Creation',
  `modified_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of Template Modification',
  `orig_template_code` varchar(200) DEFAULT NULL COMMENT 'Original Template Code',
  `orig_template_variables` text DEFAULT NULL COMMENT 'Original Template Variables',
  `is_legacy` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Should the template render in legacy mode',
  PRIMARY KEY (`template_id`),
  UNIQUE KEY `EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`),
  KEY `EMAIL_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_template`
--

/*!40000 ALTER TABLE `email_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_template` ENABLE KEYS */;

--
-- Table structure for table `flag`
--

DROP TABLE IF EXISTS `flag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `flag` (
  `flag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Flag Id',
  `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code',
  `state` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag State',
  `flag_data` mediumtext DEFAULT NULL COMMENT 'Flag Data',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of Last Flag Update',
  PRIMARY KEY (`flag_id`),
  KEY `FLAG_LAST_UPDATE` (`last_update`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Flag';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flag`
--

/*!40000 ALTER TABLE `flag` DISABLE KEYS */;
INSERT INTO `flag` VALUES (1,'analytics_link_attempts_reverse_counter',0,'24','2022-07-31 09:47:43'),(2,'config_hash',0,'{\"system\":\"2be88ca4242c76e8253ac62474851065032d6833\"}','2022-08-18 10:09:39');
/*!40000 ALTER TABLE `flag` ENABLE KEYS */;

--
-- Table structure for table `gift_message`
--

DROP TABLE IF EXISTS `gift_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gift_message` (
  `gift_message_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `sender` varchar(255) DEFAULT NULL COMMENT 'Sender',
  `recipient` varchar(255) DEFAULT NULL COMMENT 'Registrant',
  `message` text DEFAULT NULL COMMENT 'Message',
  PRIMARY KEY (`gift_message_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Gift Message';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gift_message`
--

/*!40000 ALTER TABLE `gift_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `gift_message` ENABLE KEYS */;

--
-- Table structure for table `googleoptimizer_code`
--

DROP TABLE IF EXISTS `googleoptimizer_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `googleoptimizer_code` (
  `code_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Optimized entity ID product ID or catalog ID',
  `entity_type` varchar(50) DEFAULT NULL COMMENT 'Optimized entity type',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `experiment_script` text DEFAULT NULL COMMENT 'Google experiment script',
  PRIMARY KEY (`code_id`),
  UNIQUE KEY `GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`),
  CONSTRAINT `GOOGLEOPTIMIZER_CODE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Experiment code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `googleoptimizer_code`
--

/*!40000 ALTER TABLE `googleoptimizer_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `googleoptimizer_code` ENABLE KEYS */;

--
-- Table structure for table `import_history`
--

DROP TABLE IF EXISTS `import_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `import_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History record ID',
  `started_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Started at',
  `user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
  `imported_file` varchar(255) DEFAULT NULL COMMENT 'Imported file',
  `execution_time` varchar(255) DEFAULT NULL COMMENT 'Execution time',
  `summary` varchar(255) DEFAULT NULL COMMENT 'Summary',
  `error_file` varchar(255) NOT NULL COMMENT 'Imported file with errors',
  PRIMARY KEY (`history_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import history table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `import_history`
--

/*!40000 ALTER TABLE `import_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `import_history` ENABLE KEYS */;

--
-- Table structure for table `importexport_importdata`
--

DROP TABLE IF EXISTS `importexport_importdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `importexport_importdata` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `entity` varchar(50) NOT NULL COMMENT 'Entity',
  `behavior` varchar(10) NOT NULL DEFAULT 'append' COMMENT 'Behavior',
  `data` longtext DEFAULT NULL COMMENT 'Data',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import Data Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `importexport_importdata`
--

/*!40000 ALTER TABLE `importexport_importdata` DISABLE KEYS */;
/*!40000 ALTER TABLE `importexport_importdata` ENABLE KEYS */;

--
-- Table structure for table `indexer_state`
--

DROP TABLE IF EXISTS `indexer_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `indexer_state` (
  `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Indexer State ID',
  `indexer_id` varchar(255) DEFAULT NULL COMMENT 'Indexer ID',
  `status` varchar(16) DEFAULT 'invalid' COMMENT 'Indexer Status',
  `updated` datetime DEFAULT NULL COMMENT 'Indexer Status',
  `hash_config` varchar(32) NOT NULL COMMENT 'Hash of indexer config',
  PRIMARY KEY (`state_id`),
  KEY `INDEXER_STATE_INDEXER_ID` (`indexer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Indexer State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `indexer_state`
--

/*!40000 ALTER TABLE `indexer_state` DISABLE KEYS */;
INSERT INTO `indexer_state` VALUES (1,'design_config_grid','valid','2022-09-18 07:23:33','7c7421e7d61361dc712ca22aae7e67aa'),(2,'customer_grid','valid','2022-09-16 08:31:41','df28d6fe3ea21c6658b6966eb2dca2b1'),(3,'catalog_category_product','valid','2022-09-16 08:31:41','41666b2efaf7a56390f2b826e4ebad22'),(4,'catalog_product_category','valid','2022-09-16 08:31:42','0d462b10783fb8197afb43d00e609989'),(5,'catalogrule_rule','valid','2022-09-16 08:31:42','e47b3f79b363cfaff307bba11d2fb7c4'),(6,'catalog_product_attribute','valid','2022-09-16 08:31:42','a306b7cd81edef6a79f3790ff28da76e'),(7,'cataloginventory_stock','valid','2022-09-16 08:31:42','97bd092106b068267cb1e833c1c825b2'),(8,'inventory','valid','2022-09-16 08:31:42','103f71c2e3a155650a69aca53ca55944'),(9,'catalogrule_product','valid','2022-09-16 08:31:42','a8b6d1d7ef5f63ea22c3e20f41d0a397'),(10,'catalog_product_price','valid','2022-09-16 08:31:42','54b79b4df2c37464aba2aca1b10d74e7'),(11,'catalogsearch_fulltext','valid','2022-09-16 08:31:43','31ed129a15518cec0051941e88cfcbf0');
/*!40000 ALTER TABLE `indexer_state` ENABLE KEYS */;

--
-- Table structure for table `integration`
--

DROP TABLE IF EXISTS `integration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `integration` (
  `integration_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Integration ID',
  `name` varchar(255) NOT NULL COMMENT 'Integration name is displayed in the admin interface',
  `email` varchar(255) NOT NULL COMMENT 'Email address of the contact person',
  `endpoint` varchar(255) DEFAULT NULL COMMENT 'Endpoint for posting consumer credentials',
  `status` smallint(5) unsigned NOT NULL COMMENT 'Integration status',
  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth consumer',
  `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',
  `setup_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Integration type - manual or config file',
  `identity_link_url` varchar(255) DEFAULT NULL COMMENT 'Identity linking Url',
  PRIMARY KEY (`integration_id`),
  UNIQUE KEY `INTEGRATION_NAME` (`name`),
  UNIQUE KEY `INTEGRATION_CONSUMER_ID` (`consumer_id`),
  CONSTRAINT `INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='integration';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `integration`
--

/*!40000 ALTER TABLE `integration` DISABLE KEYS */;
INSERT INTO `integration` VALUES (2,'indacoapi','',NULL,1,2,'2022-08-05 09:32:35','2022-08-05 09:36:50',0,NULL),(3,'shippypro','',NULL,1,3,'2022-08-05 10:26:44','2022-08-05 10:27:23',0,NULL);
/*!40000 ALTER TABLE `integration` ENABLE KEYS */;

--
-- Table structure for table `inventory_geoname`
--

DROP TABLE IF EXISTS `inventory_geoname`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_geoname` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'entity id',
  `country_code` varchar(64) NOT NULL,
  `postcode` varchar(64) NOT NULL,
  `city` varchar(180) NOT NULL,
  `region` varchar(100) NOT NULL,
  `province` varchar(64) NOT NULL,
  `latitude` double NOT NULL,
  `longitude` double NOT NULL,
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_geoname`
--

/*!40000 ALTER TABLE `inventory_geoname` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_geoname` ENABLE KEYS */;

--
-- Table structure for table `inventory_low_stock_notification_configuration`
--

DROP TABLE IF EXISTS `inventory_low_stock_notification_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_low_stock_notification_configuration` (
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `notify_stock_qty` decimal(12,4) DEFAULT NULL,
  PRIMARY KEY (`source_code`,`sku`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_low_stock_notification_configuration`
--

/*!40000 ALTER TABLE `inventory_low_stock_notification_configuration` DISABLE KEYS */;
INSERT INTO `inventory_low_stock_notification_configuration` VALUES ('default','Bepi merlot',NULL),('default','Formaj',NULL),('default','La Birra!',NULL),('default','La morte !',NULL),('default','primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',NULL),('default','prodotto lorem ipsum',NULL),('default','prodotto lorem ipsum 2',NULL),('default','prodotto lorem ipsum 3',NULL),('default','prodotto lorem ipsum 4',NULL),('default','prodotto lorem ipsum 5',NULL),('default','prodotto lorem ipsum 6',NULL),('default','prodotto lorem ipsum 7',NULL),('default','prodotto lorem ipsum 8',NULL),('default','prodotto lorem ipsum 9',NULL),('default','prodottoprova-69e46421-28b0-4595-b964-4a01c8ba83ce',NULL),('default','Spremuta di fragole',NULL),('default','Vino Test',NULL),('default','vinotest',NULL);
/*!40000 ALTER TABLE `inventory_low_stock_notification_configuration` ENABLE KEYS */;

--
-- Table structure for table `inventory_order_notification`
--

DROP TABLE IF EXISTS `inventory_order_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_order_notification` (
  `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID',
  `notification_sent` smallint(6) NOT NULL COMMENT 'Has Notification Been Sent For Order',
  `send_notification` smallint(6) NOT NULL COMMENT 'Should Notification Be Send For Order',
  PRIMARY KEY (`order_id`),
  CONSTRAINT `INVENTORY_ORDER_NOTIFICATION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_order_notification`
--

/*!40000 ALTER TABLE `inventory_order_notification` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_order_notification` ENABLE KEYS */;

--
-- Table structure for table `inventory_pickup_location_order`
--

DROP TABLE IF EXISTS `inventory_pickup_location_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_pickup_location_order` (
  `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID',
  `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`order_id`),
  CONSTRAINT `INVENTORY_PICKUP_LOCATION_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_pickup_location_order`
--

/*!40000 ALTER TABLE `inventory_pickup_location_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_pickup_location_order` ENABLE KEYS */;

--
-- Table structure for table `inventory_pickup_location_quote_address`
--

DROP TABLE IF EXISTS `inventory_pickup_location_quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_pickup_location_quote_address` (
  `address_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Quote Address ID',
  `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`address_id`),
  CONSTRAINT `INV_PICKUP_LOCATION_QUOTE_ADDR_ADDR_ID_QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_pickup_location_quote_address`
--

/*!40000 ALTER TABLE `inventory_pickup_location_quote_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_pickup_location_quote_address` ENABLE KEYS */;

--
-- Table structure for table `inventory_reservation`
--

DROP TABLE IF EXISTS `inventory_reservation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_reservation` (
  `reservation_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int(10) unsigned NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(10,4) NOT NULL DEFAULT 0.0000,
  `metadata` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`reservation_id`),
  KEY `INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY` (`stock_id`,`sku`,`quantity`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_reservation`
--

/*!40000 ALTER TABLE `inventory_reservation` DISABLE KEYS */;
INSERT INTO `inventory_reservation` VALUES (1,1,'Vino Test',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000001\"}'),(2,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000002\"}'),(3,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-2.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000003\"}'),(4,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000004\"}'),(5,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000005\"}'),(6,1,'vinotest',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000006\"}'),(7,1,'vinotest',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000007\"}'),(8,1,'vinotest',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000008\"}'),(9,1,'La Birra!',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000009\"}'),(10,1,'La morte !',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000010\"}'),(11,1,'Spremuta di fragole',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000011\"}');
/*!40000 ALTER TABLE `inventory_reservation` ENABLE KEYS */;

--
-- Table structure for table `inventory_shipment_source`
--

DROP TABLE IF EXISTS `inventory_shipment_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_shipment_source` (
  `shipment_id` int(10) unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  PRIMARY KEY (`shipment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_shipment_source`
--

/*!40000 ALTER TABLE `inventory_shipment_source` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_shipment_source` ENABLE KEYS */;

--
-- Table structure for table `inventory_source`
--

DROP TABLE IF EXISTS `inventory_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_source` (
  `source_code` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `enabled` smallint(5) unsigned NOT NULL DEFAULT 1,
  `description` text DEFAULT NULL,
  `latitude` decimal(8,6) DEFAULT NULL,
  `longitude` decimal(9,6) DEFAULT NULL,
  `country_id` varchar(2) NOT NULL,
  `region_id` int(10) unsigned DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `street` varchar(255) DEFAULT NULL,
  `postcode` varchar(255) NOT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `use_default_carrier_config` smallint(5) unsigned NOT NULL DEFAULT 1,
  `is_pickup_location_active` tinyint(1) NOT NULL DEFAULT 0,
  `frontend_name` varchar(255) DEFAULT '',
  `frontend_description` text DEFAULT NULL,
  PRIMARY KEY (`source_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source`
--

/*!40000 ALTER TABLE `inventory_source` DISABLE KEYS */;
INSERT INTO `inventory_source` VALUES ('default','Default Source',1,'Default Source',0.000000,0.000000,'US',NULL,NULL,NULL,NULL,'00000',NULL,NULL,NULL,NULL,1,0,'',NULL);
/*!40000 ALTER TABLE `inventory_source` ENABLE KEYS */;

--
-- Table structure for table `inventory_source_carrier_link`
--

DROP TABLE IF EXISTS `inventory_source_carrier_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_source_carrier_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `carrier_code` varchar(255) NOT NULL,
  `position` smallint(5) unsigned DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  CONSTRAINT `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_carrier_link`
--

/*!40000 ALTER TABLE `inventory_source_carrier_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_source_carrier_link` ENABLE KEYS */;

--
-- Table structure for table `inventory_source_item`
--

DROP TABLE IF EXISTS `inventory_source_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_source_item` (
  `source_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(12,4) NOT NULL DEFAULT 0.0000,
  `status` smallint(5) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`source_item_id`),
  UNIQUE KEY `INVENTORY_SOURCE_ITEM_SOURCE_CODE_SKU` (`source_code`,`sku`),
  KEY `INVENTORY_SOURCE_ITEM_SKU_SOURCE_CODE_QUANTITY` (`sku`,`source_code`,`quantity`),
  CONSTRAINT `INVENTORY_SOURCE_ITEM_SOURCE_CODE_INVENTORY_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_item`
--

/*!40000 ALTER TABLE `inventory_source_item` DISABLE KEYS */;
INSERT INTO `inventory_source_item` VALUES (1,'default','Vino Test',1000.0000,1),(7,'default','primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',10.0000,1),(9,'default','vinotest',1000.0000,1),(11,'default','prodottoprova-69e46421-28b0-4595-b964-4a01c8ba83ce',10.0000,1),(16,'default','prodotto lorem ipsum',199.0000,1),(18,'default','La Birra!',1000000.0000,1),(20,'default','La morte !',10.0000,1),(22,'default','Bepi merlot',0.0000,1),(23,'default','Spremuta di fragole',100.0000,1),(25,'default','Formaj',100.0000,1),(27,'default','prodotto lorem ipsum 2',100.0000,1),(31,'default','prodotto lorem ipsum 3',2.0000,0),(33,'default','prodotto lorem ipsum 4',1.0000,1),(35,'default','prodotto lorem ipsum 5',1.0000,1),(37,'default','prodotto lorem ipsum 6',6.0000,1),(39,'default','prodotto lorem ipsum 7',2.0000,1),(41,'default','prodotto lorem ipsum 8',3.0000,1),(43,'default','prodotto lorem ipsum 9',34.0000,1);
/*!40000 ALTER TABLE `inventory_source_item` ENABLE KEYS */;

--
-- Table structure for table `inventory_source_stock_link`
--

DROP TABLE IF EXISTS `inventory_source_stock_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_source_stock_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int(10) unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  `priority` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_SOURCE_CODE` (`stock_id`,`source_code`),
  KEY `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_PRIORITY` (`stock_id`,`priority`),
  CONSTRAINT `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE,
  CONSTRAINT `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_stock_link`
--

/*!40000 ALTER TABLE `inventory_source_stock_link` DISABLE KEYS */;
INSERT INTO `inventory_source_stock_link` VALUES (1,1,'default',1);
/*!40000 ALTER TABLE `inventory_source_stock_link` ENABLE KEYS */;

--
-- Table structure for table `inventory_stock`
--

DROP TABLE IF EXISTS `inventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_stock` (
  `stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`stock_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_stock`
--

/*!40000 ALTER TABLE `inventory_stock` DISABLE KEYS */;
INSERT INTO `inventory_stock` VALUES (1,'Default Stock');
/*!40000 ALTER TABLE `inventory_stock` ENABLE KEYS */;

--
-- Temporary view structure for view `inventory_stock_1`
--

DROP TABLE IF EXISTS `inventory_stock_1`;
/*!50001 DROP VIEW IF EXISTS `inventory_stock_1`*/;
SET @saved_cs_client     = @@character_set_client;
/*!50503 SET character_set_client = utf8mb4 */;
/*!50001 CREATE VIEW `inventory_stock_1` AS SELECT 
 1 AS `product_id`,
 1 AS `website_id`,
 1 AS `stock_id`,
 1 AS `quantity`,
 1 AS `is_salable`,
 1 AS `sku`*/;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `inventory_stock_sales_channel`
--

DROP TABLE IF EXISTS `inventory_stock_sales_channel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_stock_sales_channel` (
  `type` varchar(64) NOT NULL,
  `code` varchar(64) NOT NULL,
  `stock_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`type`,`code`),
  KEY `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` (`stock_id`),
  CONSTRAINT `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_stock_sales_channel`
--

/*!40000 ALTER TABLE `inventory_stock_sales_channel` DISABLE KEYS */;
INSERT INTO `inventory_stock_sales_channel` VALUES ('website','base',1);
/*!40000 ALTER TABLE `inventory_stock_sales_channel` ENABLE KEYS */;

--
-- Table structure for table `jwt_auth_revoked`
--

DROP TABLE IF EXISTS `jwt_auth_revoked`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jwt_auth_revoked` (
  `user_type_id` int(10) unsigned NOT NULL COMMENT 'User Type ID',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `revoke_before` bigint(20) unsigned NOT NULL COMMENT 'Not accepting tokens issued before this timestamp',
  PRIMARY KEY (`user_type_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Holds revoked JWT authentication data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jwt_auth_revoked`
--

/*!40000 ALTER TABLE `jwt_auth_revoked` DISABLE KEYS */;
INSERT INTO `jwt_auth_revoked` VALUES (3,4,1663314906);
/*!40000 ALTER TABLE `jwt_auth_revoked` ENABLE KEYS */;

--
-- Table structure for table `layout_link`
--

DROP TABLE IF EXISTS `layout_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `layout_link` (
  `layout_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID',
  `layout_update_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Layout Update ID',
  `is_temporary` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Defines whether Layout Update is Temporary',
  PRIMARY KEY (`layout_link_id`),
  KEY `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` (`theme_id`),
  KEY `LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`),
  KEY `LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`),
  CONSTRAINT `LAYOUT_LINK_LAYOUT_UPDATE_ID_LAYOUT_UPDATE_LAYOUT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE,
  CONSTRAINT `LAYOUT_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_link`
--

/*!40000 ALTER TABLE `layout_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `layout_link` ENABLE KEYS */;

--
-- Table structure for table `layout_update`
--

DROP TABLE IF EXISTS `layout_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `layout_update` (
  `layout_update_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Layout Update ID',
  `handle` varchar(255) DEFAULT NULL COMMENT 'Handle',
  `xml` text DEFAULT NULL COMMENT 'Xml',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp() COMMENT 'Last Update Timestamp',
  PRIMARY KEY (`layout_update_id`),
  KEY `LAYOUT_UPDATE_HANDLE` (`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_update`
--

/*!40000 ALTER TABLE `layout_update` DISABLE KEYS */;
/*!40000 ALTER TABLE `layout_update` ENABLE KEYS */;

--
-- Table structure for table `login_as_customer`
--

DROP TABLE IF EXISTS `login_as_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `login_as_customer` (
  `secret` varchar(64) NOT NULL COMMENT 'Login Secret',
  `customer_id` int(11) NOT NULL COMMENT 'Customer ID',
  `admin_id` int(11) NOT NULL COMMENT 'Admin ID',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  PRIMARY KEY (`secret`),
  KEY `LOGIN_AS_CUSTOMER_CREATED_AT` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Login as Customer Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login_as_customer`
--

/*!40000 ALTER TABLE `login_as_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `login_as_customer` ENABLE KEYS */;

--
-- Table structure for table `login_as_customer_assistance_allowed`
--

DROP TABLE IF EXISTS `login_as_customer_assistance_allowed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `login_as_customer_assistance_allowed` (
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`customer_id`),
  CONSTRAINT `LOGIN_AS_CSTR_ASSISTANCE_ALLOWED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Login as Customer Assistance Allowed Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login_as_customer_assistance_allowed`
--

/*!40000 ALTER TABLE `login_as_customer_assistance_allowed` DISABLE KEYS */;
/*!40000 ALTER TABLE `login_as_customer_assistance_allowed` ENABLE KEYS */;

--
-- Table structure for table `magento_acknowledged_bulk`
--

DROP TABLE IF EXISTS `magento_acknowledged_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `magento_acknowledged_bulk` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Internal ID',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`),
  CONSTRAINT `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk that was viewed by user from notification area';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_acknowledged_bulk`
--

/*!40000 ALTER TABLE `magento_acknowledged_bulk` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_acknowledged_bulk` ENABLE KEYS */;

--
-- Table structure for table `magento_bulk`
--

DROP TABLE IF EXISTS `magento_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `magento_bulk` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bulk Internal ID (must not be exposed)',
  `uuid` varbinary(39) DEFAULT NULL COMMENT 'Bulk UUID (can be exposed to reference bulk entity)',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of the WebAPI user that performed an action',
  `user_type` int(11) DEFAULT NULL COMMENT 'Which type of user',
  `description` varchar(255) DEFAULT NULL COMMENT 'Bulk Description',
  `operation_count` int(10) unsigned NOT NULL COMMENT 'Total number of operations scheduled within this bulk',
  `start_time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Bulk start time',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MAGENTO_BULK_UUID` (`uuid`),
  KEY `MAGENTO_BULK_USER_ID` (`user_id`),
  KEY `MAGENTO_BULK_START_TIME` (`start_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk entity that represents set of related asynchronous operations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_bulk`
--

/*!40000 ALTER TABLE `magento_bulk` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_bulk` ENABLE KEYS */;

--
-- Table structure for table `magento_login_as_customer_log`
--

DROP TABLE IF EXISTS `magento_login_as_customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `magento_login_as_customer_log` (
  `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Log Id',
  `time` timestamp NULL DEFAULT NULL COMMENT 'Event Date',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'User Id',
  `user_name` varchar(40) DEFAULT NULL COMMENT 'User Name',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `customer_email` varchar(40) DEFAULT NULL COMMENT 'Customer email',
  PRIMARY KEY (`log_id`),
  KEY `MAGENTO_LOGIN_AS_CUSTOMER_LOG_USER_ID` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Login as Customer Logging';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_login_as_customer_log`
--

/*!40000 ALTER TABLE `magento_login_as_customer_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_login_as_customer_log` ENABLE KEYS */;

--
-- Table structure for table `magento_operation`
--

DROP TABLE IF EXISTS `magento_operation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `magento_operation` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Operation ID',
  `operation_key` int(10) unsigned DEFAULT NULL COMMENT 'Operation Key',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Name of the related message queue topic',
  `serialized_data` blob DEFAULT NULL COMMENT 'Data (serialized) required to perform an operation',
  `result_serialized_data` blob DEFAULT NULL COMMENT 'Result data (serialized) after perform an operation',
  `status` smallint(6) DEFAULT 0 COMMENT 'Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)',
  `error_code` smallint(6) DEFAULT NULL COMMENT 'Code of the error that appeared during operation execution (used to aggregate related failed operations)',
  `result_message` varchar(255) DEFAULT NULL COMMENT 'Operation result message',
  `started_at` timestamp NULL DEFAULT NULL COMMENT 'Datetime the operation started processing',
  PRIMARY KEY (`id`),
  KEY `MAGENTO_OPERATION_BULK_UUID_ERROR_CODE` (`bulk_uuid`,`error_code`),
  KEY `MAGENTO_OPERATION_STATUS_STARTED_AT` (`status`,`started_at`),
  CONSTRAINT `MAGENTO_OPERATION_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Operation entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_operation`
--

/*!40000 ALTER TABLE `magento_operation` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_operation` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_author`
--

DROP TABLE IF EXISTS `mageplaza_blog_author`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_author` (
  `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Author ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Display Name',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Author URL Key',
  `email` text DEFAULT '' COMMENT 'Author email',
  `customer_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer ID',
  `type` int(10) unsigned DEFAULT 0 COMMENT 'Author Type',
  `status` int(10) unsigned DEFAULT 0 COMMENT 'Author Status',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Author Updated At',
  `created_at` timestamp NULL DEFAULT current_timestamp() COMMENT 'Author Created At',
  `image` varchar(255) DEFAULT NULL COMMENT 'Author Image',
  `short_description` text DEFAULT NULL COMMENT 'Author Short Description',
  `facebook_link` varchar(255) DEFAULT NULL COMMENT 'Facebook Link',
  `twitter_link` varchar(255) DEFAULT NULL COMMENT 'Twitter Link',
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_AUTHOR_USER_ID` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Author Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_author`
--

/*!40000 ALTER TABLE `mageplaza_blog_author` DISABLE KEYS */;
INSERT INTO `mageplaza_blog_author` VALUES (1,'Admin','admin','',0,0,1,NULL,'2022-08-24 08:54:07',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `mageplaza_blog_author` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_category`
--

DROP TABLE IF EXISTS `mageplaza_blog_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_category` (
  `category_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Category ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Category Name',
  `description` text DEFAULT NULL COMMENT 'Category Description',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Category URL Key',
  `enabled` int(11) DEFAULT NULL COMMENT 'Category Enabled',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Category Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Category Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Category Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL COMMENT 'Category Parent Id',
  `path` varchar(255) DEFAULT NULL COMMENT 'Category Path',
  `position` int(11) DEFAULT NULL COMMENT 'Category Position',
  `level` int(11) DEFAULT NULL COMMENT 'Category Level',
  `children_count` int(11) DEFAULT NULL COMMENT 'Category Children Count',
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_category`
--

/*!40000 ALTER TABLE `mageplaza_blog_category` DISABLE KEYS */;
INSERT INTO `mageplaza_blog_category` VALUES (1,'ROOT',NULL,'','root',NULL,NULL,NULL,NULL,NULL,NULL,'1',0,0,0,NULL,NULL,NULL),(2,'ROOT',NULL,'','root',NULL,NULL,NULL,NULL,NULL,NULL,'1',0,0,0,NULL,NULL,NULL),(3,'ROOT',NULL,'','root',NULL,NULL,NULL,NULL,NULL,NULL,'1',0,0,0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `mageplaza_blog_category` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_comment`
--

DROP TABLE IF EXISTS `mageplaza_blog_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_comment` (
  `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Comment ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'User Comment ID',
  `has_reply` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Comment has reply',
  `is_reply` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is reply comment',
  `reply_id` int(10) unsigned DEFAULT 0 COMMENT 'Reply ID',
  `content` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `status` smallint(5) unsigned NOT NULL DEFAULT 3 COMMENT 'Status',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `user_name` text DEFAULT NULL COMMENT 'User Name',
  `user_email` text DEFAULT NULL COMMENT 'User Email',
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`comment_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_COMMENT_ID` (`comment_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_ENTITY_ID` (`entity_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` (`post_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_COMMENT_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mageplaza_blog_comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_comment`
--

/*!40000 ALTER TABLE `mageplaza_blog_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_comment` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_comment_like`
--

DROP TABLE IF EXISTS `mageplaza_blog_comment_like`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_comment_like` (
  `like_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Like ID',
  `comment_id` int(10) unsigned NOT NULL COMMENT 'Comment ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'User Like ID',
  PRIMARY KEY (`like_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_LIKE_LIKE_ID` (`like_id`),
  KEY `FK_1AA6C994694449283752B6F4C2373B42` (`comment_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_LIKE_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_1AA6C994694449283752B6F4C2373B42` FOREIGN KEY (`comment_id`) REFERENCES `mageplaza_blog_comment` (`comment_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_COMMENT_LIKE_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mageplaza_blog_comment_like';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_comment_like`
--

/*!40000 ALTER TABLE `mageplaza_blog_comment_like` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_comment_like` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post`
--

DROP TABLE IF EXISTS `mageplaza_blog_post`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post` (
  `post_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Post ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Post Name',
  `short_description` text DEFAULT NULL COMMENT 'Post Short Description',
  `post_content` text DEFAULT NULL COMMENT 'Post Content',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `image` varchar(255) DEFAULT NULL COMMENT 'Post Image',
  `views` int(11) DEFAULT NULL COMMENT 'Post Views',
  `enabled` int(11) DEFAULT NULL COMMENT 'Post Enabled',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Post URL Key',
  `in_rss` int(11) DEFAULT NULL COMMENT 'Post In RSS',
  `allow_comment` int(11) DEFAULT NULL COMMENT 'Post Allow Comment',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Post Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Post Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Post Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `author_id` int(10) unsigned DEFAULT NULL COMMENT 'Author ID',
  `modifier_id` int(10) unsigned DEFAULT NULL COMMENT 'Modifier ID',
  `publish_date` timestamp NULL DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  `layout` text DEFAULT NULL COMMENT 'Post Layout',
  PRIMARY KEY (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_AUTHOR_ID_MAGEPLAZA_BLOG_AUTHOR_USER_ID` (`author_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_AUTHOR_ID_MAGEPLAZA_BLOG_AUTHOR_USER_ID` FOREIGN KEY (`author_id`) REFERENCES `mageplaza_blog_author` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post`
--

/*!40000 ALTER TABLE `mageplaza_blog_post` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_category`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_category` (
  `category_id` int(10) unsigned NOT NULL COMMENT 'Category ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`category_id`,`post_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_CATEGORY_CATEGORY_ID_POST_ID` (`category_id`,`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_CATEGORY_CATEGORY_ID` (`category_id`),
  KEY `MAGEPLAZA_BLOG_POST_CATEGORY_POST_ID` (`post_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_CATEGORY_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_CTGR_CTGR_ID_MAGEPLAZA_BLOG_CTGR_CTGR_ID` FOREIGN KEY (`category_id`) REFERENCES `mageplaza_blog_category` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Category To Post Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_category`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_category` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_history`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Post Name',
  `short_description` text DEFAULT NULL COMMENT 'Post Short Description',
  `post_content` text DEFAULT NULL COMMENT 'Post Content',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `image` varchar(255) DEFAULT NULL COMMENT 'Post Image',
  `views` int(11) DEFAULT NULL COMMENT 'Post Views',
  `enabled` int(11) DEFAULT NULL COMMENT 'Post Enabled',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Post URL Key',
  `in_rss` int(11) DEFAULT NULL COMMENT 'Post In RSS',
  `allow_comment` int(11) DEFAULT NULL COMMENT 'Post Allow Comment',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Post Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Post Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Post Meta Keywords',
  `meta_robots` text DEFAULT NULL COMMENT 'Post Meta Robots',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Post Updated At',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Post Created At',
  `author_id` int(10) unsigned NOT NULL COMMENT 'Author ID',
  `modifier_id` int(10) unsigned NOT NULL COMMENT 'Modifier ID',
  `publish_date` timestamp NULL DEFAULT NULL COMMENT 'Publish Date',
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  `layout` text DEFAULT NULL COMMENT 'Post Layout',
  `category_ids` varchar(255) DEFAULT NULL COMMENT 'Post Category Id',
  `tag_ids` varchar(255) DEFAULT NULL COMMENT 'Post Tag Id',
  `topic_ids` varchar(255) DEFAULT NULL COMMENT 'Post Topic Id',
  `product_ids` text DEFAULT NULL COMMENT 'Post Product Id',
  PRIMARY KEY (`history_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post History Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_history`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_history` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_like`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_like`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_like` (
  `like_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Like ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `action` int(10) unsigned NOT NULL COMMENT 'type like',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'User Like ID',
  PRIMARY KEY (`like_id`),
  KEY `MAGEPLAZA_BLOG_POST_LIKE_LIKE_ID` (`like_id`),
  KEY `MAGEPLAZA_BLOG_POST_LIKE_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` (`post_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_LIKE_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mageplaza_blog_post_like';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_like`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_like` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_like` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_product`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_product` (
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`post_id`,`entity_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_PRODUCT_POST_ID_ENTITY_ID` (`post_id`,`entity_id`),
  KEY `MAGEPLAZA_BLOG_POST_PRODUCT_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_PRODUCT_ENTITY_ID` (`entity_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_PRD_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_PRODUCT_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post To Product Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_product`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_product` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_tag`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_tag` (
  `tag_id` int(10) unsigned NOT NULL COMMENT 'Tag ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`tag_id`,`post_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_TAG_POST_ID_TAG_ID` (`post_id`,`tag_id`),
  KEY `MAGEPLAZA_BLOG_POST_TAG_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_TAG_TAG_ID` (`tag_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TAG_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TAG_TAG_ID_MAGEPLAZA_BLOG_TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `mageplaza_blog_tag` (`tag_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post To Tag Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_tag`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_tag` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_topic`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_topic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_topic` (
  `topic_id` int(10) unsigned NOT NULL COMMENT 'Topic ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`topic_id`,`post_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_TOPIC_POST_ID_TOPIC_ID` (`post_id`,`topic_id`),
  KEY `MAGEPLAZA_BLOG_POST_TOPIC_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_TOPIC_TOPIC_ID` (`topic_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TOPIC_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TOPIC_TOPIC_ID_MAGEPLAZA_BLOG_TOPIC_TOPIC_ID` FOREIGN KEY (`topic_id`) REFERENCES `mageplaza_blog_topic` (`topic_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post To Topic Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_topic`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_topic` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_topic` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_post_traffic`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_traffic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_post_traffic` (
  `traffic_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Traffic ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `numbers_view` int(11) DEFAULT NULL,
  PRIMARY KEY (`traffic_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_TRAFFIC_POST_ID_TRAFFIC_ID` (`post_id`,`traffic_id`),
  KEY `MAGEPLAZA_BLOG_POST_TRAFFIC_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_TRAFFIC_TRAFFIC_ID` (`traffic_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TRAFFIC_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Traffic Post Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_traffic`
--

/*!40000 ALTER TABLE `mageplaza_blog_post_traffic` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_post_traffic` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_tag`
--

DROP TABLE IF EXISTS `mageplaza_blog_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_tag` (
  `tag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tag ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Tag Name',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Tag URL Key',
  `description` text DEFAULT NULL COMMENT 'Tag Description',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `enabled` int(11) DEFAULT NULL COMMENT 'Tag Enabled',
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Post Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Post Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Post Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_tag`
--

/*!40000 ALTER TABLE `mageplaza_blog_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_tag` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_blog_topic`
--

DROP TABLE IF EXISTS `mageplaza_blog_topic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_blog_topic` (
  `topic_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Topic ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Topic Name',
  `description` text DEFAULT NULL COMMENT 'Topic Description',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `enabled` int(11) DEFAULT NULL COMMENT 'Topic Enabled',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Topic URL Key',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Topic Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Topic Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Topic Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`topic_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Topic Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_topic`
--

/*!40000 ALTER TABLE `mageplaza_blog_topic` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_blog_topic` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_smtp_abandonedcart`
--

DROP TABLE IF EXISTS `mageplaza_smtp_abandonedcart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_smtp_abandonedcart` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log Id',
  `log_ids` varchar(255) DEFAULT NULL COMMENT 'Log Ids',
  `token` varchar(255) DEFAULT NULL COMMENT 'Token',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote Id',
  `status` smallint(6) NOT NULL COMMENT 'Status',
  `created_at` timestamp NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`id`),
  KEY `MAGEPLAZA_SMTP_ABANDONEDCART_QUOTE_ID_QUOTE_ENTITY_ID` (`quote_id`),
  CONSTRAINT `MAGEPLAZA_SMTP_ABANDONEDCART_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='SMTP Abandoned Cart';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_smtp_abandonedcart`
--

/*!40000 ALTER TABLE `mageplaza_smtp_abandonedcart` DISABLE KEYS */;
/*!40000 ALTER TABLE `mageplaza_smtp_abandonedcart` ENABLE KEYS */;

--
-- Table structure for table `mageplaza_smtp_log`
--

DROP TABLE IF EXISTS `mageplaza_smtp_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mageplaza_smtp_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `subject` varchar(255) DEFAULT NULL COMMENT 'Email Subject',
  `email_content` text DEFAULT NULL COMMENT 'Email Content',
  `status` smallint(6) NOT NULL COMMENT 'Status',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `sender` varchar(255) DEFAULT NULL COMMENT 'Sender',
  `recipient` varchar(255) DEFAULT NULL COMMENT 'Recipient',
  `cc` varchar(255) DEFAULT NULL COMMENT 'Cc',
  `bcc` varchar(255) DEFAULT NULL COMMENT 'Bcc',
  PRIMARY KEY (`id`),
  KEY `MAGEPLAZA_SMTP_LOG_STATUS` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='mageplaza_smtp_log';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_smtp_log`
--

/*!40000 ALTER TABLE `mageplaza_smtp_log` DISABLE KEYS */;
INSERT INTO `mageplaza_smtp_log` VALUES (1,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 20px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Roberto Torresani,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 300; line-height: 1.1; font-size: 26px; margin-top: 0; border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 10px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000001&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;4 ago 2022, 18:22:44&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Roberto Torresani&lt;br&gt;\n\nVia Trentino&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3404922491&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3404922491&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Roberto Torresani&lt;br&gt;\n\nVia Trentino&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3404922491&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3404922491&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di Spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 10px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5px;&quot;&gt;Vino Test&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: Vino Test&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: center;&#039;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;1,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;6,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-04 16:22:45','Sales <sales@example.com>','roberto@torresani.eu',NULL,NULL),(2,'Benvenuto a Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Roberto Torresani,&lt;/p&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Benvenuto su Indaco.&lt;/p&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    Per accedere al nostro sito, è necessario utilizzare queste credenziali durante il checkout o sulla pagina &lt;a href=&quot;http://magento.test.indaco.store/customer/account/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt; Mio Account&lt;/a&gt;:\n&lt;/p&gt;\n&lt;table class=&quot;email-credentials&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n    &lt;tr&gt;\n        &lt;th style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left;&#039;&gt;Email:&lt;/th&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;roberto@torresani.eu&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;th style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; padding-bottom: 10px;&#039;&gt;Password:&lt;/th&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 10px;&#039;&gt;&lt;em style=&quot;font-style: italic;&quot;&gt;Password impostata durante la creazione account&lt;/em&gt;&lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    Hai dimenticato la password dell&#039;account? Clicca &lt;a href=&quot;http://magento.test.indaco.store/customer/account/createPassword/?id=1&amp;amp;token=rRLScaXpqpCenC9GVatgKSdvuNZf2pe0&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;qui&lt;/a&gt; per reimpostarla.\n&lt;/p&gt;\n&lt;br&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Accedendo al tuo account, sarai in grado di:&lt;/p&gt;\n&lt;table class=&quot;email-features&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_checkout.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Conferma ordine rapido&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Procedere velocemente attraverso il checkout&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_status.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Status Ordine&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Controlla gli status degli ordini&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%; padding-top: 20px;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_address.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Gestisci Indirizzi&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Indirizzi alternativi del negozio&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Per spedizione a più membri della famiglia e a più amici&lt;/p&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%; padding-top: 20px;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659629397/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_history.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Cronologia ordine&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Mostra ordini passati&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-04 16:23:32','Owner <owner@example.com>','roberto@torresani.eu',NULL,NULL),(3,'New admin user \'agottardi\' created','Ciao,\n\nA new admin account was created for Andrea, Gottardi using andrea.gottardi@deltainformatica.eu.\nSe non hai autorizzato questa azione, contattaci immediatamente al support@example.com or call us at +39 0461 123456.\n\nGrazie,\nIndaco',1,'2022-08-05 09:43:22','Owner <owner@example.com>','owner@example.com',NULL,NULL),(4,'Conferma il ripristino della password per Andrea Gottardi','Andrea Gottardi,\n\nC&amp;#039;è stata recentemente una richiesta per modificare la password per il tuo account.\n\nSe hai richiesto questa modifica, reimposta la password qui:\n\nhttp://magento.test.indaco.store/admin_xd1yn7/admin/auth/resetpassword/key/0540f67b6259f871d9d4c0987b652c7bd9bd9f17cdc998192b9b78f094e0616c/?id=3&amp;token=qDxxcHgP60TejbxMw9Lj6M27RPHxpWQ9\n\nSe non hai fatto questa richiesta, è possibile ignorare questa email e la tua password rimarrà immutata.\n\nGrazie,\nIndaco',1,'2022-08-05 13:16:18','Owner <owner@example.com>','andrea.gottardi@deltainformatica.eu',NULL,NULL),(5,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 20px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 300; line-height: 1.1; font-size: 26px; margin-top: 0; border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 10px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000002&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;8 ago 2022, 17:24:47&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nVia kufstein,5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3232323236&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3232323236&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nVia kufstein,5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3232323236&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3232323236&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di Spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 10px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5px;&quot;&gt;primo prodotto - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: center;&#039;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;12,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;12,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;17,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-08 15:24:48','Sales <sales@example.com>','daniele.dellagiacoma@deltainformatica.eu',NULL,NULL),(6,'Benvenuto a Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma,&lt;/p&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Benvenuto su Indaco.&lt;/p&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    Per accedere al nostro sito, è necessario utilizzare queste credenziali durante il checkout o sulla pagina &lt;a href=&quot;http://magento.test.indaco.store/customer/account/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt; Mio Account&lt;/a&gt;:\n&lt;/p&gt;\n&lt;table class=&quot;email-credentials&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n    &lt;tr&gt;\n        &lt;th style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left;&#039;&gt;Email:&lt;/th&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;daniele.dellagiacoma@deltainformatica.eu&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;th style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; padding-bottom: 10px;&#039;&gt;Password:&lt;/th&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 10px;&#039;&gt;&lt;em style=&quot;font-style: italic;&quot;&gt;Password impostata durante la creazione account&lt;/em&gt;&lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    Hai dimenticato la password dell&#039;account? Clicca &lt;a href=&quot;http://magento.test.indaco.store/customer/account/createPassword/?id=2&amp;amp;token=wJaRBfUP8tIJEO9mN3jc9I1bBZgkCeJ2&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;qui&lt;/a&gt; per reimpostarla.\n&lt;/p&gt;\n&lt;br&gt;\n&lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Accedendo al tuo account, sarai in grado di:&lt;/p&gt;\n&lt;table class=&quot;email-features&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_checkout.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Conferma ordine rapido&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Procedere velocemente attraverso il checkout&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_status.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Status Ordine&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Controlla gli status degli ordini&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%; padding-top: 20px;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_address.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Gestisci Indirizzi&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Indirizzi alternativi del negozio&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Per spedizione a più membri della famiglia e a più amici&lt;/p&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; width: 50%; padding-top: 20px;&#039;&gt;\n            &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 10px; width: 30px;&#039;&gt;\n                        &lt;img src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Customer/images/icn_history.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Cronologia ordine&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-right: 25px; width: auto;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 0; margin-top: 5px;&quot;&gt;Mostra ordini passati&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-09 08:04:53','Owner <owner@example.com>','daniele.dellagiacoma@deltainformatica.eu',NULL,NULL),(7,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 20px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;http://magento.test.indaco.store/customer/account/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 300; line-height: 1.1; font-size: 26px; margin-top: 0; border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 10px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000003&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;9 ago 2022, 10:08:41&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nvia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3462547685&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3462547685&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nvia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3462547685&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3462547685&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di Spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 10px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5px;&quot;&gt;primo prodotto - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: center;&#039;&gt;2&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;24,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;24,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;10,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;34,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-09 08:08:42','Sales <sales@example.com>','daniele.dellagiacoma@deltainformatica.eu',NULL,NULL),(8,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 20px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;http://magento.test.indaco.store/customer/account/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 300; line-height: 1.1; font-size: 26px; margin-top: 0; border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 10px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000004&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;9 ago 2022, 13:59:19&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nvia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3462547685&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3462547685&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nvia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3462547685&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3462547685&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di Spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 10px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5px;&quot;&gt;primo prodotto - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: center;&#039;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;12,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;12,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;17,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-09 11:59:19','Sales <sales@example.com>','daniele.dellagiacoma@deltainformatica.eu',NULL,NULL),(9,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1659713423/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 20px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;http://magento.test.indaco.store/customer/account/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 300; line-height: 1.1; font-size: 26px; margin-top: 0; border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 10px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000005&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;9 ago 2022, 14:25:53&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nvia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3462547685&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3462547685&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Daniele Dellagiacoma&lt;br&gt;\n\nvia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3462547685&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;3462547685&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px 10px 10px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 300; line-height: 1.1; font-size: 18px; margin-bottom: 10px; margin-top: 0;&quot;&gt;Metodo di Spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 10px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 10px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5px;&quot;&gt;primo prodotto - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: center;&#039;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 10px; border-top: 1px solid #ccc; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;12,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;12,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 10px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;17,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-09 12:25:54','Sales <sales@example.com>','daniele.dellagiacoma@deltainformatica.eu',NULL,NULL),(10,'Access Your Account Data','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }\n\n        @import url(&quot;http://magento.test.indaco.store/static/version1660318653/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:14px}p{margin-top:0;margin-bottom:10px}abbr[title]{border-bottom:1px dotted #ccc;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#f6f6f6;color:#000}small,.small{font-size:12px}hr{border:0;border-top:1px solid #ccc;margin-bottom:20px;margin-top:20px}sub,sup{font-size:71.42857143000001%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:300;line-height:1.1;font-size:26px;margin-top:0;margin-bottom:20px}h2{font-weight:300;line-height:1.1;font-size:26px;margin-top:25px;margin-bottom:20px}h3{font-weight:300;line-height:1.1;font-size:18px;margin-top:20px;margin-bottom:10px}h4{font-weight:700;line-height:1.1;font-size:14px;margin-top:20px;margin-bottom:20px}h5{font-weight:700;line-height:1.1;font-size:12px;margin-top:20px;margin-bottom:20px}h6{font-weight:700;line-height:1.1;font-size:10px;margin-top:20px;margin-bottom:20px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#006bb4;text-decoration:none}a:visited,.alink:visited{color:#006bb4;text-decoration:none}a:hover,.alink:hover{color:#006bb4;text-decoration:underline}a:active,.alink:active{color:#ff5501;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:25px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:20px;margin-top:0}dt{font-weight:700;margin-bottom:5px;margin-top:0}dd{margin-bottom:10px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px;white-space:nowrap}kbd{background:#f6f6f6;color:#111;padding:2px 4px;font-size:12px}pre{background:#f6f6f6;border:1px solid #ccc;color:#111;line-height:1.42857143;margin:0 0 10px;padding:10px;font-size:12px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #ccc;margin:0 0 20px 40px;padding:0;color:#333;font-family:&#039;Open Sans&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:14px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:10px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 10px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 10px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:12px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:25px 10px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:20px;width:auto !important}.email-summary h1{font-size:24px !important}.order-details .address-details,.order-details .method-info{display:block;padding:10px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:16px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#006bb4 !important;text-decoration:none !important}a:hover{color:#006bb4 !important;text-decoration:underline !important}a:active{color:#ff5501 !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#006bb4 !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#006bb4 !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #006bb4;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1660318653/frontend/Magento/luma/it_IT/css/email-fonts.css&quot;);a:visited{color: #006bb4; text-decoration: none;}a:hover{color: #006bb4; text-decoration: underline;}a:active{color: #ff5501; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 14px; font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 30px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1660318653/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 25px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n  &lt;tr&gt;\n    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;&lt;h1 style=&quot;font-weight: 300; line-height: 1.1; font-size: 26px; margin-top: 0; margin-bottom: 20px;&quot;&gt;Access Your Account Data at Indaco&lt;/h1&gt;&lt;/td&gt;\n  &lt;/tr&gt;\n  &lt;tr&gt;\n    &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Dear Guest,&lt;/p&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;Thank you for requesting your account data from our store.\n        To download or remove your data please click on the link below:&lt;/p&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;&lt;a href=&quot;http://magento.test.indaco.store/privacy-center/account/index/token/8Jh4AoojmDJCWium0M1Lqat32sxolDhn/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;Click Here to Access Your Data&lt;/a&gt;&lt;/p&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;If you are experiencing troubles with the above link, please copy/paste the link below into your web browser:&lt;/p&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;&lt;a href=&quot;http://magento.test.indaco.store/privacy-center/account/index/token/8Jh4AoojmDJCWium0M1Lqat32sxolDhn/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;http://magento.test.indaco.store/privacy-center/account/index/token/8Jh4AoojmDJCWium0M1Lqat32sxolDhn/&lt;/a&gt;&lt;/p&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;This link will be active until 2022-08-13&lt;/p&gt;\n      &lt;p style=&quot;margin-top: 0; margin-bottom: 10px;&quot;&gt;If you have any questions about this email or you did not request to remove your account data - please\n        &lt;a href=&quot;http://magento.test.indaco.store/contact/&quot; style=&quot;color: #006bb4; text-decoration: none;&quot;&gt;contact&lt;/a&gt; our support immediately.&lt;/p&gt;\n    &lt;/td&gt;\n  &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 25px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 18px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Open Sans&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 25px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-08-12 15:38:48','Support Team <data-privacy-support@example.com>','roberto@torresani.eu',NULL,NULL),(11,'Your Account Data has Been Downloaded Successfully','&lt;body style=&quot;background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;&quot;&gt;\n&lt;div style=&quot;background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;&quot;&gt;\n    &lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot;&gt;\n        &lt;tr&gt;\n            &lt;td align=&quot;center&quot; valign=&quot;top&quot; style=&quot;padding:20px 0 20px 0&quot;&gt;\n                &lt;table bgcolor=&quot;#FFFFFF&quot; cellspacing=&quot;0&quot; cellpadding=&quot;10&quot; border=&quot;0&quot; width=&quot;650&quot; style=&quot;border:1px solid #E0E0E0;&quot;&gt;\n                    &lt;!-- [ header starts here] --&gt;\n                    &lt;tr&gt;\n                        &lt;td valign=&quot;top&quot;&gt;&lt;a href=&quot;http://magento.test.indaco.store/&quot;&gt;&lt;img src=&quot;http://magento.test.indaco.store/static/version1660318653/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; style=&quot;margin-bottom:10px;&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;h1&gt;Your Account Data has Been Downloaded Successfully&lt;/h1&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;p&gt;This email serves as confirmation that your store account data has been downloaded successfully.&lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;p&gt;If you have any questions about this email or you did not request to download your account data - please change your store password and contact our support immediately!&lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;p&gt;\n                                &lt;a href=&quot;http://magento.test.indaco.store/customer/account/login/&quot;&gt;Log In to Your Account&lt;/a&gt;&amp;nbsp;\n                                &lt;a href=&quot;http://magento.test.indaco.store/contact/&quot;&gt;Contact Us&lt;/a&gt;&amp;nbsp;\n                            &lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td bgcolor=&quot;#EAEAEA&quot; align=&quot;center&quot; style=&quot;background:#EAEAEA;&quot;&gt;\n                            &lt;p&gt;\n                                Thank you, Indaco\n                            &lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                &lt;/table&gt;\n            &lt;/td&gt;\n        &lt;/tr&gt;\n    &lt;/table&gt;\n&lt;/div&gt;\n&lt;/body&gt;',1,'2022-08-12 15:39:23','Support Team <data-privacy-support@example.com>','roberto@torresani.eu',NULL,NULL),(12,'Your Account Data has Been Downloaded Successfully','&lt;body style=&quot;background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;&quot;&gt;\n&lt;div style=&quot;background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;&quot;&gt;\n    &lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot;&gt;\n        &lt;tr&gt;\n            &lt;td align=&quot;center&quot; valign=&quot;top&quot; style=&quot;padding:20px 0 20px 0&quot;&gt;\n                &lt;table bgcolor=&quot;#FFFFFF&quot; cellspacing=&quot;0&quot; cellpadding=&quot;10&quot; border=&quot;0&quot; width=&quot;650&quot; style=&quot;border:1px solid #E0E0E0;&quot;&gt;\n                    &lt;!-- [ header starts here] --&gt;\n                    &lt;tr&gt;\n                        &lt;td valign=&quot;top&quot;&gt;&lt;a href=&quot;http://magento.test.indaco.store/&quot;&gt;&lt;img src=&quot;http://magento.test.indaco.store/static/version1660318653/frontend/Magento/luma/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; style=&quot;margin-bottom:10px;&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;h1&gt;Your Account Data has Been Downloaded Successfully&lt;/h1&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;p&gt;This email serves as confirmation that your store account data has been downloaded successfully.&lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;p&gt;If you have any questions about this email or you did not request to download your account data - please change your store password and contact our support immediately!&lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td&gt;\n                            &lt;p&gt;\n                                &lt;a href=&quot;http://magento.test.indaco.store/customer/account/login/&quot;&gt;Log In to Your Account&lt;/a&gt;&amp;nbsp;\n                                &lt;a href=&quot;http://magento.test.indaco.store/contact/&quot;&gt;Contact Us&lt;/a&gt;&amp;nbsp;\n                            &lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                    &lt;tr&gt;\n                        &lt;td bgcolor=&quot;#EAEAEA&quot; align=&quot;center&quot; style=&quot;background:#EAEAEA;&quot;&gt;\n                            &lt;p&gt;\n                                Thank you, Indaco\n                            &lt;/p&gt;\n                        &lt;/td&gt;\n                    &lt;/tr&gt;\n                &lt;/table&gt;\n            &lt;/td&gt;\n        &lt;/tr&gt;\n    &lt;/table&gt;\n&lt;/div&gt;\n&lt;/body&gt;',1,'2022-08-12 15:39:44','Support Team <data-privacy-support@example.com>','roberto@torresani.eu',NULL,NULL),(13,'Benvenuto a Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1662132036/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n&lt;p&gt;Benvenuto su Indaco.&lt;/p&gt;\n&lt;p&gt;\n    Per accedere al nostro sito, è necessario utilizzare queste credenziali durante il checkout o sulla pagina &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt; Mio Account&lt;/a&gt;:\n&lt;/p&gt;\n&lt;table class=&quot;email-credentials&quot;&gt;\n    &lt;tr&gt;\n        &lt;th&gt;Email:&lt;/th&gt;\n        &lt;td&gt;raffaele.decarli@thread.solutions&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;th&gt;Password:&lt;/th&gt;\n        &lt;td&gt;&lt;em&gt;Password impostata durante la creazione account&lt;/em&gt;&lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;p&gt;\n    Hai dimenticato la password dell&#039;account? Clicca &lt;a href=&quot;https://magento.test/customer/account/createPassword/?id=3&amp;amp;token=A6DIaQUVhBIv8VdqOMSBHk7V7SkmZqTA&quot;&gt;qui&lt;/a&gt; per reimpostarla.\n&lt;/p&gt;\n&lt;br&gt;\n&lt;p&gt;Accedendo al tuo account, sarai in grado di:&lt;/p&gt;\n&lt;table class=&quot;email-features&quot;&gt;\n    &lt;tr&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1662132036/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_checkout.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Conferma ordine rapido&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Procedere velocemente attraverso il checkout&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1662132036/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_status.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Status Ordine&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Controlla gli status degli ordini&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1662132036/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_address.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Gestisci Indirizzi&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Indirizzi alternativi del negozio&lt;/h3&gt;\n                        &lt;p&gt;Per spedizione a più membri della famiglia e a più amici&lt;/p&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1662132036/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_history.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Cronologia ordine&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Mostra ordini passati&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-02 15:27:26','Owner <owner@example.com>','raffaele.decarli@thread.solutions',NULL,NULL),(14,'Benvenuto a Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n&lt;p&gt;Benvenuto su Indaco.&lt;/p&gt;\n&lt;p&gt;\n    Per accedere al nostro sito, è necessario utilizzare queste credenziali durante il checkout o sulla pagina &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt; Mio Account&lt;/a&gt;:\n&lt;/p&gt;\n&lt;table class=&quot;email-credentials&quot;&gt;\n    &lt;tr&gt;\n        &lt;th&gt;Email:&lt;/th&gt;\n        &lt;td&gt;raffaele.decarli+1@thread.solutions&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;th&gt;Password:&lt;/th&gt;\n        &lt;td&gt;&lt;em&gt;Password impostata durante la creazione account&lt;/em&gt;&lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;p&gt;\n    Hai dimenticato la password dell&#039;account? Clicca &lt;a href=&quot;https://magento.test/customer/account/createPassword/?id=4&amp;amp;token=leUCBbp6JROXydGdxEAKBwkluzAEqZ47&quot;&gt;qui&lt;/a&gt; per reimpostarla.\n&lt;/p&gt;\n&lt;br&gt;\n&lt;p&gt;Accedendo al tuo account, sarai in grado di:&lt;/p&gt;\n&lt;table class=&quot;email-features&quot;&gt;\n    &lt;tr&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_checkout.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Conferma ordine rapido&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Procedere velocemente attraverso il checkout&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_status.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Status Ordine&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Controlla gli status degli ordini&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_address.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Gestisci Indirizzi&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Indirizzi alternativi del negozio&lt;/h3&gt;\n                        &lt;p&gt;Per spedizione a più membri della famiglia e a più amici&lt;/p&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_history.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Cronologia ordine&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Mostra ordini passati&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:35:55','Owner <owner@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(15,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td&gt;\n            &lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n            &lt;p&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td&gt;\n            &lt;h1&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000006&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;16 set 2022, 09:45:24&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td&gt;\n            \n            &lt;table class=&quot;order-details&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot;&gt;\n    &lt;dt class=&quot;title&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot;&gt;\n        &lt;p class=&quot;product-name&quot;&gt;Vino Test&lt;/p&gt;\n        &lt;p class=&quot;sku&quot;&gt;Cod.Art.: vinotest&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            &lt;strong&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot;&gt;\n                            &lt;strong&gt;&lt;span class=&quot;price&quot;&gt;6,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:45:26','Sales <sales@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(16,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td&gt;\n            &lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n            &lt;p&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td&gt;\n            &lt;h1&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000007&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;16 set 2022, 09:48:48&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td&gt;\n            \n            &lt;table class=&quot;order-details&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method&quot;&gt;\n    &lt;dt class=&quot;title&quot;&gt;Bank Transfer Payment&lt;/dt&gt;\n&lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot;&gt;\n        &lt;p class=&quot;product-name&quot;&gt;Vino Test&lt;/p&gt;\n        &lt;p class=&quot;sku&quot;&gt;Cod.Art.: vinotest&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            &lt;strong&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot;&gt;\n                            &lt;strong&gt;&lt;span class=&quot;price&quot;&gt;6,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:48:50','Sales <sales@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(17,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td&gt;\n            &lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n            &lt;p&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td&gt;\n            &lt;h1&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000008&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;16 set 2022, 09:49:56&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td&gt;\n            \n            &lt;table class=&quot;order-details&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method&quot;&gt;\n    &lt;dt class=&quot;title&quot;&gt;Cash On Delivery&lt;/dt&gt;\n&lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot;&gt;\n        &lt;p class=&quot;product-name&quot;&gt;Vino Test&lt;/p&gt;\n        &lt;p class=&quot;sku&quot;&gt;Cod.Art.: vinotest&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            &lt;strong&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot;&gt;\n                            &lt;strong&gt;&lt;span class=&quot;price&quot;&gt;6,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:49:57','Sales <sales@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(18,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td&gt;\n            &lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n            &lt;p&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td&gt;\n            &lt;h1&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000009&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;16 set 2022, 09:52:43&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td&gt;\n            \n            &lt;table class=&quot;order-details&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\nTrento,  Alessandria, 12311&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method&quot;&gt;\n    &lt;dt class=&quot;title&quot;&gt;Cash On Delivery&lt;/dt&gt;\n&lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot;&gt;\n        &lt;p class=&quot;product-name&quot;&gt;La Birra!&lt;/p&gt;\n        &lt;p class=&quot;sku&quot;&gt;Cod.Art.: La Birra!&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;1,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            &lt;strong&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot;&gt;\n                            &lt;strong&gt;&lt;span class=&quot;price&quot;&gt;6,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:52:44','Sales <sales@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(19,'Benvenuto a Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n&lt;p&gt;Benvenuto su Indaco.&lt;/p&gt;\n&lt;p&gt;\n    Per accedere al nostro sito, è necessario utilizzare queste credenziali durante il checkout o sulla pagina &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt; Mio Account&lt;/a&gt;:\n&lt;/p&gt;\n&lt;table class=&quot;email-credentials&quot;&gt;\n    &lt;tr&gt;\n        &lt;th&gt;Email:&lt;/th&gt;\n        &lt;td&gt;raffaele.decarli+1@thread.solutions&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;th&gt;Password:&lt;/th&gt;\n        &lt;td&gt;&lt;em&gt;Password impostata durante la creazione account&lt;/em&gt;&lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;p&gt;\n    Hai dimenticato la password dell&#039;account? Clicca &lt;a href=&quot;https://magento.test/customer/account/createPassword/?id=5&amp;amp;token=3VETVPfdOYiGLrjzJ03FslylrscsyPGN&quot;&gt;qui&lt;/a&gt; per reimpostarla.\n&lt;/p&gt;\n&lt;br&gt;\n&lt;p&gt;Accedendo al tuo account, sarai in grado di:&lt;/p&gt;\n&lt;table class=&quot;email-features&quot;&gt;\n    &lt;tr&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_checkout.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Conferma ordine rapido&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Procedere velocemente attraverso il checkout&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_status.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Status Ordine&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Controlla gli status degli ordini&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_address.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Gestisci Indirizzi&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Indirizzi alternativi del negozio&lt;/h3&gt;\n                        &lt;p&gt;Per spedizione a più membri della famiglia e a più amici&lt;/p&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n        &lt;td&gt;\n            &lt;table&gt;\n                &lt;tr&gt;\n                    &lt;td&gt;\n                        &lt;img src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Customer/images/icn_history.png&quot; height=&quot;30&quot; width=&quot;30&quot; alt=&quot;Cronologia ordine&quot;&gt;\n                    &lt;/td&gt;\n                    &lt;td&gt;\n                        &lt;h3&gt;Mostra ordini passati&lt;/h3&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:55:58','Owner <owner@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(20,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663251189/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td&gt;\n            &lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n            &lt;p&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td&gt;\n            &lt;h1&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000010&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;16 set 2022, 09:57:27&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td&gt;\n            \n            &lt;table class=&quot;order-details&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\ntrento,  Trento, 38123&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\ntrento,  Trento, 38123&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method&quot;&gt;\n    &lt;dt class=&quot;title&quot;&gt;Cash On Delivery&lt;/dt&gt;\n&lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot;&gt;\n        &lt;p class=&quot;product-name&quot;&gt;La morte !&lt;/p&gt;\n        &lt;p class=&quot;sku&quot;&gt;Cod.Art.: La morte !&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;0,99 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;0,99 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            &lt;strong&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot;&gt;\n                            &lt;strong&gt;&lt;span class=&quot;price&quot;&gt;5,99 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 07:57:31','Sales <sales@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL),(21,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        \n\n\n\n\n\n@import &#039;source/lib/_lib.less&#039;; // Global lib\n@import &#039;source/lib/variables/_email.less&#039;; // Global email variables\n@import &#039;source/_theme.less&#039;; // Global variables override\n@import &#039;source/_variables.less&#039;; // Local theme variables\n@import &#039;source/_email-variables.less&#039;; // Theme variables for emails\n\n\n\n@import (reference) &#039;source/_email-base.less&#039;; // Contains primary email styles\n@import (reference) &#039;source/_email-extend.less&#039;; // Contains theme-specific adjustments to email styles\n\n\n\n\n@import (reference) &#039;../Magento_Bundle/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Rma/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Customer/css/source/_email.less&#039;;\n@import (reference) &#039;../Magento_Sales/css/source/_email.less&#039;;\n\n\n\n\n@import &#039;source/lib/_responsive.less&#039;;\n\n@media-target: &#039;all&#039;;\n\n\n\n\n.email-non-inline();\n\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;source/lib/_lib.less&quot;);&lt;/style&gt;\n&lt;/head&gt;\n&lt;body&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;https://magento.test/&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;https://magento.test/static/version1663316552/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td&gt;\n            &lt;p class=&quot;greeting&quot;&gt;Raffaele Decarli,&lt;/p&gt;\n            &lt;p&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n                È possibile controllare lo status del tuo ordine accedendo &lt;a href=&quot;https://magento.test/customer/account/&quot;&gt;al tuo account&lt;/a&gt;.\n            &lt;/p&gt;\n            &lt;p&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td&gt;\n            &lt;h1&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000011&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;16 set 2022, 10:32:22&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td&gt;\n            \n            &lt;table class=&quot;order-details&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\ntrento,  Trento, 38123&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot;&gt;\n                        &lt;h3&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p&gt;Raffaele Decarli&lt;br&gt;\n\nle man dal cul&lt;br&gt;\n\n\n\ntrento,  Trento, 38123&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:1234567890&quot;&gt;1234567890&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method&quot;&gt;\n    &lt;dt class=&quot;title&quot;&gt;Cash On Delivery&lt;/dt&gt;\n&lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot;&gt;\n                        &lt;h3&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot;&gt;\n        &lt;p class=&quot;product-name&quot;&gt;Spremuta di fragole&lt;/p&gt;\n        &lt;p class=&quot;sku&quot;&gt;Cod.Art.: Spremuta di fragole&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;100,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;100,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot;&gt;\n                            &lt;span class=&quot;price&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot;&gt;\n                            &lt;strong&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot;&gt;\n                            &lt;strong&gt;&lt;span class=&quot;price&quot;&gt;105,00 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot;&gt;\n                        &lt;table&gt;\n                            &lt;tr&gt;\n                                &lt;td&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td&gt;\n                                    &lt;p class=&quot;address&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',0,'2022-09-16 08:32:23','Sales <sales@example.com>','raffaele.decarli+1@thread.solutions',NULL,NULL);
/*!40000 ALTER TABLE `mageplaza_smtp_log` ENABLE KEYS */;

--
-- Table structure for table `media_content_asset`
--

DROP TABLE IF EXISTS `media_content_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_content_asset` (
  `asset_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `entity_type` varchar(255) NOT NULL COMMENT 'Content type',
  `entity_id` varchar(255) NOT NULL COMMENT 'Content entity id',
  `field` varchar(255) NOT NULL COMMENT 'Content field',
  PRIMARY KEY (`entity_type`,`entity_id`,`field`,`asset_id`),
  KEY `MEDIA_CONTENT_ASSET_ASSET_ID` (`asset_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relation between media content and media asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_content_asset`
--

/*!40000 ALTER TABLE `media_content_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_content_asset` ENABLE KEYS */;

--
-- Table structure for table `media_gallery_asset`
--

DROP TABLE IF EXISTS `media_gallery_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_gallery_asset` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `path` text DEFAULT NULL COMMENT 'Path',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text DEFAULT NULL COMMENT 'Description',
  `source` varchar(255) DEFAULT NULL COMMENT 'Source',
  `hash` varchar(255) DEFAULT NULL COMMENT 'File hash',
  `content_type` varchar(255) DEFAULT NULL COMMENT 'Content Type',
  `width` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Width',
  `height` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Height',
  `size` int(10) unsigned NOT NULL COMMENT 'Asset file size in bytes',
  `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',
  PRIMARY KEY (`id`),
  KEY `MEDIA_GALLERY_ASSET_ID` (`id`),
  FULLTEXT KEY `MEDIA_GALLERY_ASSET_TITLE` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_gallery_asset`
--

/*!40000 ALTER TABLE `media_gallery_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_gallery_asset` ENABLE KEYS */;

--
-- Table structure for table `media_gallery_asset_keyword`
--

DROP TABLE IF EXISTS `media_gallery_asset_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_gallery_asset_keyword` (
  `keyword_id` int(10) unsigned NOT NULL COMMENT 'Keyword Id',
  `asset_id` int(10) unsigned NOT NULL COMMENT 'Asset ID',
  PRIMARY KEY (`keyword_id`,`asset_id`),
  KEY `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID` (`asset_id`),
  KEY `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID` (`keyword_id`),
  CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`asset_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE,
  CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID_MEDIA_GALLERY_KEYWORD_ID` FOREIGN KEY (`keyword_id`) REFERENCES `media_gallery_keyword` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Asset Keyword';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_gallery_asset_keyword`
--

/*!40000 ALTER TABLE `media_gallery_asset_keyword` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_gallery_asset_keyword` ENABLE KEYS */;

--
-- Table structure for table `media_gallery_keyword`
--

DROP TABLE IF EXISTS `media_gallery_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_gallery_keyword` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Keyword ID',
  `keyword` varchar(255) NOT NULL COMMENT 'Keyword',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MEDIA_GALLERY_KEYWORD_KEYWORD` (`keyword`),
  KEY `MEDIA_GALLERY_KEYWORD_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Keyword';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_gallery_keyword`
--

/*!40000 ALTER TABLE `media_gallery_keyword` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_gallery_keyword` ENABLE KEYS */;

--
-- Table structure for table `mview_state`
--

DROP TABLE IF EXISTS `mview_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mview_state` (
  `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'View State ID',
  `view_id` varchar(255) DEFAULT NULL COMMENT 'View ID',
  `mode` varchar(16) DEFAULT 'disabled' COMMENT 'View Mode',
  `status` varchar(16) DEFAULT 'idle' COMMENT 'View Status',
  `updated` datetime DEFAULT NULL COMMENT 'View updated time',
  `version_id` int(10) unsigned DEFAULT NULL COMMENT 'View Version ID',
  PRIMARY KEY (`state_id`),
  KEY `MVIEW_STATE_VIEW_ID` (`view_id`),
  KEY `MVIEW_STATE_MODE` (`mode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='View State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mview_state`
--

/*!40000 ALTER TABLE `mview_state` DISABLE KEYS */;
/*!40000 ALTER TABLE `mview_state` ENABLE KEYS */;

--
-- Table structure for table `newsletter_problem`
--

DROP TABLE IF EXISTS `newsletter_problem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_problem` (
  `problem_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Problem ID',
  `subscriber_id` int(10) unsigned DEFAULT NULL COMMENT 'Subscriber ID',
  `queue_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue ID',
  `problem_error_code` int(10) unsigned DEFAULT 0 COMMENT 'Problem Error Code',
  `problem_error_text` varchar(200) DEFAULT NULL COMMENT 'Problem Error Text',
  PRIMARY KEY (`problem_id`),
  KEY `NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`),
  CONSTRAINT `NEWSLETTER_PROBLEM_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NLTTR_PROBLEM_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Problems';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_problem`
--

/*!40000 ALTER TABLE `newsletter_problem` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_problem` ENABLE KEYS */;

--
-- Table structure for table `newsletter_queue`
--

DROP TABLE IF EXISTS `newsletter_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_queue` (
  `queue_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `template_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Template ID',
  `newsletter_type` int(11) DEFAULT NULL COMMENT 'Newsletter Type',
  `newsletter_text` text DEFAULT NULL COMMENT 'Newsletter Text',
  `newsletter_styles` text DEFAULT NULL COMMENT 'Newsletter Styles',
  `newsletter_subject` varchar(200) DEFAULT NULL COMMENT 'Newsletter Subject',
  `newsletter_sender_name` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Name',
  `newsletter_sender_email` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Email',
  `queue_status` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue Status',
  `queue_start_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Start At',
  `queue_finish_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Finish At',
  PRIMARY KEY (`queue_id`),
  KEY `NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`),
  CONSTRAINT `NEWSLETTER_QUEUE_TEMPLATE_ID_NEWSLETTER_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `newsletter_template` (`template_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue`
--

/*!40000 ALTER TABLE `newsletter_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_queue` ENABLE KEYS */;

--
-- Table structure for table `newsletter_queue_link`
--

DROP TABLE IF EXISTS `newsletter_queue_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_queue_link` (
  `queue_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Link ID',
  `queue_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue ID',
  `subscriber_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Subscriber ID',
  `letter_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Letter Sent At',
  PRIMARY KEY (`queue_link_id`),
  KEY `NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`),
  CONSTRAINT `NEWSLETTER_QUEUE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NLTTR_QUEUE_LNK_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue_link`
--

/*!40000 ALTER TABLE `newsletter_queue_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_queue_link` ENABLE KEYS */;

--
-- Table structure for table `newsletter_queue_store_link`
--

DROP TABLE IF EXISTS `newsletter_queue_store_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_queue_store_link` (
  `queue_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`queue_id`,`store_id`),
  KEY `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`),
  CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Store Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue_store_link`
--

/*!40000 ALTER TABLE `newsletter_queue_store_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_queue_store_link` ENABLE KEYS */;

--
-- Table structure for table `newsletter_subscriber`
--

DROP TABLE IF EXISTS `newsletter_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_subscriber` (
  `subscriber_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Subscriber ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `change_status_at` timestamp NULL DEFAULT NULL COMMENT 'Change Status At',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `subscriber_email` varchar(150) DEFAULT NULL COMMENT 'Subscriber Email',
  `subscriber_status` int(11) NOT NULL DEFAULT 0 COMMENT 'Subscriber Status',
  `subscriber_confirm_code` varchar(32) DEFAULT 'NULL' COMMENT 'Subscriber Confirm Code',
  `mp_smtp_email_marketing_synced` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing synced',
  PRIMARY KEY (`subscriber_id`),
  KEY `NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`),
  KEY `NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`),
  KEY `NEWSLETTER_SUBSCRIBER_SUBSCRIBER_EMAIL` (`subscriber_email`),
  CONSTRAINT `NEWSLETTER_SUBSCRIBER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_subscriber`
--

/*!40000 ALTER TABLE `newsletter_subscriber` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_subscriber` ENABLE KEYS */;

--
-- Table structure for table `newsletter_template`
--

DROP TABLE IF EXISTS `newsletter_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_template` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) DEFAULT NULL COMMENT 'Template Code',
  `template_text` text DEFAULT NULL COMMENT 'Template Text',
  `template_styles` text DEFAULT NULL COMMENT 'Template Styles',
  `template_type` int(10) unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) DEFAULT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `template_actual` smallint(5) unsigned DEFAULT 1 COMMENT 'Template Actual',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Added At',
  `modified_at` timestamp NULL DEFAULT NULL COMMENT 'Modified At',
  `is_legacy` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Should the template render in legacy mode',
  PRIMARY KEY (`template_id`),
  KEY `NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`),
  KEY `NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Template';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_template`
--

/*!40000 ALTER TABLE `newsletter_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_template` ENABLE KEYS */;

--
-- Table structure for table `oauth_consumer`
--

DROP TABLE IF EXISTS `oauth_consumer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_consumer` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp() COMMENT 'Updated At',
  `name` varchar(255) NOT NULL COMMENT 'Name of consumer',
  `key` varchar(32) NOT NULL COMMENT 'Key code',
  `secret` varchar(128) NOT NULL COMMENT 'Secret code',
  `callback_url` text DEFAULT NULL COMMENT 'Callback URL',
  `rejected_callback_url` text NOT NULL COMMENT 'Rejected callback URL',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `OAUTH_CONSUMER_KEY` (`key`),
  UNIQUE KEY `OAUTH_CONSUMER_SECRET` (`secret`),
  KEY `OAUTH_CONSUMER_CREATED_AT` (`created_at`),
  KEY `OAUTH_CONSUMER_UPDATED_AT` (`updated_at`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='OAuth Consumers';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_consumer`
--

/*!40000 ALTER TABLE `oauth_consumer` DISABLE KEYS */;
INSERT INTO `oauth_consumer` VALUES (2,'2022-08-05 09:32:35','0000-00-00 00:00:00','Integration2','610dee75s27oe0jlx7dx8cyr5k275861','0:3:kRZR6qFBv68LoVyBXVJ6J7ShVv7Rrlp21m16gm/CpQ5gIbzMlzSerIZNXA23BbjL+fGYs++KiBCdMMlI',NULL,''),(3,'2022-08-05 10:26:44','0000-00-00 00:00:00','Integration3','maoz16zpthqi0keg8zp6slx44jsg92za','0:3:dg/uNlGe7EwO0KJUvVRe1abX+V1eg6uGvToCRKzxD8GYC9IM/SblFcYGCaO5Sq5QuE3X3dn+JMqdww83',NULL,'');
/*!40000 ALTER TABLE `oauth_consumer` ENABLE KEYS */;

--
-- Table structure for table `oauth_nonce`
--

DROP TABLE IF EXISTS `oauth_nonce`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_nonce` (
  `nonce` varchar(32) NOT NULL COMMENT 'Nonce String',
  `timestamp` int(10) unsigned NOT NULL COMMENT 'Nonce Timestamp',
  `consumer_id` int(10) unsigned NOT NULL COMMENT 'Consumer ID',
  PRIMARY KEY (`nonce`,`consumer_id`),
  KEY `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` (`consumer_id`),
  KEY `OAUTH_NONCE_TIMESTAMP` (`timestamp`),
  CONSTRAINT `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Nonce';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_nonce`
--

/*!40000 ALTER TABLE `oauth_nonce` DISABLE KEYS */;
INSERT INTO `oauth_nonce` VALUES ('1284793065',1660436644,3),('2132910628',1660437255,3),('1465713296',1660437862,3),('1408347196',1660438473,3),('1611353220',1660439083,3),('1203829647',1660439691,3),('1827241756',1660440302,3),('1762721748',1660440901,3),('1520328735',1660441515,3),('1877839461',1660442123,3),('790106369',1660442732,3),('635179183',1660443331,3),('1452440666',1660443942,3),('319522551',1660444553,3),('1636653302',1660445165,3),('510934113',1660445777,3),('994971122',1660446382,3),('81020864',1660446992,3),('578736185',1660447603,3),('1504769933',1660448203,3),('1412321153',1660448811,3),('1514778977',1660449421,3),('1494089975',1660450022,3),('1303539097',1660450635,3),('1235091820',1660451242,3),('2001398999',1660451852,3),('504565241',1660452463,3),('554460319',1660453072,3),('1762866492',1660453682,3),('34851774',1660454296,3),('1129696350',1660454902,3),('1486438429',1660455512,3),('266923693',1660456125,3),('1614003108',1660456732,3),('660438563',1660457344,3),('1071003222',1660457958,3),('1149442826',1660458568,3),('462264205',1660459171,3),('1994473533',1660459782,3),('83005083',1660460392,3),('934384725',1660461002,3),('1949816061',1660461617,3),('1353688523',1660462223,3),('708241265',1660462825,3),('574045410',1660463433,3),('1291299641',1660464043,3),('399667511',1660464653,3),('342998599',1660465262,3),('242269177',1660465879,3),('28244598',1660466482,3),('664819140',1660467096,3),('934812661',1660467704,3),('1060325595',1660468313,3),('5423958',1660468922,3),('2007441159',1660469574,3),('682841383',1660470176,3),('710006799',1660470796,3),('24719687',1660471401,3),('1033313286',1660472026,3),('434214669',1660472619,3),('2098315804',1660473239,3),('1035149265',1660473836,3),('574778209',1660474448,3),('584414484',1660475049,3),('143366365',1660475663,3),('749997721',1660476272,3),('915119254',1660476875,3),('1187111182',1660477498,3),('1566882314',1660478097,3),('783772211',1660478706,3),('1560450843',1660479325,3),('1103130471',1660479931,3),('1100032918',1660480528,3),('71415608',1660481137,3),('54185280',1660481744,3),('733628888',1660482367,3),('1186909152',1660482967,3),('1278210330',1660483581,3),('1946056180',1660484190,3),('1802793296',1660484800,3),('1486239633',1660485408,3),('76839651',1660486032,3),('1986732438',1660486625,3),('1310324767',1660487249,3),('730868915',1660487862,3),('1600721130',1660488478,3),('526298646',1660489066,3),('503039298',1660489679,3),('1896962453',1660490293,3),('2054001749',1660490905,3),('1803015879',1660491506,3),('371182838',1660492083,3),('2030589196',1660492698,3),('1945293138',1660493303,3),('1559236669',1660493916,3),('1692756242',1660494525,3),('1014484400',1660495141,3),('1191201016',1660495742,3),('2096053443',1660496362,3),('1386840667',1660496964,3),('1295215753',1660497573,3),('247196233',1660498183,3),('714636514',1660498792,3),('1464393642',1660499407,3),('2144296371',1660500019,3),('387167258',1660500624,3),('1290888942',1660501234,3),('514238158',1660501845,3),('1748051526',1660502452,3),('696519157',1660503082,3),('1010040289',1660503677,3),('1855176685',1660504283,3),('1695651246',1660504894,3),('1520928911',1660505505,3),('1072858978',1660506135,3),('366241233',1660506724,3),('91987679',1660507339,3),('1937689875',1660507946,3),('1498244494',1660508554,3),('704576812',1660509164,3),('1443892301',1660509775,3),('1366640358',1660510385,3),('1186412915',1660510997,3),('1693934125',1660511602,3),('1694875876',1660512213,3),('909697664',1660512822,3),('772037122',1660513433,3),('689047873',1660514045,3),('1664736453',1660514657,3),('189419872',1660515264,3),('1574820645',1660515874,3),('330445461',1660516484,3),('62059117',1660517093,3),('1336196033',1660517705,3),('943279551',1660518317,3),('1792760504',1660518927,3),('1239241732',1660519524,3),('1850010388',1660520136,3),('383866078',1660520733,3),('1607161976',1660521344,3),('1778681968',1660521956,3),('189008142',1660522566,3),('83584627',1660523180,3),('1574067400',1660523784,3),('1749129768',1660524385,3),('544297432',1660524994,3),('2065481340',1660525604,3),('1227429309',1660526214,3),('1763784301',1660526825,3),('158076636',1660527436,3),('1132750379',1660528045,3),('2031376156',1660528655,3),('1372047571',1660529265,3),('1584083689',1660529873,3),('435361853',1660530485,3),('12189972',1660531097,3),('1009791893',1660531703,3),('962860563',1660532312,3),('948265786',1660532925,3),('1402125091',1660533534,3),('222293500',1660534156,3),('1364449463',1660534799,3),('974322852',1660535402,3),('774262620',1660536023,3),('1570087087',1660536629,3),('1616608995',1660537234,3),('1636505878',1660537877,3),('273665475',1660538455,3),('1910076140',1660539090,3),('1804085454',1660539666,3),('1302550660',1660540284,3),('1573624997',1660540890,3),('976663491',1660541495,3),('1984687108',1660542118,3),('185763008',1660542720,3),('1765796096',1660543327,3),('1383706843',1660543927,3),('1281972717',1660544535,3),('548126965',1660545149,3),('1992423598',1660545752,3),('1426627114',1660546369,3),('1245155349',1660546978,3),('161222819',1660547588,3),('733482775',1660548211,3),('1502061140',1660548809,3),('521886502',1660549416,3),('1797019260',1660550020,3),('931738576',1660550643,3),('1813493449',1660551245,3),('1648780868',1660551847,3),('237167056',1660552460,3),('1558515953',1660553067,3),('2120587755',1660553672,3),('1789486570',1660554281,3),('127596131',1660554886,3),('790102558',1660555495,3),('1071843457',1660556105,3),('533869817',1660556716,3),('1297393236',1660557340,3),('1355701716',1660557937,3),('1819287214',1660558544,3),('567584288',1660559150,3),('953000532',1660559756,3),('1135584081',1660560366,3),('1375479826',1660560981,3),('1070242738',1660561588,3),('724339274',1660562194,3),('1499488383',1660562807,3),('1096080553',1660563417,3),('1065654357',1660564022,3),('780203349',1660564639,3),('1182888124',1660565247,3),('1599995307',1660565858,3),('2075086041',1660566459,3),('2108059108',1660567073,3),('1151012240',1660567679,3),('87837411',1660568286,3),('866338982',1660568896,3),('107933619',1660569502,3),('1933432798',1660570118,3),('168702990',1660570723,3),('330252365',1660571375,3),('1698264691',1660571949,3),('1388771805',1660572558,3),('590627756',1660573169,3),('952773401',1660573779,3),('1945589389',1660574393,3),('1854766899',1660575002,3),('1474000571',1660575599,3),('520985391',1660576206,3),('237349365',1660576818,3),('125303645',1660577439,3),('349791702',1660578020,3),('1717954184',1660578639,3),('548875425',1660579234,3),('229545487',1660579843,3),('32768937',1660580454,3),('1811831892',1660581053,3),('1904453371',1660581666,3),('1358508223',1660582265,3),('1180302337',1660582878,3),('1094059444',1660583485,3),('353880844',1660584094,3),('1657809250',1660584704,3),('1923932092',1660585315,3),('886646071',1660585935,3),('515551862',1660586537,3),('176084088',1660587145,3),('232404809',1660587755,3),('6242136',1660588365,3),('1795919300',1660588972,3),('1365968824',1660589586,3),('49800726',1660590187,3),('1922086117',1660590800,3),('484346677',1660591405,3),('2080739605',1660592015,3),('1081252718',1660592623,3),('1248700084',1660593235,3),('1919150515',1660593837,3),('1143434029',1660594445,3),('1192342597',1660595060,3),('2056554400',1660595664,3),('527978264',1660596275,3),('332303445',1660596883,3),('1708439385',1660597493,3),('2066151959',1660598107,3),('1426043188',1660598705,3),('1185816097',1660599321,3),('1025022622',1660599926,3),('2001020634',1660600534,3),('529482180',1660601146,3),('1660961071',1660601754,3),('1011655035',1660602357,3),('1910537103',1660602965,3),('920289031',1660603581,3),('1612853118',1660604184,3),('994327167',1660604793,3),('342110637',1660605404,3),('1591231580',1660606003,3),('1283320695',1660606615,3),('719051877',1660607227,3),('2092787965',1660607838,3),('1008651828',1660608444,3),('1086204458',1660609054,3),('1671628241',1660609664,3),('1535151216',1660610275,3),('2009800129',1660610886,3),('1886141607',1660611497,3),('624262918',1660612103,3),('995620524',1660612712,3),('1283874870',1660613326,3),('2087022971',1660613934,3),('690809785',1660614548,3),('1382850012',1660615351,3),('338615193',1660615959,3),('1146628233',1660616385,3),('397425756',1660616992,3),('1793254311',1660617594,3),('751617171',1660618206,3),('1341858665',1660618821,3),('1574179482',1660619418,3),('18113845',1660620027,3),('471042664',1660620634,3),('1533682160',1660621244,3),('115300735',1660621844,3),('354550497',1660622453,3),('731223940',1660623086,3),('1511234402',1660623704,3),('1937946032',1660624308,3),('810250519',1660624914,3),('943808114',1660625528,3),('1859643913',1660626138,3),('1606025756',1660626744,3),('107609827',1660627358,3),('1419523859',1660627964,3),('1287872541',1660628565,3),('480380905',1660629176,3),('243233588',1660629783,3),('404509745',1660630393,3),('226353707',1660630996,3),('160009061',1660631602,3),('376085038',1660632217,3),('280536037',1660632822,3),('1665242462',1660633432,3),('806914812',1660634046,3),('2099966861',1660634657,3),('2019091490',1660635275,3),('841358437',1660635865,3),('1913710152',1660636473,3),('566156083',1660637083,3),('1105792446',1660637690,3),('528266218',1660638305,3),('1900336611',1660638916,3),('616846398',1660639521,3),('465241057',1660640161,3),('646669888',1660640775,3),('317874172',1660641353,3),('342796087',1660641963,3),('1572098067',1660642575,3),('658284975',1660643184,3),('1435968531',1660643797,3),('1515945856',1660644403,3),('362533578',1660645012,3),('576975866',1660645623,3),('642991101',1660646233,3),('1130414070',1660646842,3),('1265550086',1660647465,3),('1860897769',1660648064,3),('1385414117',1660648670,3),('1330497291',1660649253,3),('911536276',1660649866,3),('1138898117',1660650477,3),('935149082',1660651091,3),('1874231118',1660651697,3),('865555618',1660652347,3),('226380297',1660652956,3),('369396714',1660653566,3),('70898245',1660654178,3),('459612666',1660654793,3),('1632516899',1660655395,3),('668324885',1660656017,3),('452195596',1660656617,3),('283768458',1660657227,3),('1492157825',1660657837,3),('1943276615',1660658457,3),('1137980190',1660659057,3),('1936357035',1660659676,3),('146537707',1660660281,3),('1504824755',1660660887,3),('356370290',1660661497,3),('1156982486',1660662108,3),('55609282',1660662721,3),('851521671',1660663324,3),('499322472',1660663956,3),('359845935',1660664619,3),('3016976',1660665176,3),('1479860011',1660665778,3),('119646342',1660666389,3),('1371988671',1660666999,3),('1477982580',1660667617,3),('831914779',1660668220,3),('1435651450',1660668829,3),('1128664558',1660669436,3),('619447800',1660670044,3),('725538039',1660670669,3),('1479195474',1660671274,3),('1091664008',1660671878,3),('214277167',1660672487,3),('105281091',1660673086,3),('597870481',1660673700,3),('1788762232',1660674318,3),('2029355382',1660674935,3),('1066265378',1660675532,3),('476982643',1660676135,3),('1932212600',1660676749,3),('190523306',1660677360,3),('694770156',1660677970,3),('1821622437',1660678575,3),('167830252',1660679201,3),('2138439899',1660679798,3),('1861729560',1660680403,3),('1498171448',1660681018,3),('151792406',1660681634,3),('1054950993',1660682235,3),('851469637',1660682853,3),('2063854658',1660683456,3),('206083321',1660684067,3),('824151058',1660684678,3),('154255397',1660685297,3),('1001588227',1660685894,3),('500063827',1660686496,3),('487025117',1660687100,3),('1536384101',1660687704,3),('1719784414',1660688315,3),('237121748',1660688926,3),('643378957',1660689550,3),('1121196408',1660690153,3),('342374',1660690753,3),('2111386421',1660691370,3),('1544996416',1660691976,3),('171335620',1660692615,3),('1280937766',1660693193,3),('631136639',1660693804,3),('1948830326',1660694417,3),('1878828903',1660695040,3),('1135854639',1660695637,3),('1759377033',1660696243,3),('1573566355',1660696865,3),('629018854',1660697468,3),('1388708003',1660698079,3),('1377564312',1660698700,3),('1165283544',1660699299,3),('1368726909',1660699903,3),('1550553624',1660700521,3),('1884331004',1660701128,3),('978692387',1660701737,3),('1660899331',1660702339,3),('478435149',1660702947,3),('925066128',1660703554,3),('1011420899',1660704162,3),('702007170',1660704776,3),('853963353',1660705386,3),('1449756975',1660705994,3),('323311030',1660706610,3),('636110632',1660707213,3),('1963397053',1660707816,3),('2070697614',1660708428,3),('2037280784',1660709032,3),('541833280',1660709644,3),('1639622537',1660710272,3),('115420151',1660710870,3),('1691301598',1660711467,3),('1118152424',1660712073,3),('767309655',1660712689,3),('564374705',1660713299,3),('938550855',1660713905,3),('580477409',1660714518,3),('236649855',1660715131,3),('2057509186',1660715735,3),('626441541',1660716338,3),('153503633',1660716958,3),('449200512',1660717558,3),('159112131',1660718169,3),('109802014',1660718779,3),('1783402447',1660719381,3),('799238220',1660719991,3),('1455963612',1660720603,3),('1904196876',1660721205,3),('1296779737',1660721810,3),('1179959999',1660722418,3),('1822213306',1660723030,3),('2068117519',1660723655,3),('267472943',1660724245,3),('274369679',1660724852,3),('1329229510',1660725457,3),('1733930997',1660726074,3),('1397172420',1660726686,3),('1123894156',1660727281,3),('256403328',1660727945,3),('1267951618',1660728503,3),('1709880937',1660729113,3),('865201228',1660729716,3),('321560185',1660730309,3),('275858816',1660730911,3),('183946148',1660731516,3),('792092668',1660732131,3),('89092270',1660732740,3),('524590935',1660733352,3),('1370389301',1660734021,3),('1766301830',1660734570,3),('1857554974',1660735177,3),('1758905737',1660735794,3),('1936077340',1660736402,3),('197948996',1660737016,3);
/*!40000 ALTER TABLE `oauth_nonce` ENABLE KEYS */;

--
-- Table structure for table `oauth_token`
--

DROP TABLE IF EXISTS `oauth_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_token` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth Consumer ID',
  `admin_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin user ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer user ID',
  `type` varchar(16) NOT NULL COMMENT 'Token Type',
  `token` varchar(32) NOT NULL COMMENT 'Token',
  `secret` varchar(128) NOT NULL COMMENT 'Token Secret',
  `verifier` varchar(32) DEFAULT NULL COMMENT 'Token Verifier',
  `callback_url` text NOT NULL COMMENT 'Token Callback URL',
  `revoked` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Token revoked',
  `authorized` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Token authorized',
  `user_type` int(11) DEFAULT NULL COMMENT 'User type',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Token creation timestamp',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `OAUTH_TOKEN_TOKEN` (`token`),
  KEY `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` (`admin_id`),
  KEY `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  KEY `OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`),
  KEY `OAUTH_TOKEN_CREATED_AT` (`created_at`),
  CONSTRAINT `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE,
  CONSTRAINT `OAUTH_TOKEN_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='OAuth Tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_token`
--

/*!40000 ALTER TABLE `oauth_token` DISABLE KEYS */;
INSERT INTO `oauth_token` VALUES (5,2,NULL,NULL,'access','0kufmoncdszyzs13bkvyrkjxlgu593bj','0:3:xFdEFj+8nZrbEngpwqOu8ky/MH6OxrDivESsBGX96b7jsTciniwij5jKXNiUcP5ohGzkF41oLcYCX76+','do3e6b9ae7byk45eqmr0dja1jaynx2j0','oob',0,0,1,'2022-08-05 09:36:49'),(6,3,NULL,NULL,'access','97qhoyyozpx76jlogxuwue1g88vlerij','0:3:+jztA0kzUgwyaYXC9QkinigpFKfJKNoOjri/4B8sanwv3I3K3zNQ3G/Tbho4Ljc1tsUhcpsziB+maCP9','634n9ykssegjzy1jfxq9mbsfbxg0o959','oob',0,0,1,'2022-08-05 10:27:23');
/*!40000 ALTER TABLE `oauth_token` ENABLE KEYS */;

--
-- Table structure for table `oauth_token_request_log`
--

DROP TABLE IF EXISTS `oauth_token_request_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_token_request_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `user_name` varchar(255) NOT NULL COMMENT 'Customer email or admin login',
  `user_type` smallint(5) unsigned NOT NULL COMMENT 'User type (admin or customer)',
  `failures_count` smallint(5) unsigned DEFAULT 0 COMMENT 'Number of failed authentication attempts in a row',
  `lock_expires_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Lock expiration time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Log of token request authentication failures.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_token_request_log`
--

/*!40000 ALTER TABLE `oauth_token_request_log` DISABLE KEYS */;
INSERT INTO `oauth_token_request_log` VALUES (1,'6fxozvw17jwgfeyqt48yjih4di3ssn0q',3,1,'2022-07-31 13:20:17'),(2,'1s535lnh4zp9ujjhna5v2vewofuo10p6',3,1,'2022-07-31 13:20:46'),(3,'ddellagiacoma',2,1,'2022-08-08 14:03:04'),(4,'admin',2,2,'2022-08-08 14:13:04');
/*!40000 ALTER TABLE `oauth_token_request_log` ENABLE KEYS */;

--
-- Table structure for table `pagebuilder_template`
--

DROP TABLE IF EXISTS `pagebuilder_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pagebuilder_template` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Template ID Auto Increment',
  `name` varchar(1024) NOT NULL COMMENT 'Template Name',
  `preview_image` varchar(1024) DEFAULT NULL COMMENT 'Template Preview Image',
  `template` longtext NOT NULL COMMENT 'Master Format HTML',
  `created_for` varchar(255) DEFAULT NULL COMMENT 'Created For',
  `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 (`template_id`),
  FULLTEXT KEY `PAGEBUILDER_TEMPLATE_NAME` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Page Builder Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pagebuilder_template`
--

/*!40000 ALTER TABLE `pagebuilder_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `pagebuilder_template` ENABLE KEYS */;

--
-- Table structure for table `password_reset_request_event`
--

DROP TABLE IF EXISTS `password_reset_request_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_request_event` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `request_type` smallint(5) unsigned NOT NULL COMMENT 'Type of the event under a security control',
  `account_reference` varchar(255) DEFAULT NULL COMMENT 'An identifier for existing account or another target',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Timestamp when the event occurs',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`),
  KEY `PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Password Reset Request Event under a security control';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_request_event`
--

/*!40000 ALTER TABLE `password_reset_request_event` DISABLE KEYS */;
INSERT INTO `password_reset_request_event` VALUES (1,1,'andrea.gottardi@deltainformatica.eu','2022-08-05 13:16:18','213.21.147.71');
/*!40000 ALTER TABLE `password_reset_request_event` ENABLE KEYS */;

--
-- Table structure for table `patch_list`
--

DROP TABLE IF EXISTS `patch_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `patch_list` (
  `patch_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Patch Auto Increment',
  `patch_name` varchar(1024) NOT NULL COMMENT 'Patch Class Name',
  PRIMARY KEY (`patch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8 COMMENT='List of data/schema patches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patch_list`
--

/*!40000 ALTER TABLE `patch_list` DISABLE KEYS */;
INSERT INTO `patch_list` VALUES (1,'Magento\\Store\\Setup\\Patch\\Schema\\InitializeStoresAndWebsites'),(2,'Magento\\Catalog\\Setup\\Patch\\Schema\\EnableSegmentation'),(3,'Magento\\Bundle\\Setup\\Patch\\Schema\\UpdateBundleRelatedSchema'),(4,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\CreateLegacyStockStatusView'),(5,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\InitializeDefaultStock'),(6,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\UpdateInventorySourceItem'),(7,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\ReindexDefaultSource'),(8,'Magento\\InventorySales\\Setup\\Patch\\Schema\\InitializeWebsiteDefaultSock'),(9,'Magento\\Review\\Setup\\Patch\\Schema\\AddUniqueConstraintToReviewEntitySummary'),(10,'Magento\\TwoFactorAuth\\Setup\\Patch\\Schema\\CopyTablesFromOldModule'),(11,'Temando\\ShippingRemover\\Setup\\Patch\\Schema\\EmptyTablesRemoval'),(12,'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),(13,'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),(14,'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),(15,'Magento\\Directory\\Setup\\Patch\\Data\\AddCountriesCaribbeanCuracaoKosovoSintMaarten'),(16,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAlbania'),(17,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForArgentina'),(18,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),(19,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),(20,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),(21,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelarus'),(22,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelgium'),(23,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBolivia'),(24,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBulgaria'),(25,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChile'),(26,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChina'),(27,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForColombia'),(28,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForDenmark'),(29,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForEcuador'),(30,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGreece'),(31,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGuyana'),(32,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIceland'),(33,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForItaly'),(34,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),(35,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForParaguay'),(36,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPeru'),(37,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPoland'),(38,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPortugal'),(39,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSuriname'),(40,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSweden'),(41,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForUruguay'),(42,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForVenezuela'),(43,'Magento\\Directory\\Setup\\Patch\\Data\\UpdateRegionNamesForSwitzerland'),(44,'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),(45,'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),(46,'Magento\\Config\\Setup\\Patch\\Data\\RemoveTinymceConfig'),(47,'Magento\\Config\\Setup\\Patch\\Data\\UnsetTinymce3'),(48,'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),(49,'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),(50,'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),(51,'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),(52,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),(53,'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),(54,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),(55,'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),(56,'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),(57,'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),(58,'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),(59,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),(60,'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),(61,'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),(62,'Magento\\Customer\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(63,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAddressAttributesSortOrder'),(64,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),(65,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),(66,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateDefaultCustomerGroupInConfig'),(67,'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),(68,'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),(69,'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),(70,'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),(71,'Magento\\Security\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(72,'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),(73,'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),(74,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),(75,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),(76,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),(77,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),(78,'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(79,'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),(80,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),(81,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),(82,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateCustomLayoutAttributes'),(83,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMultiselectAttributesBackendTypes'),(84,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductDescriptionOrder'),(85,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),(86,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),(87,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),(88,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),(89,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(90,'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),(91,'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(92,'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),(93,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangeMsrpAttributeLabel'),(94,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(95,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchRemovalNotification'),(96,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),(97,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),(98,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeyForProducts'),(99,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeySearchable'),(100,'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),(101,'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(102,'Magento\\Quote\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(103,'Magento\\MediaGalleryUi\\Setup\\Patch\\Data\\AddMediaGalleryPermissions'),(104,'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),(105,'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),(106,'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),(107,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),(108,'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(109,'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),(110,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),(111,'Magento\\Sales\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(112,'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),(113,'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),(114,'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),(115,'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),(116,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeConsumerSecret'),(117,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeOauthToken'),(118,'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),(119,'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),(120,'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),(121,'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),(122,'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),(123,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),(124,'Magento\\Elasticsearch\\Setup\\Patch\\Data\\InvalidateIndex'),(125,'Magento\\Email\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(126,'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),(127,'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),(128,'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),(129,'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),(130,'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),(131,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),(132,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),(133,'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),(134,'Magento\\Analytics\\Setup\\Patch\\Data\\ActivateDataCollection'),(135,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),(136,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),(137,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),(138,'Magento\\InventoryLowQuantityNotification\\Setup\\Patch\\Data\\MigrateCatalogInventoryNotifyStockQuantityData'),(139,'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),(140,'Magento\\Reports\\Setup\\Patch\\Data\\ReportDisableNotification'),(141,'Magento\\Newsletter\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(142,'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),(143,'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(144,'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),(145,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpdateProductAttribute'),(146,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpgradePageBuilderStripStyles'),(147,'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),(148,'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),(149,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateBmltoPayLater'),(150,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),(151,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonLabel'),(152,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonSize'),(153,'Magento\\ReCaptchaMigration\\Setup\\Patch\\Data\\MigrateConfigToRecaptchaModules'),(154,'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),(155,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),(156,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),(157,'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(158,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),(159,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),(160,'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),(161,'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),(162,'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),(163,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),(164,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),(165,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\CopyConfigFromOldModule'),(166,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptConfiguration'),(167,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptGoogleSecrets'),(168,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptSecrets'),(169,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\GenerateDuoSecurityKey'),(170,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\PopulateCountryTable'),(171,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\ResetU2fConfig'),(172,'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),(173,'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),(174,'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),(175,'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),(176,'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),(177,'Magento\\Wishlist\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(178,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\AttributesRemoval'),(179,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\BookmarkCleaner'),(180,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\ConfigRemoval'),(181,'Plumrocket\\GeoIPLookup\\Setup\\Patch\\Schema\\SplitMaxmindTable'),(182,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\CreateEntities'),(183,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\CreateDefaultCategories'),(184,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\DisableConsentModeForOldClients'),(185,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\MigrateConfigsFromGdpr'),(186,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\AddPrivacyFaqsCmsBlock'),(187,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\InstallCheckboxEntities'),(188,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\CreateGeoTargetingUsaStates'),(189,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\MigrateFromGdprCheckboxEntities'),(190,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\UpdateLocationKeyAttribute'),(191,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\SetLocationKeysForCheckboxes'),(192,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductUrlKey');
/*!40000 ALTER TABLE `patch_list` ENABLE KEYS */;

--
-- Table structure for table `paypal_billing_agreement`
--

DROP TABLE IF EXISTS `paypal_billing_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `paypal_billing_agreement` (
  `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `method_code` varchar(32) NOT NULL COMMENT 'Method Code',
  `reference_id` varchar(32) NOT NULL COMMENT 'Reference ID',
  `status` varchar(20) NOT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `agreement_label` varchar(255) DEFAULT NULL COMMENT 'Agreement Label',
  PRIMARY KEY (`agreement_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`),
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_billing_agreement`
--

/*!40000 ALTER TABLE `paypal_billing_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_billing_agreement` ENABLE KEYS */;

--
-- Table structure for table `paypal_billing_agreement_order`
--

DROP TABLE IF EXISTS `paypal_billing_agreement_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `paypal_billing_agreement_order` (
  `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  PRIMARY KEY (`agreement_id`,`order_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`),
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PAYPAL_BILLING_AGRT_ORDER_AGRT_ID_PAYPAL_BILLING_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_billing_agreement_order`
--

/*!40000 ALTER TABLE `paypal_billing_agreement_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_billing_agreement_order` ENABLE KEYS */;

--
-- Table structure for table `paypal_cert`
--

DROP TABLE IF EXISTS `paypal_cert`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `paypal_cert` (
  `cert_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Cert ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `content` text DEFAULT NULL COMMENT 'Content',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`cert_id`),
  KEY `PAYPAL_CERT_WEBSITE_ID` (`website_id`),
  CONSTRAINT `PAYPAL_CERT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_cert`
--

/*!40000 ALTER TABLE `paypal_cert` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_cert` ENABLE KEYS */;

--
-- Table structure for table `paypal_payment_transaction`
--

DROP TABLE IF EXISTS `paypal_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `paypal_payment_transaction` (
  `transaction_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID',
  `additional_information` blob DEFAULT NULL COMMENT 'Additional Information',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='PayPal Payflow Link Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_payment_transaction`
--

/*!40000 ALTER TABLE `paypal_payment_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_payment_transaction` ENABLE KEYS */;

--
-- Table structure for table `paypal_settlement_report`
--

DROP TABLE IF EXISTS `paypal_settlement_report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `paypal_settlement_report` (
  `report_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Report ID',
  `report_date` date DEFAULT NULL COMMENT 'Report Date',
  `account_id` varchar(64) DEFAULT NULL COMMENT 'Account ID',
  `filename` varchar(24) DEFAULT NULL COMMENT 'Filename',
  `last_modified` timestamp NULL DEFAULT NULL COMMENT 'Last Modified',
  PRIMARY KEY (`report_id`),
  UNIQUE KEY `PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_settlement_report`
--

/*!40000 ALTER TABLE `paypal_settlement_report` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_settlement_report` ENABLE KEYS */;

--
-- Table structure for table `paypal_settlement_report_row`
--

DROP TABLE IF EXISTS `paypal_settlement_report_row`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `paypal_settlement_report_row` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `report_id` int(10) unsigned NOT NULL COMMENT 'Report ID',
  `transaction_id` varchar(19) DEFAULT NULL COMMENT 'Transaction ID',
  `invoice_id` varchar(127) DEFAULT NULL COMMENT 'Invoice ID',
  `paypal_reference_id` varchar(19) DEFAULT NULL COMMENT 'Paypal Reference ID',
  `paypal_reference_id_type` varchar(3) DEFAULT NULL COMMENT 'Paypal Reference ID Type',
  `transaction_event_code` varchar(5) DEFAULT NULL COMMENT 'Transaction Event Code',
  `transaction_initiation_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Initiation Date',
  `transaction_completion_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Completion Date',
  `transaction_debit_or_credit` varchar(2) NOT NULL DEFAULT 'CR' COMMENT 'Transaction Debit Or Credit',
  `gross_transaction_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Gross Transaction Amount',
  `gross_transaction_currency` varchar(3) DEFAULT NULL COMMENT 'Gross Transaction Currency',
  `fee_debit_or_credit` varchar(2) DEFAULT NULL COMMENT 'Fee Debit Or Credit',
  `fee_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Fee Amount',
  `fee_currency` varchar(3) DEFAULT NULL COMMENT 'Fee Currency',
  `custom_field` varchar(255) DEFAULT NULL COMMENT 'Custom Field',
  `consumer_id` varchar(127) DEFAULT NULL COMMENT 'Consumer ID',
  `payment_tracking_id` varchar(255) DEFAULT NULL COMMENT 'Payment Tracking ID',
  `store_id` varchar(50) DEFAULT NULL COMMENT 'Store ID',
  PRIMARY KEY (`row_id`),
  KEY `PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`),
  CONSTRAINT `FK_E183E488F593E0DE10C6EBFFEBAC9B55` FOREIGN KEY (`report_id`) REFERENCES `paypal_settlement_report` (`report_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Row Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_settlement_report_row`
--

/*!40000 ALTER TABLE `paypal_settlement_report_row` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_settlement_report_row` ENABLE KEYS */;

--
-- Table structure for table `persistent_session`
--

DROP TABLE IF EXISTS `persistent_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `persistent_session` (
  `persistent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Session ID',
  `key` varchar(50) NOT NULL COMMENT 'Unique cookie key',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `info` text DEFAULT NULL COMMENT 'Session Data',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`persistent_id`),
  UNIQUE KEY `PERSISTENT_SESSION_KEY` (`key`),
  UNIQUE KEY `PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`),
  KEY `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` (`website_id`),
  KEY `PERSISTENT_SESSION_UPDATED_AT` (`updated_at`),
  CONSTRAINT `PERSISTENT_SESSION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Persistent Session';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `persistent_session`
--

/*!40000 ALTER TABLE `persistent_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `persistent_session` ENABLE KEYS */;

--
-- Table structure for table `plumbase_product`
--

DROP TABLE IF EXISTS `plumbase_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumbase_product` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `signature` varchar(32) NOT NULL COMMENT 'Signature',
  `status` smallint(6) NOT NULL COMMENT 'Status',
  `date` date DEFAULT NULL COMMENT 'Date',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Signatures';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumbase_product`
--

/*!40000 ALTER TABLE `plumbase_product` DISABLE KEYS */;
INSERT INTO `plumbase_product` VALUES (4,'f993c432c774905a076647e1bd3ad506',200,'2022-09-18'),(5,'9424f52b926b61b501cee7ca2fa5f1a4',200,'2022-09-18'),(6,'6077aae6a1ed36c5dbc807fef488f1c4',200,'2022-09-18');
/*!40000 ALTER TABLE `plumbase_product` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_eav_attribute_additional`
--

DROP TABLE IF EXISTS `plumrocket_eav_attribute_additional`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_eav_attribute_additional` (
  `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID',
  `is_global` smallint(5) unsigned NOT NULL COMMENT 'Is Global',
  `is_visible` smallint(5) unsigned NOT NULL COMMENT 'Is Visible',
  PRIMARY KEY (`attribute_id`),
  CONSTRAINT `PLUMROCKET_EAV_ATTR_ADDITIONAL_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=205 DEFAULT CHARSET=utf8 COMMENT='Plumrocket PrivateSale EAV Attributes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_eav_attribute_additional`
--

/*!40000 ALTER TABLE `plumrocket_eav_attribute_additional` DISABLE KEYS */;
INSERT INTO `plumrocket_eav_attribute_additional` VALUES (190,1,1),(191,1,1),(192,0,1),(193,1,1),(194,0,1),(195,0,1),(196,0,1),(197,0,1),(198,0,1),(199,1,1),(200,1,1),(201,1,1),(202,1,1),(203,0,1),(204,1,1);
/*!40000 ALTER TABLE `plumrocket_eav_attribute_additional` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_gdpr_consent_location`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_consent_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_gdpr_consent_location` (
  `location_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `location_key` varchar(32) NOT NULL COMMENT 'Location Key',
  `type` int(11) NOT NULL DEFAULT 2 COMMENT 'Status',
  `visible` tinyint(1) DEFAULT 1,
  `name` varchar(64) NOT NULL COMMENT 'Location Name',
  `description` varchar(255) NOT NULL COMMENT 'Internal Note',
  PRIMARY KEY (`location_id`,`location_key`),
  UNIQUE KEY `PLUMROCKET_GDPR_CONSENT_LOCATION_LOCATION_KEY` (`location_key`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='plumrocket_gdpr_consent_location';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_consent_location`
--

/*!40000 ALTER TABLE `plumrocket_gdpr_consent_location` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_consent_location` VALUES (1,'cookie',1,0,'Cookie Notice','Plumrocket Cookie Consent - Cookie Notice'),(2,'popup_notify',0,0,'Popup Notify','Default Data Privacy Popup Notify'),(3,'checkout',0,1,'Checkout Page','Default Data Privacy Magento Checkout Page'),(4,'registration',0,1,'Registration Page','Default Data Privacy Magento Account Registration Page'),(5,'newsletter',0,1,'Newsletter Subscription','Default Data Privacy Magento Newsletter Subscription Form'),(6,'contact_us',0,1,'Contact Us','Default GDPR Magento Contact Us Page'),(7,'my_account',0,0,'My Account','Default GDPR Magento My Account Page');
/*!40000 ALTER TABLE `plumrocket_gdpr_consent_location` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_gdpr_consents_log`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_consents_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_gdpr_consents_log` (
  `consent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id of requests item',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Request Date',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer entity Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website',
  `customer_ip` int(11) DEFAULT NULL COMMENT 'Customer IP',
  `location` varchar(255) NOT NULL COMMENT 'Consent Location',
  `checkbox_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Checkbox ID',
  `label` text DEFAULT NULL COMMENT 'Consent Label',
  `cms_page_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Link to CMS Page',
  `version` varchar(255) DEFAULT NULL COMMENT 'Version',
  `action` smallint(6) DEFAULT NULL COMMENT 'Action',
  `email` varchar(254) DEFAULT NULL COMMENT 'Customer and Guest Email',
  PRIMARY KEY (`consent_id`),
  KEY `PLUMROCKET_GDPR_CONSENTS_LOG_CONSENT_ID` (`consent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Log of Customer Consents';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_consents_log`
--

/*!40000 ALTER TABLE `plumrocket_gdpr_consents_log` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_consents_log` VALUES (1,'2022-08-11 09:51:00',1,1,151,'registration',1,'I agree',4,NULL,1,'roberto@torresani.eu'),(2,'2022-09-02 15:27:26',3,1,192168,'registration',1,'I agree to Privacy Policy',4,'',1,'raffaele.decarli@thread.solutions'),(3,'2022-09-16 07:35:55',4,1,192168,'registration',1,'I agree to Privacy Policy',4,'',1,'raffaele.decarli+1@thread.solutions'),(4,'2022-09-16 07:55:58',5,1,192168,'registration',1,'I agree to Privacy Policy',4,'',1,'raffaele.decarli+1@thread.solutions');
/*!40000 ALTER TABLE `plumrocket_gdpr_consents_log` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_gdpr_export_log`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_export_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_gdpr_export_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id of log item',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer entity Id',
  `customer_ip` varchar(255) NOT NULL COMMENT 'Customer IP',
  `customer_email` varchar(254) NOT NULL COMMENT 'Customer Email',
  PRIMARY KEY (`log_id`),
  KEY `PLUMROCKET_GDPR_EXPORT_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Log of Account Data Downloads';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_export_log`
--

/*!40000 ALTER TABLE `plumrocket_gdpr_export_log` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_export_log` VALUES (1,'2022-08-11 09:51:46',1,'151.49.194.8','roberto@torresani.eu'),(2,'2022-08-12 15:39:23',1,'213.21.147.71','roberto@torresani.eu'),(3,'2022-08-12 15:39:44',1,'213.21.147.71','roberto@torresani.eu');
/*!40000 ALTER TABLE `plumrocket_gdpr_export_log` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_gdpr_removal_requests`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_removal_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_gdpr_removal_requests` (
  `request_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Removal Request ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Request Date',
  `created_by` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT '0 - customer, 1 - admin',
  `admin_id` int(10) unsigned NOT NULL COMMENT 'Admin ID',
  `admin_comment` text DEFAULT NULL COMMENT 'Admin Comment',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer Entity ID',
  `customer_email` varchar(254) NOT NULL COMMENT 'Customer Email',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website',
  `customer_ip` varchar(255) NOT NULL COMMENT 'Customer IP',
  `cancelled_at` timestamp NULL DEFAULT NULL COMMENT 'Cancellation Date',
  `cancelled_by` varchar(255) NOT NULL COMMENT 'Cancelled By',
  `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Removal Date',
  `status` varchar(32) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  PRIMARY KEY (`request_id`),
  KEY `PLUMROCKET_GDPR_REMOVAL_REQUESTS_CUSTOMER_IP` (`customer_ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of Account Removal Requests';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_removal_requests`
--

/*!40000 ALTER TABLE `plumrocket_gdpr_removal_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `plumrocket_gdpr_removal_requests` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_gdpr_revision`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_revision`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_gdpr_revision` (
  `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `cms_page_id` smallint(6) NOT NULL COMMENT 'CMS Page ID',
  `enable_revisions` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Enable Revisions',
  `notify_via_popup` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Notify All Customers via Popup',
  `document_version` varchar(255) NOT NULL COMMENT 'Document Version',
  `popup_content` mediumtext DEFAULT NULL COMMENT 'Popup Content',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date Of Creation',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date Of Modification',
  PRIMARY KEY (`revision_id`,`cms_page_id`),
  UNIQUE KEY `PLUMROCKET_GDPR_REVISION_CMS_PAGE_ID` (`cms_page_id`),
  CONSTRAINT `PLUMROCKET_GDPR_REVISION_CMS_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`cms_page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='plumrocket_gdpr_revision';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_revision`
--

/*!40000 ALTER TABLE `plumrocket_gdpr_revision` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_revision` VALUES (1,2,0,0,'','<h1>Privacy Policy</h1>\r\n                            <p>We’ve updated our Privacy Policy, which disclose what personal information we have, and how we use it in accordance with new privacy laws.</p>\r\n                            <p>By clicking on \"I Agree\" below you are agreeing to the updated <a href=\"#\" target=\"_blank\">Privacy Policy</a>.</p>','2022-08-25 14:17:51','2022-08-25 14:17:51');
/*!40000 ALTER TABLE `plumrocket_gdpr_revision` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_gdpr_revision_history`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_revision_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_gdpr_revision_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'CMS Page ID',
  `user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
  `user_name` varchar(255) NOT NULL COMMENT 'User Name',
  `version` varchar(255) NOT NULL COMMENT 'Document Version',
  `content` mediumtext DEFAULT NULL COMMENT 'Version Content',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date Of Creation',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date Of Modification',
  PRIMARY KEY (`history_id`),
  KEY `PLUMROCKET_GDPR_REVISION_HISTORY_REVISION_ID` (`revision_id`),
  CONSTRAINT `FK_5BBCCDA49B50FD3CC8EB3C2211EACEF0` FOREIGN KEY (`revision_id`) REFERENCES `plumrocket_gdpr_revision` (`revision_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='plumrocket_gdpr_revision_history';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_revision_history`
--

/*!40000 ALTER TABLE `plumrocket_gdpr_revision_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `plumrocket_gdpr_revision_history` ENABLE KEYS */;

--
-- Table structure for table `plumrocket_token`
--

DROP TABLE IF EXISTS `plumrocket_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `plumrocket_token` (
  `token_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Token ID',
  `type_key` varchar(50) NOT NULL COMMENT 'Token type',
  `token_hash` varchar(32) NOT NULL COMMENT 'Token hash',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer entity Id',
  `email` varchar(255) DEFAULT NULL COMMENT 'Main recipient email',
  `create_at` date NOT NULL COMMENT 'Date of token creation',
  `expire_at` date NOT NULL COMMENT 'Date for validation and delete',
  `additional_data` text DEFAULT NULL COMMENT 'Field for saving additional data',
  PRIMARY KEY (`token_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_token`
--

/*!40000 ALTER TABLE `plumrocket_token` DISABLE KEYS */;
INSERT INTO `plumrocket_token` VALUES (1,'prgdpr_guest_privacy_center','8Jh4AoojmDJCWium0M1Lqat32sxolDhn',0,'roberto@torresani.eu','2022-08-12','2022-08-13','[]');
/*!40000 ALTER TABLE `plumrocket_token` ENABLE KEYS */;

--
-- Table structure for table `pr_cookie_category_entity`
--

DROP TABLE IF EXISTS `pr_cookie_category_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pr_cookie_category_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `status` tinyint(1) NOT NULL COMMENT 'Status',
  `is_essential` tinyint(1) NOT NULL COMMENT 'Is Essential',
  `key` varchar(20) NOT NULL COMMENT 'Category key',
  `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`),
  UNIQUE KEY `PR_COOKIE_CATEGORY_ENTITY_KEY` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_category_entity`
--

/*!40000 ALTER TABLE `pr_cookie_category_entity` DISABLE KEYS */;
INSERT INTO `pr_cookie_category_entity` VALUES (1,1,1,'necessary','2022-08-11 08:56:22','2022-08-11 08:56:22'),(2,1,0,'preferences','2022-08-11 08:56:22','2022-08-11 08:56:22'),(3,1,0,'statistics','2022-08-11 08:56:22','2022-08-11 08:56:22'),(4,1,0,'marketing','2022-08-11 08:56:22','2022-08-11 08:56:22');
/*!40000 ALTER TABLE `pr_cookie_category_entity` ENABLE KEYS */;

--
-- Table structure for table `pr_cookie_category_entity_int`
--

DROP TABLE IF EXISTS `pr_cookie_category_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pr_cookie_category_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PR_COOKIE_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `PR_COOKIE_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_INT_ENTT_ID_PR_COOKIE_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `pr_cookie_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Cookie Consent INT Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_category_entity_int`
--

/*!40000 ALTER TABLE `pr_cookie_category_entity_int` DISABLE KEYS */;
INSERT INTO `pr_cookie_category_entity_int` VALUES (1,195,0,1,0),(2,195,0,2,0),(3,195,0,3,0),(4,195,0,4,0);
/*!40000 ALTER TABLE `pr_cookie_category_entity_int` ENABLE KEYS */;

--
-- Table structure for table `pr_cookie_category_entity_text`
--

DROP TABLE IF EXISTS `pr_cookie_category_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pr_cookie_category_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `PR_COOKIE_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_TEXT_ENTT_ID_PR_COOKIE_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `pr_cookie_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Cookie Consent TEXT Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_category_entity_text`
--

/*!40000 ALTER TABLE `pr_cookie_category_entity_text` DISABLE KEYS */;
INSERT INTO `pr_cookie_category_entity_text` VALUES (1,192,0,1,'Strictly necessary cookies'),(2,194,0,1,'These cookies are essential for you to browse our store and use its features, such as accessing secure areas of the website. Cookies that allow holding your cart items, cookies that keep you logged-in and cookies that save your customized preferences are an example of strictly necessary cookies. These cookies are essential to a website\'s functionality and cannot be disabled by users.'),(3,192,0,2,'Preferences cookies'),(4,194,0,2,'Preferences cookies are also known as “functionality cookies”. These cookies allow a website to remember choices you have made in the past, like what language you prefer, your favourite search filters, or what your user name and password are so you can automatically log in.'),(5,192,0,3,'Statistics cookies'),(6,194,0,3,'Statistics cookies are also known as “performance cookies”. These cookies collect information about how you use a website, like which pages you visited and which links you clicked on. None of this information can be used to identify you. It is all aggregated and, therefore, anonymized. Their sole purpose is to improve website functions. This includes cookies from third-party analytics services, such as visitor analytics, heatmaps and social media analytics.'),(7,192,0,4,'Marketing cookies'),(8,194,0,4,'These cookies track your online activity to help advertisers deliver more relevant advertising or to limit how many times you see an ad. These cookies can share that information with other organizations or advertisers. These are persistent cookies and almost always of third-party provenance.');
/*!40000 ALTER TABLE `pr_cookie_category_entity_text` ENABLE KEYS */;

--
-- Table structure for table `pr_cookie_consent_log`
--

DROP TABLE IF EXISTS `pr_cookie_consent_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pr_cookie_consent_log` (
  `consent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer entity Id',
  `guest_email` varchar(254) DEFAULT NULL COMMENT 'Customer and Guest Email',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `ip_address` varchar(255) NOT NULL COMMENT 'Customer IP Address',
  `user_agent` varchar(255) DEFAULT NULL COMMENT 'Customer User Agent',
  `url` text DEFAULT NULL COMMENT 'Url',
  `settings` varchar(255) NOT NULL COMMENT 'Customer Consent Settings',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  PRIMARY KEY (`consent_id`),
  KEY `PR_COOKIE_CONSENT_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='Log of Customer Consents';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_consent_log`
--

/*!40000 ALTER TABLE `pr_cookie_consent_log` DISABLE KEYS */;
INSERT INTO `pr_cookie_consent_log` VALUES (1,0,NULL,1,'151.49.194.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/privacy-center/account/check/','{\"all\":true}','2022-08-11 09:58:39'),(2,0,NULL,1,'151.49.194.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-08-11 10:18:41'),(3,0,NULL,1,'37.186.136.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15','http://magento.test.indaco.store/','[]','2022-08-11 15:29:49'),(4,0,NULL,1,'192.168.192.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-18 10:43:28'),(5,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-22 08:26:25'),(6,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-22 08:28:13'),(7,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-22 08:28:18'),(8,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-22 08:29:37'),(9,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-22 08:31:24'),(10,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-08-22 08:31:25'),(11,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-13 13:44:46'),(12,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 07:54:02'),(13,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 07:55:23'),(14,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 09:13:56'),(15,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 13:04:41'),(16,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 14:47:18'),(17,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 14:54:34'),(18,0,NULL,1,'192.168.112.000','Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36','https://magento.test/','{\"all\":true}','2022-09-16 15:20:02');
/*!40000 ALTER TABLE `pr_cookie_consent_log` ENABLE KEYS */;

--
-- Table structure for table `pr_cookie_entity`
--

DROP TABLE IF EXISTS `pr_cookie_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pr_cookie_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `category_key` varchar(20) NOT NULL COMMENT 'Category key',
  `type` varchar(10) NOT NULL COMMENT 'Cookie Type',
  `domain` varchar(255) DEFAULT NULL COMMENT 'Cookie Domain',
  `name` varchar(255) NOT NULL COMMENT 'Cookie Name',
  `duration` int(11) NOT NULL COMMENT 'Cookie Duration (Lifetime)',
  `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`),
  UNIQUE KEY `PR_COOKIE_ENTITY_NAME` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_entity`
--

/*!40000 ALTER TABLE `pr_cookie_entity` DISABLE KEYS */;
INSERT INTO `pr_cookie_entity` VALUES (1,'necessary','first',NULL,'pr-cookie-notice-status',0,'2022-08-11 08:56:22','2022-08-11 08:56:22'),(2,'necessary','first',NULL,'user_allowed_save_cookie',31536000,'2022-08-11 08:56:22','2022-08-11 08:56:22'),(3,'necessary','first',NULL,'guest-view',0,'2022-08-11 08:56:22','2022-08-11 08:56:22'),(4,'necessary','first',NULL,'login_redirect',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(5,'necessary','first',NULL,'mage-messages',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(6,'necessary','first',NULL,'section_data_ids',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(7,'necessary','first',NULL,'store',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(8,'necessary','first',NULL,'amz_auth_err',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(9,'necessary','first',NULL,'amz_auth_logout',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(10,'necessary','first',NULL,'mage-cache-sessid',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(11,'necessary','first',NULL,'mage-cache-storage',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(12,'necessary','first',NULL,'stf',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(13,'necessary','first',NULL,'recently_viewed_product',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(14,'necessary','first',NULL,'recently_viewed_product_previous',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(15,'necessary','first',NULL,'mage-translation-storage',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(16,'necessary','first',NULL,'mage-translation-file-version',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(17,'necessary','first',NULL,'product_data_storage',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(18,'necessary','first',NULL,'recently_compared_product',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(19,'necessary','first',NULL,'recently_compared_product_previous',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(20,'necessary','first',NULL,'mage-cache-storage-section-invalidation',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(21,'statistics','first',NULL,'_ga',63072000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(22,'statistics','first',NULL,'_gid',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(23,'statistics','first',NULL,'_gat',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(24,'statistics','first',NULL,'_dc_gtm_*',60,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(25,'necessary','first',NULL,'pr-cookie-consent',365,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(26,'necessary','first',NULL,'pr-cookie-consent-id',365,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(27,'necessary','first',NULL,'form_key',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(28,'necessary','first',NULL,'X-Magento-Vary',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(29,'necessary','first',NULL,'private_content_version',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(30,'necessary','first',NULL,'persistent_shopping_cart',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(31,'statistics','first',NULL,'add_to_cart',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(32,'necessary','first',NULL,'mage-banners-cache-storage',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(33,'statistics','first',NULL,'remove_from_cart',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23');
/*!40000 ALTER TABLE `pr_cookie_entity` ENABLE KEYS */;

--
-- Table structure for table `pr_cookie_entity_text`
--

DROP TABLE IF EXISTS `pr_cookie_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pr_cookie_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PR_COOKIE_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PR_COOKIE_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `PR_COOKIE_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `PR_COOKIE_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `PR_COOKIE_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_ENTITY_TEXT_ENTITY_ID_PR_COOKIE_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `pr_cookie_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Cookie Consent TEXT Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_entity_text`
--

/*!40000 ALTER TABLE `pr_cookie_entity_text` DISABLE KEYS */;
INSERT INTO `pr_cookie_entity_text` VALUES (1,203,0,1,'Stores close status of cookie notice.'),(2,203,0,2,'Stores built-in cookie consent per website.'),(3,203,0,3,'Stores the Order ID that guest shoppers use to retrieve their order status. Guest orders view. Used in “Orders and Returns” widgets.'),(4,203,0,4,'Preserves the destination page the customer was loading before being directed to log in.'),(5,203,0,5,'Tracks error messages and other notifications that are shown to the user, such as the cookie consent message, and various error messages. The message is deleted from the cookie after it is shown to the shopper.'),(6,203,0,6,'Stores customer-specific information related to shopper-initiated actions such as display wish list, checkout information, etc.'),(7,203,0,7,'Tracks the specific store view / locale selected by the shopper.'),(8,203,0,8,'Used if Enable Login with Amazon is enabled. Value 1 indicates an authorization error.'),(9,203,0,9,'Used if Enable Login with Amazon is enabled. Value 1 indicates that the user should be logged out.'),(10,203,0,10,'The value of this cookie triggers the cleanup of local cache storage. When the cookie is removed by the backend application, the Admin cleans up local storage, and sets the cookie value to true.'),(11,203,0,11,'Local storage of visitor-specific content that enables ecommerce functions.'),(12,203,0,12,'Records the time messages are sent by the SendFriend (Email a Friend) module.'),(13,203,0,13,'Stores product IDs of recently viewed products for easy navigation.'),(14,203,0,14,'Stores product IDs of recently previously viewed products for easy navigation.'),(15,203,0,15,'Stores translated content when requested by the shopper. Used when Translation Strategy is configured as \"Dictionary (Translation on Storefront side)\".'),(16,203,0,16,'Tracks the version of translations in local storage. Used when Translation Strategy is configured as Dictionary (Translation on Storefront side).'),(17,203,0,17,'Stores configuration for product data related to Recently Viewed / Compared Products.'),(18,203,0,18,'Stores product IDs of recently compared products.'),(19,203,0,19,'Stores product IDs of previously compared products for easy navigation.'),(20,203,0,20,'Forces local storage of specific content sections that should be invalidated.'),(21,203,0,21,'Used to distinguish users.'),(22,203,0,22,'Used to distinguish users.'),(23,203,0,23,'Used to throttle request rate.'),(24,203,0,24,'Used to throttle request rate.'),(25,203,0,25,'Keeps your cookie consent.'),(26,203,0,26,'Keeps your cookie consent id.'),(27,203,0,27,'A security measure that appends a random string to all form submissions to protect the data from Cross-Site Request Forgery (CSRF).'),(28,203,0,28,'Configuration setting that improves performance when using Varnish static content caching.'),(29,203,0,29,'Appends a random, unique number and time to pages with customer content to prevent them from being cached on the server.'),(30,203,0,30,'Stores the key (ID) of persistent cart to make it possible to restore the cart for an anonymous shopper.'),(31,203,0,31,'Used by Google Tag Manager. Captures the product SKU, name, price and quantity removed from the cart, and makes the information available for future integration by third-party scripts.'),(32,203,0,32,'Stores banner content locally to improve performance.'),(33,203,0,33,'Used by Google Tag Manager. Captures the product SKU, name, price and quantity added to the cart, and makes the information available for future integration by third-party scripts.');
/*!40000 ALTER TABLE `pr_cookie_entity_text` ENABLE KEYS */;

--
-- Table structure for table `prgdpr_checkbox_entity`
--

DROP TABLE IF EXISTS `prgdpr_checkbox_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgdpr_checkbox_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `location_key` text DEFAULT NULL COMMENT 'Location Key',
  `internal_note` mediumtext NOT NULL COMMENT 'Internal Note',
  `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`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='prgdpr_checkbox_entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgdpr_checkbox_entity`
--

/*!40000 ALTER TABLE `prgdpr_checkbox_entity` DISABLE KEYS */;
INSERT INTO `prgdpr_checkbox_entity` VALUES (1,'registration,my_account','','2022-08-11 09:47:15','2022-08-11 09:47:15');
/*!40000 ALTER TABLE `prgdpr_checkbox_entity` ENABLE KEYS */;

--
-- Table structure for table `prgdpr_checkbox_entity_int`
--

DROP TABLE IF EXISTS `prgdpr_checkbox_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgdpr_checkbox_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Id',
  `value` int(11) DEFAULT NULL COMMENT 'value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PRGDPR_CHECKBOX_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `PRGDPR_CHECKBOX_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_INT_ENTT_ID_PRGDPR_CHECKBOX_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `prgdpr_checkbox_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='PR Checkbox Int Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgdpr_checkbox_entity_int`
--

/*!40000 ALTER TABLE `prgdpr_checkbox_entity_int` DISABLE KEYS */;
INSERT INTO `prgdpr_checkbox_entity_int` VALUES (1,205,0,1,1),(2,209,0,1,1),(3,208,0,1,4);
/*!40000 ALTER TABLE `prgdpr_checkbox_entity_int` ENABLE KEYS */;

--
-- Table structure for table `prgdpr_checkbox_entity_text`
--

DROP TABLE IF EXISTS `prgdpr_checkbox_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgdpr_checkbox_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Id',
  `value` text DEFAULT NULL,
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PRGDPR_CHECKBOX_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_TEXT_STORE_ID` (`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `PRGDPR_CHECKBOX_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_TEXT_ENTT_ID_PRGDPR_CHECKBOX_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `prgdpr_checkbox_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='PR Checkbox text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgdpr_checkbox_entity_text`
--

/*!40000 ALTER TABLE `prgdpr_checkbox_entity_text` DISABLE KEYS */;
INSERT INTO `prgdpr_checkbox_entity_text` VALUES (1,207,0,1,'I agree to <a href=\"{{url}}\" class=\"pr-inpopup\" target=\"_blank\">Privacy Policy</a>'),(2,210,0,1,'all'),(3,212,0,1,'all');
/*!40000 ALTER TABLE `prgdpr_checkbox_entity_text` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_installed_versions`
--

DROP TABLE IF EXISTS `prgeoiplookup_installed_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_installed_versions` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `data_name` varchar(255) DEFAULT NULL COMMENT 'Database Name',
  `file_version` varchar(15) DEFAULT NULL COMMENT 'Database File Version',
  `installed_date` datetime DEFAULT NULL COMMENT 'Installation Date',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Installed Versions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_installed_versions`
--

/*!40000 ALTER TABLE `prgeoiplookup_installed_versions` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_installed_versions` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_iptocountry`
--

DROP TABLE IF EXISTS `prgeoiplookup_iptocountry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_iptocountry` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `country_iso_code2` varchar(2) DEFAULT NULL COMMENT 'Country Code (ISO 3166-1 alpha-2)',
  `country_iso_code3` varchar(3) DEFAULT NULL COMMENT 'Country Code (ISO 3166-1 alpha-3)',
  `country_name` varchar(255) DEFAULT NULL COMMENT 'Country Name',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='IpToCountry Geo Ip Country Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_iptocountry`
--

/*!40000 ALTER TABLE `prgeoiplookup_iptocountry` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_iptocountry` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part0`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part0` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part0`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part0` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part0` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part1`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part1` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part1`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part1` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part1` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part2`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part2` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part2`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part2` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part2` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part3`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part3` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part3`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part3` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part3` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part4`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part4`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part4` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part4`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part4` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part4` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part5`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part5`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part5` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part5`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part5` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part5` ENABLE KEYS */;

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_locations`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_locations` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `locale_code` varchar(2) NOT NULL COMMENT 'Locale Code',
  `continent_code` varchar(2) NOT NULL COMMENT 'Continent Code',
  `continent_name` varchar(50) NOT NULL COMMENT 'Continent Name',
  `country_iso_code2` varchar(2) DEFAULT NULL COMMENT 'Country Code (ISO 3166-1 alpha-2)',
  `country_name` varchar(255) DEFAULT NULL COMMENT 'Country Name',
  `subdivision_1_iso_code` varchar(5) DEFAULT NULL COMMENT 'Subdivision 1 (ISO Code)',
  `subdivision_1_name` varchar(25) DEFAULT NULL COMMENT 'Subdivision 1 Name',
  `subdivision_2_iso_code` varchar(5) DEFAULT NULL COMMENT 'Subdivision 2 (ISO Code)',
  `subdivision_2_name` varchar(100) DEFAULT NULL COMMENT 'Subdivision 2 Name',
  `city_name` varchar(100) NOT NULL COMMENT 'City Name',
  `metro_code` varchar(15) DEFAULT NULL COMMENT 'Area Code',
  `time_zone` varchar(100) NOT NULL COMMENT 'Time Zone',
  `is_in_european_union` tinyint(1) NOT NULL COMMENT 'Is in European Union',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Locations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_locations`
--

/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `prgeoiplookup_maxmindgeoip_city_locations` ENABLE KEYS */;

--
-- Table structure for table `product_alert_price`
--

DROP TABLE IF EXISTS `product_alert_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_alert_price` (
  `alert_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert price ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price amount',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `add_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Product alert add date',
  `last_send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert last send date',
  `send_count` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product alert send count',
  `status` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product alert status',
  PRIMARY KEY (`alert_price_id`),
  KEY `PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`),
  KEY `PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`),
  KEY `PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `PRODUCT_ALERT_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `PRODUCT_ALERT_PRICE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_alert_price`
--

/*!40000 ALTER TABLE `product_alert_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_alert_price` ENABLE KEYS */;

--
-- Table structure for table `product_alert_stock`
--

DROP TABLE IF EXISTS `product_alert_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_alert_stock` (
  `alert_stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert stock ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `add_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Product alert add date',
  `send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert send date',
  `send_count` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Send Count',
  `status` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product alert status',
  PRIMARY KEY (`alert_stock_id`),
  KEY `PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`),
  KEY `PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`),
  KEY `PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`),
  KEY `PRODUCT_ALERT_STOCK_STORE_ID` (`store_id`),
  CONSTRAINT `PRODUCT_ALERT_STOCK_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_alert_stock`
--

/*!40000 ALTER TABLE `product_alert_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_alert_stock` ENABLE KEYS */;

--
-- Table structure for table `queue`
--

DROP TABLE IF EXISTS `queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Queue name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_NAME` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='Table storing unique queues';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue`
--

/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
INSERT INTO `queue` VALUES (18,'async.operations.all'),(15,'codegenerator'),(4,'export'),(10,'inventory.indexer.sourceItem'),(11,'inventory.indexer.stock'),(6,'inventory.mass.update'),(7,'inventory.reservations.cleanup'),(8,'inventory.reservations.update'),(9,'inventory.reservations.updateSalabilityStatus'),(5,'inventory.source.items.cleanup'),(12,'media.content.synchronization'),(13,'media.gallery.renditions.update'),(14,'media.gallery.synchronization'),(3,'media.storage.catalog.image.resize'),(1,'product_action_attribute.update'),(2,'product_action_attribute.website.update'),(17,'product_alert.queue'),(19,'queueOrder'),(20,'queueTest'),(21,'sales.rule.quote.trigger.recollect'),(16,'sales.rule.update.coupon.usage');
/*!40000 ALTER TABLE `queue` ENABLE KEYS */;

--
-- Table structure for table `queue_lock`
--

DROP TABLE IF EXISTS `queue_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_lock` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `message_code` varchar(255) NOT NULL DEFAULT '' COMMENT 'Message Code',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_LOCK_MESSAGE_CODE` (`message_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Messages that were processed are inserted here to be locked.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_lock`
--

/*!40000 ALTER TABLE `queue_lock` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue_lock` ENABLE KEYS */;

--
-- Table structure for table `queue_message`
--

DROP TABLE IF EXISTS `queue_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_message` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Message topic',
  `body` longtext DEFAULT NULL COMMENT 'Message body',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Queue messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_message`
--

/*!40000 ALTER TABLE `queue_message` DISABLE KEYS */;
INSERT INTO `queue_message` VALUES (1,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"Vino Test\"],\"stock\":1}'),(2,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324\"],\"stock\":1}'),(3,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324\"],\"stock\":1}'),(4,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324\"],\"stock\":1}'),(5,'inventory.reservations.updateSalabilityStatus','{\"skus\":[\"primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324\"],\"stock\":1}');
/*!40000 ALTER TABLE `queue_message` ENABLE KEYS */;

--
-- Table structure for table `queue_message_status`
--

DROP TABLE IF EXISTS `queue_message_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_message_status` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Relation ID',
  `queue_id` int(10) unsigned NOT NULL COMMENT 'Queue ID',
  `message_id` bigint(20) unsigned NOT NULL COMMENT 'Message ID',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `status` smallint(5) unsigned NOT NULL COMMENT 'Message status in particular queue',
  `number_of_trials` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of trials to processed failed message processing',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_MESSAGE_STATUS_QUEUE_ID_MESSAGE_ID` (`queue_id`,`message_id`),
  KEY `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` (`message_id`),
  KEY `QUEUE_MESSAGE_STATUS_STATUS_UPDATED_AT` (`status`,`updated_at`),
  CONSTRAINT `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` FOREIGN KEY (`message_id`) REFERENCES `queue_message` (`id`) ON DELETE CASCADE,
  CONSTRAINT `QUEUE_MESSAGE_STATUS_QUEUE_ID_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `queue` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Relation table to keep associations between queues and messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_message_status`
--

/*!40000 ALTER TABLE `queue_message_status` DISABLE KEYS */;
INSERT INTO `queue_message_status` VALUES (1,9,1,'2022-08-04 16:22:44',2,0),(2,9,2,'2022-08-08 15:24:47',2,0),(3,9,3,'2022-08-09 08:08:41',2,0),(4,9,4,'2022-08-09 11:59:19',2,0),(5,9,5,'2022-08-09 12:25:53',2,0);
/*!40000 ALTER TABLE `queue_message_status` ENABLE KEYS */;

--
-- Table structure for table `queue_poison_pill`
--

DROP TABLE IF EXISTS `queue_poison_pill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_poison_pill` (
  `version` varchar(255) NOT NULL COMMENT 'Poison Pill version.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sequence table for poison pill versions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_poison_pill`
--

/*!40000 ALTER TABLE `queue_poison_pill` DISABLE KEYS */;
INSERT INTO `queue_poison_pill` VALUES ('version-63242a7d6cd17');
/*!40000 ALTER TABLE `queue_poison_pill` ENABLE KEYS */;

--
-- Table structure for table `quote`
--

DROP TABLE IF EXISTS `quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `converted_at` timestamp NULL DEFAULT NULL COMMENT 'Converted At',
  `is_active` smallint(5) unsigned DEFAULT 1 COMMENT 'Is Active',
  `is_virtual` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Virtual',
  `is_multi_shipping` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Multi Shipping',
  `items_count` int(10) unsigned DEFAULT 0 COMMENT 'Items Count',
  `items_qty` decimal(12,4) DEFAULT 0.0000 COMMENT 'Items Qty',
  `orig_order_id` int(10) unsigned DEFAULT 0 COMMENT 'Orig Order ID',
  `store_to_base_rate` decimal(12,4) DEFAULT 0.0000 COMMENT 'Store To Base Rate',
  `store_to_quote_rate` decimal(12,4) DEFAULT 0.0000 COMMENT 'Store To Quote Rate',
  `base_currency_code` varchar(255) DEFAULT NULL COMMENT 'Base Currency Code',
  `store_currency_code` varchar(255) DEFAULT NULL COMMENT 'Store Currency Code',
  `quote_currency_code` varchar(255) DEFAULT NULL COMMENT 'Quote Currency Code',
  `grand_total` decimal(20,4) DEFAULT 0.0000 COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Grand Total',
  `checkout_method` varchar(255) DEFAULT NULL COMMENT 'Checkout Method',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `customer_tax_class_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Tax Class ID',
  `customer_group_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer Group ID',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_prefix` varchar(40) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_firstname` varchar(255) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_middlename` varchar(40) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_lastname` varchar(255) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_suffix` varchar(40) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT 1 COMMENT 'Customer Note Notify',
  `customer_is_guest` smallint(5) unsigned DEFAULT 0 COMMENT 'Customer Is Guest',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `applied_rule_ids` varchar(255) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `reserved_order_id` varchar(64) DEFAULT NULL COMMENT 'Reserved Order ID',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `global_currency_code` varchar(255) DEFAULT NULL COMMENT 'Global Currency Code',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_quote_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Quote Rate',
  `customer_taxvat` varchar(255) DEFAULT NULL COMMENT 'Customer Taxvat',
  `customer_gender` varchar(255) DEFAULT NULL COMMENT 'Customer Gender',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal With Discount',
  `is_changed` int(10) unsigned DEFAULT NULL COMMENT 'Is Changed',
  `trigger_recollect` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Trigger Recollect',
  `ext_shipping_info` text DEFAULT NULL COMMENT 'Ext Shipping Info',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `is_persistent` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Quote Persistent',
  `mp_smtp_ace_token` varchar(255) DEFAULT NULL COMMENT 'ACE Token',
  `mp_smtp_ace_sent` smallint(6) DEFAULT 0 COMMENT 'ACE Sent',
  `mp_smtp_ace_log_ids` text DEFAULT NULL COMMENT 'ACE Log Ids',
  `mp_smtp_ace_log_data` text DEFAULT NULL COMMENT 'ACE Log Data',
  PRIMARY KEY (`entity_id`),
  KEY `QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`),
  KEY `QUOTE_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote`
--

/*!40000 ALTER TABLE `quote` DISABLE KEYS */;
INSERT INTO `quote` VALUES (1,1,'2022-07-31 13:22:52','2022-07-31 13:22:52',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'5.77.88.196',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,NULL,0,NULL,NULL),(2,1,'2022-08-04 16:21:54','2022-08-04 16:22:45',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',6.0000,6.0000,'guest',NULL,3,NULL,'roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,NULL,1,1,'151.49.194.8',NULL,'000000001',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'93MLmGRShBpTC4wbv9dF1jRwSbiGkrus',0,NULL,NULL),(3,1,'2022-08-04 16:23:32','2022-08-11 09:13:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,1,3,1,'roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,NULL,1,0,'213.21.147.71',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'QjPSH6OrNphJQIKwT4l4biVGxbzDZVjn',0,NULL,NULL),(5,1,'2022-08-08 12:50:41','2022-08-08 12:50:41',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'151.49.194.8',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'W94DvoDZ0XC8tcdpVFdkW2uQyQ5MDqeW',0,NULL,NULL),(6,1,'2022-08-08 13:59:26','2022-08-09 14:57:49',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',12.0000,12.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,12.0000,12.0000,12.0000,12.0000,1,0,NULL,NULL,0,'SZz64vyXnVfJFvRvwlkt5e43u8eDu6QU',0,NULL,NULL),(7,1,'2022-08-08 14:01:11','2022-08-08 14:01:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'qbUgihJfnyO66bK2f7RbUr2nJlzT6w4l',0,NULL,NULL),(8,1,'2022-08-08 14:18:43','2022-08-08 14:18:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'pgjVoI0VsRp6pjwtMuHbGy7cyS0IE7WJ',0,NULL,NULL),(9,1,'2022-08-08 15:23:40','2022-08-08 15:24:48',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',17.0000,17.0000,'guest',NULL,3,NULL,'daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,NULL,1,1,'77.83.112.61',NULL,'000000002',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,12.0000,12.0000,12.0000,12.0000,1,0,NULL,NULL,0,'dG1BQk3BuCuCReueGzw3CaKIHMidt5Uu',0,NULL,NULL),(10,1,'2022-08-09 08:02:01','2022-08-09 08:08:42',NULL,0,0,0,1,2.0000,0,0.0000,0.0000,'EUR','EUR','EUR',34.0000,34.0000,NULL,2,3,1,'daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,NULL,1,0,'213.21.147.71',NULL,'000000003',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,24.0000,24.0000,24.0000,24.0000,1,0,NULL,NULL,0,'jqJAfZthG6oGTARdZV5pWzU6CZZg5qSJ',0,NULL,NULL),(11,1,'2022-08-09 11:59:07','2022-08-09 11:59:19',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',17.0000,17.0000,NULL,2,3,1,'daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,NULL,1,0,'213.21.147.71',NULL,'000000004',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,12.0000,12.0000,12.0000,12.0000,1,0,NULL,NULL,0,'D5vjzGWvjtn5CeYqfxa610Wbqiw7V4H8',0,NULL,NULL),(12,1,'2022-08-09 12:25:33','2022-08-09 12:25:54',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',17.0000,17.0000,NULL,2,3,1,'daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,NULL,1,0,'213.21.147.71',NULL,'000000005',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,12.0000,12.0000,12.0000,12.0000,1,0,NULL,NULL,0,'R9fRPpxDrtVU0A4CeBu6pK48W2gGoFGa',0,NULL,NULL),(13,1,'2022-08-11 09:12:30','2022-08-11 09:13:45',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',6.0000,6.0000,NULL,1,3,1,'roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,NULL,0,NULL,NULL),(14,1,'2022-08-11 09:14:10','2022-08-11 09:14:14',NULL,0,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,1,NULL,1,'roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,NULL,NULL),(15,1,'2022-08-11 09:14:22','2022-08-11 09:14:22',NULL,0,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,NULL,NULL),(16,1,'2022-08-30 06:55:22','2022-08-30 06:55:22',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'b7wek184P6isRp3blKU25uRMKw5bfIZp',0,NULL,NULL),(17,1,'2022-08-30 10:35:55','2022-08-30 10:35:55',NULL,1,0,0,1,3.0000,0,0.0000,0.0000,'EUR','EUR','EUR',3.0000,3.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,3.0000,3.0000,3.0000,3.0000,1,0,NULL,NULL,0,'GhuKT9qcQJ6hvKoj4J63NM046fhz0exW',0,NULL,NULL),(18,1,'2022-08-30 13:50:15','2022-08-30 13:50:15',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'wNSXjRT1kezioGnpbw0UdSTsUZIvHRae',0,NULL,NULL),(19,1,'2022-08-31 10:59:32','2022-08-31 10:59:32',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'o2lZQSlk3MViThCdxA7vVqSLHEM78LD0',0,NULL,NULL),(20,1,'2022-08-31 15:33:27','2022-08-31 15:33:27',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'4fpHieNoI8GnrjSKRskY2lETrmerUAnz',0,NULL,NULL),(21,1,'2022-09-01 08:50:27','2022-09-01 09:58:29',NULL,1,0,0,2,6.0000,0,0.0000,0.0000,'EUR','EUR','EUR',600.0000,600.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,600.0000,600.0000,600.0000,600.0000,1,0,NULL,NULL,0,'EaoqsrinOza5fXAeSDuBJM8mKcU2iPhE',0,NULL,NULL),(22,1,'2022-09-01 13:20:14','2022-09-01 14:50:59',NULL,1,0,0,3,40.0000,0,0.0000,0.0000,'EUR','EUR','EUR',4599.4000,4599.4000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,4599.4000,4599.4000,4599.4000,4599.4000,1,0,NULL,NULL,0,'i1wGy1DRZJgZS3XvlfT0MplhgqxOaT0o',0,NULL,NULL),(23,1,'2022-09-02 15:27:26','2022-09-06 14:52:47',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',100.0000,100.0000,NULL,3,3,1,'raffaele.decarli@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,100.0000,100.0000,100.0000,100.0000,1,0,NULL,NULL,0,'Kawos5GPyJyuCTtkgsZJe1KGkdrYILOP',0,NULL,NULL),(24,1,'2022-09-06 07:35:54','2022-09-06 09:48:40',NULL,1,0,0,3,33.0000,0,0.0000,0.0000,'EUR','EUR','EUR',3201.0000,3201.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,3201.0000,3201.0000,3201.0000,3201.0000,1,0,NULL,NULL,0,'ZUEIzqT5TXIGMmKkF4vdv7B8wz3vo1vI',0,NULL,NULL),(25,1,'2022-09-07 15:39:59','2022-09-07 15:39:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'c6ZToomntVTz9vogOsiiSotpFugBnkAf',0,NULL,NULL),(26,1,'2022-09-07 15:43:35','2022-09-07 15:43:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'aJsRgMq3Gfx3iQLGMXCvbnTtLHh2NcOU',0,NULL,NULL),(27,1,'2022-09-08 13:26:09','2022-09-08 13:26:15',NULL,1,0,0,2,7.0000,0,0.0000,0.0000,'EUR','EUR','EUR',205.0000,205.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,205.0000,205.0000,205.0000,205.0000,1,0,NULL,NULL,0,'VLCOyg79gOap1cdaLS61Jnwzx79T5DOW',0,NULL,NULL),(28,1,'2022-09-12 08:46:52','2022-09-12 08:47:41',NULL,1,0,0,2,2.0000,0,0.0000,0.0000,'EUR','EUR','EUR',2.0000,2.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,2.0000,2.0000,2.0000,2.0000,1,0,NULL,NULL,0,'nQXIDnnLkp8QmQDqlFajR1dO97UN6xMF',0,NULL,NULL),(29,1,'2022-09-12 14:36:30','2022-09-12 14:36:30',NULL,1,0,0,1,4.0000,0,0.0000,0.0000,'EUR','EUR','EUR',4.0000,4.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,4.0000,4.0000,4.0000,4.0000,1,0,NULL,NULL,0,'rKOrmdg5lyROZRB8TLaVPd4wP4IYtvjN',0,NULL,NULL),(30,1,'2022-09-13 12:57:00','2022-09-13 15:48:53',NULL,1,0,0,4,4.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1196.9000,1196.9000,NULL,NULL,3,0,'raffaele.decarli+1@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1176.9000,1176.9000,1176.9000,1176.9000,1,0,NULL,NULL,0,'wsQNebnxkGaCJwbInpiBnmaMQn8k72lB',0,NULL,NULL),(31,1,'2022-09-13 13:44:51','2022-09-13 13:44:51',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',876.0000,876.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,876.0000,876.0000,876.0000,876.0000,1,0,NULL,NULL,0,'JMc2RWBrBJg1bXNhufaS5Dy6JD1Y9Z3I',0,NULL,NULL),(32,1,'2022-09-14 09:57:58','2022-09-14 09:57:58',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.9900,0.9900,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.9900,0.9900,0.9900,0.9900,1,0,NULL,NULL,0,'FQctq8y4B4rVDYekogXxe4SjFAy6MLYa',0,NULL,NULL),(33,1,'2022-09-14 12:15:34','2022-09-14 13:01:59',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,'raffaele.decarli@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'5F9UFA4fSU72skueKJxfBioarApuNYs7',0,NULL,NULL),(34,1,'2022-09-14 19:15:09','2022-09-14 20:37:56',NULL,1,0,0,2,2.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1059.0000,1059.0000,NULL,NULL,3,0,'raffaele.decarli@netwise.it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1049.0000,1049.0000,1049.0000,1049.0000,1,0,NULL,NULL,0,'4Nxd5Xte8gd6XGySmJCLiK5bvGQW2w8v',0,NULL,NULL),(35,1,'2022-09-15 07:46:59','2022-09-15 09:30:11',NULL,1,0,0,4,4.0000,0,0.0000,0.0000,'EUR','EUR','EUR',947.9000,947.9000,NULL,NULL,3,0,'raffaele.decarli@netwise.it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1','1',NULL,NULL,'menodiesci','EUR',1.0000,1.0000,NULL,NULL,1031.0000,1031.0000,927.9000,927.9000,1,0,NULL,NULL,0,'Pl9k2RFfgNRgIxzCGtoRk13geIdjzqr2',0,NULL,NULL),(36,1,'2022-09-15 12:02:46','2022-09-15 12:02:46',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',876.0000,876.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,876.0000,876.0000,876.0000,876.0000,1,0,NULL,NULL,0,'i5lqxGQL8PcIomIYyB7i1w9Q3t4SDe6k',0,NULL,NULL),(37,1,'2022-09-16 07:35:55','2022-09-16 07:45:26',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',6.0000,6.0000,NULL,4,3,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,'000000006',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'YfkVJeuCknoo9qzf2tB5H6Hfx4SCv07W',0,NULL,NULL),(38,1,'2022-09-16 07:48:24','2022-09-16 07:48:50',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',6.0000,6.0000,NULL,4,3,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,'000000007',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'ItGL6V1gF1jxioI4tN44NkL8iPrqmY53',0,NULL,NULL),(39,1,'2022-09-16 07:49:40','2022-09-16 07:49:57',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',6.0000,6.0000,NULL,4,3,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,'000000008',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'hfg0F1mK8gPl55n1pYAaHcB5gjoXNQBf',0,NULL,NULL),(40,1,'2022-09-16 07:52:24','2022-09-16 07:52:44',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',6.0000,6.0000,NULL,4,3,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,'000000009',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'CwjhhOpluUDvTkP1P2t0MLmH6KNU6YsM',0,NULL,NULL),(41,1,'2022-09-16 07:55:58','2022-09-16 07:57:31',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',5.9900,5.9900,NULL,5,3,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,'000000010',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.9900,0.9900,0.9900,0.9900,1,0,NULL,NULL,0,'ZWNMLa1yksce7dHHy5BDmIFhQJvXzQ7Q',0,NULL,NULL),(42,1,'2022-09-16 08:08:44','2022-09-16 08:32:23',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',105.0000,105.0000,NULL,5,3,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,'000000011',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,100.0000,100.0000,100.0000,100.0000,1,0,NULL,NULL,0,'HrKACz6Jy3VgolYJCUOtyodvvgTxn9Zm',0,NULL,NULL),(43,1,'2022-09-16 09:14:21','2022-09-16 09:14:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,5,NULL,1,'raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,NULL,1,0,'192.168.112.1',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'gEr3SvXexMmGV2CJ5mdUZnxXNU0S9i2W',0,NULL,NULL);
/*!40000 ALTER TABLE `quote` ENABLE KEYS */;

--
-- Table structure for table `quote_address`
--

DROP TABLE IF EXISTS `quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_address` (
  `address_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address ID',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',
  `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',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `save_in_address_book` smallint(6) DEFAULT 0 COMMENT 'Save In Address Book',
  `customer_address_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Address ID',
  `address_type` varchar(10) DEFAULT NULL COMMENT 'Address Type',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Prefix',
  `firstname` varchar(255) DEFAULT NULL,
  `middlename` varchar(40) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `region_id` int(10) unsigned DEFAULT NULL COMMENT 'Region ID',
  `postcode` varchar(20) DEFAULT NULL COMMENT 'Postcode',
  `country_id` varchar(30) DEFAULT NULL COMMENT 'Country ID',
  `telephone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `same_as_billing` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Same As Billing',
  `collect_shipping_rates` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Collect Shipping Rates',
  `shipping_method` varchar(120) DEFAULT NULL,
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `weight` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Weight',
  `subtotal` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Subtotal With Discount',
  `tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Shipping Amount',
  `base_shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Shipping Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `grand_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Grand Total',
  `customer_notes` text DEFAULT NULL COMMENT 'Customer Notes',
  `applied_taxes` text DEFAULT NULL COMMENT 'Applied Taxes',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `vat_id` text DEFAULT NULL COMMENT 'Vat ID',
  `vat_is_valid` smallint(6) DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text DEFAULT NULL COMMENT 'Vat Request ID',
  `vat_request_date` text DEFAULT NULL COMMENT 'Vat Request Date',
  `vat_request_success` smallint(6) DEFAULT NULL COMMENT 'Vat Request Success',
  `validated_country_code` text DEFAULT NULL COMMENT 'Validated Country Code',
  `validated_vat_number` text DEFAULT NULL COMMENT 'Validated Vat Number',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',
  PRIMARY KEY (`address_id`),
  KEY `QUOTE_ADDRESS_QUOTE_ID` (`quote_id`),
  CONSTRAINT `QUOTE_ADDRESS_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_address`
--

/*!40000 ALTER TABLE `quote_address` DISABLE KEYS */;
INSERT INTO `quote_address` VALUES (1,1,'2022-07-31 13:22:52','2022-07-31 13:22:52',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,1,'2022-07-31 13:22:52','2022-07-31 13:22:52',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,2,'2022-08-04 16:21:54','2022-08-04 16:22:37',NULL,0,NULL,'shipping','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,6.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,2,'2022-08-04 16:22:44','2022-08-04 16:22:44',NULL,NULL,NULL,'billing','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,3,'2022-08-05 14:45:52','2022-08-05 14:45:52',1,0,1,'shipping','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(11,3,'2022-08-05 14:45:52','2022-08-05 14:45:52',1,0,1,'billing','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(12,5,'2022-08-08 12:50:41','2022-08-08 12:50:41',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,5,'2022-08-08 12:50:41','2022-08-08 12:50:41',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(14,6,'2022-08-08 13:59:26','2022-08-08 13:59:26',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(15,6,'2022-08-08 13:59:26','2022-08-08 13:59:26',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,1.0000,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,NULL,'[]',NULL,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(16,7,'2022-08-08 14:01:11','2022-08-08 14:01:11',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(17,7,'2022-08-08 14:01:11','2022-08-08 14:01:11',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(18,8,'2022-08-08 14:18:43','2022-08-08 14:18:43',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(19,8,'2022-08-08 14:18:43','2022-08-08 14:18:43',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(21,9,'2022-08-08 15:23:40','2022-08-08 15:24:33',NULL,0,NULL,'shipping','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'Via kufstein,5','Trento','Trento',909,'38121','IT','3232323236',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,17.0000,17.0000,NULL,'[]',NULL,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(22,9,'2022-08-08 15:24:47','2022-08-08 15:24:47',NULL,NULL,NULL,'billing','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'Via kufstein,5','Trento','Trento',909,'38121','IT','3232323236',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(24,10,'2022-08-09 08:02:01','2022-08-09 08:08:36',2,0,2,'shipping','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'via Kufstein, 5','Trento','Trento',909,'38121','IT','3462547685',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',2.0000,24.0000,24.0000,24.0000,24.0000,0.0000,0.0000,10.0000,10.0000,0.0000,0.0000,0.0000,0.0000,34.0000,34.0000,NULL,'[]',NULL,0.0000,0.0000,24.0000,24.0000,0.0000,0.0000,0.0000,NULL,10.0000,10.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(25,10,'2022-08-09 08:08:41','2022-08-09 08:08:41',2,NULL,2,'billing','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'via Kufstein, 5','Trento','Trento',909,'38121','IT','3462547685',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(27,11,'2022-08-09 11:59:07','2022-08-09 11:59:16',2,0,2,'shipping','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'via Kufstein, 5','Trento','Trento',909,'38121','IT','3462547685',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,17.0000,17.0000,NULL,'[]',NULL,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(28,11,'2022-08-09 11:59:19','2022-08-09 11:59:19',2,NULL,2,'billing','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'via Kufstein, 5','Trento','Trento',909,'38121','IT','3462547685',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(30,12,'2022-08-09 12:25:33','2022-08-09 12:25:50',2,0,2,'shipping','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'via Kufstein, 5','Trento','Trento',909,'38121','IT','3462547685',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,17.0000,17.0000,NULL,'[]',NULL,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(31,12,'2022-08-09 12:25:53','2022-08-09 12:25:53',2,NULL,2,'billing','daniele.dellagiacoma@deltainformatica.eu',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'via Kufstein, 5','Trento','Trento',909,'38121','IT','3462547685',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(32,13,'2022-08-11 09:12:30','2022-08-11 09:12:30',1,0,NULL,'billing','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(33,13,'2022-08-11 09:12:30','2022-08-11 09:12:30',1,0,NULL,'shipping','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,1,0,'flatrate_flatrate','Flat Rate - Fixed',0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,6.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(34,14,'2022-08-11 09:14:10','2022-08-11 09:14:10',1,0,1,'billing','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(35,14,'2022-08-11 09:14:10','2022-08-11 09:14:10',1,0,1,'shipping','roberto@torresani.eu',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'Via Trentino','Trento','Trento',909,'38121','IT','3404922491',NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(36,15,'2022-08-11 09:14:22','2022-08-11 09:14:22',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(37,15,'2022-08-11 09:14:22','2022-08-11 09:14:22',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(38,16,'2022-08-30 06:55:23','2022-08-30 06:55:23',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(39,16,'2022-08-30 06:55:23','2022-08-30 06:55:23',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(40,17,'2022-08-30 10:35:55','2022-08-30 10:35:55',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(41,17,'2022-08-30 10:35:55','2022-08-30 10:35:55',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,3.0000,3.0000,3.0000,3.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,NULL,'[]',NULL,0.0000,0.0000,3.0000,3.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(42,18,'2022-08-30 13:50:15','2022-08-30 13:50:15',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(43,18,'2022-08-30 13:50:15','2022-08-30 13:50:15',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(44,19,'2022-08-31 10:59:32','2022-08-31 10:59:32',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(45,19,'2022-08-31 10:59:32','2022-08-31 10:59:32',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(46,20,'2022-08-31 15:33:27','2022-08-31 15:33:27',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(47,20,'2022-08-31 15:33:27','2022-08-31 15:33:27',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(48,21,'2022-09-01 08:50:27','2022-09-01 08:50:27',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(49,21,'2022-09-01 08:50:27','2022-09-01 08:50:27',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,6.0000,600.0000,600.0000,600.0000,600.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,600.0000,600.0000,NULL,'[]',NULL,0.0000,0.0000,600.0000,600.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(50,22,'2022-09-01 13:20:14','2022-09-01 13:20:14',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(51,22,'2022-09-01 13:20:14','2022-09-01 13:20:14',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,40.0000,4599.4000,4599.4000,4599.4000,4599.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4599.4000,4599.4000,NULL,'[]',NULL,0.0000,0.0000,4599.4000,4599.4000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(52,23,'2022-09-02 15:27:26','2022-09-02 15:27:26',3,0,NULL,'billing','raffaele.decarli@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(53,23,'2022-09-02 15:27:26','2022-09-02 15:27:26',3,0,NULL,'shipping','raffaele.decarli@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,1.0000,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,100.0000,NULL,'[]',NULL,0.0000,0.0000,100.0000,100.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(54,24,'2022-09-06 07:35:54','2022-09-06 07:35:54',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(55,24,'2022-09-06 07:35:54','2022-09-06 07:35:54',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,33.0000,3201.0000,3201.0000,3201.0000,3201.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3201.0000,3201.0000,NULL,'[]',NULL,0.0000,0.0000,3201.0000,3201.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(56,25,'2022-09-07 15:39:59','2022-09-07 15:39:59',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(57,25,'2022-09-07 15:39:59','2022-09-07 15:39:59',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(58,26,'2022-09-07 15:43:35','2022-09-07 15:43:35',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(59,26,'2022-09-07 15:43:35','2022-09-07 15:43:35',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(60,27,'2022-09-08 13:26:09','2022-09-08 13:26:09',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(61,27,'2022-09-08 13:26:09','2022-09-08 13:26:09',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,7.0000,205.0000,205.0000,205.0000,205.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,205.0000,205.0000,NULL,'[]',NULL,0.0000,0.0000,205.0000,205.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(62,28,'2022-09-12 08:46:52','2022-09-12 08:46:52',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(63,28,'2022-09-12 08:46:52','2022-09-12 08:46:52',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,1.0000,2.0000,2.0000,2.0000,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,2.0000,2.0000,NULL,'[]',NULL,0.0000,0.0000,2.0000,2.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(64,29,'2022-09-12 14:36:30','2022-09-12 14:36:30',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(65,29,'2022-09-12 14:36:30','2022-09-12 14:36:30',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,4.0000,4.0000,4.0000,4.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,4.0000,NULL,'[]',NULL,0.0000,0.0000,4.0000,4.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(66,30,'2022-09-13 12:57:00','2022-09-13 12:57:00',NULL,0,NULL,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele.',NULL,'Decarli',NULL,'thraed','ad','trento','Arezzo',816,'38123','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(67,30,'2022-09-13 12:57:00','2022-09-13 15:48:53',NULL,0,NULL,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele.',NULL,'Decarli',NULL,'thraed','ad','trento','Arezzo',816,'38123','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',4.0000,1176.9000,1176.9000,1176.9000,1176.9000,0.0000,0.0000,20.0000,20.0000,0.0000,0.0000,0.0000,0.0000,1196.9000,1196.9000,NULL,'[]',NULL,0.0000,0.0000,1176.9000,1176.9000,0.0000,0.0000,0.0000,NULL,20.0000,20.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(68,31,'2022-09-13 13:44:51','2022-09-13 13:44:51',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(69,31,'2022-09-13 13:44:51','2022-09-13 13:44:51',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,2.0000,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,876.0000,876.0000,NULL,'[]',NULL,0.0000,0.0000,876.0000,876.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(70,32,'2022-09-14 09:57:58','2022-09-14 09:57:58',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(71,32,'2022-09-14 09:57:58','2022-09-14 09:57:58',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,1.0000,0.9900,0.9900,0.9900,0.9900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.9900,0.9900,NULL,'[]',NULL,0.0000,0.0000,0.9900,0.9900,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(72,33,'2022-09-14 12:15:34','2022-09-14 12:15:34',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(73,33,'2022-09-14 12:15:34','2022-09-14 16:12:23',NULL,0,NULL,'shipping','raffaele.decarli@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(74,34,'2022-09-14 19:15:09','2022-09-14 19:15:09',NULL,0,NULL,'billing','raffaele.decarli@netwise.it',NULL,'Raffaele',NULL,'Decarli',NULL,'Thread Solutions','le man dal cul','Trento','Trento',909,'38123','IT','234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(75,34,'2022-09-14 19:15:09','2022-09-14 21:18:25',NULL,0,NULL,'shipping','raffaele.decarli@netwise.it',NULL,'Raffaele',NULL,'Decarli',NULL,'Thread Solutions','le man dal cul','Trento','Trento',909,'38123','IT','234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',3.0000,1049.0000,1049.0000,1049.0000,1049.0000,0.0000,0.0000,10.0000,10.0000,0.0000,0.0000,0.0000,0.0000,1059.0000,1059.0000,NULL,'[]',NULL,0.0000,0.0000,1049.0000,1049.0000,0.0000,0.0000,0.0000,NULL,10.0000,10.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(76,35,'2022-09-15 07:46:59','2022-09-15 07:46:59',NULL,0,NULL,'billing','raffaele.decarli@netwise.it',NULL,'Rafffaele',NULL,'Decarli',NULL,'Thread','le man dal cul','Trento','Trento',909,'38123','IT','123456789',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(77,35,'2022-09-15 07:46:59','2022-09-15 10:11:50',NULL,0,NULL,'shipping','raffaele.decarli@netwise.it',NULL,'Rafffaele',NULL,'Decarli',NULL,'Thread','le man dal cul','Trento','Trento',909,'38123','IT','123456789',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',5.0000,1031.0000,1031.0000,927.9000,927.9000,0.0000,0.0000,20.0000,20.0000,0.0000,0.0000,-103.1000,-103.1000,947.9000,947.9000,NULL,'[]','si',0.0000,0.0000,1031.0000,1031.0000,0.0000,0.0000,0.0000,NULL,20.0000,20.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(78,36,'2022-09-15 12:02:46','2022-09-15 12:02:46',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(79,36,'2022-09-15 12:02:46','2022-09-15 12:02:46',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,2.0000,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,876.0000,876.0000,NULL,'[]',NULL,0.0000,0.0000,876.0000,876.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(81,37,'2022-09-16 07:35:55','2022-09-16 07:45:21',4,1,3,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,6.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(82,37,'2022-09-16 07:45:24','2022-09-16 07:45:24',4,NULL,NULL,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(84,38,'2022-09-16 07:48:24','2022-09-16 07:48:42',4,0,3,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,6.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(85,38,'2022-09-16 07:48:48','2022-09-16 07:48:48',4,NULL,3,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(87,39,'2022-09-16 07:49:40','2022-09-16 07:49:50',4,0,3,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,6.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(88,39,'2022-09-16 07:49:55','2022-09-16 07:49:55',4,NULL,3,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(90,40,'2022-09-16 07:52:24','2022-09-16 07:52:35',4,0,3,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,6.0000,6.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(91,40,'2022-09-16 07:52:43','2022-09-16 07:52:43',4,NULL,3,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','Trento','Alessandria',812,'12311','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(93,41,'2022-09-16 07:55:58','2022-09-16 07:57:22',5,1,4,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','trento','Trento',909,'38123','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,0.9900,0.9900,0.9900,0.9900,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,5.9900,5.9900,NULL,'[]',NULL,0.0000,0.0000,0.9900,0.9900,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(94,41,'2022-09-16 07:57:27','2022-09-16 07:57:27',5,NULL,NULL,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','trento','Trento',909,'38123','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(96,42,'2022-09-16 08:08:44','2022-09-16 08:32:18',5,0,4,'shipping','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','trento','Trento',909,'38123','IT','1234567890',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',1.0000,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,105.0000,105.0000,NULL,'[]',NULL,0.0000,0.0000,100.0000,100.0000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(97,42,'2022-09-16 08:32:21','2022-09-16 08:32:21',5,NULL,4,'billing','raffaele.decarli+1@thread.solutions',NULL,'Raffaele',NULL,'Decarli',NULL,NULL,'le man dal cul','trento','Trento',909,'38123','IT','1234567890',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(98,43,'2022-09-16 09:14:21','2022-09-16 09:14:21',5,0,NULL,'billing','raffaele.decarli+1@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(99,43,'2022-09-16 09:14:21','2022-09-16 09:14:21',5,0,NULL,'shipping','raffaele.decarli+1@thread.solutions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `quote_address` ENABLE KEYS */;

--
-- Table structure for table `quote_address_item`
--

DROP TABLE IF EXISTS `quote_address_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_address_item` (
  `address_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address Item ID',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `quote_address_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote Address ID',
  `quote_item_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote Item ID',
  `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',
  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',
  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Row Total With Discount',
  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `super_product_id` int(10) unsigned DEFAULT NULL COMMENT 'Super Product ID',
  `parent_product_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `image` varchar(255) DEFAULT NULL COMMENT 'Image',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `is_qty_decimal` int(10) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `discount_percent` decimal(12,4) DEFAULT NULL COMMENT 'Discount Percent',
  `no_discount` int(10) unsigned DEFAULT NULL COMMENT 'No Discount',
  `tax_percent` decimal(12,4) DEFAULT NULL COMMENT 'Tax Percent',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` int(10) unsigned DEFAULT NULL COMMENT 'Free Shipping',
  PRIMARY KEY (`address_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`),
  KEY `QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`quote_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`quote_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ADDR_ITEM_PARENT_ITEM_ID_QUOTE_ADDR_ITEM_ADDR_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_address_item` (`address_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_address_item`
--

/*!40000 ALTER TABLE `quote_address_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `quote_address_item` ENABLE KEYS */;

--
-- Table structure for table `quote_id_mask`
--

DROP TABLE IF EXISTS `quote_id_mask`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_id_mask` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Quote ID',
  `masked_id` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  PRIMARY KEY (`entity_id`,`quote_id`),
  KEY `QUOTE_ID_MASK_QUOTE_ID` (`quote_id`),
  KEY `QUOTE_ID_MASK_MASKED_ID` (`masked_id`),
  CONSTRAINT `QUOTE_ID_MASK_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COMMENT='Quote ID and masked ID mapping';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_id_mask`
--

/*!40000 ALTER TABLE `quote_id_mask` DISABLE KEYS */;
INSERT INTO `quote_id_mask` VALUES (25,35,'1b0GzzHrfHHQ82kyPw1fVRV1DdxbOcNO'),(8,9,'2K8zqXg8HqMT4YbIqsp7esVin5vTcUCb'),(15,22,'2rCC0nRxj5XNmiyxVTsuvANvA71ZQVBp'),(9,10,'3vlzDCwQRAqfXxWXI7L6M6qBBoTyyiOb'),(10,16,'4AfGTHBEtiNSq8EA4KxCQ1ueYnXO0yK5'),(21,31,'7a9SVh0Tzr7suCIpWKVVcVYIdX6NQYhh'),(20,30,'8cFJLTVIY1eaqlOfH30Wk6tV493IQa7O'),(26,36,'AnnA4p2jMiJMYIri4aALydCYKbOwR3e9'),(23,33,'Egu0aqIoxIzASauWdMxn9XSc9PmfdYSw'),(14,21,'grN2QWcPRwSupnoN2wTguKOWrGhRATgg'),(7,8,'iEB5Fy6Elu8KJTZyL0O2mO2hhNXMORmw'),(11,17,'IGpGXc9j6PgK4hQgJhaN2iSYoljI1AhU'),(13,20,'ITcGxeY9KuzWYyDilAv4khOxTo2XuOAR'),(4,5,'jeTeWbzvRq3PjpvyI9wRXEG3BgDEP7Pk'),(12,18,'jGtyW7vA9PO9iNmscfyxiNwXoArpC5IO'),(24,34,'Jn7SqizAaQ2LBh2LHphG7bWvJrBlV2SS'),(2,2,'Kf9JIyzTPx91QfieYYsZlJl2x8DGXPVf'),(22,32,'nFIHt5738Ktgd98QL2xf2LkccuHyYGC8'),(5,6,'nhHHKNQmqQOU6LOfCLMs102mmXjLivlX'),(1,1,'nT0EoFv8MycxcM7ji3Z6HhISfZ2Kg6q2'),(6,7,'OfZaIOW1wLUNdUxlIjWVyPerYqIJNLVN'),(18,28,'sHyFA4l17ZQqnWUQdS4LmMZUCRAGmSjh'),(16,24,'T3EFfxyGu0GmIP5tmAjvAO1OkYrTuu0C'),(17,27,'UQgrCaYhxS2wpiACrlTUvev1wEh0zLDD'),(19,29,'VuSEiBWwEYIBN3FzyzLCC1lidm3bwpti');
/*!40000 ALTER TABLE `quote_id_mask` ENABLE KEYS */;

--
-- Table structure for table `quote_item`
--

DROP TABLE IF EXISTS `quote_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',
  `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',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint(5) unsigned DEFAULT 0 COMMENT 'No Discount',
  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Price',
  `custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Custom Price',
  `discount_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `tax_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Row Total With Discount',
  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `original_custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Custom Price',
  `redirect_url` varchar(255) DEFAULT NULL COMMENT 'Redirect Url',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`item_id`),
  KEY `QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `QUOTE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `QUOTE_ITEM_QUOTE_ID` (`quote_id`),
  KEY `QUOTE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_ITEM_PARENT_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ITEM_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_item`
--

/*!40000 ALTER TABLE `quote_item` DISABLE KEYS */;
INSERT INTO `quote_item` VALUES (1,1,'2022-07-31 13:22:52','2022-07-31 13:22:52',1,1,NULL,0,'Vino Test','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,2,'2022-08-04 16:21:54','2022-08-04 16:21:54',1,1,NULL,0,'Vino Test','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,5,'2022-08-08 12:50:41','2022-08-08 12:50:41',1,1,NULL,0,'Vino Test','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,9,'2022-08-08 15:23:40','2022-08-08 15:23:40',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,1.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,10,'2022-08-09 08:02:01','2022-08-09 08:07:11',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,2.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.0000,24.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,24.0000,24.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,11,'2022-08-09 11:59:10','2022-08-09 11:59:10',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,1.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,12,'2022-08-09 12:25:33','2022-08-09 12:25:33',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,1.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,6,'2022-08-09 14:57:49','2022-08-09 14:57:49',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,1.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,13,'2022-08-11 09:13:22','2022-08-11 09:13:22',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,16,'2022-08-30 06:55:23','2022-08-30 06:55:23',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,17,'2022-08-30 10:35:55','2022-08-30 10:35:55',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,3.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3.0000,3.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,3.0000,3.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,18,'2022-08-30 13:50:15','2022-08-30 13:50:15',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,19,'2022-08-31 10:59:32','2022-08-31 10:59:32',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,20,'2022-08-31 15:33:27','2022-08-31 15:33:27',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,21,'2022-09-01 08:50:27','2022-09-01 09:58:29',14,1,NULL,0,'Formaj','Formaj',NULL,NULL,NULL,0,0,1.0000,3.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,300.0000,300.0000,0.0000,3.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,300.0000,300.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,21,'2022-09-01 09:31:10','2022-09-01 09:31:10',13,1,NULL,0,'Spremuta di fragole','Spremuta di fragole',NULL,NULL,NULL,0,0,1.0000,3.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,300.0000,300.0000,0.0000,3.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,300.0000,300.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,22,'2022-09-01 13:20:14','2022-09-01 13:20:14',14,1,NULL,0,'Formaj','Formaj',NULL,NULL,NULL,0,0,1.0000,4.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,400.0000,400.0000,0.0000,4.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,400.0000,400.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,22,'2022-09-01 13:40:11','2022-09-01 13:40:11',9,1,NULL,0,'prodotto lorem ipsum','prodotto lorem ipsum',NULL,NULL,NULL,0,0,1.0000,6.0000,199.9000,199.9000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1199.4000,1199.4000,0.0000,6.0000,'simple',NULL,NULL,NULL,NULL,NULL,199.9000,199.9000,1199.4000,1199.4000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,22,'2022-09-01 14:50:59','2022-09-01 14:50:59',13,1,NULL,0,'Spremuta di fragole','Spremuta di fragole',NULL,NULL,NULL,0,0,1.0000,30.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3000.0000,3000.0000,0.0000,30.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,3000.0000,3000.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,24,'2022-09-06 07:35:54','2022-09-06 07:35:54',14,1,NULL,0,'Formaj','Formaj',NULL,NULL,NULL,0,0,1.0000,1.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,100.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,24,'2022-09-06 08:38:02','2022-09-06 08:38:02',10,1,NULL,0,'La Birra!','La Birra!',NULL,NULL,NULL,0,0,1.0000,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,24,'2022-09-06 09:47:46','2022-09-06 09:48:40',13,1,NULL,0,'Spremuta di fragole','Spremuta di fragole',NULL,NULL,NULL,0,0,1.0000,31.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,3100.0000,3100.0000,0.0000,31.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,3100.0000,3100.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,23,'2022-09-06 14:52:47','2022-09-06 14:52:47',13,1,NULL,0,'Spremuta di fragole','Spremuta di fragole',NULL,NULL,NULL,0,0,1.0000,1.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,100.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,27,'2022-09-08 13:26:09','2022-09-08 13:26:09',10,1,NULL,0,'La Birra!','La Birra!',NULL,NULL,NULL,0,0,1.0000,5.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,5.0000,5.0000,0.0000,5.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,5.0000,5.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,27,'2022-09-08 13:26:15','2022-09-08 13:26:15',14,1,NULL,0,'Formaj','Formaj',NULL,NULL,NULL,0,0,1.0000,2.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,200.0000,200.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,200.0000,200.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,28,'2022-09-12 08:46:52','2022-09-12 08:46:52',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,28,'2022-09-12 08:47:41','2022-09-12 08:47:41',10,1,NULL,0,'La Birra!','La Birra!',NULL,NULL,NULL,0,0,1.0000,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,29,'2022-09-12 14:36:30','2022-09-12 14:36:30',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,4.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.0000,4.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,4.0000,4.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,30,'2022-09-13 12:57:00','2022-09-13 12:57:00',14,1,NULL,0,'Formaj','Formaj',NULL,NULL,NULL,0,0,1.0000,1.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,100.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,31,'2022-09-13 13:44:51','2022-09-13 13:44:51',21,1,NULL,0,'prodotto lorem ipsum 8','prodotto lorem ipsum 8',NULL,NULL,NULL,0,0,2.0000,1.0000,876.0000,876.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,876.0000,876.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,30,'2022-09-13 15:24:38','2022-09-13 15:24:38',21,1,NULL,0,'prodotto lorem ipsum 8','prodotto lorem ipsum 8',NULL,NULL,NULL,0,0,2.0000,1.0000,876.0000,876.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,876.0000,876.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,30,'2022-09-13 15:25:13','2022-09-13 15:25:13',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(35,30,'2022-09-13 15:25:23','2022-09-13 15:25:23',9,1,NULL,0,'prodotto lorem ipsum','prodotto lorem ipsum',NULL,NULL,NULL,0,0,1.0000,1.0000,199.9000,199.9000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,199.9000,199.9000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,199.9000,199.9000,199.9000,199.9000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,32,'2022-09-14 09:57:58','2022-09-14 09:57:58',11,1,NULL,0,'La morte !','La morte !',NULL,NULL,NULL,0,0,1.0000,1.0000,0.9900,0.9900,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.9900,0.9900,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,0.9900,0.9900,0.9900,0.9900,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,33,'2022-09-14 12:15:34','2022-09-14 12:15:34',10,1,NULL,0,'La Birra!','La Birra!',NULL,NULL,NULL,0,0,1.0000,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,34,'2022-09-14 19:15:09','2022-09-14 19:15:09',22,1,NULL,0,'prodotto lorem ipsum 9','prodotto lorem ipsum 9',NULL,NULL,NULL,0,0,1.0000,1.0000,173.0000,173.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,173.0000,173.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,173.0000,173.0000,173.0000,173.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,34,'2022-09-14 19:15:14','2022-09-14 19:15:14',21,1,NULL,0,'prodotto lorem ipsum 8','prodotto lorem ipsum 8',NULL,NULL,NULL,0,0,2.0000,1.0000,876.0000,876.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,876.0000,876.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(40,35,'2022-09-15 07:46:59','2022-09-15 09:23:55',17,1,NULL,0,'prodotto lorem ipsum 4','prodotto lorem ipsum 4',NULL,'1',NULL,0,0,2.0000,1.0000,54.0000,54.0000,NULL,10.0000,5.4000,5.4000,0.0000,0.0000,0.0000,54.0000,54.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,54.0000,54.0000,54.0000,54.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41,35,'2022-09-15 07:48:40','2022-09-15 09:23:55',1,1,NULL,0,'vinotest','Vino Test',NULL,'1',NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,10.0000,0.1000,0.1000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,35,'2022-09-15 07:48:49','2022-09-15 09:23:55',13,1,NULL,0,'Spremuta di fragole','Spremuta di fragole',NULL,'1',NULL,0,0,1.0000,1.0000,100.0000,100.0000,NULL,10.0000,10.0000,10.0000,0.0000,0.0000,0.0000,100.0000,100.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(43,35,'2022-09-15 09:30:11','2022-09-15 09:30:11',21,1,NULL,0,'prodotto lorem ipsum 8','prodotto lorem ipsum 8',NULL,'1',NULL,0,0,2.0000,1.0000,876.0000,876.0000,NULL,10.0000,87.6000,87.6000,0.0000,0.0000,0.0000,876.0000,876.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,36,'2022-09-15 12:02:46','2022-09-15 12:02:46',21,1,NULL,0,'prodotto lorem ipsum 8','prodotto lorem ipsum 8',NULL,NULL,NULL,0,0,2.0000,1.0000,876.0000,876.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,876.0000,876.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,876.0000,876.0000,876.0000,876.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45,37,'2022-09-16 07:44:36','2022-09-16 07:44:36',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,38,'2022-09-16 07:48:24','2022-09-16 07:48:24',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,39,'2022-09-16 07:49:40','2022-09-16 07:49:40',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48,40,'2022-09-16 07:52:24','2022-09-16 07:52:24',10,1,NULL,0,'La Birra!','La Birra!',NULL,NULL,NULL,0,0,1.0000,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(49,41,'2022-09-16 07:56:42','2022-09-16 07:56:42',11,1,NULL,0,'La morte !','La morte !',NULL,NULL,NULL,0,0,1.0000,1.0000,0.9900,0.9900,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.9900,0.9900,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,0.9900,0.9900,0.9900,0.9900,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,42,'2022-09-16 08:08:44','2022-09-16 08:08:44',13,1,NULL,0,'Spremuta di fragole','Spremuta di fragole',NULL,NULL,NULL,0,0,1.0000,1.0000,100.0000,100.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,100.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `quote_item` ENABLE KEYS */;

--
-- Table structure for table `quote_item_option`
--

DROP TABLE IF EXISTS `quote_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_item_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `item_id` int(10) unsigned NOT NULL COMMENT 'Item ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`),
  CONSTRAINT `QUOTE_ITEM_OPTION_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_item_option`
--

/*!40000 ALTER TABLE `quote_item_option` DISABLE KEYS */;
INSERT INTO `quote_item_option` VALUES (1,1,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL2luZGFjbzIuMzgxMjEuaXQvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(2,2,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(5,5,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(6,6,2,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvcHJpbW8tcHJvZG90dG8tZGVsdGEtaW5mb3JtYXRpY2EuaHRtbA,,\",\"product\":\"2\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"2\",\"qty\":\"1\"}'),(7,7,2,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS92aW5vLmh0bWw,\",\"product\":\"2\",\"qty\":1}'),(8,8,2,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}'),(9,9,2,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}'),(10,10,2,'info_buyRequest','{\"qty\":1}'),(11,11,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":\"1\",\"original_qty\":1,\"options\":[]}'),(12,12,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"1\",\"qty\":1}'),(13,13,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"1\",\"qty\":\"3\"}'),(14,14,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"1\",\"qty\":1}'),(15,15,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"1\",\"qty\":1}'),(16,16,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"1\",\"qty\":1}'),(17,17,14,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"14\",\"qty\":\"2\"}'),(18,18,13,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"13\",\"qty\":\"3\"}'),(19,19,14,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"14\",\"qty\":\"4\"}'),(20,20,9,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"9\",\"qty\":\"6\"}'),(21,21,13,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"13\",\"qty\":\"30\"}'),(22,22,14,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"14\",\"qty\":1}'),(23,23,10,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"10\",\"qty\":1}'),(24,24,13,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"13\",\"qty\":\"5\"}'),(25,25,13,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"13\",\"qty\":1}'),(26,26,10,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"10\",\"qty\":\"5\"}'),(27,27,14,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"14\",\"qty\":\"2\"}'),(28,28,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(29,29,10,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"10\",\"qty\":1}'),(30,30,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":\"4\"}'),(31,31,14,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1sP3Byb2R1Y3RfbGlzdF9vcmRlcj1uYW1l\",\"product\":\"14\",\"qty\":1}'),(32,32,21,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"21\",\"qty\":1}'),(33,33,21,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"21\",\"qty\":1}'),(34,34,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(35,35,9,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"9\",\"qty\":1}'),(36,36,11,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"11\",\"qty\":1}'),(37,37,10,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"10\",\"qty\":1}'),(38,38,22,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"22\",\"qty\":\"1\"}'),(39,39,21,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"21\",\"qty\":\"1\"}'),(40,40,17,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"17\",\"qty\":\"1\"}'),(41,41,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":\"1\"}'),(42,42,13,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"13\",\"qty\":1}'),(43,43,21,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"21\",\"qty\":1}'),(44,44,21,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"product\":\"21\",\"qty\":1}'),(45,45,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(46,46,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(47,47,1,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(48,48,10,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"10\",\"qty\":1}'),(49,49,11,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"11\",\"qty\":1}'),(50,50,13,'info_buyRequest','{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"13\",\"qty\":1}');
/*!40000 ALTER TABLE `quote_item_option` ENABLE KEYS */;

--
-- Table structure for table `quote_payment`
--

DROP TABLE IF EXISTS `quote_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_payment` (
  `payment_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Payment ID',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',
  `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',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `cc_type` varchar(255) DEFAULT NULL COMMENT 'Cc Type',
  `cc_number_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Number Enc',
  `cc_last_4` varchar(255) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_cid_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Cid Enc',
  `cc_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_exp_month` varchar(255) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_exp_year` smallint(5) unsigned DEFAULT 0 COMMENT 'Cc Exp Year',
  `cc_ss_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Owner',
  `cc_ss_start_month` smallint(5) unsigned DEFAULT 0 COMMENT 'Cc Ss Start Month',
  `cc_ss_start_year` smallint(5) unsigned DEFAULT 0 COMMENT 'Cc Ss Start Year',
  `po_number` varchar(255) DEFAULT NULL COMMENT 'Po Number',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `cc_ss_issue` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `additional_information` text DEFAULT NULL COMMENT 'Additional Information',
  `paypal_payer_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer ID',
  `paypal_payer_status` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer Status',
  `paypal_correlation_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Correlation ID',
  PRIMARY KEY (`payment_id`),
  KEY `QUOTE_PAYMENT_QUOTE_ID` (`quote_id`),
  CONSTRAINT `QUOTE_PAYMENT_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_payment`
--

/*!40000 ALTER TABLE `quote_payment` DISABLE KEYS */;
INSERT INTO `quote_payment` VALUES (1,2,'2022-08-04 16:22:37','2022-08-04 16:22:37','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(2,9,'2022-08-08 15:24:33','2022-08-08 15:24:33','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(3,10,'2022-08-09 08:08:36','2022-08-09 08:08:36','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(4,11,'2022-08-09 11:59:16','2022-08-09 11:59:16','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(5,12,'2022-08-09 12:25:50','2022-08-09 12:25:50','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(6,13,'2022-08-11 09:12:31','2022-08-11 09:12:31','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(7,14,'2022-08-11 09:14:11','2022-08-11 09:14:11','free',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(8,15,'2022-08-11 09:14:22','2022-08-11 09:14:22','free',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(9,30,'2022-09-13 15:48:54','2022-09-13 15:48:54','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(10,34,'2022-09-14 20:37:57','2022-09-14 20:37:57','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(11,35,'2022-09-15 08:19:08','2022-09-15 08:19:08','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(12,37,'2022-09-16 07:45:21','2022-09-16 07:45:21','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(13,38,'2022-09-16 07:48:45','2022-09-16 07:48:45','banktransfer',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(14,39,'2022-09-16 07:49:51','2022-09-16 07:49:51','cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(15,40,'2022-09-16 07:52:36','2022-09-16 07:52:36','cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(16,41,'2022-09-16 07:57:25','2022-09-16 07:57:25','cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(17,42,'2022-09-16 08:32:19','2022-09-16 08:32:19','cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL);
/*!40000 ALTER TABLE `quote_payment` ENABLE KEYS */;

--
-- Table structure for table `quote_shipping_rate`
--

DROP TABLE IF EXISTS `quote_shipping_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_shipping_rate` (
  `rate_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rate ID',
  `address_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Address ID',
  `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',
  `carrier` varchar(255) DEFAULT NULL COMMENT 'Carrier',
  `carrier_title` varchar(255) DEFAULT NULL COMMENT 'Carrier Title',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `method_description` text DEFAULT NULL COMMENT 'Method Description',
  `price` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `error_message` text DEFAULT NULL COMMENT 'Error Message',
  `method_title` text DEFAULT NULL COMMENT 'Method Title',
  PRIMARY KEY (`rate_id`),
  KEY `QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`),
  CONSTRAINT `QUOTE_SHIPPING_RATE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=115 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Shipping Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_shipping_rate`
--

/*!40000 ALTER TABLE `quote_shipping_rate` DISABLE KEYS */;
INSERT INTO `quote_shipping_rate` VALUES (3,4,'2022-08-04 16:22:44','2022-08-04 16:22:44','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(6,21,'2022-08-08 15:24:47','2022-08-08 15:24:47','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(9,24,'2022-08-09 08:08:41','2022-08-09 08:08:41','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,10.0000,NULL,'Fixed'),(12,27,'2022-08-09 11:59:19','2022-08-09 11:59:19','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(15,30,'2022-08-09 12:25:53','2022-08-09 12:25:53','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(16,33,'2022-08-11 09:13:42','2022-08-11 09:13:42','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(18,67,'2022-09-13 15:48:54','2022-09-13 15:48:54','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,20.0000,NULL,'Fixed'),(51,75,'2022-09-14 21:18:25','2022-09-14 21:18:25','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,10.0000,NULL,'Fixed'),(95,77,'2022-09-15 10:11:51','2022-09-15 10:11:51','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,20.0000,NULL,'Fixed'),(98,81,'2022-09-16 07:45:24','2022-09-16 07:45:24','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(101,84,'2022-09-16 07:48:48','2022-09-16 07:48:48','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(105,87,'2022-09-16 07:49:55','2022-09-16 07:49:55','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(108,90,'2022-09-16 07:52:43','2022-09-16 07:52:43','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(111,93,'2022-09-16 07:57:27','2022-09-16 07:57:27','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(114,96,'2022-09-16 08:32:21','2022-09-16 08:32:21','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed');
/*!40000 ALTER TABLE `quote_shipping_rate` ENABLE KEYS */;

--
-- Table structure for table `rating`
--

DROP TABLE IF EXISTS `rating`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating` (
  `rating_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating ID',
  `entity_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `rating_code` varchar(64) NOT NULL COMMENT 'Rating Code',
  `position` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Position On Storefront',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Rating is active.',
  PRIMARY KEY (`rating_id`),
  UNIQUE KEY `RATING_RATING_CODE` (`rating_code`),
  KEY `RATING_ENTITY_ID` (`entity_id`),
  CONSTRAINT `RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `rating_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Ratings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating`
--

/*!40000 ALTER TABLE `rating` DISABLE KEYS */;
INSERT INTO `rating` VALUES (1,1,'Quality',0,1),(2,1,'Value',0,1),(3,1,'Price',0,1);
/*!40000 ALTER TABLE `rating` ENABLE KEYS */;

--
-- Table structure for table `rating_entity`
--

DROP TABLE IF EXISTS `rating_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating_entity` (
  `entity_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `RATING_ENTITY_ENTITY_CODE` (`entity_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Rating entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_entity`
--

/*!40000 ALTER TABLE `rating_entity` DISABLE KEYS */;
INSERT INTO `rating_entity` VALUES (1,'product'),(2,'product_review'),(3,'review');
/*!40000 ALTER TABLE `rating_entity` ENABLE KEYS */;

--
-- Table structure for table `rating_option`
--

DROP TABLE IF EXISTS `rating_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating Option ID',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `code` varchar(32) NOT NULL COMMENT 'Rating Option Code',
  `value` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Option Value',
  `position` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Ration option position on Storefront',
  PRIMARY KEY (`option_id`),
  KEY `RATING_OPTION_RATING_ID` (`rating_id`),
  CONSTRAINT `RATING_OPTION_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='Rating options';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option`
--

/*!40000 ALTER TABLE `rating_option` DISABLE KEYS */;
INSERT INTO `rating_option` VALUES (1,1,'1',1,1),(2,1,'2',2,2),(3,1,'3',3,3),(4,1,'4',4,4),(5,1,'5',5,5),(6,2,'1',1,1),(7,2,'2',2,2),(8,2,'3',3,3),(9,2,'4',4,4),(10,2,'5',5,5),(11,3,'1',1,1),(12,3,'2',2,2),(13,3,'3',3,3),(14,3,'4',4,4),(15,3,'5',5,5);
/*!40000 ALTER TABLE `rating_option` ENABLE KEYS */;

--
-- Table structure for table `rating_option_vote`
--

DROP TABLE IF EXISTS `rating_option_vote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating_option_vote` (
  `vote_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Vote ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Vote option ID',
  `remote_ip` varchar(16) NOT NULL COMMENT 'Customer IP',
  `remote_ip_long` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Customer IP converted to long integer format',
  `customer_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer ID',
  `entity_pk_value` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `review_id` bigint(20) unsigned DEFAULT NULL COMMENT 'Review ID',
  `percent` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Percent amount',
  `value` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Vote option value',
  PRIMARY KEY (`vote_id`),
  KEY `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` (`review_id`),
  KEY `RATING_OPTION_VOTE_OPTION_ID` (`option_id`),
  CONSTRAINT `RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `rating_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating option values';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option_vote`
--

/*!40000 ALTER TABLE `rating_option_vote` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_option_vote` ENABLE KEYS */;

--
-- Table structure for table `rating_option_vote_aggregated`
--

DROP TABLE IF EXISTS `rating_option_vote_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating_option_vote_aggregated` (
  `primary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Vote aggregation ID',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `entity_pk_value` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `vote_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Vote dty',
  `vote_value_sum` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'General vote sum',
  `percent` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Vote percent',
  `percent_approved` smallint(6) DEFAULT 0 COMMENT 'Vote percent approved by admin',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  KEY `RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`),
  KEY `RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating vote aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option_vote_aggregated`
--

/*!40000 ALTER TABLE `rating_option_vote_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_option_vote_aggregated` ENABLE KEYS */;

--
-- Table structure for table `rating_store`
--

DROP TABLE IF EXISTS `rating_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating_store` (
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `RATING_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_STORE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_store`
--

/*!40000 ALTER TABLE `rating_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_store` ENABLE KEYS */;

--
-- Table structure for table `rating_title`
--

DROP TABLE IF EXISTS `rating_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `rating_title` (
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `value` varchar(255) NOT NULL COMMENT 'Rating Label',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `RATING_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_TITLE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_title`
--

/*!40000 ALTER TABLE `rating_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_title` ENABLE KEYS */;

--
-- Table structure for table `release_notification_viewer_log`
--

DROP TABLE IF EXISTS `release_notification_viewer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `release_notification_viewer_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `viewer_id` int(10) unsigned NOT NULL COMMENT 'Viewer admin user ID',
  `last_view_version` varchar(16) NOT NULL COMMENT 'Viewer last view on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID` (`viewer_id`),
  CONSTRAINT `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`viewer_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Release Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `release_notification_viewer_log`
--

/*!40000 ALTER TABLE `release_notification_viewer_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `release_notification_viewer_log` ENABLE KEYS */;

--
-- Table structure for table `report_compared_product_index`
--

DROP TABLE IF EXISTS `report_compared_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_compared_product_index` (
  `index_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_CMPD_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_CMPD_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Compared Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_compared_product_index`
--

/*!40000 ALTER TABLE `report_compared_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_compared_product_index` ENABLE KEYS */;

--
-- Table structure for table `report_event`
--

DROP TABLE IF EXISTS `report_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_event` (
  `event_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event ID',
  `logged_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Logged At',
  `event_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Event Type ID',
  `object_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Object ID',
  `subject_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Subject ID',
  `subtype` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Subtype',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`event_id`),
  KEY `REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`),
  KEY `REPORT_EVENT_SUBJECT_ID` (`subject_id`),
  KEY `REPORT_EVENT_OBJECT_ID` (`object_id`),
  KEY `REPORT_EVENT_SUBTYPE` (`subtype`),
  KEY `REPORT_EVENT_STORE_ID` (`store_id`),
  CONSTRAINT `REPORT_EVENT_EVENT_TYPE_ID_REPORT_EVENT_TYPES_EVENT_TYPE_ID` FOREIGN KEY (`event_type_id`) REFERENCES `report_event_types` (`event_type_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_EVENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Event Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_event`
--

/*!40000 ALTER TABLE `report_event` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_event` ENABLE KEYS */;

--
-- Table structure for table `report_event_types`
--

DROP TABLE IF EXISTS `report_event_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_event_types` (
  `event_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event Type ID',
  `event_name` varchar(64) NOT NULL COMMENT 'Event Name',
  `customer_login` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Login',
  PRIMARY KEY (`event_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Reports Event Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_event_types`
--

/*!40000 ALTER TABLE `report_event_types` DISABLE KEYS */;
INSERT INTO `report_event_types` VALUES (1,'catalog_product_view',0),(2,'sendfriend_product',0),(3,'catalog_product_compare_add_product',0),(4,'checkout_cart_add_product',0),(5,'wishlist_add_product',0),(6,'wishlist_share',0);
/*!40000 ALTER TABLE `report_event_types` ENABLE KEYS */;

--
-- Table structure for table `report_viewed_product_aggregated_daily`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_viewed_product_aggregated_daily` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_DAILY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_daily`
--

/*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` ENABLE KEYS */;

--
-- Table structure for table `report_viewed_product_aggregated_monthly`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_viewed_product_aggregated_monthly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_monthly`
--

/*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` ENABLE KEYS */;

--
-- Table structure for table `report_viewed_product_aggregated_yearly`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_viewed_product_aggregated_yearly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_YEARLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_yearly`
--

/*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` ENABLE KEYS */;

--
-- Table structure for table `report_viewed_product_index`
--

DROP TABLE IF EXISTS `report_viewed_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_viewed_product_index` (
  `index_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Viewed Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_index`
--

/*!40000 ALTER TABLE `report_viewed_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_viewed_product_index` ENABLE KEYS */;

--
-- Table structure for table `reporting_counts`
--

DROP TABLE IF EXISTS `reporting_counts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reporting_counts` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Item Reported',
  `count` int(10) unsigned DEFAULT NULL COMMENT 'Count Value',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all count related events generated via the cron job';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_counts`
--

/*!40000 ALTER TABLE `reporting_counts` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_counts` ENABLE KEYS */;

--
-- Table structure for table `reporting_module_status`
--

DROP TABLE IF EXISTS `reporting_module_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reporting_module_status` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Module ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Module Name',
  `active` varchar(255) DEFAULT NULL COMMENT 'Module Active Status',
  `setup_version` varchar(255) DEFAULT NULL COMMENT 'Module Version',
  `state` varchar(255) DEFAULT NULL COMMENT 'Module State',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_module_status`
--

/*!40000 ALTER TABLE `reporting_module_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_module_status` ENABLE KEYS */;

--
-- Table structure for table `reporting_orders`
--

DROP TABLE IF EXISTS `reporting_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reporting_orders` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `total` decimal(20,4) unsigned DEFAULT NULL,
  `total_base` decimal(20,4) unsigned DEFAULT NULL,
  `item_count` int(10) unsigned NOT NULL COMMENT 'Line Item Count',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_orders`
--

/*!40000 ALTER TABLE `reporting_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_orders` ENABLE KEYS */;

--
-- Table structure for table `reporting_system_updates`
--

DROP TABLE IF EXISTS `reporting_system_updates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reporting_system_updates` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Update Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for system updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_system_updates`
--

/*!40000 ALTER TABLE `reporting_system_updates` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_system_updates` ENABLE KEYS */;

--
-- Table structure for table `reporting_users`
--

DROP TABLE IF EXISTS `reporting_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reporting_users` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'User Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for user actions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_users`
--

/*!40000 ALTER TABLE `reporting_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_users` ENABLE KEYS */;

--
-- Table structure for table `review`
--

DROP TABLE IF EXISTS `review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `review` (
  `review_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Review create date',
  `entity_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `entity_pk_value` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `status_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Status code',
  PRIMARY KEY (`review_id`),
  KEY `REVIEW_ENTITY_ID` (`entity_id`),
  KEY `REVIEW_STATUS_ID` (`status_id`),
  KEY `REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`),
  CONSTRAINT `REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `review_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`status_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review base information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review`
--

/*!40000 ALTER TABLE `review` DISABLE KEYS */;
/*!40000 ALTER TABLE `review` ENABLE KEYS */;

--
-- Table structure for table `review_detail`
--

DROP TABLE IF EXISTS `review_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `review_detail` (
  `detail_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review detail ID',
  `review_id` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Review ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `detail` text NOT NULL COMMENT 'Detail description',
  `nickname` varchar(128) NOT NULL COMMENT 'User nickname',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`detail_id`),
  KEY `REVIEW_DETAIL_REVIEW_ID` (`review_id`),
  KEY `REVIEW_DETAIL_STORE_ID` (`store_id`),
  KEY `REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_DETAIL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review detail information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_detail`
--

/*!40000 ALTER TABLE `review_detail` DISABLE KEYS */;
/*!40000 ALTER TABLE `review_detail` ENABLE KEYS */;

--
-- Table structure for table `review_entity`
--

DROP TABLE IF EXISTS `review_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `review_entity` (
  `entity_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review entity ID',
  `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_entity`
--

/*!40000 ALTER TABLE `review_entity` DISABLE KEYS */;
INSERT INTO `review_entity` VALUES (1,'product'),(2,'customer'),(3,'category');
/*!40000 ALTER TABLE `review_entity` ENABLE KEYS */;

--
-- Table structure for table `review_entity_summary`
--

DROP TABLE IF EXISTS `review_entity_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `review_entity_summary` (
  `primary_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Summary review entity ID',
  `entity_pk_value` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `entity_type` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Entity type ID',
  `reviews_count` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Qty of reviews',
  `rating_summary` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Summarized rating',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  UNIQUE KEY `REVIEW_ENTITY_SUMMARY_ENTITY_PK_VALUE_STORE_ID_ENTITY_TYPE` (`entity_pk_value`,`store_id`,`entity_type`),
  KEY `REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`),
  CONSTRAINT `REVIEW_ENTITY_SUMMARY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review aggregates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_entity_summary`
--

/*!40000 ALTER TABLE `review_entity_summary` DISABLE KEYS */;
/*!40000 ALTER TABLE `review_entity_summary` ENABLE KEYS */;

--
-- Table structure for table `review_status`
--

DROP TABLE IF EXISTS `review_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `review_status` (
  `status_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Status ID',
  `status_code` varchar(32) NOT NULL COMMENT 'Status code',
  PRIMARY KEY (`status_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review statuses';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_status`
--

/*!40000 ALTER TABLE `review_status` DISABLE KEYS */;
INSERT INTO `review_status` VALUES (1,'Approved'),(2,'Pending'),(3,'Not Approved');
/*!40000 ALTER TABLE `review_status` ENABLE KEYS */;

--
-- Table structure for table `review_store`
--

DROP TABLE IF EXISTS `review_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `review_store` (
  `review_id` bigint(20) unsigned NOT NULL COMMENT 'Review ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`review_id`,`store_id`),
  KEY `REVIEW_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_store`
--

/*!40000 ALTER TABLE `review_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `review_store` ENABLE KEYS */;

--
-- Table structure for table `sales_bestsellers_aggregated_daily`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_bestsellers_aggregated_daily` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_daily`
--

/*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` ENABLE KEYS */;

--
-- Table structure for table `sales_bestsellers_aggregated_monthly`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_bestsellers_aggregated_monthly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_monthly`
--

/*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` ENABLE KEYS */;

--
-- Table structure for table `sales_bestsellers_aggregated_yearly`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_bestsellers_aggregated_yearly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_yearly`
--

/*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` ENABLE KEYS */;

--
-- Table structure for table `sales_creditmemo`
--

DROP TABLE IF EXISTS `sales_creditmemo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_creditmemo` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `creditmemo_status` int(11) DEFAULT NULL COMMENT 'Creditmemo Status',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `invoice_id` int(11) DEFAULT NULL COMMENT 'Invoice ID',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `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',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_CREDITMEMO_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_CREDITMEMO_STORE_ID` (`store_id`),
  KEY `SALES_CREDITMEMO_ORDER_ID` (`order_id`),
  KEY `SALES_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`),
  KEY `SALES_CREDITMEMO_STATE` (`state`),
  KEY `SALES_CREDITMEMO_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_UPDATED_AT` (`updated_at`),
  KEY `SALES_CREDITMEMO_SEND_EMAIL` (`send_email`),
  KEY `SALES_CREDITMEMO_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_CREDITMEMO_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_CREDITMEMO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo`
--

/*!40000 ALTER TABLE `sales_creditmemo` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo` ENABLE KEYS */;

--
-- Table structure for table `sales_creditmemo_comment`
--

DROP TABLE IF EXISTS `sales_creditmemo_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_creditmemo_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_CREDITMEMO_COMMENT_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_comment`
--

/*!40000 ALTER TABLE `sales_creditmemo_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo_comment` ENABLE KEYS */;

--
-- Table structure for table `sales_creditmemo_grid`
--

DROP TABLE IF EXISTS `sales_creditmemo_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_creditmemo_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `state` int(11) DEFAULT NULL COMMENT 'Status',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order Status',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` smallint(6) DEFAULT NULL COMMENT 'Customer Group ID',
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `order_base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Order Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_CREDITMEMO_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_CREDITMEMO_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_CREDITMEMO_GRID_STATE` (`state`),
  KEY `SALES_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_STATUS` (`order_status`),
  KEY `SALES_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `SALES_CREDITMEMO_GRID_STORE_ID` (`store_id`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_BASE_GRAND_TOTAL` (`order_base_grand_total`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_32B7BA885941A8254EE84AE650ABDC86` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_grid`
--

/*!40000 ALTER TABLE `sales_creditmemo_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo_grid` ENABLE KEYS */;

--
-- Table structure for table `sales_creditmemo_item`
--

DROP TABLE IF EXISTS `sales_creditmemo_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_creditmemo_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(12,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `description` text DEFAULT NULL COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text DEFAULT NULL COMMENT 'Ratio of tax in the creditmemo item over tax of the order item',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_CREDITMEMO_ITEM_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_item`
--

/*!40000 ALTER TABLE `sales_creditmemo_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo_item` ENABLE KEYS */;

--
-- Table structure for table `sales_invoice`
--

DROP TABLE IF EXISTS `sales_invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_invoice` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `is_used_for_refund` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Used For Refund',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `can_void_flag` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Void Flag',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `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',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_INVOICE_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_INVOICE_STORE_ID` (`store_id`),
  KEY `SALES_INVOICE_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_INVOICE_ORDER_ID` (`order_id`),
  KEY `SALES_INVOICE_STATE` (`state`),
  KEY `SALES_INVOICE_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_UPDATED_AT` (`updated_at`),
  KEY `SALES_INVOICE_SEND_EMAIL` (`send_email`),
  KEY `SALES_INVOICE_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_INVOICE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_INVOICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice`
--

/*!40000 ALTER TABLE `sales_invoice` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice` ENABLE KEYS */;

--
-- Table structure for table `sales_invoice_comment`
--

DROP TABLE IF EXISTS `sales_invoice_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_invoice_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_INVOICE_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_INVOICE_COMMENT_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_comment`
--

/*!40000 ALTER TABLE `sales_invoice_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice_comment` ENABLE KEYS */;

--
-- Table structure for table `sales_invoice_grid`
--

DROP TABLE IF EXISTS `sales_invoice_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_invoice_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int(11) DEFAULT NULL,
  `payment_method` varchar(128) DEFAULT NULL COMMENT 'Payment Method',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_INVOICE_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_INVOICE_GRID_STORE_ID` (`store_id`),
  KEY `SALES_INVOICE_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_INVOICE_GRID_ORDER_ID` (`order_id`),
  KEY `SALES_INVOICE_GRID_STATE` (`state`),
  KEY `SALES_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_INVOICE_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_INVOICE_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_INVOICE_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  FULLTEXT KEY `FTI_95D9C924DD6A8734EB8B5D01D60F90DE` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_grid`
--

/*!40000 ALTER TABLE `sales_invoice_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice_grid` ENABLE KEYS */;

--
-- Table structure for table `sales_invoice_item`
--

DROP TABLE IF EXISTS `sales_invoice_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_invoice_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `description` text DEFAULT NULL COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text DEFAULT NULL COMMENT 'Ratio of tax invoiced over tax of the order item',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_INVOICE_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_INVOICE_ITEM_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_item`
--

/*!40000 ALTER TABLE `sales_invoice_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice_item` ENABLE KEYS */;

--
-- Table structure for table `sales_invoiced_aggregated`
--

DROP TABLE IF EXISTS `sales_invoiced_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_invoiced_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `orders_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_INVOICED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoiced_aggregated`
--

/*!40000 ALTER TABLE `sales_invoiced_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoiced_aggregated` ENABLE KEYS */;

--
-- Table structure for table `sales_invoiced_aggregated_order`
--

DROP TABLE IF EXISTS `sales_invoiced_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_invoiced_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `orders_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_INVOICED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoiced_aggregated_order`
--

/*!40000 ALTER TABLE `sales_invoiced_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoiced_aggregated_order` ENABLE KEYS */;

--
-- Table structure for table `sales_order`
--

DROP TABLE IF EXISTS `sales_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `state` varchar(32) DEFAULT NULL COMMENT 'State',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `protect_code` varchar(255) DEFAULT NULL COMMENT 'Protect Code',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Canceled',
  `base_discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Invoiced',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `base_shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Canceled',
  `base_shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Invoiced',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Refunded',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `base_subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Canceled',
  `base_subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Invoiced',
  `base_subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Refunded',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Canceled',
  `base_tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Invoiced',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `base_total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Canceled',
  `base_total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced',
  `base_total_invoiced_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced Cost',
  `base_total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Offline Refunded',
  `base_total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Online Refunded',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `base_total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Base Total Qty Ordered',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Canceled',
  `discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Invoiced',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Canceled',
  `shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Invoiced',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Refunded',
  `store_to_base_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `store_to_order_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Canceled',
  `subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Invoiced',
  `subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Refunded',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Tax Invoiced',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Total Canceled',
  `total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Total Invoiced',
  `total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Offline Refunded',
  `total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Online Refunded',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty Ordered',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `can_ship_partially` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Ship Partially',
  `can_ship_partially_item` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Ship Partially Item',
  `customer_is_guest` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Is Guest',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `customer_group_id` int(11) DEFAULT NULL,
  `edit_increment` int(11) DEFAULT NULL COMMENT 'Edit Increment',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `forced_shipment_with_invoice` smallint(5) unsigned DEFAULT NULL COMMENT 'Forced Do Shipment With Invoice',
  `payment_auth_expiration` int(11) DEFAULT NULL COMMENT 'Payment Authorization Expiration',
  `quote_address_id` int(11) DEFAULT NULL COMMENT 'Quote Address ID',
  `quote_id` int(11) DEFAULT NULL COMMENT 'Quote ID',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `base_total_due` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Due',
  `payment_authorization_amount` decimal(20,4) DEFAULT NULL COMMENT 'Payment Authorization Amount',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `total_due` decimal(20,4) DEFAULT NULL COMMENT 'Total Due',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `applied_rule_ids` varchar(128) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_firstname` varchar(128) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_lastname` varchar(128) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_middlename` varchar(128) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_prefix` varchar(32) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_suffix` varchar(32) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_taxvat` varchar(32) DEFAULT NULL COMMENT 'Customer Taxvat',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `ext_customer_id` varchar(32) DEFAULT NULL COMMENT 'Ext Customer ID',
  `ext_order_id` varchar(32) DEFAULT NULL COMMENT 'Ext Order ID',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `hold_before_state` varchar(32) DEFAULT NULL COMMENT 'Hold Before State',
  `hold_before_status` varchar(32) DEFAULT NULL COMMENT 'Hold Before Status',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `original_increment_id` varchar(50) DEFAULT NULL COMMENT 'Original Increment ID',
  `relation_child_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child ID',
  `relation_child_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child Real ID',
  `relation_parent_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent ID',
  `relation_parent_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent Real ID',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `shipping_method` varchar(120) DEFAULT NULL,
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `x_forwarded_for` varchar(255) DEFAULT NULL COMMENT 'X Forwarded For',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `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',
  `total_item_count` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Total Item Count',
  `customer_gender` int(11) DEFAULT NULL COMMENT 'Customer Gender',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `coupon_rule_name` varchar(255) DEFAULT NULL COMMENT 'Coupon Sales Rule Name',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `paypal_ipn_customer_notified` int(11) DEFAULT 0 COMMENT 'Paypal Ipn Customer Notified',
  `mp_smtp_email_marketing_synced` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing synced',
  `mp_smtp_email_marketing_order_created` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing order created',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_ORDER_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_ORDER_STATUS` (`status`),
  KEY `SALES_ORDER_STATE` (`state`),
  KEY `SALES_ORDER_STORE_ID` (`store_id`),
  KEY `SALES_ORDER_CREATED_AT` (`created_at`),
  KEY `SALES_ORDER_CUSTOMER_ID` (`customer_id`),
  KEY `SALES_ORDER_EXT_ORDER_ID` (`ext_order_id`),
  KEY `SALES_ORDER_QUOTE_ID` (`quote_id`),
  KEY `SALES_ORDER_UPDATED_AT` (`updated_at`),
  KEY `SALES_ORDER_SEND_EMAIL` (`send_email`),
  KEY `SALES_ORDER_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `SALES_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order`
--

/*!40000 ALTER TABLE `sales_order` DISABLE KEYS */;
INSERT INTO `sales_order` VALUES (1,'new','pending',NULL,'6a0f29d90d3e420f506c88a2dc903a65','Flat Rate - Fixed',0,1,1,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,2,1,NULL,1,1,NULL,NULL,NULL,2,1,NULL,NULL,NULL,NULL,0.0000,1.0000,6.0000,NULL,0.0000,1.0000,6.0000,0.0000,NULL,'000000001',NULL,'EUR','roberto@torresani.eu','Roberto','Torresani',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'151.49.194.8','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-04 16:22:44','2022-08-04 16:23:32',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(2,'new','pending',NULL,'2f2514bf58a8b89076e4d00f9cdfeae4','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,1,1,4,NULL,NULL,1,1,NULL,NULL,NULL,9,3,NULL,NULL,NULL,NULL,0.0000,12.0000,17.0000,NULL,0.0000,12.0000,17.0000,1.0000,NULL,'000000002',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'77.83.112.61','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-08 15:24:47','2022-08-08 15:24:48',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(3,'new','pending',NULL,'ea0697ee87b2daff826d40d67cbf8748','Flat Rate - Fixed',0,1,2,0.0000,NULL,NULL,NULL,34.0000,10.0000,NULL,NULL,NULL,0.0000,NULL,24.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,34.0000,10.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,24.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2.0000,NULL,NULL,NULL,0,1,6,1,NULL,1,1,NULL,NULL,NULL,10,5,NULL,NULL,NULL,NULL,0.0000,24.0000,34.0000,NULL,0.0000,24.0000,34.0000,2.0000,NULL,'000000003',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-09 08:08:41','2022-08-09 08:08:42',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,0,0,0),(4,'new','pending',NULL,'3ad41ba5c896ffccb642c35ef84027d1','Flat Rate - Fixed',0,1,2,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,8,1,NULL,1,1,NULL,NULL,NULL,11,7,NULL,NULL,NULL,NULL,0.0000,12.0000,17.0000,NULL,0.0000,12.0000,17.0000,1.0000,NULL,'000000004',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-09 11:59:19','2022-08-09 11:59:19',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(5,'new','pending',NULL,'1cc405a1ffbddb2a1fbf11d0beb0142a','Flat Rate - Fixed',0,1,2,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,10,1,NULL,1,1,NULL,NULL,NULL,12,9,NULL,NULL,NULL,NULL,0.0000,12.0000,17.0000,NULL,0.0000,12.0000,17.0000,1.0000,NULL,'000000005',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-09 12:25:53','2022-08-09 12:25:54',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(6,'new','pending',NULL,'900d3b01b7e16c6797f25e7c104c758c','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,12,1,NULL,NULL,1,NULL,NULL,NULL,37,11,NULL,NULL,NULL,NULL,0.0000,1.0000,6.0000,NULL,0.0000,1.0000,6.0000,0.0000,NULL,'000000006',NULL,'EUR','raffaele.decarli+1@thread.solutions','Raffaele','Decarli',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'192.168.112.1','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-16 07:45:24','2022-09-16 07:45:26',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(7,'new','pending',NULL,'684805693506206518b3f8b7c246eb04','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,14,1,NULL,NULL,1,NULL,NULL,NULL,38,13,NULL,NULL,NULL,NULL,0.0000,1.0000,6.0000,NULL,0.0000,1.0000,6.0000,0.0000,NULL,'000000007',NULL,'EUR','raffaele.decarli+1@thread.solutions','Raffaele','Decarli',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'192.168.112.1','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-16 07:48:48','2022-09-16 07:48:50',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(8,'new','pending',NULL,'923735a6d753a122a4071b375377dcd6','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,16,1,NULL,NULL,1,NULL,NULL,NULL,39,15,NULL,NULL,NULL,NULL,0.0000,1.0000,6.0000,NULL,0.0000,1.0000,6.0000,0.0000,NULL,'000000008',NULL,'EUR','raffaele.decarli+1@thread.solutions','Raffaele','Decarli',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'192.168.112.1','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-16 07:49:56','2022-09-16 07:49:57',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(9,'new','pending',NULL,'a575ce6c64b6532133be59ac53ba4639','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,18,1,NULL,NULL,1,NULL,NULL,NULL,40,17,NULL,NULL,NULL,NULL,0.0000,1.0000,6.0000,NULL,0.0000,1.0000,6.0000,1.0000,NULL,'000000009',NULL,'EUR','raffaele.decarli+1@thread.solutions','Raffaele','Decarli',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'192.168.112.1','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-16 07:52:43','2022-09-16 07:52:44',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(10,'new','pending',NULL,'141b3395164b1f8f1788119f545447e0','Flat Rate - Fixed',0,1,5,0.0000,NULL,NULL,NULL,5.9900,5.0000,NULL,NULL,NULL,0.0000,NULL,0.9900,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,5.9900,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.9900,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,20,1,NULL,NULL,1,NULL,NULL,NULL,41,19,NULL,NULL,NULL,NULL,0.0000,0.9900,5.9900,NULL,0.0000,0.9900,5.9900,1.0000,NULL,'000000010',NULL,'EUR','raffaele.decarli+1@thread.solutions','Raffaele','Decarli',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'192.168.112.1','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-16 07:57:27','2022-09-16 07:57:31',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(11,'new','pending',NULL,'0328a5f7419903729922c3d66f466497','Flat Rate - Fixed',0,1,5,0.0000,NULL,NULL,NULL,105.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,100.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,105.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,100.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,22,1,NULL,NULL,1,NULL,NULL,NULL,42,21,NULL,NULL,NULL,NULL,0.0000,100.0000,105.0000,NULL,0.0000,100.0000,105.0000,1.0000,NULL,'000000011',NULL,'EUR','raffaele.decarli+1@thread.solutions','Raffaele','Decarli',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'192.168.112.1','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-16 08:32:22','2022-09-16 08:32:23',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0);
/*!40000 ALTER TABLE `sales_order` ENABLE KEYS */;

--
-- Table structure for table `sales_order_address`
--

DROP TABLE IF EXISTS `sales_order_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_address` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `customer_address_id` int(11) DEFAULT NULL COMMENT 'Customer Address ID',
  `quote_address_id` int(11) DEFAULT NULL COMMENT 'Quote Address ID',
  `region_id` int(11) DEFAULT NULL COMMENT 'Region ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `region` varchar(255) DEFAULT NULL COMMENT 'Region',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Postcode',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Lastname',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL COMMENT 'City',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `telephone` varchar(255) DEFAULT NULL COMMENT 'Phone Number',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'Firstname',
  `address_type` varchar(255) DEFAULT NULL COMMENT 'Address Type',
  `prefix` varchar(255) DEFAULT NULL COMMENT 'Prefix',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middlename',
  `suffix` varchar(255) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `vat_id` text DEFAULT NULL COMMENT 'Vat ID',
  `vat_is_valid` smallint(6) DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text DEFAULT NULL COMMENT 'Vat Request ID',
  `vat_request_date` text DEFAULT NULL COMMENT 'Vat Request Date',
  `vat_request_success` smallint(6) DEFAULT NULL COMMENT 'Vat Request Success',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_ADDRESS_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_ORDER_ADDRESS_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_address`
--

/*!40000 ALTER TABLE `sales_order_address` DISABLE KEYS */;
INSERT INTO `sales_order_address` VALUES (1,1,NULL,4,909,NULL,NULL,'Trento','38121','Torresani','Via Trentino','Trento','roberto@torresani.eu','3404922491','IT','Roberto','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,1,NULL,5,909,NULL,NULL,'Trento','38121','Torresani','Via Trentino','Trento','roberto@torresani.eu','3404922491','IT','Roberto','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,2,NULL,21,909,NULL,NULL,'Trento','38121','Dellagiacoma','Via kufstein,5','Trento','daniele.dellagiacoma@deltainformatica.eu','3232323236','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,2,NULL,22,909,NULL,NULL,'Trento','38121','Dellagiacoma','Via kufstein,5','Trento','daniele.dellagiacoma@deltainformatica.eu','3232323236','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,3,2,24,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,3,2,25,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,4,2,27,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,4,2,28,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,5,2,30,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,5,2,31,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,6,3,81,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,6,NULL,82,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,7,3,84,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,7,3,85,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,8,3,87,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,8,3,88,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,9,3,90,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,9,3,91,812,NULL,NULL,'Alessandria','12311','Decarli','le man dal cul','Trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,10,4,93,909,NULL,NULL,'Trento','38123','Decarli','le man dal cul','trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,10,NULL,94,909,NULL,NULL,'Trento','38123','Decarli','le man dal cul','trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,11,4,96,909,NULL,NULL,'Trento','38123','Decarli','le man dal cul','trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,11,4,97,909,NULL,NULL,'Trento','38123','Decarli','le man dal cul','trento','raffaele.decarli+1@thread.solutions','1234567890','IT','Raffaele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `sales_order_address` ENABLE KEYS */;

--
-- Table structure for table `sales_order_aggregated_created`
--

DROP TABLE IF EXISTS `sales_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_aggregated_created` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Created';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_aggregated_created`
--

/*!40000 ALTER TABLE `sales_order_aggregated_created` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_aggregated_created` ENABLE KEYS */;

--
-- Table structure for table `sales_order_aggregated_updated`
--

DROP TABLE IF EXISTS `sales_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_aggregated_updated`
--

/*!40000 ALTER TABLE `sales_order_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_aggregated_updated` ENABLE KEYS */;

--
-- Table structure for table `sales_order_grid`
--

DROP TABLE IF EXISTS `sales_order_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `order_currency_code` varchar(255) DEFAULT NULL COMMENT 'Order Currency Code',
  `shipping_name` varchar(255) DEFAULT NULL COMMENT 'Shipping Name',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group` varchar(255) DEFAULT NULL COMMENT 'Customer Group',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `payment_method` varchar(255) DEFAULT NULL COMMENT 'Payment Method',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `pickup_location_code` varchar(255) DEFAULT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_ORDER_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_ORDER_GRID_STATUS` (`status`),
  KEY `SALES_ORDER_GRID_STORE_ID` (`store_id`),
  KEY `SALES_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `SALES_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`),
  KEY `SALES_ORDER_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_ORDER_GRID_TOTAL_PAID` (`total_paid`),
  KEY `SALES_ORDER_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `SALES_ORDER_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_ORDER_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_ORDER_GRID_CUSTOMER_ID` (`customer_id`),
  KEY `SALES_ORDER_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_ORDER_GRID_PICKUP_LOCATION_CODE` (`pickup_location_code`),
  FULLTEXT KEY `FTI_65B9E9925EC58F0C7C2E2F6379C233E7` (`increment_id`,`billing_name`,`shipping_name`,`shipping_address`,`billing_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_grid`
--

/*!40000 ALTER TABLE `sales_order_grid` DISABLE KEYS */;
INSERT INTO `sales_order_grid` VALUES (1,'pending',1,'Main Website\nMain Website Store\nDefault Store View',1,6.0000,NULL,6.0000,NULL,'000000001','EUR','EUR','Roberto Torresani','Roberto Torresani','2022-08-04 16:22:44','2022-08-04 16:23:32','Via Trentino,Trento,Trento,38121','Via Trentino,Trento,Trento,38121','Flat Rate - Fixed','roberto@torresani.eu','1',1.0000,5.0000,'Roberto Torresani','checkmo',NULL,NULL),(2,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,17.0000,NULL,17.0000,NULL,'000000002','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-08 15:24:47','2022-08-08 15:24:47','Via kufstein,5,Trento,Trento,38121','Via kufstein,5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu',NULL,12.0000,5.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(3,'pending',1,'Main Website\nMain Website Store\nDefault Store View',2,34.0000,NULL,34.0000,NULL,'000000003','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-09 08:08:41','2022-08-09 08:08:41','via Kufstein, 5,Trento,Trento,38121','via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu','1',24.0000,10.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(4,'pending',1,'Main Website\nMain Website Store\nDefault Store View',2,17.0000,NULL,17.0000,NULL,'000000004','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-09 11:59:19','2022-08-09 11:59:19','via Kufstein, 5,Trento,Trento,38121','via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu','1',12.0000,5.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(5,'pending',1,'Main Website\nMain Website Store\nDefault Store View',2,17.0000,NULL,17.0000,NULL,'000000005','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-09 12:25:53','2022-08-09 12:25:53','via Kufstein, 5,Trento,Trento,38121','via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu','1',12.0000,5.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(6,'pending',1,'Main Website\nMain Website Store\nDefault Store View',4,6.0000,NULL,6.0000,NULL,'000000006','EUR','EUR','Raffaele Decarli','Raffaele Decarli','2022-09-16 07:45:24','2022-09-16 07:45:24','le man dal cul,Trento,Alessandria,12311','le man dal cul,Trento,Alessandria,12311','Flat Rate - Fixed','raffaele.decarli+1@thread.solutions','1',1.0000,5.0000,'Raffaele Decarli','checkmo',NULL,NULL),(7,'pending',1,'Main Website\nMain Website Store\nDefault Store View',4,6.0000,NULL,6.0000,NULL,'000000007','EUR','EUR','Raffaele Decarli','Raffaele Decarli','2022-09-16 07:48:48','2022-09-16 07:48:49','le man dal cul,Trento,Alessandria,12311','le man dal cul,Trento,Alessandria,12311','Flat Rate - Fixed','raffaele.decarli+1@thread.solutions','1',1.0000,5.0000,'Raffaele Decarli','banktransfer',NULL,NULL),(8,'pending',1,'Main Website\nMain Website Store\nDefault Store View',4,6.0000,NULL,6.0000,NULL,'000000008','EUR','EUR','Raffaele Decarli','Raffaele Decarli','2022-09-16 07:49:56','2022-09-16 07:49:56','le man dal cul,Trento,Alessandria,12311','le man dal cul,Trento,Alessandria,12311','Flat Rate - Fixed','raffaele.decarli+1@thread.solutions','1',1.0000,5.0000,'Raffaele Decarli','cashondelivery',NULL,NULL),(9,'pending',1,'Main Website\nMain Website Store\nDefault Store View',4,6.0000,NULL,6.0000,NULL,'000000009','EUR','EUR','Raffaele Decarli','Raffaele Decarli','2022-09-16 07:52:43','2022-09-16 07:52:43','le man dal cul,Trento,Alessandria,12311','le man dal cul,Trento,Alessandria,12311','Flat Rate - Fixed','raffaele.decarli+1@thread.solutions','1',1.0000,5.0000,'Raffaele Decarli','cashondelivery',NULL,NULL),(10,'pending',1,'Main Website\nMain Website Store\nDefault Store View',5,5.9900,NULL,5.9900,NULL,'000000010','EUR','EUR','Raffaele Decarli','Raffaele Decarli','2022-09-16 07:57:27','2022-09-16 07:57:27','le man dal cul,trento,Trento,38123','le man dal cul,trento,Trento,38123','Flat Rate - Fixed','raffaele.decarli+1@thread.solutions','1',0.9900,5.0000,'Raffaele Decarli','cashondelivery',NULL,NULL),(11,'pending',1,'Main Website\nMain Website Store\nDefault Store View',5,105.0000,NULL,105.0000,NULL,'000000011','EUR','EUR','Raffaele Decarli','Raffaele Decarli','2022-09-16 08:32:22','2022-09-16 08:32:22','le man dal cul,trento,Trento,38123','le man dal cul,trento,Trento,38123','Flat Rate - Fixed','raffaele.decarli+1@thread.solutions','1',100.0000,5.0000,'Raffaele Decarli','cashondelivery',NULL,NULL);
/*!40000 ALTER TABLE `sales_order_grid` ENABLE KEYS */;

--
-- Table structure for table `sales_order_item`
--

DROP TABLE IF EXISTS `sales_order_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `order_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Order ID',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `quote_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Quote Item ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `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',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `product_options` text DEFAULT NULL COMMENT 'Product Options',
  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'No Discount',
  `qty_backordered` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Backordered',
  `qty_canceled` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Canceled',
  `qty_invoiced` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Invoiced',
  `qty_ordered` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `qty_refunded` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Refunded',
  `qty_shipped` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Shipped',
  `base_cost` decimal(12,4) DEFAULT 0.0000 COMMENT 'Base Cost',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Price',
  `original_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Price',
  `base_original_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Original Price',
  `tax_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `tax_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Invoiced',
  `base_tax_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Invoiced',
  `discount_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `discount_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Invoiced',
  `base_discount_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Invoiced',
  `amount_refunded` decimal(20,4) DEFAULT 0.0000 COMMENT 'Amount Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Amount Refunded',
  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',
  `row_invoiced` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Invoiced',
  `base_row_invoiced` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Invoiced',
  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `ext_order_item_id` varchar(255) DEFAULT NULL COMMENT 'Ext Order Item ID',
  `locked_do_invoice` smallint(5) unsigned DEFAULT NULL COMMENT 'Locked Do Invoice',
  `locked_do_ship` smallint(5) unsigned DEFAULT NULL COMMENT 'Locked Do Ship',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `tax_canceled` decimal(12,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `discount_tax_compensation_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Canceled',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `gift_message_available` int(11) DEFAULT NULL COMMENT 'Gift Message Available',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`item_id`),
  KEY `SALES_ORDER_ITEM_ORDER_ID` (`order_id`),
  KEY `SALES_ORDER_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_ITEM_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_item`
--

/*!40000 ALTER TABLE `sales_order_item` DISABLE KEYS */;
INSERT INTO `sales_order_item` VALUES (1,1,NULL,2,1,'2022-08-04 16:22:44','2022-08-04 16:22:44',1,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}}',NULL,0,'Vino Test','Vino Test',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,2,NULL,6,1,'2022-08-08 15:24:47','2022-08-08 15:24:47',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvcHJpbW8tcHJvZG90dG8tZGVsdGEtaW5mb3JtYXRpY2EuaHRtbA,,\",\"product\":\"2\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"2\",\"qty\":\"1\"}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,3,NULL,7,1,'2022-08-09 08:08:41','2022-08-09 08:08:41',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS92aW5vLmh0bWw,\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,2.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.0000,24.0000,0.0000,0.0000,2.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,24.0000,24.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,4,NULL,8,1,'2022-08-09 11:59:19','2022-08-09 11:59:19',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,5,NULL,9,1,'2022-08-09 12:25:53','2022-08-09 12:25:53',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,6,NULL,45,1,'2022-09-16 07:45:24','2022-09-16 07:45:24',1,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}}',NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,7,NULL,46,1,'2022-09-16 07:48:49','2022-09-16 07:48:49',1,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}}',NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,8,NULL,47,1,'2022-09-16 07:49:56','2022-09-16 07:49:56',1,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}}',NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,9,NULL,48,1,'2022-09-16 07:52:43','2022-09-16 07:52:43',10,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"10\",\"qty\":1}}',1.0000,0,'La Birra!','La Birra!',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,10,NULL,49,1,'2022-09-16 07:57:27','2022-09-16 07:57:27',11,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"11\",\"qty\":1}}',1.0000,0,'La morte !','La morte !',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,0.9900,0.9900,0.9900,0.9900,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.9900,0.9900,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,0.9900,0.9900,0.9900,0.9900,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,11,NULL,50,1,'2022-09-16 08:32:22','2022-09-16 08:32:22',13,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3QvYWxpbWVudGFyaS5odG1s\",\"product\":\"13\",\"qty\":1}}',1.0000,0,'Spremuta di fragole','Spremuta di fragole',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,100.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,100.0000,100.0000,100.0000,100.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `sales_order_item` ENABLE KEYS */;

--
-- Table structure for table `sales_order_payment`
--

DROP TABLE IF EXISTS `sales_order_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_payment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `base_shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Captured',
  `shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Captured',
  `amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Amount Refunded',
  `base_amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid',
  `amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Amount Canceled',
  `base_amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Authorized',
  `base_amount_paid_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid Online',
  `base_amount_refunded_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded Online',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Amount Paid',
  `amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Amount Authorized',
  `base_amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Ordered',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded',
  `amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Amount Ordered',
  `base_amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Canceled',
  `quote_payment_id` int(11) DEFAULT NULL COMMENT 'Quote Payment ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `cc_exp_month` varchar(12) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_ss_start_year` varchar(12) DEFAULT NULL COMMENT 'Cc Ss Start Year',
  `echeck_bank_name` varchar(128) DEFAULT NULL COMMENT 'Echeck Bank Name',
  `method` varchar(128) DEFAULT NULL COMMENT 'Method',
  `cc_debug_request_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Request Body',
  `cc_secure_verify` varchar(32) DEFAULT NULL COMMENT 'Cc Secure Verify',
  `protection_eligibility` varchar(32) DEFAULT NULL COMMENT 'Protection Eligibility',
  `cc_approval` varchar(32) DEFAULT NULL COMMENT 'Cc Approval',
  `cc_last_4` varchar(100) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_status_description` varchar(32) DEFAULT NULL COMMENT 'Cc Status Description',
  `echeck_type` varchar(32) DEFAULT NULL COMMENT 'Echeck Type',
  `cc_debug_response_serialized` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Serialized',
  `cc_ss_start_month` varchar(128) DEFAULT NULL COMMENT 'Cc Ss Start Month',
  `echeck_account_type` varchar(255) DEFAULT NULL COMMENT 'Echeck Account Type',
  `last_trans_id` varchar(255) DEFAULT NULL COMMENT 'Last Trans ID',
  `cc_cid_status` varchar(32) DEFAULT NULL COMMENT 'Cc Cid Status',
  `cc_owner` varchar(128) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_type` varchar(32) DEFAULT NULL COMMENT 'Cc Type',
  `po_number` varchar(32) DEFAULT NULL COMMENT 'Po Number',
  `cc_exp_year` varchar(4) DEFAULT NULL COMMENT 'Cc Exp Year',
  `cc_status` varchar(4) DEFAULT NULL COMMENT 'Cc Status',
  `echeck_routing_number` varchar(32) DEFAULT NULL COMMENT 'Echeck Routing Number',
  `account_status` varchar(32) DEFAULT NULL COMMENT 'Account Status',
  `anet_trans_method` varchar(32) DEFAULT NULL COMMENT 'Anet Trans Method',
  `cc_debug_response_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Body',
  `cc_ss_issue` varchar(32) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `echeck_account_name` varchar(32) DEFAULT NULL COMMENT 'Echeck Account Name',
  `cc_avs_status` varchar(32) DEFAULT NULL COMMENT 'Cc Avs Status',
  `cc_number_enc` varchar(128) DEFAULT NULL,
  `cc_trans_id` varchar(32) DEFAULT NULL COMMENT 'Cc Trans ID',
  `address_status` varchar(32) DEFAULT NULL COMMENT 'Address Status',
  `additional_information` text DEFAULT NULL COMMENT 'Additional Information',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_PAYMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_ORDER_PAYMENT_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_payment`
--

/*!40000 ALTER TABLE `sales_order_payment` DISABLE KEYS */;
INSERT INTO `sales_order_payment` VALUES (1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,6.0000,NULL,NULL,NULL,6.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(2,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,17.0000,NULL,NULL,NULL,17.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(3,3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,34.0000,NULL,NULL,NULL,34.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(4,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,17.0000,NULL,NULL,NULL,17.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(5,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,17.0000,NULL,NULL,NULL,17.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(6,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,6.0000,NULL,NULL,NULL,6.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(7,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,6.0000,NULL,NULL,NULL,6.0000,NULL,NULL,NULL,NULL,'0',NULL,'banktransfer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Bank Transfer Payment\",\"instructions\":null}'),(8,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,6.0000,NULL,NULL,NULL,6.0000,NULL,NULL,NULL,NULL,'0',NULL,'cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Cash On Delivery\",\"instructions\":null}'),(9,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,6.0000,NULL,NULL,NULL,6.0000,NULL,NULL,NULL,NULL,'0',NULL,'cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Cash On Delivery\",\"instructions\":null}'),(10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,5.9900,NULL,NULL,NULL,5.9900,NULL,NULL,NULL,NULL,'0',NULL,'cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Cash On Delivery\",\"instructions\":null}'),(11,11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,105.0000,NULL,NULL,NULL,105.0000,NULL,NULL,NULL,NULL,'0',NULL,'cashondelivery',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Cash On Delivery\",\"instructions\":null}');
/*!40000 ALTER TABLE `sales_order_payment` ENABLE KEYS */;

--
-- Table structure for table `sales_order_status`
--

DROP TABLE IF EXISTS `sales_order_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_status` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status`
--

/*!40000 ALTER TABLE `sales_order_status` DISABLE KEYS */;
INSERT INTO `sales_order_status` VALUES ('canceled','Canceled'),('closed','Closed'),('complete','Complete'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('paypal_canceled_reversal','PayPal Canceled Reversal'),('paypal_reversed','PayPal Reversed'),('pending','Pending'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processing','Processing');
/*!40000 ALTER TABLE `sales_order_status` ENABLE KEYS */;

--
-- Table structure for table `sales_order_status_history`
--

DROP TABLE IF EXISTS `sales_order_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_status_history` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `entity_name` varchar(32) DEFAULT NULL COMMENT 'Shows what entity history is bind to.',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`),
  KEY `SALES_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`),
  CONSTRAINT `SALES_ORDER_STATUS_HISTORY_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Status History';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_history`
--

/*!40000 ALTER TABLE `sales_order_status_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_status_history` ENABLE KEYS */;

--
-- Table structure for table `sales_order_status_label`
--

DROP TABLE IF EXISTS `sales_order_status_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_status_label` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`,`store_id`),
  KEY `SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_label`
--

/*!40000 ALTER TABLE `sales_order_status_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_status_label` ENABLE KEYS */;

--
-- Table structure for table `sales_order_status_state`
--

DROP TABLE IF EXISTS `sales_order_status_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_status_state` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `state` varchar(32) NOT NULL COMMENT 'Label',
  `is_default` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Default',
  `visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Visible on front',
  PRIMARY KEY (`status`,`state`),
  CONSTRAINT `SALES_ORDER_STATUS_STATE_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_state`
--

/*!40000 ALTER TABLE `sales_order_status_state` DISABLE KEYS */;
INSERT INTO `sales_order_status_state` VALUES ('canceled','canceled',1,1),('closed','closed',1,1),('complete','complete',1,1),('fraud','payment_review',0,1),('fraud','processing',0,1),('holded','holded',1,1),('payment_review','payment_review',1,1),('pending','new',1,1),('pending_payment','pending_payment',1,0),('processing','processing',1,1);
/*!40000 ALTER TABLE `sales_order_status_state` ENABLE KEYS */;

--
-- Table structure for table `sales_order_tax`
--

DROP TABLE IF EXISTS `sales_order_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_tax` (
  `tax_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `percent` decimal(12,4) DEFAULT NULL COMMENT 'Percent',
  `amount` decimal(20,4) DEFAULT NULL COMMENT 'Amount',
  `priority` int(11) NOT NULL COMMENT 'Priority',
  `position` int(11) NOT NULL COMMENT 'Position',
  `base_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount',
  `process` smallint(6) NOT NULL COMMENT 'Process',
  `base_real_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Real Amount',
  PRIMARY KEY (`tax_id`),
  KEY `SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_tax`
--

/*!40000 ALTER TABLE `sales_order_tax` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_tax` ENABLE KEYS */;

--
-- Table structure for table `sales_order_tax_item`
--

DROP TABLE IF EXISTS `sales_order_tax_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_tax_item` (
  `tax_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax Item ID',
  `tax_id` int(10) unsigned NOT NULL COMMENT 'Tax ID',
  `item_id` int(10) unsigned DEFAULT NULL COMMENT 'Item ID',
  `tax_percent` decimal(12,4) NOT NULL COMMENT 'Real Tax Percent For Item',
  `amount` decimal(20,4) NOT NULL COMMENT 'Tax amount for the item and tax rate',
  `base_amount` decimal(20,4) NOT NULL COMMENT 'Base tax amount for the item and tax rate',
  `real_amount` decimal(20,4) NOT NULL COMMENT 'Real tax amount for the item and tax rate',
  `real_base_amount` decimal(20,4) NOT NULL COMMENT 'Real base tax amount for the item and tax rate',
  `associated_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the associated item',
  `taxable_item_type` varchar(32) NOT NULL COMMENT 'Type of the taxable item',
  PRIMARY KEY (`tax_item_id`),
  UNIQUE KEY `SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`),
  KEY `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` (`associated_item_id`),
  KEY `SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`),
  CONSTRAINT `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`associated_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_TAX_ITEM_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_TAX_ITEM_TAX_ID_SALES_ORDER_TAX_TAX_ID` FOREIGN KEY (`tax_id`) REFERENCES `sales_order_tax` (`tax_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_tax_item`
--

/*!40000 ALTER TABLE `sales_order_tax_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_tax_item` ENABLE KEYS */;

--
-- Table structure for table `sales_payment_transaction`
--

DROP TABLE IF EXISTS `sales_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_payment_transaction` (
  `transaction_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Transaction ID',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `order_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Order ID',
  `payment_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Payment ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID',
  `parent_txn_id` varchar(100) DEFAULT NULL COMMENT 'Parent Txn ID',
  `txn_type` varchar(15) DEFAULT NULL COMMENT 'Txn Type',
  `is_closed` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Closed',
  `additional_information` blob DEFAULT NULL COMMENT 'Additional Information',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`),
  KEY `SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`),
  KEY `SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`),
  CONSTRAINT `FK_B99FF1A06402D725EBDB0F3A7ECD47A2` FOREIGN KEY (`parent_id`) REFERENCES `sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_PAYMENT_TRANSACTION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_PAYMENT_TRANSACTION_PAYMENT_ID_SALES_ORDER_PAYMENT_ENTT_ID` FOREIGN KEY (`payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_payment_transaction`
--

/*!40000 ALTER TABLE `sales_payment_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_payment_transaction` ENABLE KEYS */;

--
-- Table structure for table `sales_refunded_aggregated`
--

DROP TABLE IF EXISTS `sales_refunded_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_refunded_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_REFUNDED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_refunded_aggregated`
--

/*!40000 ALTER TABLE `sales_refunded_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_refunded_aggregated` ENABLE KEYS */;

--
-- Table structure for table `sales_refunded_aggregated_order`
--

DROP TABLE IF EXISTS `sales_refunded_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_refunded_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_REFUNDED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_refunded_aggregated_order`
--

/*!40000 ALTER TABLE `sales_refunded_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_refunded_aggregated_order` ENABLE KEYS */;

--
-- Table structure for table `sales_sequence_meta`
--

DROP TABLE IF EXISTS `sales_sequence_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_sequence_meta` (
  `meta_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `entity_type` varchar(32) NOT NULL COMMENT 'Prefix',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `sequence_table` varchar(64) NOT NULL COMMENT 'table for sequence',
  PRIMARY KEY (`meta_id`),
  UNIQUE KEY `SALES_SEQUENCE_META_ENTITY_TYPE_STORE_ID` (`entity_type`,`store_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='sales_sequence_meta';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_sequence_meta`
--

/*!40000 ALTER TABLE `sales_sequence_meta` DISABLE KEYS */;
INSERT INTO `sales_sequence_meta` VALUES (1,'order',0,'sequence_order_0'),(2,'invoice',0,'sequence_invoice_0'),(3,'creditmemo',0,'sequence_creditmemo_0'),(4,'shipment',0,'sequence_shipment_0'),(5,'order',1,'sequence_order_1'),(6,'invoice',1,'sequence_invoice_1'),(7,'creditmemo',1,'sequence_creditmemo_1'),(8,'shipment',1,'sequence_shipment_1');
/*!40000 ALTER TABLE `sales_sequence_meta` ENABLE KEYS */;

--
-- Table structure for table `sales_sequence_profile`
--

DROP TABLE IF EXISTS `sales_sequence_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_sequence_profile` (
  `profile_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `meta_id` int(10) unsigned NOT NULL COMMENT 'Meta_id',
  `prefix` varchar(32) DEFAULT NULL COMMENT 'Prefix',
  `suffix` varchar(32) DEFAULT NULL COMMENT 'Suffix',
  `start_value` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'Start value for sequence',
  `step` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'Step for sequence',
  `max_value` int(10) unsigned NOT NULL COMMENT 'MaxValue for sequence',
  `warning_value` int(10) unsigned NOT NULL COMMENT 'WarningValue for sequence',
  `is_active` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'isActive flag',
  PRIMARY KEY (`profile_id`),
  UNIQUE KEY `SALES_SEQUENCE_PROFILE_META_ID_PREFIX_SUFFIX` (`meta_id`,`prefix`,`suffix`),
  CONSTRAINT `SALES_SEQUENCE_PROFILE_META_ID_SALES_SEQUENCE_META_META_ID` FOREIGN KEY (`meta_id`) REFERENCES `sales_sequence_meta` (`meta_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='sales_sequence_profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_sequence_profile`
--

/*!40000 ALTER TABLE `sales_sequence_profile` DISABLE KEYS */;
INSERT INTO `sales_sequence_profile` VALUES (1,1,NULL,NULL,1,1,4294967295,4294966295,1),(2,2,NULL,NULL,1,1,4294967295,4294966295,1),(3,3,NULL,NULL,1,1,4294967295,4294966295,1),(4,4,NULL,NULL,1,1,4294967295,4294966295,1),(5,5,NULL,NULL,1,1,4294967295,4294966295,1),(6,6,NULL,NULL,1,1,4294967295,4294966295,1),(7,7,NULL,NULL,1,1,4294967295,4294966295,1),(8,8,NULL,NULL,1,1,4294967295,4294966295,1);
/*!40000 ALTER TABLE `sales_sequence_profile` ENABLE KEYS */;

--
-- Table structure for table `sales_shipment`
--

DROP TABLE IF EXISTS `sales_shipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `total_weight` decimal(12,4) DEFAULT NULL COMMENT 'Total Weight',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `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',
  `packages` text DEFAULT NULL COMMENT 'Packed Products in Packages',
  `shipping_label` mediumblob DEFAULT NULL COMMENT 'Shipping Label Content',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_SHIPMENT_STORE_ID` (`store_id`),
  KEY `SALES_SHIPMENT_TOTAL_QTY` (`total_qty`),
  KEY `SALES_SHIPMENT_ORDER_ID` (`order_id`),
  KEY `SALES_SHIPMENT_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_UPDATED_AT` (`updated_at`),
  KEY `SALES_SHIPMENT_SEND_EMAIL` (`send_email`),
  KEY `SALES_SHIPMENT_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_SHIPMENT_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_SHIPMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment`
--

/*!40000 ALTER TABLE `sales_shipment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment` ENABLE KEYS */;

--
-- Table structure for table `sales_shipment_comment`
--

DROP TABLE IF EXISTS `sales_shipment_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipment_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_SHIPMENT_COMMENT_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_comment`
--

/*!40000 ALTER TABLE `sales_shipment_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_comment` ENABLE KEYS */;

--
-- Table structure for table `sales_shipment_grid`
--

DROP TABLE IF EXISTS `sales_shipment_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipment_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_increment_id` varchar(32) NOT NULL COMMENT 'Order Increment ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Order Increment ID',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `billing_name` varchar(128) DEFAULT NULL COMMENT 'Billing Name',
  `shipping_name` varchar(128) DEFAULT NULL COMMENT 'Shipping Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int(11) DEFAULT NULL,
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_SHIPMENT_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_SHIPMENT_GRID_STORE_ID` (`store_id`),
  KEY `SALES_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`),
  KEY `SALES_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`),
  KEY `SALES_SHIPMENT_GRID_ORDER_STATUS` (`order_status`),
  KEY `SALES_SHIPMENT_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `SALES_SHIPMENT_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_SHIPMENT_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_086B40C8955F167B8EA76653437879B4` (`increment_id`,`order_increment_id`,`shipping_name`,`customer_name`,`customer_email`,`billing_address`,`shipping_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_grid`
--

/*!40000 ALTER TABLE `sales_shipment_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_grid` ENABLE KEYS */;

--
-- Table structure for table `sales_shipment_item`
--

DROP TABLE IF EXISTS `sales_shipment_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipment_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `price` decimal(20,4) DEFAULT NULL COMMENT 'Price',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `description` text DEFAULT NULL COMMENT 'Description',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_SHIPMENT_ITEM_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_item`
--

/*!40000 ALTER TABLE `sales_shipment_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_item` ENABLE KEYS */;

--
-- Table structure for table `sales_shipment_track`
--

DROP TABLE IF EXISTS `sales_shipment_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipment_track` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `track_number` text DEFAULT NULL COMMENT 'Number',
  `description` text DEFAULT NULL COMMENT 'Description',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `carrier_code` varchar(32) DEFAULT NULL COMMENT 'Carrier Code',
  `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',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_TRACK_PARENT_ID` (`parent_id`),
  KEY `SALES_SHIPMENT_TRACK_ORDER_ID` (`order_id`),
  KEY `SALES_SHIPMENT_TRACK_CREATED_AT` (`created_at`),
  CONSTRAINT `SALES_SHIPMENT_TRACK_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Track';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_track`
--

/*!40000 ALTER TABLE `sales_shipment_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_track` ENABLE KEYS */;

--
-- Table structure for table `sales_shipping_aggregated`
--

DROP TABLE IF EXISTS `sales_shipping_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipping_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_SHPP_AGGRED_PERIOD_STORE_ID_ORDER_STS_SHPP_DESCRIPTION` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_SHIPPING_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipping_aggregated`
--

/*!40000 ALTER TABLE `sales_shipping_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipping_aggregated` ENABLE KEYS */;

--
-- Table structure for table `sales_shipping_aggregated_order`
--

DROP TABLE IF EXISTS `sales_shipping_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_shipping_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_C05FAE47282EEA68654D0924E946761F` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipping_aggregated_order`
--

/*!40000 ALTER TABLE `sales_shipping_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipping_aggregated_order` ENABLE KEYS */;

--
-- Table structure for table `salesrule`
--

DROP TABLE IF EXISTS `salesrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `uses_per_customer` int(11) NOT NULL DEFAULT 0 COMMENT 'Uses Per Customer',
  `is_active` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Active',
  `conditions_serialized` mediumtext DEFAULT NULL COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext DEFAULT NULL COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Stop Rules Processing',
  `is_advanced` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Advanced',
  `product_ids` text DEFAULT NULL COMMENT 'Product Ids',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `discount_qty` decimal(12,4) DEFAULT NULL COMMENT 'Discount Qty',
  `discount_step` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Discount Step',
  `apply_to_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Apply To Shipping',
  `times_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  `is_rss` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Rss',
  `coupon_type` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Coupon Type',
  `use_auto_generation` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Use Auto Generation',
  `uses_per_coupon` int(11) NOT NULL DEFAULT 0 COMMENT 'User Per Coupon',
  `simple_free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Simple Free Shipping',
  PRIMARY KEY (`rule_id`),
  KEY `SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Salesrule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule`
--

/*!40000 ALTER TABLE `salesrule` DISABLE KEYS */;
INSERT INTO `salesrule` VALUES (1,'Test coupon','si','2022-09-15',NULL,0,1,'{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\"}','{\"type\":\"Magento\\\\SalesRule\\\\Model\\\\Rule\\\\Condition\\\\Product\\\\Combine\",\"attribute\":null,\"operator\":null,\"value\":\"1\",\"is_value_processed\":null,\"aggregator\":\"all\"}',1,1,NULL,0,'by_percent',10.0000,NULL,0,0,0,1,2,0,0,0);
/*!40000 ALTER TABLE `salesrule` ENABLE KEYS */;

--
-- Table structure for table `salesrule_coupon`
--

DROP TABLE IF EXISTS `salesrule_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_coupon` (
  `coupon_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Coupon ID',
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `usage_limit` int(10) unsigned DEFAULT NULL COMMENT 'Usage Limit',
  `usage_per_customer` int(10) unsigned DEFAULT NULL COMMENT 'Usage Per Customer',
  `times_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  `expiration_date` datetime DEFAULT NULL COMMENT 'Expiration Date',
  `is_primary` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Primary',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Coupon Code Creation Date',
  `type` smallint(6) DEFAULT 0 COMMENT 'Coupon Code Type',
  PRIMARY KEY (`coupon_id`),
  UNIQUE KEY `SALESRULE_COUPON_CODE` (`code`),
  UNIQUE KEY `SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`),
  KEY `SALESRULE_COUPON_RULE_ID` (`rule_id`),
  CONSTRAINT `SALESRULE_COUPON_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon`
--

/*!40000 ALTER TABLE `salesrule_coupon` DISABLE KEYS */;
INSERT INTO `salesrule_coupon` VALUES (1,1,'menodiesci',NULL,NULL,0,NULL,1,NULL,0);
/*!40000 ALTER TABLE `salesrule_coupon` ENABLE KEYS */;

--
-- Table structure for table `salesrule_coupon_aggregated`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_coupon_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT 0 COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALESRULE_COUPON_AGGRED_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated`
--

/*!40000 ALTER TABLE `salesrule_coupon_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated` ENABLE KEYS */;

--
-- Table structure for table `salesrule_coupon_aggregated_order`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_coupon_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT 0 COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_1094D1FBBCBB11704A29DEF3ACC37D2B` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated_order`
--

/*!40000 ALTER TABLE `salesrule_coupon_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated_order` ENABLE KEYS */;

--
-- Table structure for table `salesrule_coupon_aggregated_updated`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_coupon_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT 0 COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_7196FA120A4F0F84E1B66605E87E213E` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated_updated`
--

/*!40000 ALTER TABLE `salesrule_coupon_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated_updated` ENABLE KEYS */;

--
-- Table structure for table `salesrule_coupon_usage`
--

DROP TABLE IF EXISTS `salesrule_coupon_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_coupon_usage` (
  `coupon_id` int(10) unsigned NOT NULL COMMENT 'Coupon ID',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `times_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  PRIMARY KEY (`coupon_id`,`customer_id`),
  KEY `SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `SALESRULE_COUPON_USAGE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Usage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_usage`
--

/*!40000 ALTER TABLE `salesrule_coupon_usage` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_usage` ENABLE KEYS */;

--
-- Table structure for table `salesrule_customer`
--

DROP TABLE IF EXISTS `salesrule_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_customer` (
  `rule_customer_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Customer ID',
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `times_used` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  PRIMARY KEY (`rule_customer_id`),
  KEY `SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`),
  KEY `SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`),
  CONSTRAINT `SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_CUSTOMER_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Customer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_customer`
--

/*!40000 ALTER TABLE `salesrule_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_customer` ENABLE KEYS */;

--
-- Table structure for table `salesrule_customer_group`
--

DROP TABLE IF EXISTS `salesrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_customer_group` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `SALESRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_CUSTOMER_GROUP_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_customer_group`
--

/*!40000 ALTER TABLE `salesrule_customer_group` DISABLE KEYS */;
INSERT INTO `salesrule_customer_group` VALUES (1,0),(1,1),(1,2),(1,3);
/*!40000 ALTER TABLE `salesrule_customer_group` ENABLE KEYS */;

--
-- Table structure for table `salesrule_label`
--

DROP TABLE IF EXISTS `salesrule_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_label` (
  `label_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Label ID',
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  PRIMARY KEY (`label_id`),
  UNIQUE KEY `SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`),
  KEY `SALESRULE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `SALESRULE_LABEL_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_label`
--

/*!40000 ALTER TABLE `salesrule_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_label` ENABLE KEYS */;

--
-- Table structure for table `salesrule_product_attribute`
--

DROP TABLE IF EXISTS `salesrule_product_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_product_attribute` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRD_ATTR_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Product Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_product_attribute`
--

/*!40000 ALTER TABLE `salesrule_product_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_product_attribute` ENABLE KEYS */;

--
-- Table structure for table `salesrule_website`
--

DROP TABLE IF EXISTS `salesrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `salesrule_website` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `SALESRULE_WEBSITE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_website`
--

/*!40000 ALTER TABLE `salesrule_website` DISABLE KEYS */;
INSERT INTO `salesrule_website` VALUES (1,1);
/*!40000 ALTER TABLE `salesrule_website` ENABLE KEYS */;

--
-- Table structure for table `search_query`
--

DROP TABLE IF EXISTS `search_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_query` (
  `query_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Query ID',
  `query_text` varchar(255) DEFAULT NULL COMMENT 'Query text',
  `num_results` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Num results',
  `popularity` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Popularity',
  `redirect` varchar(255) DEFAULT NULL COMMENT 'Redirect',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `display_in_terms` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Display in terms',
  `is_active` smallint(6) DEFAULT 1 COMMENT 'Active status',
  `is_processed` smallint(6) DEFAULT 0 COMMENT 'Processed status',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated at',
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID` (`query_text`,`store_id`),
  KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`),
  KEY `SEARCH_QUERY_STORE_ID` (`store_id`),
  KEY `SEARCH_QUERY_IS_PROCESSED` (`is_processed`),
  KEY `SEARCH_QUERY_STORE_ID_POPULARITY` (`store_id`,`popularity`),
  CONSTRAINT `SEARCH_QUERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Search query table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_query`
--

/*!40000 ALTER TABLE `search_query` DISABLE KEYS */;
INSERT INTO `search_query` VALUES (1,'vino',1,1,NULL,1,1,1,0,'2022-08-01 14:54:15');
/*!40000 ALTER TABLE `search_query` ENABLE KEYS */;

--
-- Table structure for table `search_synonyms`
--

DROP TABLE IF EXISTS `search_synonyms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_synonyms` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Synonyms Group ID',
  `synonyms` text NOT NULL COMMENT 'list of synonyms making up this group',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID - identifies the store view these synonyms belong to',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID - identifies the website ID these synonyms belong to',
  PRIMARY KEY (`group_id`),
  KEY `SEARCH_SYNONYMS_STORE_ID` (`store_id`),
  KEY `SEARCH_SYNONYMS_WEBSITE_ID` (`website_id`),
  FULLTEXT KEY `SEARCH_SYNONYMS_SYNONYMS` (`synonyms`),
  CONSTRAINT `SEARCH_SYNONYMS_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `SEARCH_SYNONYMS_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='table storing various synonyms groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_synonyms`
--

/*!40000 ALTER TABLE `search_synonyms` DISABLE KEYS */;
/*!40000 ALTER TABLE `search_synonyms` ENABLE KEYS */;

--
-- Table structure for table `sendfriend_log`
--

DROP TABLE IF EXISTS `sendfriend_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sendfriend_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `ip` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer IP address',
  `time` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Log time',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  PRIMARY KEY (`log_id`),
  KEY `SENDFRIEND_LOG_IP` (`ip`),
  KEY `SENDFRIEND_LOG_TIME` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Send to friend function log storage table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sendfriend_log`
--

/*!40000 ALTER TABLE `sendfriend_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `sendfriend_log` ENABLE KEYS */;

--
-- Table structure for table `sequence_creditmemo_0`
--

DROP TABLE IF EXISTS `sequence_creditmemo_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_creditmemo_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_creditmemo_0`
--

/*!40000 ALTER TABLE `sequence_creditmemo_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_creditmemo_0` ENABLE KEYS */;

--
-- Table structure for table `sequence_creditmemo_1`
--

DROP TABLE IF EXISTS `sequence_creditmemo_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_creditmemo_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_creditmemo_1`
--

/*!40000 ALTER TABLE `sequence_creditmemo_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_creditmemo_1` ENABLE KEYS */;

--
-- Table structure for table `sequence_invoice_0`
--

DROP TABLE IF EXISTS `sequence_invoice_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_invoice_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_invoice_0`
--

/*!40000 ALTER TABLE `sequence_invoice_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_invoice_0` ENABLE KEYS */;

--
-- Table structure for table `sequence_invoice_1`
--

DROP TABLE IF EXISTS `sequence_invoice_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_invoice_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_invoice_1`
--

/*!40000 ALTER TABLE `sequence_invoice_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_invoice_1` ENABLE KEYS */;

--
-- Table structure for table `sequence_order_0`
--

DROP TABLE IF EXISTS `sequence_order_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_order_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_order_0`
--

/*!40000 ALTER TABLE `sequence_order_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_order_0` ENABLE KEYS */;

--
-- Table structure for table `sequence_order_1`
--

DROP TABLE IF EXISTS `sequence_order_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_order_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_order_1`
--

/*!40000 ALTER TABLE `sequence_order_1` DISABLE KEYS */;
INSERT INTO `sequence_order_1` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11);
/*!40000 ALTER TABLE `sequence_order_1` ENABLE KEYS */;

--
-- Table structure for table `sequence_shipment_0`
--

DROP TABLE IF EXISTS `sequence_shipment_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_shipment_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_shipment_0`
--

/*!40000 ALTER TABLE `sequence_shipment_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_shipment_0` ENABLE KEYS */;

--
-- Table structure for table `sequence_shipment_1`
--

DROP TABLE IF EXISTS `sequence_shipment_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequence_shipment_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_shipment_1`
--

/*!40000 ALTER TABLE `sequence_shipment_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_shipment_1` ENABLE KEYS */;

--
-- Table structure for table `session`
--

DROP TABLE IF EXISTS `session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `session` (
  `session_id` varchar(255) NOT NULL COMMENT 'Session Id',
  `session_expires` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Date of Session Expiration',
  `session_data` mediumblob NOT NULL COMMENT 'Session Data',
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Database Sessions Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `session`
--

/*!40000 ALTER TABLE `session` DISABLE KEYS */;
/*!40000 ALTER TABLE `session` ENABLE KEYS */;

--
-- Table structure for table `setup_module`
--

DROP TABLE IF EXISTS `setup_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `setup_module` (
  `module` varchar(50) NOT NULL COMMENT 'Module',
  `schema_version` varchar(50) DEFAULT NULL COMMENT 'Schema Version',
  `data_version` varchar(50) DEFAULT NULL COMMENT 'Data Version',
  PRIMARY KEY (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module versions registry';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `setup_module`
--

/*!40000 ALTER TABLE `setup_module` DISABLE KEYS */;
INSERT INTO `setup_module` VALUES ('Magento_GoogleShoppingAds','4.0.1','4.0.1'),('Magento_Securitytxt','1.0.0','1.0.0'),('Mageplaza_Blog','2.5.4','2.5.4'),('Mageplaza_Core','1.0.0','1.0.0'),('Mageplaza_Smtp','1.2.5','1.2.5'),('PayPal_Braintree','4.4.0','4.4.0'),('Plumrocket_Base','2.1.9','2.1.9'),('Plumrocket_DataPrivacyApi','1.0.0','1.0.0'),('Plumrocket_GDPR','3.0.3','3.0.3'),('Plumrocket_GdprAddon','1.0.0','1.0.0'),('Plumrocket_Token','1.0.2','1.0.2'),('ThreadSolutions_CustomWishlist','1.0.0','1.0.0'),('Torresani_MessageQueue','1.0.0','1.0.0'),('Webkul_BuyButton','4.0.0','4.0.0'),('Wishusucess_CustomWishlist','1.0.0','1.0.0');
/*!40000 ALTER TABLE `setup_module` ENABLE KEYS */;

--
-- Table structure for table `shipping_tablerate`
--

DROP TABLE IF EXISTS `shipping_tablerate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipping_tablerate` (
  `pk` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `website_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `dest_country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code',
  `dest_region_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Destination Region ID',
  `dest_zip` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code (Zip)',
  `condition_name` varchar(30) NOT NULL COMMENT 'Rate Condition name',
  `condition_value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Rate condition value',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `cost` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Cost',
  PRIMARY KEY (`pk`),
  UNIQUE KEY `UNQ_D60821CDB2AFACEE1566CFC02D0D4CAA` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shipping Tablerate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipping_tablerate`
--

/*!40000 ALTER TABLE `shipping_tablerate` DISABLE KEYS */;
/*!40000 ALTER TABLE `shipping_tablerate` ENABLE KEYS */;

--
-- Table structure for table `sitemap`
--

DROP TABLE IF EXISTS `sitemap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sitemap` (
  `sitemap_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sitemap ID',
  `sitemap_type` varchar(32) DEFAULT NULL COMMENT 'Sitemap Type',
  `sitemap_filename` varchar(32) DEFAULT NULL COMMENT 'Sitemap Filename',
  `sitemap_path` varchar(255) DEFAULT NULL COMMENT 'Sitemap Path',
  `sitemap_time` timestamp NULL DEFAULT NULL COMMENT 'Sitemap Time',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`sitemap_id`),
  KEY `SITEMAP_STORE_ID` (`store_id`),
  CONSTRAINT `SITEMAP_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='XML Sitemap';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sitemap`
--

/*!40000 ALTER TABLE `sitemap` DISABLE KEYS */;
/*!40000 ALTER TABLE `sitemap` ENABLE KEYS */;

--
-- Table structure for table `store`
--

DROP TABLE IF EXISTS `store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `store` (
  `store_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Store ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Group ID',
  `name` varchar(255) NOT NULL COMMENT 'Store Name',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Sort Order',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Activity',
  PRIMARY KEY (`store_id`),
  UNIQUE KEY `STORE_CODE` (`code`),
  KEY `STORE_WEBSITE_ID` (`website_id`),
  KEY `STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`),
  KEY `STORE_GROUP_ID` (`group_id`),
  CONSTRAINT `STORE_GROUP_ID_STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `store_group` (`group_id`) ON DELETE CASCADE,
  CONSTRAINT `STORE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store`
--

/*!40000 ALTER TABLE `store` DISABLE KEYS */;
INSERT INTO `store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'default',1,1,'Default Store View',0,1);
/*!40000 ALTER TABLE `store` ENABLE KEYS */;

--
-- Table structure for table `store_group`
--

DROP TABLE IF EXISTS `store_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `store_group` (
  `group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Group ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `name` varchar(255) NOT NULL COMMENT 'Store Group Name',
  `root_category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Root Category ID',
  `default_store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Default Store ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Store group unique code',
  PRIMARY KEY (`group_id`),
  UNIQUE KEY `STORE_GROUP_CODE` (`code`),
  KEY `STORE_GROUP_WEBSITE_ID` (`website_id`),
  KEY `STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`),
  CONSTRAINT `STORE_GROUP_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Store Groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store_group`
--

/*!40000 ALTER TABLE `store_group` DISABLE KEYS */;
INSERT INTO `store_group` VALUES (0,0,'Default',0,0,'default'),(1,1,'Main Website Store',2,1,'main_website_store');
/*!40000 ALTER TABLE `store_group` ENABLE KEYS */;

--
-- Table structure for table `store_website`
--

DROP TABLE IF EXISTS `store_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `store_website` (
  `website_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Website ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `name` varchar(64) DEFAULT NULL COMMENT 'Website Name',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `default_group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Default Group ID',
  `is_default` smallint(5) unsigned DEFAULT 0 COMMENT 'Defines Is Website Default',
  PRIMARY KEY (`website_id`),
  UNIQUE KEY `STORE_WEBSITE_CODE` (`code`),
  KEY `STORE_WEBSITE_SORT_ORDER` (`sort_order`),
  KEY `STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Websites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store_website`
--

/*!40000 ALTER TABLE `store_website` DISABLE KEYS */;
INSERT INTO `store_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1);
/*!40000 ALTER TABLE `store_website` ENABLE KEYS */;

--
-- Table structure for table `tax_calculation`
--

DROP TABLE IF EXISTS `tax_calculation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_calculation` (
  `tax_calculation_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation ID',
  `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate ID',
  `tax_calculation_rule_id` int(11) NOT NULL COMMENT 'Tax Calculation Rule ID',
  `customer_tax_class_id` smallint(6) NOT NULL COMMENT 'Customer Tax Class ID',
  `product_tax_class_id` smallint(6) NOT NULL COMMENT 'Product Tax Class ID',
  PRIMARY KEY (`tax_calculation_id`),
  KEY `TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`),
  KEY `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`),
  KEY `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`),
  KEY `TAX_CALC_TAX_CALC_RATE_ID_CSTR_TAX_CLASS_ID_PRD_TAX_CLASS_ID` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`),
  CONSTRAINT `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALC_TAX_CALC_RATE_ID_TAX_CALC_RATE_TAX_CALC_RATE_ID` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALC_TAX_CALC_RULE_ID_TAX_CALC_RULE_TAX_CALC_RULE_ID` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation`
--

/*!40000 ALTER TABLE `tax_calculation` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_calculation` ENABLE KEYS */;

--
-- Table structure for table `tax_calculation_rate`
--

DROP TABLE IF EXISTS `tax_calculation_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_calculation_rate` (
  `tax_calculation_rate_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate ID',
  `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country ID',
  `tax_region_id` int(11) NOT NULL COMMENT 'Tax Region ID',
  `tax_postcode` varchar(21) DEFAULT NULL COMMENT 'Tax Postcode',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `rate` decimal(12,4) NOT NULL COMMENT 'Rate',
  `zip_is_range` smallint(6) DEFAULT NULL COMMENT 'Zip Is Range',
  `zip_from` int(10) unsigned DEFAULT NULL COMMENT 'Zip From',
  `zip_to` int(10) unsigned DEFAULT NULL COMMENT 'Zip To',
  PRIMARY KEY (`tax_calculation_rate_id`),
  KEY `TAX_CALCULATION_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`),
  KEY `TAX_CALCULATION_RATE_CODE` (`code`),
  KEY `IDX_CA799F1E2CB843495F601E56C84A626D` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rate`
--

/*!40000 ALTER TABLE `tax_calculation_rate` DISABLE KEYS */;
INSERT INTO `tax_calculation_rate` VALUES (1,'US',12,'*','US-CA-*-Rate 1',8.2500,NULL,NULL,NULL),(2,'US',43,'*','US-NY-*-Rate 1',8.3750,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tax_calculation_rate` ENABLE KEYS */;

--
-- Table structure for table `tax_calculation_rate_title`
--

DROP TABLE IF EXISTS `tax_calculation_rate_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_calculation_rate_title` (
  `tax_calculation_rate_title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title ID',
  `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  PRIMARY KEY (`tax_calculation_rate_title_id`),
  KEY `TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`),
  KEY `TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_37FB965F786AD5897BB3AE90470C42AB` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALCULATION_RATE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rate_title`
--

/*!40000 ALTER TABLE `tax_calculation_rate_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_calculation_rate_title` ENABLE KEYS */;

--
-- Table structure for table `tax_calculation_rule`
--

DROP TABLE IF EXISTS `tax_calculation_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_calculation_rule` (
  `tax_calculation_rule_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `priority` int(11) NOT NULL COMMENT 'Priority',
  `position` int(11) NOT NULL COMMENT 'Position',
  `calculate_subtotal` int(11) NOT NULL COMMENT 'Calculate off subtotal option',
  PRIMARY KEY (`tax_calculation_rule_id`),
  KEY `TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`),
  KEY `TAX_CALCULATION_RULE_CODE` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rule`
--

/*!40000 ALTER TABLE `tax_calculation_rule` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_calculation_rule` ENABLE KEYS */;

--
-- Table structure for table `tax_class`
--

DROP TABLE IF EXISTS `tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_class` (
  `class_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Class ID',
  `class_name` varchar(255) NOT NULL COMMENT 'Class Name',
  `class_type` varchar(8) NOT NULL DEFAULT 'CUSTOMER' COMMENT 'Class Type',
  PRIMARY KEY (`class_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Tax Class';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_class`
--

/*!40000 ALTER TABLE `tax_class` DISABLE KEYS */;
INSERT INTO `tax_class` VALUES (2,'Taxable Goods','PRODUCT'),(3,'Retail Customer','CUSTOMER');
/*!40000 ALTER TABLE `tax_class` ENABLE KEYS */;

--
-- Table structure for table `tax_order_aggregated_created`
--

DROP TABLE IF EXISTS `tax_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_order_aggregated_created` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `TAX_ORDER_AGGRED_CREATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `TAX_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_order_aggregated_created`
--

/*!40000 ALTER TABLE `tax_order_aggregated_created` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_order_aggregated_created` ENABLE KEYS */;

--
-- Table structure for table `tax_order_aggregated_updated`
--

DROP TABLE IF EXISTS `tax_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_order_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `TAX_ORDER_AGGRED_UPDATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_order_aggregated_updated`
--

/*!40000 ALTER TABLE `tax_order_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_order_aggregated_updated` ENABLE KEYS */;

--
-- Table structure for table `theme`
--

DROP TABLE IF EXISTS `theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `theme` (
  `theme_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier',
  `parent_id` int(11) DEFAULT NULL COMMENT 'Parent ID',
  `theme_path` varchar(255) DEFAULT NULL COMMENT 'Theme Path',
  `theme_title` varchar(255) NOT NULL COMMENT 'Theme Title',
  `preview_image` varchar(255) DEFAULT NULL COMMENT 'Preview Image',
  `is_featured` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is Theme Featured',
  `area` varchar(255) NOT NULL COMMENT 'Theme Area',
  `type` smallint(6) NOT NULL COMMENT 'Theme type: 0:physical, 1:virtual, 2:staging',
  `code` text DEFAULT NULL COMMENT 'Full theme code, including package',
  PRIMARY KEY (`theme_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Core theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `theme`
--

/*!40000 ALTER TABLE `theme` DISABLE KEYS */;
INSERT INTO `theme` VALUES (1,NULL,'Magento/blank','Magento Blank','preview_image_62e64fbb5e5a7.jpeg',0,'frontend',0,'Magento/blank'),(2,NULL,'Magento/backend','Magento 2 backend',NULL,0,'adminhtml',0,'Magento/backend'),(3,1,'Magento/luma','Magento Luma','preview_image_62e64fbb70a7f.jpeg',0,'frontend',0,'Magento/luma'),(4,3,'Magento/indaco','Indaco',NULL,0,'frontend',0,'Magento/indaco'),(5,1,'Indaco/translations','Indaco Translations Theme','preview_image_6305e850ee039.jpeg',0,'frontend',1,'Indaco/translations');
/*!40000 ALTER TABLE `theme` ENABLE KEYS */;

--
-- Table structure for table `theme_file`
--

DROP TABLE IF EXISTS `theme_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `theme_file` (
  `theme_files_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID',
  `file_path` varchar(255) DEFAULT NULL COMMENT 'Relative path to file',
  `file_type` varchar(32) NOT NULL COMMENT 'File Type',
  `content` longtext NOT NULL COMMENT 'File Content',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `is_temporary` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is Temporary File',
  PRIMARY KEY (`theme_files_id`),
  KEY `THEME_FILE_THEME_ID_THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `THEME_FILE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Core theme files';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `theme_file`
--

/*!40000 ALTER TABLE `theme_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `theme_file` ENABLE KEYS */;

--
-- Table structure for table `translation`
--

DROP TABLE IF EXISTS `translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `translation` (
  `key_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Key ID of Translation',
  `string` varchar(255) NOT NULL DEFAULT 'Translate String' COMMENT 'Translation String',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `translate` varchar(255) DEFAULT NULL COMMENT 'Translate',
  `locale` varchar(20) NOT NULL DEFAULT 'en_US' COMMENT 'Locale',
  `crc_string` bigint(20) NOT NULL DEFAULT 1591228201 COMMENT 'Translation String CRC32 Hash',
  PRIMARY KEY (`key_id`),
  UNIQUE KEY `TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`),
  CONSTRAINT `TRANSLATION_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Translations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `translation`
--

/*!40000 ALTER TABLE `translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `translation` ENABLE KEYS */;

--
-- Table structure for table `ui_bookmark`
--

DROP TABLE IF EXISTS `ui_bookmark`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ui_bookmark` (
  `bookmark_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `namespace` varchar(255) NOT NULL COMMENT 'Bookmark namespace',
  `identifier` varchar(255) NOT NULL COMMENT 'Bookmark Identifier',
  `current` smallint(6) NOT NULL COMMENT 'Mark current bookmark per user and identifier',
  `title` varchar(255) DEFAULT NULL COMMENT 'Bookmark title',
  `config` longtext DEFAULT NULL COMMENT 'Bookmark config',
  `created_at` datetime NOT NULL DEFAULT current_timestamp() COMMENT 'Bookmark created at',
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Bookmark updated at',
  PRIMARY KEY (`bookmark_id`),
  KEY `UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`),
  CONSTRAINT `UI_BOOKMARK_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 COMMENT='Bookmark';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ui_bookmark`
--

/*!40000 ALTER TABLE `ui_bookmark` DISABLE KEYS */;
INSERT INTO `ui_bookmark` VALUES (1,1,'product_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"search\":{\"value\":\"\"},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36}},\"value\":\"Default View\"}}}','2022-07-31 13:03:24','2022-07-31 13:03:24'),(2,1,'product_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"search\":{\"value\":\"\"},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36}}}','2022-07-31 13:03:26','2022-07-31 13:03:26'),(3,1,'sales_order_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"allocated_sources\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}},\"value\":\"Default View\"}}}','2022-08-05 09:07:35','2022-08-05 09:07:35'),(4,1,'sales_order_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"allocated_sources\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}}}','2022-08-05 09:07:37','2022-08-05 09:07:37'),(5,2,'product_listing','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-08 10:25:31','2022-08-08 10:25:31'),(6,2,'product_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36}}}','2022-08-08 10:25:33','2022-08-08 10:25:33'),(7,2,'sales_order_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"allocated_sources\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-08 15:26:07','2022-08-08 15:26:07'),(8,2,'sales_order_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"allocated_sources\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}}}','2022-08-08 15:26:08','2022-08-08 15:26:08'),(9,2,'sales_order_view_invoice_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"grand_total\":7,\"store_id\":8,\"billing_address\":9,\"shipping_address\":10,\"customer_name\":11,\"customer_email\":12,\"customer_group_id\":13,\"payment_method\":14,\"shipping_information\":15,\"subtotal\":16,\"shipping_and_handling\":17,\"actions\":18}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-09 12:32:56','2022-08-09 12:32:56'),(10,2,'sales_order_view_creditmemo_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"adjustment_positive\":{\"visible\":false,\"sorting\":false},\"adjustment_negative\":{\"visible\":false,\"sorting\":false},\"order_base_grand_total\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"base_grand_total\":7,\"order_status\":8,\"store_id\":9,\"billing_address\":10,\"shipping_address\":11,\"customer_name\":12,\"customer_email\":13,\"customer_group_id\":14,\"payment_method\":15,\"shipping_information\":16,\"subtotal\":17,\"shipping_and_handling\":18,\"adjustment_positive\":19,\"adjustment_negative\":20,\"order_base_grand_total\":21,\"actions\":22}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-09 12:32:56','2022-08-09 12:32:56'),(11,2,'sales_order_view_shipment_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"total_qty\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"shipping_name\":5,\"total_qty\":6,\"order_status\":7,\"store_id\":8,\"customer_name\":9,\"customer_email\":10,\"customer_group_id\":11,\"billing_address\":12,\"shipping_address\":13,\"payment_method\":14,\"shipping_information\":15,\"actions\":16}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-09 12:32:56','2022-08-09 12:32:56'),(12,2,'sales_order_view_invoice_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"grand_total\":7,\"store_id\":8,\"billing_address\":9,\"shipping_address\":10,\"customer_name\":11,\"customer_email\":12,\"customer_group_id\":13,\"payment_method\":14,\"shipping_information\":15,\"subtotal\":16,\"shipping_and_handling\":17,\"actions\":18}}}','2022-08-09 12:32:58','2022-08-09 12:32:58'),(13,2,'sales_order_view_creditmemo_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"adjustment_positive\":{\"visible\":false,\"sorting\":false},\"adjustment_negative\":{\"visible\":false,\"sorting\":false},\"order_base_grand_total\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"base_grand_total\":7,\"order_status\":8,\"store_id\":9,\"billing_address\":10,\"shipping_address\":11,\"customer_name\":12,\"customer_email\":13,\"customer_group_id\":14,\"payment_method\":15,\"shipping_information\":16,\"subtotal\":17,\"shipping_and_handling\":18,\"adjustment_positive\":19,\"adjustment_negative\":20,\"order_base_grand_total\":21,\"actions\":22}}}','2022-08-09 12:32:58','2022-08-09 12:32:58'),(14,2,'sales_order_view_shipment_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"total_qty\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"shipping_name\":5,\"total_qty\":6,\"order_status\":7,\"store_id\":8,\"customer_name\":9,\"customer_email\":10,\"customer_group_id\":11,\"billing_address\":12,\"shipping_address\":13,\"payment_method\":14,\"shipping_information\":15,\"actions\":16}}}','2022-08-09 12:32:58','2022-08-09 12:32:58'),(15,1,'customer_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"billing_telephone\":{\"visible\":true,\"sorting\":false},\"billing_postcode\":{\"visible\":true,\"sorting\":false},\"billing_region\":{\"visible\":true,\"sorting\":false},\"confirmation\":{\"visible\":true,\"sorting\":false},\"created_in\":{\"visible\":true,\"sorting\":false},\"billing_full\":{\"visible\":false,\"sorting\":false},\"shipping_full\":{\"visible\":false,\"sorting\":false},\"taxvat\":{\"visible\":true,\"sorting\":false},\"billing_street\":{\"visible\":false,\"sorting\":false},\"billing_city\":{\"visible\":false,\"sorting\":false},\"billing_fax\":{\"visible\":false,\"sorting\":false},\"billing_vat_id\":{\"visible\":false,\"sorting\":false},\"billing_company\":{\"visible\":false,\"sorting\":false},\"billing_firstname\":{\"visible\":false,\"sorting\":false},\"billing_lastname\":{\"visible\":false,\"sorting\":false},\"lock_expires\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"group_id\":{\"visible\":true,\"sorting\":false},\"billing_country_id\":{\"visible\":true,\"sorting\":false},\"website_id\":{\"visible\":true,\"sorting\":false},\"gender\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"dob\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"email\":3,\"group_id\":4,\"billing_telephone\":5,\"billing_postcode\":6,\"billing_country_id\":7,\"billing_region\":8,\"created_at\":9,\"website_id\":10,\"confirmation\":11,\"created_in\":12,\"billing_full\":13,\"shipping_full\":14,\"dob\":15,\"taxvat\":16,\"gender\":17,\"billing_street\":18,\"billing_city\":19,\"billing_fax\":20,\"billing_vat_id\":21,\"billing_company\":22,\"billing_firstname\":23,\"billing_lastname\":24,\"lock_expires\":25,\"actions\":26}},\"value\":\"Default View\"}}}','2022-08-11 09:12:13','2022-08-11 09:12:13'),(16,1,'customer_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"billing_telephone\":{\"visible\":true,\"sorting\":false},\"billing_postcode\":{\"visible\":true,\"sorting\":false},\"billing_region\":{\"visible\":true,\"sorting\":false},\"confirmation\":{\"visible\":true,\"sorting\":false},\"created_in\":{\"visible\":true,\"sorting\":false},\"billing_full\":{\"visible\":false,\"sorting\":false},\"shipping_full\":{\"visible\":false,\"sorting\":false},\"taxvat\":{\"visible\":true,\"sorting\":false},\"billing_street\":{\"visible\":false,\"sorting\":false},\"billing_city\":{\"visible\":false,\"sorting\":false},\"billing_fax\":{\"visible\":false,\"sorting\":false},\"billing_vat_id\":{\"visible\":false,\"sorting\":false},\"billing_company\":{\"visible\":false,\"sorting\":false},\"billing_firstname\":{\"visible\":false,\"sorting\":false},\"billing_lastname\":{\"visible\":false,\"sorting\":false},\"lock_expires\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"group_id\":{\"visible\":true,\"sorting\":false},\"billing_country_id\":{\"visible\":true,\"sorting\":false},\"website_id\":{\"visible\":true,\"sorting\":false},\"gender\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"dob\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"email\":3,\"group_id\":4,\"billing_telephone\":5,\"billing_postcode\":6,\"billing_country_id\":7,\"billing_region\":8,\"created_at\":9,\"website_id\":10,\"confirmation\":11,\"created_in\":12,\"billing_full\":13,\"shipping_full\":14,\"dob\":15,\"taxvat\":16,\"gender\":17,\"billing_street\":18,\"billing_city\":19,\"billing_fax\":20,\"billing_vat_id\":21,\"billing_company\":22,\"billing_firstname\":23,\"billing_lastname\":24,\"lock_expires\":25,\"actions\":26}}}','2022-08-11 09:12:14','2022-08-11 09:12:14'),(17,1,'login_as_customer_log_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"user_id\":{\"visible\":true,\"sorting\":false},\"user_name\":{\"visible\":true,\"sorting\":false},\"time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"user_id\":3,\"user_name\":4,\"time\":5}},\"value\":\"Default View\"}}}','2022-08-11 09:14:38','2022-08-11 09:14:38'),(18,1,'login_as_customer_log_listing','current',0,NULL,'{\"current\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"user_id\":{\"visible\":true,\"sorting\":false},\"user_name\":{\"visible\":true,\"sorting\":false},\"time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"user_id\":3,\"user_name\":4,\"time\":5}}}','2022-08-11 09:14:40','2022-08-11 09:14:40'),(19,1,'customer_group_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"customer_group_id\":{\"visible\":true,\"sorting\":\"asc\"},\"customer_group_code\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"tax_class_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"customer_group_id\":0,\"customer_group_code\":1,\"tax_class_id\":2,\"actions\":3}},\"value\":\"Default View\"}}}','2022-08-11 09:14:49','2022-08-11 09:14:49'),(20,1,'customer_group_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"customer_group_id\":{\"visible\":true,\"sorting\":\"asc\"},\"customer_group_code\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"tax_class_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"customer_group_id\":0,\"customer_group_code\":1,\"tax_class_id\":2,\"actions\":3}}}','2022-08-11 09:14:50','2022-08-11 09:14:50'),(21,1,'pr_cookie_consent_log_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"settings\":{\"visible\":true,\"sorting\":false},\"url\":{\"visible\":true,\"sorting\":false},\"ip_address\":{\"visible\":true,\"sorting\":false},\"user_agent\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"settings\":5,\"created_at\":6,\"url\":7,\"ip_address\":8,\"user_agent\":9}},\"value\":\"Default View\"}}}','2022-08-11 09:14:58','2022-08-11 09:14:58'),(22,1,'pr_cookie_consent_log_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"settings\":{\"visible\":true,\"sorting\":false},\"url\":{\"visible\":true,\"sorting\":false},\"ip_address\":{\"visible\":true,\"sorting\":false},\"user_agent\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"settings\":5,\"created_at\":6,\"url\":7,\"ip_address\":8,\"user_agent\":9}}}','2022-08-11 09:15:00','2022-08-11 09:15:00'),(23,1,'pr_cookie_category_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"is_essential\":{\"visible\":true,\"sorting\":false},\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"key\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"description\":3,\"key\":4,\"status\":5,\"is_essential\":6,\"actions\":7}},\"value\":\"Default View\"}}}','2022-08-11 09:42:48','2022-08-11 09:42:48'),(24,1,'pr_cookie_category_listing','current',0,NULL,'{\"current\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"is_essential\":{\"visible\":true,\"sorting\":false},\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"key\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"description\":3,\"key\":4,\"status\":5,\"is_essential\":6,\"actions\":7}}}','2022-08-11 09:42:49','2022-08-11 09:42:49'),(25,1,'pr_cookie_item_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"domain_label\":{\"visible\":true,\"sorting\":false},\"duration\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false},\"category_key\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"domain_label\":3,\"duration\":4,\"type\":5,\"category_key\":6,\"actions\":7}},\"value\":\"Default View\"}}}','2022-08-11 09:43:08','2022-08-11 09:43:08'),(26,1,'pr_cookie_item_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"domain_label\":{\"visible\":true,\"sorting\":false},\"duration\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false},\"category_key\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"domain_label\":3,\"duration\":4,\"type\":5,\"category_key\":6,\"actions\":7}}}','2022-08-11 09:43:10','2022-08-11 09:43:10'),(27,1,'prgdpr_consentslog_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location\":{\"visible\":true,\"sorting\":false},\"action\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page\":{\"visible\":true,\"sorting\":false},\"version\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"location\":5,\"action\":6,\"label\":7,\"cms_page\":8,\"version\":9,\"created_at\":10,\"customer_ip\":11}},\"value\":\"Default View\"}}}','2022-08-11 09:44:49','2022-08-11 09:44:49'),(28,1,'prgdpr_consentslog_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location\":{\"visible\":true,\"sorting\":false},\"action\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page\":{\"visible\":true,\"sorting\":false},\"version\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"location\":5,\"action\":6,\"label\":7,\"cms_page\":8,\"version\":9,\"created_at\":10,\"customer_ip\":11}}}','2022-08-11 09:44:50','2022-08-11 09:44:50'),(29,1,'prgdpr_checkbox_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"require\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"location_key\":2,\"label\":3,\"cms_page_id\":4,\"require\":5,\"status\":6,\"actions\":7}},\"value\":\"Default View\"}}}','2022-08-11 09:45:37','2022-08-11 09:45:37'),(30,1,'prgdpr_checkbox_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"require\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"location_key\":2,\"label\":3,\"cms_page_id\":4,\"require\":5,\"status\":6,\"actions\":7}}}','2022-08-11 09:45:39','2022-08-11 09:45:39'),(31,1,'prgdpr_consent_location_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"location_id\":0,\"name\":1,\"location_key\":2,\"type\":3,\"description\":4,\"actions\":5},\"filters\":{\"applied\":{\"placeholder\":true}}},\"value\":\"Default View\"}}}','2022-08-11 09:48:42','2022-08-11 09:48:42'),(32,1,'prgdpr_consent_location_listing','current',0,NULL,'{\"current\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"location_id\":0,\"name\":1,\"location_key\":2,\"type\":3,\"description\":4,\"actions\":5},\"filters\":{\"applied\":{\"placeholder\":true}}}}','2022-08-11 09:48:44','2022-08-11 09:48:44'),(33,1,'prgdpr_removalrequests_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"request_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"created_by\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"cancelled_by\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"cancelled_at\":{\"visible\":true,\"sorting\":false},\"scheduled_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"request_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"website\":4,\"created_by\":5,\"created_at\":6,\"customer_ip\":7,\"cancelled_at\":8,\"cancelled_by\":9,\"scheduled_at\":10,\"status\":11,\"actions\":12}},\"value\":\"Default View\"}}}','2022-08-11 09:49:52','2022-08-11 09:49:52'),(34,1,'prgdpr_removalrequests_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"request_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"created_by\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"cancelled_by\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"cancelled_at\":{\"visible\":true,\"sorting\":false},\"scheduled_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"request_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"website\":4,\"created_by\":5,\"created_at\":6,\"customer_ip\":7,\"cancelled_at\":8,\"cancelled_by\":9,\"scheduled_at\":10,\"status\":11,\"actions\":12}}}','2022-08-11 09:49:54','2022-08-11 09:49:54'),(35,1,'prgdpr_downloadslog_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"created_at\":4,\"customer_ip\":5}},\"value\":\"Default View\"}}}','2022-08-11 09:49:57','2022-08-11 09:49:57'),(36,1,'prgdpr_downloadslog_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"created_at\":4,\"customer_ip\":5}}}','2022-08-11 09:49:59','2022-08-11 09:49:59'),(37,1,'design_theme_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4},\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}}},\"value\":\"Default View\"}}}','2022-08-18 12:10:25','2022-08-18 12:10:25'),(38,1,'design_theme_listing','current',0,NULL,'{\"current\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4},\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}}}}','2022-08-18 12:10:26','2022-08-18 12:10:26'),(39,1,'design_config_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}},\"value\":\"Default View\"}}}','2022-08-18 12:10:39','2022-08-18 12:10:39'),(40,1,'design_config_listing','current',0,NULL,'{\"current\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}}}','2022-08-18 12:10:40','2022-08-18 12:10:40'),(41,1,'cms_block_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8},\"displayMode\":\"grid\"},\"value\":\"Default View\"}}}','2022-08-22 12:43:39','2022-08-22 12:43:39'),(42,1,'cms_block_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8},\"displayMode\":\"grid\"}}','2022-08-22 12:43:40','2022-08-22 12:43:40'),(43,1,'sales_order_view_shipment_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"total_qty\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"shipping_name\":5,\"total_qty\":6,\"order_status\":7,\"store_id\":8,\"customer_name\":9,\"customer_email\":10,\"customer_group_id\":11,\"billing_address\":12,\"shipping_address\":13,\"payment_method\":14,\"shipping_information\":15,\"actions\":16}},\"value\":\"Default View\"}}}','2022-08-23 07:39:56','2022-08-23 07:39:56'),(44,1,'sales_order_view_invoice_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"grand_total\":7,\"store_id\":8,\"billing_address\":9,\"shipping_address\":10,\"customer_name\":11,\"customer_email\":12,\"customer_group_id\":13,\"payment_method\":14,\"shipping_information\":15,\"subtotal\":16,\"shipping_and_handling\":17,\"actions\":18}},\"value\":\"Default View\"}}}','2022-08-23 07:39:56','2022-08-23 07:39:56'),(45,1,'sales_order_view_invoice_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"grand_total\":7,\"store_id\":8,\"billing_address\":9,\"shipping_address\":10,\"customer_name\":11,\"customer_email\":12,\"customer_group_id\":13,\"payment_method\":14,\"shipping_information\":15,\"subtotal\":16,\"shipping_and_handling\":17,\"actions\":18}}}','2022-08-23 07:39:57','2022-08-23 07:39:57'),(46,1,'sales_order_view_creditmemo_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"adjustment_positive\":{\"visible\":false,\"sorting\":false},\"adjustment_negative\":{\"visible\":false,\"sorting\":false},\"order_base_grand_total\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"base_grand_total\":7,\"order_status\":8,\"store_id\":9,\"billing_address\":10,\"shipping_address\":11,\"customer_name\":12,\"customer_email\":13,\"customer_group_id\":14,\"payment_method\":15,\"shipping_information\":16,\"subtotal\":17,\"shipping_and_handling\":18,\"adjustment_positive\":19,\"adjustment_negative\":20,\"order_base_grand_total\":21,\"actions\":22}}}','2022-08-23 07:39:58','2022-08-23 07:39:58'),(47,1,'sales_order_view_shipment_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"total_qty\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"shipping_name\":5,\"total_qty\":6,\"order_status\":7,\"store_id\":8,\"customer_name\":9,\"customer_email\":10,\"customer_group_id\":11,\"billing_address\":12,\"shipping_address\":13,\"payment_method\":14,\"shipping_information\":15,\"actions\":16}}}','2022-08-23 07:39:58','2022-08-23 07:39:58'),(48,1,'sales_order_view_creditmemo_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"adjustment_positive\":{\"visible\":false,\"sorting\":false},\"adjustment_negative\":{\"visible\":false,\"sorting\":false},\"order_base_grand_total\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"base_grand_total\":7,\"order_status\":8,\"store_id\":9,\"billing_address\":10,\"shipping_address\":11,\"customer_name\":12,\"customer_email\":13,\"customer_group_id\":14,\"payment_method\":15,\"shipping_information\":16,\"subtotal\":17,\"shipping_and_handling\":18,\"adjustment_positive\":19,\"adjustment_negative\":20,\"order_base_grand_total\":21,\"actions\":22}},\"value\":\"Default View\"}}}','2022-08-23 07:39:59','2022-08-23 07:39:59'),(49,1,'cms_page_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}}}','2022-08-24 09:01:05','2022-08-24 09:01:05'),(50,1,'cms_page_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}},\"value\":\"Default View\"}}}','2022-08-24 09:01:06','2022-08-24 09:01:06'),(51,1,'adobe_stock_images_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":32,\"current\":1,\"value\":32},\"columns\":{\"relevance\":{\"visible\":false,\"sorting\":false},\"creation\":{\"visible\":false,\"sorting\":false},\"popularity\":{\"visible\":false,\"sorting\":false},\"nb_downloads\":{\"visible\":false,\"sorting\":false},\"undiscovered\":{\"visible\":false,\"sorting\":false},\"thumbnail_url\":{\"visible\":true,\"sorting\":false},\"preview\":{\"visible\":true,\"sorting\":false,\"lastOpenedImage\":false},\"overlay\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"overlay\":0,\"thumbnail_url\":1,\"preview\":2,\"relevance\":3,\"creation\":4,\"popularity\":5,\"nb_downloads\":6,\"undiscovered\":7}},\"value\":\"Default View\"}}}','2022-08-25 14:12:29','2022-08-25 14:12:29'),(52,1,'adobe_stock_images_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":32,\"current\":1,\"value\":32},\"columns\":{\"relevance\":{\"visible\":false,\"sorting\":false},\"creation\":{\"visible\":false,\"sorting\":false},\"popularity\":{\"visible\":false,\"sorting\":false},\"nb_downloads\":{\"visible\":false,\"sorting\":false},\"undiscovered\":{\"visible\":false,\"sorting\":false},\"thumbnail_url\":{\"visible\":true,\"sorting\":false},\"preview\":{\"visible\":true,\"sorting\":false,\"lastOpenedImage\":false},\"overlay\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"overlay\":0,\"thumbnail_url\":1,\"preview\":2,\"relevance\":3,\"creation\":4,\"popularity\":5,\"nb_downloads\":6,\"undiscovered\":7}}}','2022-08-25 14:12:32','2022-08-25 14:12:32'),(53,1,'customer_address_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"country_id\":{\"visible\":true,\"sorting\":false},\"firstname\":{\"visible\":true,\"sorting\":false},\"lastname\":{\"visible\":true,\"sorting\":false},\"street\":{\"visible\":true,\"sorting\":false},\"city\":{\"visible\":true,\"sorting\":false},\"region\":{\"visible\":true,\"sorting\":false},\"postcode\":{\"visible\":true,\"sorting\":false},\"telephone\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"filters\":{\"applied\":{\"placeholder\":true}},\"positions\":{\"ids\":0,\"firstname\":1,\"lastname\":2,\"street\":3,\"city\":4,\"country_id\":5,\"region\":6,\"postcode\":7,\"telephone\":8,\"actions\":9}},\"value\":\"Default View\"}}}','2022-09-16 07:54:46','2022-09-16 07:54:46'),(54,1,'customer_address_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"country_id\":{\"visible\":true,\"sorting\":false},\"firstname\":{\"visible\":true,\"sorting\":false},\"lastname\":{\"visible\":true,\"sorting\":false},\"street\":{\"visible\":true,\"sorting\":false},\"city\":{\"visible\":true,\"sorting\":false},\"region\":{\"visible\":true,\"sorting\":false},\"postcode\":{\"visible\":true,\"sorting\":false},\"telephone\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"filters\":{\"applied\":{\"placeholder\":true}},\"positions\":{\"ids\":0,\"firstname\":1,\"lastname\":2,\"street\":3,\"city\":4,\"country_id\":5,\"region\":6,\"postcode\":7,\"telephone\":8,\"actions\":9}}}','2022-09-16 07:54:47','2022-09-16 07:54:47');
/*!40000 ALTER TABLE `ui_bookmark` ENABLE KEYS */;

--
-- Table structure for table `url_rewrite`
--

DROP TABLE IF EXISTS `url_rewrite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `url_rewrite` (
  `url_rewrite_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rewrite ID',
  `entity_type` varchar(32) NOT NULL COMMENT 'Entity type code',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `request_path` varchar(255) DEFAULT NULL COMMENT 'Request Path',
  `target_path` varchar(255) DEFAULT NULL COMMENT 'Target Path',
  `redirect_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Redirect Type',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description',
  `is_autogenerated` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is rewrite generated automatically flag',
  `metadata` varchar(255) DEFAULT NULL COMMENT 'Meta data for url rewrite',
  PRIMARY KEY (`url_rewrite_id`),
  UNIQUE KEY `URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`),
  KEY `URL_REWRITE_TARGET_PATH` (`target_path`),
  KEY `URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`),
  KEY `URL_REWRITE_ENTITY_ID` (`entity_id`),
  KEY `URL_REWRITE_IS_AUTOGENERATED_METADATA` (`is_autogenerated`,`metadata`)
) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8 COMMENT='Url Rewrites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `url_rewrite`
--

/*!40000 ALTER TABLE `url_rewrite` DISABLE KEYS */;
INSERT INTO `url_rewrite` VALUES (1,'cms-page',1,'no-route','cms/page/view/page_id/1',0,1,NULL,1,NULL),(2,'cms-page',2,'home','cms/page/view/page_id/2',0,1,NULL,1,NULL),(3,'cms-page',3,'enable-cookies','cms/page/view/page_id/3',0,1,NULL,1,NULL),(4,'cms-page',4,'privacy-policy-cookie-restriction-mode','cms/page/view/page_id/4',0,1,NULL,1,NULL),(5,'category',3,'alimentari.html','catalog/category/view/id/3',0,1,NULL,1,NULL),(6,'category',4,'alimentari/consigli-e-promozioni.html','catalog/category/view/id/4',0,1,NULL,1,NULL),(7,'category',5,'alimentari/consigli-e-promozioni/best-sellers.html','catalog/category/view/id/5',0,1,NULL,1,NULL),(8,'category',6,'alimentari/consigli-e-promozioni/marchio-trentino.html','catalog/category/view/id/6',0,1,NULL,1,NULL),(9,'category',7,'alimentari/consigli-e-promozioni/promozioni.html','catalog/category/view/id/7',0,1,NULL,1,NULL),(10,'category',8,'alimentari/consigli-e-promozioni/selezioni-del-mese.html','catalog/category/view/id/8',0,1,NULL,1,NULL),(11,'category',9,'alimentari/consigli-e-promozioni/altre-selezioni.html','catalog/category/view/id/9',0,1,NULL,1,NULL),(12,'category',10,'alimentari/consigli-e-promozioni/ricette.html','catalog/category/view/id/10',0,1,NULL,1,NULL),(13,'category',11,'alimentari/formaggi-e-lattici.html','catalog/category/view/id/11',0,1,NULL,1,NULL),(14,'category',12,'alimentari/formaggi-e-lattici/formaggi.html','catalog/category/view/id/12',0,1,NULL,1,NULL),(15,'category',13,'alimentari/formaggi-e-lattici/lattici-yogurt.html','catalog/category/view/id/13',0,1,NULL,1,NULL),(16,'category',14,'alimentari/formaggi-e-lattici/lattici-yogurt/latte.html','catalog/category/view/id/14',0,1,NULL,1,NULL),(17,'category',15,'alimentari/formaggi-e-lattici/lattici-yogurt/mozzarelle.html','catalog/category/view/id/15',0,1,NULL,1,NULL),(18,'category',16,'alimentari/formaggi-e-lattici/lattici-yogurt/yogurt.html','catalog/category/view/id/16',0,1,NULL,1,NULL),(19,'category',17,'alimentari/carni-e-salumi.html','catalog/category/view/id/17',0,1,NULL,1,NULL),(20,'category',18,'alimentari/carni-e-salumi/salumi.html','catalog/category/view/id/18',0,1,NULL,1,NULL),(21,'category',19,'alimentari/carni-e-salumi/carni.html','catalog/category/view/id/19',0,1,NULL,1,NULL),(22,'category',20,'alimentari/carni-e-salumi/carni/carne-salada.html','catalog/category/view/id/20',0,1,NULL,1,NULL),(23,'category',21,'alimentari/carni-e-salumi/carni/carne-fumada.html','catalog/category/view/id/21',0,1,NULL,1,NULL),(24,'category',22,'alimentari/carni-e-salumi/carni/carne-salmistrata.html','catalog/category/view/id/22',0,1,NULL,1,NULL),(25,'category',23,'alimentari/carni-e-salumi/carni/tagli-di-carne.html','catalog/category/view/id/23',0,1,NULL,1,NULL),(26,'category',24,'alimentari/frutta-e-verdura.html','catalog/category/view/id/24',0,1,NULL,1,NULL),(27,'category',25,'alimentari/frutta-e-verdura/frutta.html','catalog/category/view/id/25',0,1,NULL,1,NULL),(28,'category',26,'alimentari/frutta-e-verdura/verdura.html','catalog/category/view/id/26',0,1,NULL,1,NULL),(29,'category',27,'alimentari/pesce.html','catalog/category/view/id/27',0,1,NULL,1,NULL),(30,'category',28,'alimentari/pesce/trota.html','catalog/category/view/id/28',0,1,NULL,1,NULL),(31,'category',29,'alimentari/pesce/salmerino.html','catalog/category/view/id/29',0,1,NULL,1,NULL),(32,'category',30,'alimentari/pane-pasta-farine.html','catalog/category/view/id/30',0,1,NULL,1,NULL),(33,'category',31,'alimentari/pane-pasta-farine/farine.html','catalog/category/view/id/31',0,1,NULL,1,NULL),(34,'category',32,'alimentari/pane-pasta-farine/pasta.html','catalog/category/view/id/32',0,1,NULL,1,NULL),(35,'category',33,'alimentari/pane-pasta-farine/pane-e-derivati.html','catalog/category/view/id/33',0,1,NULL,1,NULL),(36,'category',34,'alimentari/dispensa.html','catalog/category/view/id/34',0,1,NULL,1,NULL),(37,'category',35,'alimentari/dispensa/olio-aceto-spezie.html','catalog/category/view/id/35',0,1,NULL,1,NULL),(38,'category',36,'alimentari/dispensa/passate-sughi-conserve-e-salse.html','catalog/category/view/id/36',0,1,NULL,1,NULL),(39,'category',37,'alimentari/dolci-e-snack.html','catalog/category/view/id/37',0,1,NULL,1,NULL),(40,'category',38,'alimentari/dolci-e-snack/marmellate.html','catalog/category/view/id/38',0,1,NULL,1,NULL),(41,'category',39,'alimentari/dolci-e-snack/pasticceria-e-biscotti.html','catalog/category/view/id/39',0,1,NULL,1,NULL),(42,'category',40,'alimentari/dolci-e-snack/snack.html','catalog/category/view/id/40',0,1,NULL,1,NULL),(43,'category',41,'alimentari/miele-e-tisane.html','catalog/category/view/id/41',0,1,NULL,1,NULL),(44,'category',42,'alimentari/miele-e-tisane/marmellate.html','catalog/category/view/id/42',0,1,NULL,1,NULL),(45,'category',43,'alimentari/miele-e-tisane/tisane.html','catalog/category/view/id/43',0,1,NULL,1,NULL),(46,'category',44,'alimentari/miele-e-tisane/caffe.html','catalog/category/view/id/44',0,1,NULL,1,NULL),(47,'category',45,'alimentari/vino.html','catalog/category/view/id/45',0,1,NULL,1,NULL),(48,'category',46,'alimentari/vino/vino-rosso-e-rosato.html','catalog/category/view/id/46',0,1,NULL,1,NULL),(49,'category',47,'alimentari/vino/vino-bianco.html','catalog/category/view/id/47',0,1,NULL,1,NULL),(50,'category',48,'alimentari/vino/bollicine.html','catalog/category/view/id/48',0,1,NULL,1,NULL),(52,'category',50,'alimentari/birra-sidro-e-bevande.html','catalog/category/view/id/50',0,1,NULL,1,NULL),(53,'category',51,'alimentari/birra-sidro-e-bevande/birra-chiara.html','catalog/category/view/id/51',0,1,NULL,1,NULL),(54,'category',52,'alimentari/birra-sidro-e-bevande/birra-ambrata.html','catalog/category/view/id/52',0,1,NULL,1,NULL),(55,'category',53,'alimentari/birra-sidro-e-bevande/birra-scura.html','catalog/category/view/id/53',0,1,NULL,1,NULL),(56,'category',54,'alimentari/birra-sidro-e-bevande/sidro.html','catalog/category/view/id/54',0,1,NULL,1,NULL),(57,'category',55,'alimentari/birra-sidro-e-bevande/succhi.html','catalog/category/view/id/55',0,1,NULL,1,NULL),(58,'category',56,'alimentari/liquori-e-distillati.html','catalog/category/view/id/56',0,1,NULL,1,NULL),(59,'category',57,'alimentari/liquori-e-distillati/grappa.html','catalog/category/view/id/57',0,1,NULL,1,NULL),(60,'category',58,'alimentari/liquori-e-distillati/liquori.html','catalog/category/view/id/58',0,1,NULL,1,NULL),(61,'category',59,'alimentari/prodotti-e-territori.html','catalog/category/view/id/59',0,1,NULL,1,NULL),(62,'category',60,'alimentari/prodotti-e-territori/val-di-sole.html','catalog/category/view/id/60',0,1,NULL,1,NULL),(63,'category',61,'alimentari/prodotti-e-territori/val-di-non.html','catalog/category/view/id/61',0,1,NULL,1,NULL),(64,'category',62,'alimentari/prodotti-e-territori/val-di-fiemme.html','catalog/category/view/id/62',0,1,NULL,1,NULL),(65,'category',63,'alimentari/prodotti-e-territori/val-di-fassa.html','catalog/category/view/id/63',0,1,NULL,1,NULL),(66,'category',64,'alimentari/prodotti-e-territori/garda-trentino-e-valle-di-ledro.html','catalog/category/view/id/64',0,1,NULL,1,NULL),(67,'category',65,'alimentari/prodotti-e-territori/rovereto-e-vallagarina.html','catalog/category/view/id/65',0,1,NULL,1,NULL),(68,'category',66,'alimentari/prodotti-e-territori/trento-e-monte-bondone.html','catalog/category/view/id/66',0,1,NULL,1,NULL),(69,'category',67,'alimentari/prodotti-e-territori/rotaliana-e-paganella.html','catalog/category/view/id/67',0,1,NULL,1,NULL),(70,'category',68,'alimentari/prodotti-e-territori/valsugana.html','catalog/category/view/id/68',0,1,NULL,1,NULL),(71,'category',69,'alimentari/prodotti-e-territori/primiero.html','catalog/category/view/id/69',0,1,NULL,1,NULL),(72,'category',70,'alimentari/prodotti-e-territori/altopiano-di-pine-e-valle-di-cembra.html','catalog/category/view/id/70',0,1,NULL,1,NULL),(73,'category',71,'alimentari/prodotti-e-territori/giudicarie-e-rendena.html','catalog/category/view/id/71',0,1,NULL,1,NULL),(74,'category',72,'alimentari/prodotti-e-territori/altipiani-cimbri.html','catalog/category/view/id/72',0,1,NULL,1,NULL),(75,'category',73,'alimentari/prodotti-e-territori/valle-dei-laghi.html','catalog/category/view/id/73',0,1,NULL,1,NULL),(76,'category',74,'prodotti-del-territorio.html','catalog/category/view/id/74',0,1,NULL,1,NULL),(77,'category',75,'prodotti-del-territorio/arredamento.html','catalog/category/view/id/75',0,1,NULL,1,NULL),(78,'category',76,'prodotti-del-territorio/prodotti-termali.html','catalog/category/view/id/76',0,1,NULL,1,NULL),(79,'category',77,'prodotti-del-territorio/abbigliamento.html','catalog/category/view/id/77',0,1,NULL,1,NULL),(80,'category',78,'prodotti-del-territorio/sport.html','catalog/category/view/id/78',0,1,NULL,1,NULL),(81,'category',79,'prodotti-del-territorio/artigianato-artistico.html','catalog/category/view/id/79',0,1,NULL,1,NULL),(82,'product',1,'vino-test.html','catalog/product/view/id/1',0,1,NULL,1,NULL),(83,'product',1,'alimentari/vino-test.html','catalog/product/view/id/1/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(84,'product',2,'primo-prodotto-delta-informatica.html','catalog/product/view/id/2',0,1,NULL,1,NULL),(85,'product',2,'alimentari/vino/primo-prodotto-delta-informatica.html','catalog/product/view/id/2/category/45',0,1,NULL,1,'{\"category_id\":\"45\"}'),(86,'product',2,'alimentari/primo-prodotto-delta-informatica.html','catalog/product/view/id/2/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(90,'category',49,'alimentari/vino/vini-dolci-e-liquorosi.html','catalog/category/view/id/49',0,1,NULL,1,NULL),(91,'category',49,'alimentari/vino/vini-dolci-e-luiiquorosi.html','alimentari/vino/vini-dolci-e-liquorosi.html',301,1,NULL,0,NULL),(92,'product',9,'prodotto-lorem-ipsum.html','catalog/product/view/id/9',0,1,NULL,1,NULL),(93,'product',9,'prodotti-del-territorio/prodotto-lorem-ipsum.html','catalog/product/view/id/9/category/74',0,1,NULL,1,'{\"category_id\":\"74\"}'),(94,'product',10,'la-birra.html','catalog/product/view/id/10',0,1,NULL,1,NULL),(95,'product',10,'alimentari/la-birra.html','catalog/product/view/id/10/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(96,'product',11,'la-morte.html','catalog/product/view/id/11',0,1,NULL,1,NULL),(97,'product',11,'alimentari/la-morte.html','catalog/product/view/id/11/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(98,'product',12,'bepi-merlot.html','catalog/product/view/id/12',0,1,NULL,1,NULL),(99,'product',12,'alimentari/bepi-merlot.html','catalog/product/view/id/12/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(100,'product',13,'spremuta-di-fragole.html','catalog/product/view/id/13',0,1,NULL,1,NULL),(101,'product',13,'alimentari/spremuta-di-fragole.html','catalog/product/view/id/13/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(102,'product',14,'formaj.html','catalog/product/view/id/14',0,1,NULL,1,NULL),(103,'product',14,'alimentari/formaj.html','catalog/product/view/id/14/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(104,'product',15,'prodotto-lorem-ipsum-2.html','catalog/product/view/id/15',0,1,NULL,1,NULL),(105,'product',15,'alimentari/prodotto-lorem-ipsum-2.html','catalog/product/view/id/15/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(106,'product',16,'prodotto-lorem-ipsum-3.html','catalog/product/view/id/16',0,1,NULL,1,NULL),(107,'product',16,'alimentari/prodotto-lorem-ipsum-3.html','catalog/product/view/id/16/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(108,'product',17,'prodotto-lorem-ipsum-4.html','catalog/product/view/id/17',0,1,NULL,1,NULL),(109,'product',17,'alimentari/prodotto-lorem-ipsum-4.html','catalog/product/view/id/17/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(110,'product',18,'prodotto-lorem-ipsum-5.html','catalog/product/view/id/18',0,1,NULL,1,NULL),(111,'product',18,'alimentari/prodotto-lorem-ipsum-5.html','catalog/product/view/id/18/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(112,'product',19,'prodotto-lorem-ipsum-6.html','catalog/product/view/id/19',0,1,NULL,1,NULL),(113,'product',19,'alimentari/prodotto-lorem-ipsum-6.html','catalog/product/view/id/19/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(114,'product',20,'prodotto-lorem-ipsum-7.html','catalog/product/view/id/20',0,1,NULL,1,NULL),(115,'product',20,'alimentari/prodotto-lorem-ipsum-7.html','catalog/product/view/id/20/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(116,'product',21,'prodotto-lorem-ipsum-8.html','catalog/product/view/id/21',0,1,NULL,1,NULL),(117,'product',21,'alimentari/prodotto-lorem-ipsum-8.html','catalog/product/view/id/21/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(118,'product',22,'prodotto-lorem-ipsum-9.html','catalog/product/view/id/22',0,1,NULL,1,NULL),(119,'product',22,'alimentari/prodotto-lorem-ipsum-9.html','catalog/product/view/id/22/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(121,'category',80,'intrentino.html','catalog/category/view/id/80',0,1,NULL,1,NULL);
/*!40000 ALTER TABLE `url_rewrite` ENABLE KEYS */;

--
-- Table structure for table `variable`
--

DROP TABLE IF EXISTS `variable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `variable` (
  `variable_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Variable Code',
  `name` varchar(255) DEFAULT NULL COMMENT 'Variable Name',
  PRIMARY KEY (`variable_id`),
  UNIQUE KEY `VARIABLE_CODE` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variables';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable`
--

/*!40000 ALTER TABLE `variable` DISABLE KEYS */;
/*!40000 ALTER TABLE `variable` ENABLE KEYS */;

--
-- Table structure for table `variable_value`
--

DROP TABLE IF EXISTS `variable_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `variable_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Value ID',
  `variable_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Variable ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `plain_value` text DEFAULT NULL COMMENT 'Plain Text Value',
  `html_value` text DEFAULT NULL COMMENT 'Html Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`),
  KEY `VARIABLE_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `VARIABLE_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `VARIABLE_VALUE_VARIABLE_ID_VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `variable` (`variable_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable_value`
--

/*!40000 ALTER TABLE `variable_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `variable_value` ENABLE KEYS */;

--
-- Table structure for table `vault_payment_token`
--

DROP TABLE IF EXISTS `vault_payment_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `vault_payment_token` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `public_hash` varchar(128) NOT NULL COMMENT 'Hash code for using on frontend',
  `payment_method_code` varchar(128) NOT NULL COMMENT 'Payment method code',
  `type` varchar(128) NOT NULL COMMENT 'Type',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Expires At',
  `gateway_token` varchar(255) NOT NULL COMMENT 'Gateway Token',
  `details` text DEFAULT NULL COMMENT 'Details',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_visible` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`),
  UNIQUE KEY `VAULT_PAYMENT_TOKEN_PAYMENT_METHOD_CODE_CSTR_ID_GATEWAY_TOKEN` (`payment_method_code`,`customer_id`,`gateway_token`),
  KEY `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  CONSTRAINT `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vault tokens of payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vault_payment_token`
--

/*!40000 ALTER TABLE `vault_payment_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `vault_payment_token` ENABLE KEYS */;

--
-- Table structure for table `vault_payment_token_order_payment_link`
--

DROP TABLE IF EXISTS `vault_payment_token_order_payment_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `vault_payment_token_order_payment_link` (
  `order_payment_id` int(10) unsigned NOT NULL COMMENT 'Order payment ID',
  `payment_token_id` int(10) unsigned NOT NULL COMMENT 'Payment token ID',
  PRIMARY KEY (`order_payment_id`,`payment_token_id`),
  KEY `FK_4ED894655446D385894580BECA993862` (`payment_token_id`),
  CONSTRAINT `FK_4ED894655446D385894580BECA993862` FOREIGN KEY (`payment_token_id`) REFERENCES `vault_payment_token` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CF37B9D854256534BE23C818F6291CA2` FOREIGN KEY (`order_payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order payments to vault token';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vault_payment_token_order_payment_link`
--

/*!40000 ALTER TABLE `vault_payment_token_order_payment_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `vault_payment_token_order_payment_link` ENABLE KEYS */;

--
-- Table structure for table `weee_tax`
--

DROP TABLE IF EXISTS `weee_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `weee_tax` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `country` varchar(2) DEFAULT NULL COMMENT 'Country',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Value',
  `state` int(11) NOT NULL DEFAULT 0 COMMENT 'State',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`value_id`),
  KEY `WEEE_TAX_WEBSITE_ID` (`website_id`),
  KEY `WEEE_TAX_ENTITY_ID` (`entity_id`),
  KEY `WEEE_TAX_COUNTRY` (`country`),
  KEY `WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `WEEE_TAX_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `directory_country` (`country_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Tax';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `weee_tax`
--

/*!40000 ALTER TABLE `weee_tax` DISABLE KEYS */;
/*!40000 ALTER TABLE `weee_tax` ENABLE KEYS */;

--
-- Table structure for table `widget`
--

DROP TABLE IF EXISTS `widget`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget` (
  `widget_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Widget ID',
  `widget_code` varchar(255) DEFAULT NULL COMMENT 'Widget code for template directive',
  `widget_type` varchar(255) DEFAULT NULL COMMENT 'Widget Type',
  `parameters` text DEFAULT NULL COMMENT 'Parameters',
  PRIMARY KEY (`widget_id`),
  KEY `WIDGET_WIDGET_CODE` (`widget_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget`
--

/*!40000 ALTER TABLE `widget` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget` ENABLE KEYS */;

--
-- Table structure for table `widget_instance`
--

DROP TABLE IF EXISTS `widget_instance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_instance` (
  `instance_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Instance ID',
  `instance_type` varchar(255) DEFAULT NULL COMMENT 'Instance Type',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Widget Title',
  `store_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Store ids',
  `widget_parameters` text DEFAULT NULL COMMENT 'Widget parameters',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort order',
  PRIMARY KEY (`instance_id`),
  KEY `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance`
--

/*!40000 ALTER TABLE `widget_instance` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget_instance` ENABLE KEYS */;

--
-- Table structure for table `widget_instance_page`
--

DROP TABLE IF EXISTS `widget_instance_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_instance_page` (
  `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Page ID',
  `instance_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Instance ID',
  `page_group` varchar(25) DEFAULT NULL COMMENT 'Block Group Type',
  `layout_handle` varchar(255) DEFAULT NULL COMMENT 'Layout Handle',
  `block_reference` varchar(255) DEFAULT NULL COMMENT 'Container',
  `page_for` varchar(25) DEFAULT NULL COMMENT 'For instance entities',
  `entities` text DEFAULT NULL COMMENT 'Catalog entities (comma separated)',
  `page_template` varchar(255) DEFAULT NULL COMMENT 'Path to widget template',
  PRIMARY KEY (`page_id`),
  KEY `WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`),
  CONSTRAINT `WIDGET_INSTANCE_PAGE_INSTANCE_ID_WIDGET_INSTANCE_INSTANCE_ID` FOREIGN KEY (`instance_id`) REFERENCES `widget_instance` (`instance_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance_page`
--

/*!40000 ALTER TABLE `widget_instance_page` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget_instance_page` ENABLE KEYS */;

--
-- Table structure for table `widget_instance_page_layout`
--

DROP TABLE IF EXISTS `widget_instance_page_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_instance_page_layout` (
  `page_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Page ID',
  `layout_update_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Layout Update ID',
  PRIMARY KEY (`layout_update_id`,`page_id`),
  KEY `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`),
  CONSTRAINT `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID_WIDGET_INSTANCE_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `widget_instance_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `WIDGET_INSTANCE_PAGE_LYT_LYT_UPDATE_ID_LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance_page_layout`
--

/*!40000 ALTER TABLE `widget_instance_page_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget_instance_page_layout` ENABLE KEYS */;

--
-- Table structure for table `wishlist`
--

DROP TABLE IF EXISTS `wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wishlist` (
  `wishlist_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `shared` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sharing flag (0 or 1)',
  `sharing_code` varchar(32) DEFAULT NULL COMMENT 'Sharing encrypted code',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Last updated date',
  PRIMARY KEY (`wishlist_id`),
  UNIQUE KEY `WISHLIST_CUSTOMER_ID` (`customer_id`),
  KEY `WISHLIST_SHARED` (`shared`),
  CONSTRAINT `WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist`
--

/*!40000 ALTER TABLE `wishlist` DISABLE KEYS */;
INSERT INTO `wishlist` VALUES (1,1,0,'YeHtCHXEIEWWMorsRpwtYsGT2VJiZUz6','2022-08-04 16:23:32'),(2,2,0,'posrsfyIaZnBTW7QHJR5YFeL6Wecyk0Y','2022-08-09 08:04:53'),(3,3,0,'lwq8O5VSv1QVhB5il7f43Q6vQ1H5Yr3i','2022-09-02 15:27:26'),(5,5,0,'Be0EMIlLPT0N4KeGTlifFgn19GNuNLWf','2022-09-16 07:55:58');
/*!40000 ALTER TABLE `wishlist` ENABLE KEYS */;

--
-- Table structure for table `wishlist_item`
--

DROP TABLE IF EXISTS `wishlist_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wishlist_item` (
  `wishlist_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID',
  `wishlist_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Wishlist ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Add date and time',
  `description` text DEFAULT NULL COMMENT 'Short description of wish list item',
  `qty` decimal(12,4) NOT NULL COMMENT 'Qty',
  PRIMARY KEY (`wishlist_item_id`),
  KEY `WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`),
  KEY `WISHLIST_ITEM_PRODUCT_ID` (`product_id`),
  KEY `WISHLIST_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Wishlist items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist_item`
--

/*!40000 ALTER TABLE `wishlist_item` DISABLE KEYS */;
INSERT INTO `wishlist_item` VALUES (1,3,10,1,'2022-09-05 08:34:40',NULL,1.0000),(2,3,14,1,'2022-09-06 11:59:39',NULL,3.0000),(3,3,13,1,'2022-09-06 12:05:10',NULL,1.0000);
/*!40000 ALTER TABLE `wishlist_item` ENABLE KEYS */;

--
-- Table structure for table `wishlist_item_option`
--

DROP TABLE IF EXISTS `wishlist_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wishlist_item_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `wishlist_item_id` int(10) unsigned NOT NULL COMMENT 'Wishlist Item ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `FK_A014B30B04B72DD0EAB3EECD779728D6` (`wishlist_item_id`),
  CONSTRAINT `FK_A014B30B04B72DD0EAB3EECD779728D6` FOREIGN KEY (`wishlist_item_id`) REFERENCES `wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist_item_option`
--

/*!40000 ALTER TABLE `wishlist_item_option` DISABLE KEYS */;
INSERT INTO `wishlist_item_option` VALUES (1,1,10,'info_buyRequest','{\"product\":\"10\",\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"form_key\":\"MdPIC5lg72NKX6JJ\",\"action\":\"add\"}'),(2,2,14,'info_buyRequest','{\"product\":\"14\",\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"form_key\":\"qsKe8dTNiQgt8Bww\",\"action\":\"add\"}'),(3,3,13,'info_buyRequest','{\"product\":\"13\",\"uenc\":\"aHR0cHM6Ly9tYWdlbnRvLnRlc3Qv\",\"form_key\":\"qsKe8dTNiQgt8Bww\",\"action\":\"add\"}');
/*!40000 ALTER TABLE `wishlist_item_option` ENABLE KEYS */;

--
-- Final view structure for view `inventory_stock_1`
--

/*!50001 DROP VIEW IF EXISTS `inventory_stock_1`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8 */;
/*!50001 SET character_set_results     = utf8 */;
/*!50001 SET collation_connection      = utf8_general_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`indaco`@`localhost` SQL SECURITY INVOKER */
/*!50001 VIEW `inventory_stock_1` AS select distinct `legacy_stock_status`.`product_id` AS `product_id`,`legacy_stock_status`.`website_id` AS `website_id`,`legacy_stock_status`.`stock_id` AS `stock_id`,`legacy_stock_status`.`qty` AS `quantity`,`legacy_stock_status`.`stock_status` AS `is_salable`,`product`.`sku` AS `sku` from (`cataloginventory_stock_status` `legacy_stock_status` join `catalog_product_entity` `product` on(`legacy_stock_status`.`product_id` = `product`.`entity_id`)) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-09-19  8:48:12