-- phpMyAdmin SQL Dump
-- version 5.2.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 12, 2026 at 03:49 PM
-- Server version: 10.2.36-MariaDB
-- PHP Version: 8.4.19

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `bishmoy_mg`
--

-- --------------------------------------------------------

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

CREATE TABLE `adminnotification_inbox` (
  `notification_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox';

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

INSERT INTO `adminnotification_inbox` (`notification_id`, `severity`, `date_added`, `title`, `description`, `url`, `is_read`, `is_remove`) VALUES
(1, 4, '2020-09-16 04:39:53', 'Deprecation Notice', 'Catalog Search is currently configured to use the MySQL engine, which has been deprecated. Consider migrating to one of\nthe Elasticsearch engines now to ensure there are no service interruptions during your next upgrade.', '', 0, 0),
(2, 4, '2020-09-16 04:50:15', 'Disable Notice', 'To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.', '', 0, 0);

-- --------------------------------------------------------

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

CREATE TABLE `admin_analytics_usage_version_log` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Log ID',
  `last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Notification Viewer Log Table';

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

INSERT INTO `admin_analytics_usage_version_log` (`id`, `last_viewed_in_version`) VALUES
(1, '2.3.5-p1');

-- --------------------------------------------------------

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

CREATE TABLE `admin_passwords` (
  `password_id` int(10) UNSIGNED NOT NULL COMMENT 'Password ID',
  `user_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'User ID',
  `password_hash` varchar(100) 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Passwords';

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

INSERT INTO `admin_passwords` (`password_id`, `user_id`, `password_hash`, `expires`, `last_updated`) VALUES
(1, 1, '35ae7295e90535b4204d391fe9633c699428bfc89f712f108ea82b32c25c9bfd:DuAuNPtp9vAdRV02:2', 0, 1600231840);

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin System Messages';

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

INSERT INTO `admin_system_messages` (`identity`, `severity`, `created_at`) VALUES
('da332d712f3215b9b94bfa268c398323', 2, '2020-09-16 07:23:49');

-- --------------------------------------------------------

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

CREATE TABLE `admin_user` (
  `user_id` int(10) UNSIGNED NOT NULL 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',
  `refresh_token` text DEFAULT NULL COMMENT 'Email connector refresh token'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin User Table';

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

INSERT INTO `admin_user` (`user_id`, `firstname`, `lastname`, `email`, `username`, `password`, `created`, `modified`, `logdate`, `lognum`, `reload_acl_flag`, `is_active`, `extra`, `rp_token`, `rp_token_created_at`, `interface_locale`, `failures_num`, `first_failure`, `lock_expires`, `refresh_token`) VALUES
(1, 'ramyadmin', 'ramyadmin', 'khanmrh@gmail.com', 'ramyadmin', '35ae7295e90535b4204d391fe9633c699428bfc89f712f108ea82b32c25c9bfd:DuAuNPtp9vAdRV02:2', '2020-09-16 04:50:40', '2020-09-16 07:23:39', '2020-09-16 07:23:39', 1, 0, 1, NULL, NULL, NULL, 'en_US', 0, NULL, NULL, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `admin_user_session` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `session_id` varchar(128) NOT NULL COMMENT 'Session ID value',
  `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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin User sessions table';

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

INSERT INTO `admin_user_session` (`id`, `session_id`, `user_id`, `status`, `created_at`, `updated_at`, `ip`) VALUES
(1, 'cac436nqoo5ga7rq425foko0sq', 1, 1, '2020-09-16 07:23:40', '2020-09-16 07:25:35', '180.211.186.82');

-- --------------------------------------------------------

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

CREATE TABLE `adobe_stock_asset` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe Stock Asset';

-- --------------------------------------------------------

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

CREATE TABLE `adobe_stock_category` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe Stock Category';

-- --------------------------------------------------------

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

CREATE TABLE `adobe_stock_creator` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Asset creator''s name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe Stock Creator';

-- --------------------------------------------------------

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

CREATE TABLE `adobe_user_profile` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe IMS User Profile';

-- --------------------------------------------------------

--
-- Table structure for table `amazon_customer`
--

CREATE TABLE `amazon_customer` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity_id',
  `customer_id` int(10) UNSIGNED NOT NULL COMMENT 'Customer_id',
  `amazon_id` varchar(255) NOT NULL COMMENT 'Amazon_id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_customer';

-- --------------------------------------------------------

--
-- Table structure for table `amazon_pending_authorization`
--

CREATE TABLE `amazon_pending_authorization` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity_id',
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'Order_id',
  `payment_id` int(10) UNSIGNED NOT NULL COMMENT 'Payment_id',
  `authorization_id` varchar(255) DEFAULT NULL COMMENT 'Authorization_id',
  `created_at` datetime NOT NULL COMMENT 'Created_at',
  `updated_at` datetime DEFAULT NULL COMMENT 'Updated_at',
  `processed` smallint(5) UNSIGNED DEFAULT 0 COMMENT 'Initial authorization processed',
  `capture` smallint(5) UNSIGNED DEFAULT 0 COMMENT 'Initial authorization has capture',
  `capture_id` varchar(255) DEFAULT NULL COMMENT 'Initial authorization capture id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_pending_authorization';

-- --------------------------------------------------------

--
-- Table structure for table `amazon_pending_capture`
--

CREATE TABLE `amazon_pending_capture` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity_id',
  `capture_id` varchar(255) NOT NULL COMMENT 'Capture_id',
  `created_at` datetime NOT NULL COMMENT 'Created_at',
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'order id',
  `payment_id` int(10) UNSIGNED NOT NULL COMMENT 'payment id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_pending_capture';

-- --------------------------------------------------------

--
-- Table structure for table `amazon_pending_refund`
--

CREATE TABLE `amazon_pending_refund` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity_id',
  `refund_id` varchar(255) NOT NULL COMMENT 'Refund_id',
  `created_at` datetime NOT NULL COMMENT 'Created_at',
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'Order_id',
  `payment_id` int(10) UNSIGNED NOT NULL COMMENT 'Payment_id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_pending_refund';

-- --------------------------------------------------------

--
-- Table structure for table `amazon_quote`
--

CREATE TABLE `amazon_quote` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `quote_id` int(10) UNSIGNED NOT NULL COMMENT 'Quote ID',
  `amazon_order_reference_id` varchar(255) NOT NULL COMMENT 'Amazon Order Reference ID',
  `sandbox_simulation_reference` varchar(255) DEFAULT NULL COMMENT 'Sandbox simulation reference',
  `confirmed` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Quote confirmed with Amazon'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_quote';

-- --------------------------------------------------------

--
-- Table structure for table `amazon_sales_order`
--

CREATE TABLE `amazon_sales_order` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'Order ID',
  `amazon_order_reference_id` varchar(255) NOT NULL COMMENT 'Amazon Order Reference ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_sales_order';

-- --------------------------------------------------------

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

CREATE TABLE `authorization_role` (
  `role_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';

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

INSERT INTO `authorization_role` (`role_id`, `parent_id`, `tree_level`, `sort_order`, `role_type`, `user_id`, `user_type`, `role_name`) VALUES
(1, 0, 1, 1, 'G', 0, '2', 'Administrators'),
(2, 1, 2, 0, 'U', 1, '2', 'ramyadmin');

-- --------------------------------------------------------

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

CREATE TABLE `authorization_rule` (
  `rule_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table';

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

INSERT INTO `authorization_rule` (`rule_id`, `role_id`, `resource_id`, `privileges`, `permission`) VALUES
(1, 1, 'Magento_Backend::all', NULL, 'allow');

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Caches';

-- --------------------------------------------------------

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

CREATE TABLE `cache_tag` (
  `tag` varchar(100) NOT NULL COMMENT 'Tag',
  `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Caches';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Count Login Attempts';

-- --------------------------------------------------------

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

CREATE TABLE `cataloginventory_stock` (
  `stock_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Stock ID',
  `website_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Website ID',
  `stock_name` varchar(255) DEFAULT NULL COMMENT 'Stock Name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock';

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

INSERT INTO `cataloginventory_stock` (`stock_id`, `website_id`, `stock_name`) VALUES
(1, 0, 'Default');

-- --------------------------------------------------------

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

CREATE TABLE `cataloginventory_stock_item` (
  `item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Item';

--
-- Triggers `cataloginventory_stock_item`
--
DELIMITER $$
CREATE TRIGGER `trg_cataloginventory_stock_item_after_delete` AFTER DELETE ON `cataloginventory_stock_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`product_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_cataloginventory_stock_item_after_insert` AFTER INSERT ON `cataloginventory_stock_item` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`product_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_cataloginventory_stock_item_after_update` AFTER UPDATE ON `cataloginventory_stock_item` FOR EACH ROW BEGIN
IF (NOT(NEW.`item_id` <=> OLD.`item_id`) OR NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`stock_id` <=> OLD.`stock_id`) OR NOT(NEW.`qty` <=> OLD.`qty`) OR NOT(NEW.`min_qty` <=> OLD.`min_qty`) OR NOT(NEW.`use_config_min_qty` <=> OLD.`use_config_min_qty`) OR NOT(NEW.`is_qty_decimal` <=> OLD.`is_qty_decimal`) OR NOT(NEW.`backorders` <=> OLD.`backorders`) OR NOT(NEW.`use_config_backorders` <=> OLD.`use_config_backorders`) OR NOT(NEW.`min_sale_qty` <=> OLD.`min_sale_qty`) OR NOT(NEW.`use_config_min_sale_qty` <=> OLD.`use_config_min_sale_qty`) OR NOT(NEW.`max_sale_qty` <=> OLD.`max_sale_qty`) OR NOT(NEW.`use_config_max_sale_qty` <=> OLD.`use_config_max_sale_qty`) OR NOT(NEW.`is_in_stock` <=> OLD.`is_in_stock`) OR NOT(NEW.`low_stock_date` <=> OLD.`low_stock_date`) OR NOT(NEW.`notify_stock_qty` <=> OLD.`notify_stock_qty`) OR NOT(NEW.`use_config_notify_stock_qty` <=> OLD.`use_config_notify_stock_qty`) OR NOT(NEW.`manage_stock` <=> OLD.`manage_stock`) OR NOT(NEW.`use_config_manage_stock` <=> OLD.`use_config_manage_stock`) OR NOT(NEW.`stock_status_changed_auto` <=> OLD.`stock_status_changed_auto`) OR NOT(NEW.`use_config_qty_increments` <=> OLD.`use_config_qty_increments`) OR NOT(NEW.`qty_increments` <=> OLD.`qty_increments`) OR NOT(NEW.`use_config_enable_qty_inc` <=> OLD.`use_config_enable_qty_inc`) OR NOT(NEW.`enable_qty_increments` <=> OLD.`enable_qty_increments`) OR NOT(NEW.`is_decimal_divided` <=> OLD.`is_decimal_divided`) OR NOT(NEW.`website_id` <=> OLD.`website_id`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Idx';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Tmp';

-- --------------------------------------------------------

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

CREATE TABLE `catalogrule` (
  `rule_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Customer Groups Relations';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';

-- --------------------------------------------------------

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

CREATE TABLE `catalogrule_product` (
  `rule_product_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';

-- --------------------------------------------------------

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

CREATE TABLE `catalogrule_product_price` (
  `rule_product_price_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';

-- --------------------------------------------------------

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

CREATE TABLE `catalogrule_product_price_replica` (
  `rule_product_price_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';

-- --------------------------------------------------------

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

CREATE TABLE `catalogrule_product_replica` (
  `rule_product_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';

-- --------------------------------------------------------

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

CREATE TABLE `catalogrule_website` (
  `rule_id` int(10) UNSIGNED NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Website ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Websites Relations';

-- --------------------------------------------------------

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

CREATE TABLE `catalogsearch_recommendations` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Advanced Search Recommendations';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_entity` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Table';

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

INSERT INTO `catalog_category_entity` (`entity_id`, `attribute_set_id`, `parent_id`, `created_at`, `updated_at`, `path`, `position`, `level`, `children_count`) VALUES
(1, 3, 0, '2020-09-16 04:39:49', '2020-09-16 04:39:51', '1', 0, 0, 1),
(2, 3, 1, '2020-09-16 04:39:51', '2020-09-16 04:39:51', '1/2', 1, 1, 0);

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_entity_datetime` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Datetime Attribute Backend Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_entity_decimal` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Decimal Attribute Backend Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_entity_int` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Integer Attribute Backend Table';

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

INSERT INTO `catalog_category_entity_int` (`value_id`, `attribute_id`, `store_id`, `entity_id`, `value`) VALUES
(1, 69, 0, 1, 1),
(2, 46, 0, 2, 1),
(3, 69, 0, 2, 1);

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_entity_text` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Text Attribute Backend Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_entity_varchar` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Varchar Attribute Backend Table';

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

INSERT INTO `catalog_category_entity_varchar` (`value_id`, `attribute_id`, `store_id`, `entity_id`, `value`) VALUES
(1, 45, 0, 1, 'Root Catalog'),
(2, 45, 0, 2, 'Default Category'),
(3, 52, 0, 2, 'PRODUCTS');

-- --------------------------------------------------------

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

CREATE TABLE `catalog_category_product` (
  `entity_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Category Linkage Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1 Replica';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer temporary table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_compare_item` (
  `catalog_compare_item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Compare Table';

-- --------------------------------------------------------

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

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',
  `additional_data` text DEFAULT NULL COMMENT 'Additional swatch attributes data'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog EAV Attribute Table';

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

INSERT INTO `catalog_eav_attribute` (`attribute_id`, `frontend_input_renderer`, `is_global`, `is_visible`, `is_searchable`, `is_filterable`, `is_comparable`, `is_visible_on_front`, `is_html_allowed_on_front`, `is_used_for_price_rules`, `is_filterable_in_search`, `used_in_product_listing`, `used_for_sort_by`, `apply_to`, `is_visible_in_advanced_search`, `position`, `is_wysiwyg_enabled`, `is_used_for_promo_rules`, `is_required_in_admin_store`, `is_used_in_grid`, `is_visible_in_grid`, `is_filterable_in_grid`, `search_weight`, `additional_data`) VALUES
(45, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(46, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(47, NULL, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, NULL, 0, 0, 1, 0, 0, 0, 0, 0, 1, NULL),
(48, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(49, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(50, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(51, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(52, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(53, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(54, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(55, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(56, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(57, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(58, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(59, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(60, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(61, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(62, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(63, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(64, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(65, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(66, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 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, 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, NULL),
(69, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(70, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(71, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 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, NULL),
(73, NULL, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 5, NULL),
(74, NULL, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 6, NULL),
(75, NULL, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, NULL, 1, 0, 1, 0, 0, 0, 0, 0, 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, NULL),
(77, NULL, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 'simple,virtual,configurable,downloadable,bundle', 1, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(78, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'simple,virtual,configurable,downloadable,bundle', 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL),
(79, NULL, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'simple,virtual,configurable,downloadable,bundle', 0, 0, 0, 0, 0, 1, 0, 0, 1, NULL),
(80, NULL, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'simple,virtual,configurable,downloadable,bundle', 0, 0, 0, 0, 0, 1, 0, 0, 1, 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, NULL),
(82, 'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight', 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'simple,virtual,configurable,downloadable,bundle', 0, 0, 0, 0, 0, 1, 0, 1, 1, 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, NULL),
(84, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL),
(85, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL),
(86, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL),
(87, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(88, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(89, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(90, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(91, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 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, 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, NULL),
(94, NULL, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 0, 1, NULL),
(95, NULL, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 0, 1, NULL),
(96, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 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, NULL),
(98, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'simple,virtual,configurable,downloadable,bundle', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(99, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 1, 0, 0, 0, 1, NULL),
(100, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL),
(101, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 0, 1, NULL),
(102, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 0, 1, NULL),
(103, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(104, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 0, 1, 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, NULL),
(106, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(107, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(108, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(109, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(110, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(111, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(112, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(113, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(114, NULL, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'simple,bundle,configurable,grouped', 0, 0, 0, 0, 0, 1, 0, 1, 1, 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, NULL),
(116, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 0, 1, NULL),
(117, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(118, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 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, 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, NULL),
(121, NULL, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(122, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(123, NULL, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL),
(124, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(125, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'downloadable', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(126, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'downloadable', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(127, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'downloadable', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(128, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'downloadable', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(129, '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, NULL),
(130, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'simple,downloadable,virtual,bundle,configurable', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(131, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'bundle', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(132, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'bundle', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(133, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'bundle', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(134, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'bundle', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(135, NULL, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 'bundle', 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(136, NULL, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, NULL),
(137, NULL, 2, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 'simple,virtual,configurable,downloadable,bundle', 0, 0, 0, 0, 0, 1, 0, 1, 1, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_bundle_option` (
  `option_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_bundle_option_value` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option Value';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Price Index';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_bundle_selection` (
  `selection_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection Price';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Stock Index';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity` (
  `entity_id` int(10) UNSIGNED NOT NULL 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) DEFAULT 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table';

--
-- Triggers `catalog_product_entity`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_after_delete` AFTER DELETE ON `catalog_product_entity` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_after_insert` AFTER INSERT ON `catalog_product_entity` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_after_update` AFTER UPDATE ON `catalog_product_entity` FOR EACH ROW BEGIN
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`attribute_set_id` <=> OLD.`attribute_set_id`) OR NOT(NEW.`type_id` <=> OLD.`type_id`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`has_options` <=> OLD.`has_options`) OR NOT(NEW.`required_options` <=> OLD.`required_options`) OR NOT(NEW.`created_at` <=> OLD.`created_at`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`attribute_set_id` <=> OLD.`attribute_set_id`) OR NOT(NEW.`type_id` <=> OLD.`type_id`) OR NOT(NEW.`sku` <=> OLD.`sku`) OR NOT(NEW.`has_options` <=> OLD.`has_options`) OR NOT(NEW.`required_options` <=> OLD.`required_options`) OR NOT(NEW.`created_at` <=> OLD.`created_at`)) THEN INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_datetime` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Datetime Attribute Backend Table';

--
-- Triggers `catalog_product_entity_datetime`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_datetime_after_delete` AFTER DELETE ON `catalog_product_entity_datetime` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_datetime_after_insert` AFTER INSERT ON `catalog_product_entity_datetime` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_datetime_after_update` AFTER UPDATE ON `catalog_product_entity_datetime` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_decimal` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Decimal Attribute Backend Table';

--
-- Triggers `catalog_product_entity_decimal`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_decimal_after_delete` AFTER DELETE ON `catalog_product_entity_decimal` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_decimal_after_insert` AFTER INSERT ON `catalog_product_entity_decimal` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_decimal_after_update` AFTER UPDATE ON `catalog_product_entity_decimal` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_gallery` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Gallery Attribute Backend Table';

--
-- Triggers `catalog_product_entity_gallery`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_gallery_after_delete` AFTER DELETE ON `catalog_product_entity_gallery` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_gallery_after_insert` AFTER INSERT ON `catalog_product_entity_gallery` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_gallery_after_update` AFTER UPDATE ON `catalog_product_entity_gallery` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`position` <=> OLD.`position`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_int` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Integer Attribute Backend Table';

--
-- Triggers `catalog_product_entity_int`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_int_after_delete` AFTER DELETE ON `catalog_product_entity_int` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_int_after_insert` AFTER INSERT ON `catalog_product_entity_int` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_int_after_update` AFTER UPDATE ON `catalog_product_entity_int` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_media_gallery` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Backend Table';

-- --------------------------------------------------------

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

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 COMMENT 'Record ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Value Table';

--
-- Triggers `catalog_product_entity_media_gallery_value`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_media_gallery_value_after_delete` AFTER DELETE ON `catalog_product_entity_media_gallery_value` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_media_gallery_value_after_insert` AFTER INSERT ON `catalog_product_entity_media_gallery_value` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_media_gallery_value_after_update` AFTER UPDATE ON `catalog_product_entity_media_gallery_value` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`label` <=> OLD.`label`) OR NOT(NEW.`position` <=> OLD.`position`) OR NOT(NEW.`disabled` <=> OLD.`disabled`) OR NOT(NEW.`record_id` <=> OLD.`record_id`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Media value to Product entity table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Video Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_text` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Text Attribute Backend Table';

--
-- Triggers `catalog_product_entity_text`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_text_after_delete` AFTER DELETE ON `catalog_product_entity_text` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_text_after_insert` AFTER INSERT ON `catalog_product_entity_text` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_text_after_update` AFTER UPDATE ON `catalog_product_entity_text` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_tier_price` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Attribute Backend Table';

--
-- Triggers `catalog_product_entity_tier_price`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_tier_price_after_delete` AFTER DELETE ON `catalog_product_entity_tier_price` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_tier_price_after_insert` AFTER INSERT ON `catalog_product_entity_tier_price` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_tier_price_after_update` AFTER UPDATE ON `catalog_product_entity_tier_price` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`all_groups` <=> OLD.`all_groups`) OR NOT(NEW.`customer_group_id` <=> OLD.`customer_group_id`) OR NOT(NEW.`qty` <=> OLD.`qty`) OR NOT(NEW.`value` <=> OLD.`value`) OR NOT(NEW.`website_id` <=> OLD.`website_id`) OR NOT(NEW.`percentage_value` <=> OLD.`percentage_value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_entity_varchar` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Varchar Attribute Backend Table';

--
-- Triggers `catalog_product_entity_varchar`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_varchar_after_delete` AFTER DELETE ON `catalog_product_entity_varchar` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_varchar_after_insert` AFTER INSERT ON `catalog_product_entity_varchar` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_entity_varchar_after_update` AFTER UPDATE ON `catalog_product_entity_varchar` FOR EACH ROW BEGIN
IF (NOT(NEW.`value_id` <=> OLD.`value_id`) OR NOT(NEW.`attribute_id` <=> OLD.`attribute_id`) OR NOT(NEW.`store_id` <=> OLD.`store_id`) OR NOT(NEW.`entity_id` <=> OLD.`entity_id`) OR NOT(NEW.`value` <=> OLD.`value`)) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_frontend_action` (
  `action_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Frontend Action Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Idx';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Idx';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Tmp';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Idx';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Tmp';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Tmp';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Indexer Table for price of downloadable products';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary Indexer Table for price of downloadable products';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_index_price_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',
  `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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Temp Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Index Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Website Index Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_link` (
  `link_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Product Linkage Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_link_attribute` (
  `product_link_attribute_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Attribute Table';

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

INSERT INTO `catalog_product_link_attribute` (`product_link_attribute_id`, `link_type_id`, `product_link_attribute_code`, `data_type`) VALUES
(1, 1, 'position', 'int'),
(2, 4, 'position', 'int'),
(3, 5, 'position', 'int'),
(4, 3, 'position', 'int'),
(5, 3, 'qty', 'decimal');

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_link_attribute_decimal` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Decimal Attribute Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_link_attribute_int` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Integer Attribute Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_link_attribute_varchar` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Varchar Attribute Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_link_type` (
  `link_type_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Link Type ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Type Table';

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

INSERT INTO `catalog_product_link_type` (`link_type_id`, `code`) VALUES
(1, 'relation'),
(3, 'super'),
(4, 'up_sell'),
(5, 'cross_sell');

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_option` (
  `option_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_option_price` (
  `option_price_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Price Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_option_title` (
  `option_title_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Title Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_option_type_price` (
  `option_type_price_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Price Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_option_type_title` (
  `option_type_title_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Title Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_option_type_value` (
  `option_type_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Value Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Relation Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_super_attribute` (
  `product_super_attribute_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_super_attribute_label` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Label Table';

-- --------------------------------------------------------

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

CREATE TABLE `catalog_product_super_link` (
  `link_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Link Table';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Website Linkage Table';

--
-- Triggers `catalog_product_website`
--
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_website_after_delete` AFTER DELETE ON `catalog_product_website` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (OLD.`product_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_website_after_insert` AFTER INSERT ON `catalog_product_website` FOR EACH ROW BEGIN
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`product_id`);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_catalog_product_website_after_update` AFTER UPDATE ON `catalog_product_website` FOR EACH ROW BEGIN
IF (NOT(NEW.`product_id` <=> OLD.`product_id`) OR NOT(NEW.`website_id` <=> OLD.`website_id`)) THEN INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='url_rewrite_relation';

-- --------------------------------------------------------

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

CREATE TABLE `checkout_agreement` (
  `agreement_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store';

-- --------------------------------------------------------

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

CREATE TABLE `cms_block` (
  `block_id` smallint(6) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block Table';

-- --------------------------------------------------------

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

CREATE TABLE `cms_block_store` (
  `block_id` smallint(6) NOT NULL,
  `store_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Store ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table';

-- --------------------------------------------------------

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

CREATE TABLE `cms_page` (
  `page_id` smallint(6) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page Table';

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

INSERT INTO `cms_page` (`page_id`, `title`, `page_layout`, `meta_keywords`, `meta_description`, `identifier`, `content_heading`, `content`, `creation_time`, `update_time`, `is_active`, `sort_order`, `layout_update_xml`, `custom_theme`, `custom_root_template`, `custom_layout_update_xml`, `layout_update_selected`, `custom_theme_from`, `custom_theme_to`, `meta_title`) 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', '2020-09-16 04:39:47', '2020-09-16 04:39:47', 1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2, 'Home page', '1column', NULL, NULL, 'home', 'Home Page', '<p>CMS homepage content goes here.</p>\r\n', '2020-09-16 04:39:47', '2020-09-16 04:50:15', 1, 0, '<!--\n    <referenceContainer name=\"right\">\n        <referenceBlock name=\"catalog.compare.sidebar\" remove=\"true\" />\n    </referenceContainer>-->', NULL, NULL, NULL, 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>', '2020-09-16 04:39:47', '2020-09-16 04:39:47', 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>', '2020-09-16 04:39:47', '2020-09-16 04:39:48', 1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `cms_page_store` (
  `page_id` smallint(6) NOT NULL COMMENT 'Entity ID',
  `store_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Store ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table';

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

INSERT INTO `cms_page_store` (`page_id`, `store_id`) VALUES
(1, 0),
(2, 0),
(3, 0),
(4, 0);

-- --------------------------------------------------------

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

CREATE TABLE `core_config_data` (
  `config_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Config Data';

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

INSERT INTO `core_config_data` (`config_id`, `scope`, `scope_id`, `path`, `value`, `updated_at`) VALUES
(1, 'default', 0, 'yotpo/module_info/yotpo_installation_date', '2020-09-16', '2020-09-16 04:39:29'),
(2, 'default', 0, 'yotpo/sync_settings/orders_sync_start_date', '2020-09-16', '2020-09-16 04:39:29'),
(3, 'default', 0, 'web/seo/use_rewrites', '1', '2020-09-16 04:39:37'),
(4, 'default', 0, 'web/unsecure/base_url', 'http://bismoy.com/mg/', '2020-09-16 04:39:37'),
(5, 'default', 0, 'web/secure/base_url', 'https://bismoy.com/mg/', '2020-09-16 04:39:37'),
(6, 'default', 0, 'general/locale/code', 'en_US', '2020-09-16 04:39:38'),
(7, 'default', 0, 'web/secure/use_in_frontend', NULL, '2020-09-16 04:39:38'),
(8, 'default', 0, 'web/secure/use_in_adminhtml', NULL, '2020-09-16 04:39:38'),
(9, 'default', 0, 'general/locale/timezone', 'Asia/Tomsk', '2020-09-16 04:39:38'),
(10, 'default', 0, 'currency/options/base', 'BDT', '2020-09-16 04:39:38'),
(11, 'default', 0, 'currency/options/default', 'BDT', '2020-09-16 04:39:38'),
(12, 'default', 0, 'currency/options/allow', 'BDT', '2020-09-16 04:39:39'),
(13, 'default', 0, 'general/region/display_all', '1', '2020-09-16 04:39:40'),
(14, 'default', 0, 'general/region/state_required', 'AU,BR,CA,CH,CN,CO,EE,ES,HR,IN,LT,LV,MX,PL,RO,US', '2020-09-16 04:39:41'),
(15, 'default', 0, 'catalog/category/root_id', '2', '2020-09-16 04:39:51'),
(16, 'default', 0, 'analytics/subscription/enabled', '1', '2020-09-16 04:50:14'),
(17, 'default', 0, 'crontab/default/jobs/analytics_subscribe/schedule/cron_expr', '0 * * * *', '2020-09-16 04:50:14'),
(18, 'default', 0, 'crontab/default/jobs/analytics_collect_data/schedule/cron_expr', '00 02 * * *', '2020-09-16 04:50:14'),
(19, 'default', 0, 'payment/authorizenet_acceptjs/cctypes', 'AE,VI,MC,DI,JCB,DN', '2020-09-16 04:50:16'),
(20, 'default', 0, 'payment/authorizenet_acceptjs/order_status', 'processing', '2020-09-16 04:50:16'),
(21, 'default', 0, 'payment/authorizenet_acceptjs/payment_action', 'authorize', '2020-09-16 04:50:16'),
(22, 'default', 0, 'payment/authorizenet_acceptjs/currency', 'USD', '2020-09-16 04:50:16'),
(23, 'websites', 1, 'payment/authorizenet_acceptjs/cctypes', 'AE,VI,MC,DI,JCB,DN', '2020-09-16 04:50:16'),
(24, 'websites', 1, 'payment/authorizenet_acceptjs/order_status', 'processing', '2020-09-16 04:50:16'),
(25, 'websites', 1, 'payment/authorizenet_acceptjs/payment_action', 'authorize', '2020-09-16 04:50:16'),
(26, 'websites', 1, 'payment/authorizenet_acceptjs/currency', 'USD', '2020-09-16 04:50:16'),
(27, 'website', 0, 'connector_configuration/transactional_data/order_statuses', 'canceled,closed,complete,fraud,holded,payment_review,paypal_canceled_reversal,paypal_reversed,pending,pending_payment,pending_paypal,processing', '2020-09-16 04:50:20'),
(28, 'website', 0, 'connector_configuration/catalog_sync/catalog_type', 'simple,virtual,configurable,downloadable,grouped,bundle', '2020-09-16 04:50:20'),
(29, 'website', 0, 'connector_configuration/catalog_sync/catalog_visibility', '1,2,3,4', '2020-09-16 04:50:20'),
(30, 'default', 0, 'connector_dynamic_content/external_dynamic_content_urls/passcode', 'GDhCRfNnT0DHsbRWEKBdfamLqX9BWRbn', '2020-09-16 04:50:20'),
(31, 'default', 0, 'connector_automation/review_settings/allow_non_subscribers', '1', '2020-09-16 04:50:20'),
(32, 'default', 0, 'connector_configuration/abandoned_carts/allow_non_subscribers', '1', '2020-09-16 04:50:20'),
(33, 'default', 0, 'sync_settings/addressbook/allow_non_subscribers', '1', '2020-09-16 04:50:20'),
(34, 'default', 0, 'msp_securitysuite_twofactorauth/duo/application_key', 'PW3IjB8DlgYSZkM7E3ep5k9x0iqHoFr2aK8tsGIAuwfJgGvZbFC5bEx2JzIfxhgd', '2020-09-16 04:50:21'),
(35, 'default', 0, 'admin/usage/enabled', '1', '2020-09-16 07:25:16');

-- --------------------------------------------------------

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

CREATE TABLE `cron_schedule` (
  `schedule_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cron Schedule';

-- --------------------------------------------------------

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

CREATE TABLE `customer_address_entity` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity';

-- --------------------------------------------------------

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

CREATE TABLE `customer_address_entity_datetime` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Datetime';

-- --------------------------------------------------------

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

CREATE TABLE `customer_address_entity_decimal` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Decimal';

-- --------------------------------------------------------

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

CREATE TABLE `customer_address_entity_int` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Int';

-- --------------------------------------------------------

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

CREATE TABLE `customer_address_entity_text` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Text';

-- --------------------------------------------------------

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

CREATE TABLE `customer_address_entity_varchar` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Varchar';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute';

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

INSERT INTO `customer_eav_attribute` (`attribute_id`, `is_visible`, `input_filter`, `multiline_count`, `validate_rules`, `is_system`, `sort_order`, `data_model`, `is_used_in_grid`, `is_visible_in_grid`, `is_filterable_in_grid`, `is_searchable_in_grid`) VALUES
(1, 1, NULL, 0, NULL, 1, 10, NULL, 1, 1, 1, 0),
(2, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(3, 1, NULL, 0, NULL, 1, 20, NULL, 1, 1, 0, 1),
(4, 0, NULL, 0, NULL, 0, 30, NULL, 0, 0, 0, 0),
(5, 1, 'trim', 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 40, NULL, 0, 0, 0, 0),
(6, 0, 'trim', 0, NULL, 0, 50, NULL, 0, 0, 0, 0),
(7, 1, 'trim', 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 60, NULL, 0, 0, 0, 0),
(8, 0, NULL, 0, NULL, 0, 70, NULL, 0, 0, 0, 0),
(9, 1, NULL, 0, '{\"input_validation\":\"email\"}', 1, 80, NULL, 1, 1, 1, 1),
(10, 1, NULL, 0, NULL, 1, 25, NULL, 1, 1, 1, 0),
(11, 0, 'date', 0, '{\"input_validation\":\"date\"}', 0, 90, NULL, 1, 1, 1, 0),
(12, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(13, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(14, 0, NULL, 0, '{\"input_validation\":\"date\"}', 1, 0, NULL, 0, 0, 0, 0),
(15, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(16, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(17, 0, NULL, 0, '{\"max_text_length\":255}', 0, 100, NULL, 1, 1, 0, 1),
(18, 0, NULL, 0, NULL, 1, 0, NULL, 1, 1, 1, 0),
(19, 0, NULL, 0, NULL, 0, 0, NULL, 1, 1, 1, 0),
(20, 0, NULL, 0, '[]', 0, 110, NULL, 1, 1, 1, 0),
(21, 1, NULL, 0, NULL, 1, 28, NULL, 0, 0, 0, 0),
(22, 0, NULL, 0, NULL, 0, 10, NULL, 0, 0, 0, 0),
(23, 1, 'trim', 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 20, NULL, 1, 0, 0, 1),
(24, 0, 'trim', 0, NULL, 0, 30, NULL, 0, 0, 0, 0),
(25, 1, 'trim', 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 40, NULL, 1, 0, 0, 1),
(26, 0, NULL, 0, NULL, 0, 50, NULL, 0, 0, 0, 0),
(27, 1, NULL, 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 60, NULL, 1, 0, 0, 1),
(28, 1, NULL, 3, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 70, NULL, 1, 0, 0, 1),
(29, 1, NULL, 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 80, NULL, 1, 0, 0, 1),
(30, 1, NULL, 0, NULL, 1, 90, NULL, 1, 1, 1, 0),
(31, 1, NULL, 0, NULL, 1, 100, NULL, 1, 1, 0, 1),
(32, 1, NULL, 0, NULL, 1, 100, NULL, 0, 0, 0, 0),
(33, 1, NULL, 0, '[]', 1, 110, 'Magento\\Customer\\Model\\Attribute\\Data\\Postcode', 1, 1, 1, 1),
(34, 1, NULL, 0, '{\"max_text_length\":255,\"min_text_length\":1}', 1, 120, NULL, 1, 1, 1, 1),
(35, 0, NULL, 0, '{\"max_text_length\":255,\"min_text_length\":1}', 0, 130, NULL, 1, 0, 0, 1),
(36, 1, NULL, 0, NULL, 1, 140, NULL, 0, 0, 0, 0),
(37, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(38, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(39, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(40, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(41, 0, NULL, 0, NULL, 0, 0, NULL, 0, 0, 0, 0),
(42, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(43, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0),
(44, 0, NULL, 0, NULL, 1, 0, NULL, 0, 0, 0, 0);

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute Website';

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

INSERT INTO `customer_eav_attribute_website` (`attribute_id`, `website_id`, `is_visible`, `is_required`, `default_value`, `multiline_count`) 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);

-- --------------------------------------------------------

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

CREATE TABLE `customer_entity` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity';

-- --------------------------------------------------------

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

CREATE TABLE `customer_entity_datetime` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Datetime';

-- --------------------------------------------------------

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

CREATE TABLE `customer_entity_decimal` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Decimal';

-- --------------------------------------------------------

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

CREATE TABLE `customer_entity_int` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Int';

-- --------------------------------------------------------

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

CREATE TABLE `customer_entity_text` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Text';

-- --------------------------------------------------------

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

CREATE TABLE `customer_entity_varchar` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Varchar';

-- --------------------------------------------------------

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

CREATE TABLE `customer_form_attribute` (
  `form_code` varchar(32) NOT NULL COMMENT 'Form Code',
  `attribute_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Attribute ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Form Attribute';

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

INSERT INTO `customer_form_attribute` (`form_code`, `attribute_id`) 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_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);

-- --------------------------------------------------------

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

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_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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='customer_grid_flat';

-- --------------------------------------------------------

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

CREATE TABLE `customer_group` (
  `customer_group_id` int(10) UNSIGNED NOT NULL,
  `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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Group';

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

INSERT INTO `customer_group` (`customer_group_id`, `customer_group_code`, `tax_class_id`) VALUES
(0, 'NOT LOGGED IN', 3),
(1, 'General', 3),
(2, 'Wholesale', 3),
(3, 'Retailer', 3);

-- --------------------------------------------------------

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

CREATE TABLE `customer_log` (
  `log_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Log Table';

-- --------------------------------------------------------

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

CREATE TABLE `customer_visitor` (
  `visitor_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Visitor ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `session_id` varchar(64) DEFAULT NULL COMMENT 'Session ID',
  `last_visit_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Last Visit Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Visitor Table';

-- --------------------------------------------------------

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

CREATE TABLE `design_change` (
  `design_change_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Design Changes';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='design_config_grid_flat';

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

INSERT INTO `design_config_grid_flat` (`entity_id`, `store_website_id`, `store_group_id`, `store_id`, `theme_theme_id`) VALUES
(0, NULL, NULL, NULL, ''),
(1, 1, NULL, NULL, ''),
(2, 1, 1, 1, '');

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country';

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

INSERT INTO `directory_country` (`country_id`, `iso2_code`, `iso3_code`) 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');

-- --------------------------------------------------------

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

CREATE TABLE `directory_country_format` (
  `country_format_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Format';

-- --------------------------------------------------------

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

CREATE TABLE `directory_country_region` (
  `region_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Region';

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

INSERT INTO `directory_country_region` (`region_id`, `country_id`, `code`, `default_name`) 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', 'Freiburg'),
(111, 'CH', 'GE', 'Genf'),
(112, 'CH', 'GL', 'Glarus'),
(113, 'CH', 'GR', 'Graubünden'),
(114, 'CH', 'JU', 'Jura'),
(115, 'CH', 'LU', 'Luzern'),
(116, 'CH', 'NE', 'Neuenburg'),
(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', 'Tessin'),
(125, 'CH', 'UR', 'Uri'),
(126, 'CH', 'VD', 'Waadt'),
(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, 'HR', 'HR-01', 'Zagrebačka županija'),
(513, 'HR', 'HR-02', 'Krapinsko-zagorska županija'),
(514, 'HR', 'HR-03', 'Sisačko-moslavačka županija'),
(515, 'HR', 'HR-04', 'Karlovačka županija'),
(516, 'HR', 'HR-05', 'Varaždinska županija'),
(517, 'HR', 'HR-06', 'Koprivničko-križevačka županija'),
(518, 'HR', 'HR-07', 'Bjelovarsko-bilogorska županija'),
(519, 'HR', 'HR-08', 'Primorsko-goranska županija'),
(520, 'HR', 'HR-09', 'Ličko-senjska županija'),
(521, 'HR', 'HR-10', 'Virovitičko-podravska županija'),
(522, 'HR', 'HR-11', 'Požeško-slavonska županija'),
(523, 'HR', 'HR-12', 'Brodsko-posavska županija'),
(524, 'HR', 'HR-13', 'Zadarska županija'),
(525, 'HR', 'HR-14', 'Osječko-baranjska županija'),
(526, 'HR', 'HR-15', 'Šibensko-kninska županija'),
(527, 'HR', 'HR-16', 'Vukovarsko-srijemska županija'),
(528, 'HR', 'HR-17', 'Splitsko-dalmatinska županija'),
(529, 'HR', 'HR-18', 'Istarska županija'),
(530, 'HR', 'HR-19', 'Dubrovačko-neretvanska županija'),
(531, 'HR', 'HR-20', 'Međimurska županija'),
(532, 'HR', 'HR-21', 'Grad Zagreb'),
(533, 'IN', 'AN', 'Andaman and Nicobar Islands'),
(534, 'IN', 'AP', 'Andhra Pradesh'),
(535, 'IN', 'AR', 'Arunachal Pradesh'),
(536, 'IN', 'AS', 'Assam'),
(537, 'IN', 'BR', 'Bihar'),
(538, 'IN', 'CH', 'Chandigarh'),
(539, 'IN', 'CT', 'Chhattisgarh'),
(540, 'IN', 'DN', 'Dadra and Nagar Haveli'),
(541, 'IN', 'DD', 'Daman and Diu'),
(542, 'IN', 'DL', 'Delhi'),
(543, 'IN', 'GA', 'Goa'),
(544, 'IN', 'GJ', 'Gujarat'),
(545, 'IN', 'HR', 'Haryana'),
(546, 'IN', 'HP', 'Himachal Pradesh'),
(547, 'IN', 'JK', 'Jammu and Kashmir'),
(548, 'IN', 'JH', 'Jharkhand'),
(549, 'IN', 'KA', 'Karnataka'),
(550, 'IN', 'KL', 'Kerala'),
(551, 'IN', 'LD', 'Lakshadweep'),
(552, 'IN', 'MP', 'Madhya Pradesh'),
(553, 'IN', 'MH', 'Maharashtra'),
(554, 'IN', 'MN', 'Manipur'),
(555, 'IN', 'ML', 'Meghalaya'),
(556, 'IN', 'MZ', 'Mizoram'),
(557, 'IN', 'NL', 'Nagaland'),
(558, 'IN', 'OR', 'Odisha'),
(559, 'IN', 'PY', 'Puducherry'),
(560, 'IN', 'PB', 'Punjab'),
(561, 'IN', 'RJ', 'Rajasthan'),
(562, 'IN', 'SK', 'Sikkim'),
(563, 'IN', 'TN', 'Tamil Nadu'),
(564, 'IN', 'TG', 'Telangana'),
(565, 'IN', 'TR', 'Tripura'),
(566, 'IN', 'UP', 'Uttar Pradesh'),
(567, 'IN', 'UT', 'Uttarakhand'),
(568, 'IN', 'WB', 'West Bengal'),
(569, 'AU', 'ACT', 'Australian Capital Territory'),
(570, 'AU', 'NSW', 'New South Wales'),
(571, 'AU', 'VIC', 'Victoria'),
(572, 'AU', 'QLD', 'Queensland'),
(573, 'AU', 'SA', 'South Australia'),
(574, 'AU', 'TAS', 'Tasmania'),
(575, 'AU', 'WA', 'Western Australia'),
(576, 'AU', 'NT', 'Northern Territory'),
(577, 'BE', 'VAN', 'Antwerpen'),
(578, 'BE', 'WBR', 'Brabant wallon'),
(579, 'BE', 'BRU', 'Brussels-Capital Region'),
(580, 'BE', 'WHT', 'Hainaut'),
(581, 'BE', 'VLI', 'Limburg'),
(582, 'BE', 'WLG', 'Liège'),
(583, 'BE', 'WLX', 'Luxembourg'),
(584, 'BE', 'WNA', 'Namur'),
(585, 'BE', 'VOV', 'Oost-Vlaanderen'),
(586, 'BE', 'VBR', 'Vlaams-Brabant'),
(587, 'BE', 'VWV', 'West-Vlaanderen'),
(588, 'CN', 'CN-AH', 'Anhui Sheng'),
(589, 'CN', 'CN-BJ', 'Beijing Shi'),
(590, 'CN', 'CN-CQ', 'Chongqing Shi'),
(591, 'CN', 'CN-FJ', 'Fujian Sheng'),
(592, 'CN', 'CN-GS', 'Gansu Sheng'),
(593, 'CN', 'CN-GD', 'Guangdong Sheng'),
(594, 'CN', 'CN-GX', 'Guangxi Zhuangzu Zizhiqu'),
(595, 'CN', 'CN-GZ', 'Guizhou Sheng'),
(596, 'CN', 'CN-HI', 'Hainan Sheng'),
(597, 'CN', 'CN-HE', 'Hebei Sheng'),
(598, 'CN', 'CN-HL', 'Heilongjiang Sheng'),
(599, 'CN', 'CN-HA', 'Henan Sheng'),
(600, 'CN', 'CN-HK', 'Hong Kong SAR'),
(601, 'CN', 'CN-HB', 'Hubei Sheng'),
(602, 'CN', 'CN-HN', 'Hunan Sheng'),
(603, 'CN', 'CN-JS', 'Jiangsu Sheng'),
(604, 'CN', 'CN-JX', 'Jiangxi Sheng'),
(605, 'CN', 'CN-JL', 'Jilin Sheng'),
(606, 'CN', 'CN-LN', 'Liaoning Sheng'),
(607, 'CN', 'CN-MO', 'Macao SAR'),
(608, 'CN', 'CN-NM', 'Nei Mongol Zizhiqu'),
(609, 'CN', 'CN-NX', 'Ningxia Huizi Zizhiqu'),
(610, 'CN', 'CN-QH', 'Qinghai Sheng'),
(611, 'CN', 'CN-SN', 'Shaanxi Sheng'),
(612, 'CN', 'CN-SD', 'Shandong Sheng'),
(613, 'CN', 'CN-SH', 'Shanghai Shi'),
(614, 'CN', 'CN-SX', 'Shanxi Sheng'),
(615, 'CN', 'CN-SC', 'Sichuan Sheng'),
(616, 'CN', 'CN-TW', 'Taiwan Sheng'),
(617, 'CN', 'CN-TJ', 'Tianjin Shi'),
(618, 'CN', 'CN-XJ', 'Xinjiang Uygur Zizhiqu'),
(619, 'CN', 'CN-XZ', 'Xizang Zizhiqu'),
(620, 'CN', 'CN-YN', 'Yunnan Sheng'),
(621, 'CN', 'CN-ZJ', 'Zhejiang Sheng'),
(622, 'CO', 'CO-AMA', 'Amazonas'),
(623, 'CO', 'CO-ANT', 'Antioquia'),
(624, 'CO', 'CO-ARA', 'Arauca'),
(625, 'CO', 'CO-ATL', 'Atlántico'),
(626, 'CO', 'CO-BOL', 'Bolívar'),
(627, 'CO', 'CO-BOY', 'Boyacá'),
(628, 'CO', 'CO-CAL', 'Caldas'),
(629, 'CO', 'CO-CAQ', 'Caquetá'),
(630, 'CO', 'CO-CAS', 'Casanare'),
(631, 'CO', 'CO-CAU', 'Cauca'),
(632, 'CO', 'CO-CES', 'Cesar'),
(633, 'CO', 'CO-CHO', 'Chocó'),
(634, 'CO', 'CO-COR', 'Córdoba'),
(635, 'CO', 'CO-CUN', 'Cundinamarca'),
(636, 'CO', 'CO-GUA', 'Guainía'),
(637, 'CO', 'CO-GUV', 'Guaviare'),
(638, 'CO', 'CO-HUL', 'Huila'),
(639, 'CO', 'CO-LAG', 'La Guajira'),
(640, 'CO', 'CO-MAG', 'Magdalena'),
(641, 'CO', 'CO-MET', 'Meta'),
(642, 'CO', 'CO-NAR', 'Nariño'),
(643, 'CO', 'CO-NSA', 'Norte de Santander'),
(644, 'CO', 'CO-PUT', 'Putumayo'),
(645, 'CO', 'CO-QUI', 'Quindío'),
(646, 'CO', 'CO-RIS', 'Risaralda'),
(647, 'CO', 'CO-SAP', 'San Andrés y Providencia'),
(648, 'CO', 'CO-SAN', 'Santander'),
(649, 'CO', 'CO-SUC', 'Sucre'),
(650, 'CO', 'CO-TOL', 'Tolima'),
(651, 'CO', 'CO-VAC', 'Valle del Cauca'),
(652, 'CO', 'CO-VAU', 'Vaupés'),
(653, 'CO', 'CO-VID', 'Vichada'),
(654, 'MX', 'AGU', 'Aguascalientes'),
(655, 'MX', 'BCN', 'Baja California'),
(656, 'MX', 'BCS', 'Baja California Sur'),
(657, 'MX', 'CAM', 'Campeche'),
(658, 'MX', 'CHP', 'Chiapas'),
(659, 'MX', 'CHH', 'Chihuahua'),
(660, 'MX', 'CMX', 'Ciudad de México'),
(661, 'MX', 'COA', 'Coahuila'),
(662, 'MX', 'COL', 'Colima'),
(663, 'MX', 'DUR', 'Durango'),
(664, 'MX', 'MEX', 'Estado de México'),
(665, 'MX', 'GUA', 'Guanajuato'),
(666, 'MX', 'GRO', 'Guerrero'),
(667, 'MX', 'HID', 'Hidalgo'),
(668, 'MX', 'JAL', 'Jalisco'),
(669, 'MX', 'MIC', 'Michoacán'),
(670, 'MX', 'MOR', 'Morelos'),
(671, 'MX', 'NAY', 'Nayarit'),
(672, 'MX', 'NLE', 'Nuevo León'),
(673, 'MX', 'OAX', 'Oaxaca'),
(674, 'MX', 'PUE', 'Puebla'),
(675, 'MX', 'QUE', 'Querétaro'),
(676, 'MX', 'ROO', 'Quintana Roo'),
(677, 'MX', 'SLP', 'San Luis Potosí'),
(678, 'MX', 'SIN', 'Sinaloa'),
(679, 'MX', 'SON', 'Sonora'),
(680, 'MX', 'TAB', 'Tabasco'),
(681, 'MX', 'TAM', 'Tamaulipas'),
(682, 'MX', 'TLA', 'Tlaxcala'),
(683, 'MX', 'VER', 'Veracruz'),
(684, 'MX', 'YUC', 'Yucatán'),
(685, 'MX', 'ZAC', 'Zacatecas'),
(686, 'PL', 'PL-02', 'dolnośląskie'),
(687, 'PL', 'PL-04', 'kujawsko-pomorskie'),
(688, 'PL', 'PL-06', 'lubelskie'),
(689, 'PL', 'PL-08', 'lubuskie'),
(690, 'PL', 'PL-10', 'łódzkie'),
(691, 'PL', 'PL-12', 'małopolskie'),
(692, 'PL', 'PL-14', 'mazowieckie'),
(693, 'PL', 'PL-16', 'opolskie'),
(694, 'PL', 'PL-18', 'podkarpackie'),
(695, 'PL', 'PL-20', 'podlaskie'),
(696, 'PL', 'PL-22', 'pomorskie'),
(697, 'PL', 'PL-24', 'śląskie'),
(698, 'PL', 'PL-26', 'świętokrzyskie'),
(699, 'PL', 'PL-28', 'warmińsko-mazurskie'),
(700, 'PL', 'PL-30', 'wielkopolskie'),
(701, 'PL', 'PL-32', 'zachodniopomorskie');

-- --------------------------------------------------------

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

CREATE TABLE `directory_country_region_name` (
  `locale` varchar(8) NOT NULL COMMENT 'Locale',
  `region_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Region ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Region Name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Region Name';

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

INSERT INTO `directory_country_region_name` (`locale`, `region_id`, `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, 'Freiburg'),
('en_US', 111, 'Genf'),
('en_US', 112, 'Glarus'),
('en_US', 113, 'Graubünden'),
('en_US', 114, 'Jura'),
('en_US', 115, 'Luzern'),
('en_US', 116, 'Neuenburg'),
('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, 'Tessin'),
('en_US', 125, 'Uri'),
('en_US', 126, 'Waadt'),
('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, 'Zagrebačka županija'),
('en_US', 513, 'Krapinsko-zagorska županija'),
('en_US', 514, 'Sisačko-moslavačka županija'),
('en_US', 515, 'Karlovačka županija'),
('en_US', 516, 'Varaždinska županija'),
('en_US', 517, 'Koprivničko-križevačka županija'),
('en_US', 518, 'Bjelovarsko-bilogorska županija'),
('en_US', 519, 'Primorsko-goranska županija'),
('en_US', 520, 'Ličko-senjska županija'),
('en_US', 521, 'Virovitičko-podravska županija'),
('en_US', 522, 'Požeško-slavonska županija'),
('en_US', 523, 'Brodsko-posavska županija'),
('en_US', 524, 'Zadarska županija'),
('en_US', 525, 'Osječko-baranjska županija'),
('en_US', 526, 'Šibensko-kninska županija'),
('en_US', 527, 'Vukovarsko-srijemska županija'),
('en_US', 528, 'Splitsko-dalmatinska županija'),
('en_US', 529, 'Istarska županija'),
('en_US', 530, 'Dubrovačko-neretvanska županija'),
('en_US', 531, 'Međimurska županija'),
('en_US', 532, 'Grad Zagreb'),
('en_US', 533, 'Andaman and Nicobar Islands'),
('en_US', 534, 'Andhra Pradesh'),
('en_US', 535, 'Arunachal Pradesh'),
('en_US', 536, 'Assam'),
('en_US', 537, 'Bihar'),
('en_US', 538, 'Chandigarh'),
('en_US', 539, 'Chhattisgarh'),
('en_US', 540, 'Dadra and Nagar Haveli'),
('en_US', 541, 'Daman and Diu'),
('en_US', 542, 'Delhi'),
('en_US', 543, 'Goa'),
('en_US', 544, 'Gujarat'),
('en_US', 545, 'Haryana'),
('en_US', 546, 'Himachal Pradesh'),
('en_US', 547, 'Jammu and Kashmir'),
('en_US', 548, 'Jharkhand'),
('en_US', 549, 'Karnataka'),
('en_US', 550, 'Kerala'),
('en_US', 551, 'Lakshadweep'),
('en_US', 552, 'Madhya Pradesh'),
('en_US', 553, 'Maharashtra'),
('en_US', 554, 'Manipur'),
('en_US', 555, 'Meghalaya'),
('en_US', 556, 'Mizoram'),
('en_US', 557, 'Nagaland'),
('en_US', 558, 'Odisha'),
('en_US', 559, 'Puducherry'),
('en_US', 560, 'Punjab'),
('en_US', 561, 'Rajasthan'),
('en_US', 562, 'Sikkim'),
('en_US', 563, 'Tamil Nadu'),
('en_US', 564, 'Telangana'),
('en_US', 565, 'Tripura'),
('en_US', 566, 'Uttar Pradesh'),
('en_US', 567, 'Uttarakhand'),
('en_US', 568, 'West Bengal'),
('en_US', 569, 'Australian Capital Territory'),
('en_US', 570, 'New South Wales'),
('en_US', 571, 'Victoria'),
('en_US', 572, 'Queensland'),
('en_US', 573, 'South Australia'),
('en_US', 574, 'Tasmania'),
('en_US', 575, 'Western Australia'),
('en_US', 576, 'Northern Territory'),
('en_US', 577, 'Antwerpen'),
('en_US', 578, 'Brabant wallon'),
('en_US', 579, 'Brussels-Capital Region'),
('en_US', 580, 'Hainaut'),
('en_US', 581, 'Limburg'),
('en_US', 582, 'Liège'),
('en_US', 583, 'Luxembourg'),
('en_US', 584, 'Namur'),
('en_US', 585, 'Oost-Vlaanderen'),
('en_US', 586, 'Vlaams-Brabant'),
('en_US', 587, 'West-Vlaanderen'),
('en_US', 588, 'Anhui Sheng'),
('en_US', 589, 'Beijing Shi'),
('en_US', 590, 'Chongqing Shi'),
('en_US', 591, 'Fujian Sheng'),
('en_US', 592, 'Gansu Sheng'),
('en_US', 593, 'Guangdong Sheng'),
('en_US', 594, 'Guangxi Zhuangzu Zizhiqu'),
('en_US', 595, 'Guizhou Sheng'),
('en_US', 596, 'Hainan Sheng'),
('en_US', 597, 'Hebei Sheng'),
('en_US', 598, 'Heilongjiang Sheng'),
('en_US', 599, 'Henan Sheng'),
('en_US', 600, 'Hong Kong SAR'),
('en_US', 601, 'Hubei Sheng'),
('en_US', 602, 'Hunan Sheng'),
('en_US', 603, 'Jiangsu Sheng'),
('en_US', 604, 'Jiangxi Sheng'),
('en_US', 605, 'Jilin Sheng'),
('en_US', 606, 'Liaoning Sheng'),
('en_US', 607, 'Macao SAR'),
('en_US', 608, 'Nei Mongol Zizhiqu'),
('en_US', 609, 'Ningxia Huizi Zizhiqu'),
('en_US', 610, 'Qinghai Sheng'),
('en_US', 611, 'Shaanxi Sheng'),
('en_US', 612, 'Shandong Sheng'),
('en_US', 613, 'Shanghai Shi'),
('en_US', 614, 'Shanxi Sheng'),
('en_US', 615, 'Sichuan Sheng'),
('en_US', 616, 'Taiwan Sheng'),
('en_US', 617, 'Tianjin Shi'),
('en_US', 618, 'Xinjiang Uygur Zizhiqu'),
('en_US', 619, 'Xizang Zizhiqu'),
('en_US', 620, 'Yunnan Sheng'),
('en_US', 621, 'Zhejiang Sheng'),
('en_US', 622, 'Amazonas'),
('en_US', 623, 'Antioquia'),
('en_US', 624, 'Arauca'),
('en_US', 625, 'Atlántico'),
('en_US', 626, 'Bolívar'),
('en_US', 627, 'Boyacá'),
('en_US', 628, 'Caldas'),
('en_US', 629, 'Caquetá'),
('en_US', 630, 'Casanare'),
('en_US', 631, 'Cauca'),
('en_US', 632, 'Cesar'),
('en_US', 633, 'Chocó'),
('en_US', 634, 'Córdoba'),
('en_US', 635, 'Cundinamarca'),
('en_US', 636, 'Guainía'),
('en_US', 637, 'Guaviare'),
('en_US', 638, 'Huila'),
('en_US', 639, 'La Guajira'),
('en_US', 640, 'Magdalena'),
('en_US', 641, 'Meta'),
('en_US', 642, 'Nariño'),
('en_US', 643, 'Norte de Santander'),
('en_US', 644, 'Putumayo'),
('en_US', 645, 'Quindío'),
('en_US', 646, 'Risaralda'),
('en_US', 647, 'San Andrés y Providencia'),
('en_US', 648, 'Santander'),
('en_US', 649, 'Sucre'),
('en_US', 650, 'Tolima'),
('en_US', 651, 'Valle del Cauca'),
('en_US', 652, 'Vaupés'),
('en_US', 653, 'Vichada'),
('en_US', 654, 'Aguascalientes'),
('en_US', 655, 'Baja California'),
('en_US', 656, 'Baja California Sur'),
('en_US', 657, 'Campeche'),
('en_US', 658, 'Chiapas'),
('en_US', 659, 'Chihuahua'),
('en_US', 660, 'Ciudad de México'),
('en_US', 661, 'Coahuila'),
('en_US', 662, 'Colima'),
('en_US', 663, 'Durango'),
('en_US', 664, 'Estado de México'),
('en_US', 665, 'Guanajuato'),
('en_US', 666, 'Guerrero'),
('en_US', 667, 'Hidalgo'),
('en_US', 668, 'Jalisco'),
('en_US', 669, 'Michoacán'),
('en_US', 670, 'Morelos'),
('en_US', 671, 'Nayarit'),
('en_US', 672, 'Nuevo León'),
('en_US', 673, 'Oaxaca'),
('en_US', 674, 'Puebla'),
('en_US', 675, 'Querétaro'),
('en_US', 676, 'Quintana Roo'),
('en_US', 677, 'San Luis Potosí'),
('en_US', 678, 'Sinaloa'),
('en_US', 679, 'Sonora'),
('en_US', 680, 'Tabasco'),
('en_US', 681, 'Tamaulipas'),
('en_US', 682, 'Tlaxcala'),
('en_US', 683, 'Veracruz'),
('en_US', 684, 'Yucatán'),
('en_US', 685, 'Zacatecas'),
('en_US', 686, 'dolnośląskie'),
('en_US', 687, 'kujawsko-pomorskie'),
('en_US', 688, 'lubelskie'),
('en_US', 689, 'lubuskie'),
('en_US', 690, 'łódzkie'),
('en_US', 691, 'małopolskie'),
('en_US', 692, 'mazowieckie'),
('en_US', 693, 'opolskie'),
('en_US', 694, 'podkarpackie'),
('en_US', 695, 'podlaskie'),
('en_US', 696, 'pomorskie'),
('en_US', 697, 'śląskie'),
('en_US', 698, 'świętokrzyskie'),
('en_US', 699, 'warmińsko-mazurskie'),
('en_US', 700, 'wielkopolskie'),
('en_US', 701, 'zachodniopomorskie');

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Currency Rate';

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

INSERT INTO `directory_currency_rate` (`currency_from`, `currency_to`, `rate`) VALUES
('EUR', 'EUR', 1.000000000000),
('EUR', 'USD', 1.415000000000),
('USD', 'EUR', 0.706700000000),
('USD', 'USD', 1.000000000000);

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_link` (
  `link_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Table';

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_link_price` (
  `price_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Price Table';

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_link_purchased` (
  `purchased_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Table';

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_link_purchased_item` (
  `item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Item Table';

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_link_title` (
  `title_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Title Table';

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_sample` (
  `sample_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Table';

-- --------------------------------------------------------

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

CREATE TABLE `downloadable_sample_title` (
  `title_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Title Table';

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute` (
  `attribute_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute';

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

INSERT INTO `eav_attribute` (`attribute_id`, `entity_type_id`, `attribute_code`, `attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, `frontend_input`, `frontend_label`, `frontend_class`, `source_model`, `is_required`, `is_user_defined`, `default_value`, `is_unique`, `note`) 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', NULL, 'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price', 'decimal', NULL, NULL, 'price', 'Price', NULL, NULL, 1, 0, NULL, 0, NULL),
(78, 4, 'special_price', NULL, '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', NULL, NULL, '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', NULL, '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', NULL, 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, '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),
(130, 4, 'merchant_center_category', NULL, NULL, 'int', NULL, NULL, 'select', 'Google Merchant Center Category', NULL, 'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table', 0, 1, NULL, 0, NULL),
(131, 4, 'price_type', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Dynamic Price', NULL, NULL, 1, 0, '0', 0, NULL),
(132, 4, 'sku_type', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Dynamic SKU', NULL, NULL, 1, 0, '0', 0, NULL),
(133, 4, 'weight_type', NULL, NULL, 'int', NULL, NULL, 'boolean', 'Dynamic Weight', NULL, NULL, 1, 0, '0', 0, NULL),
(134, 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),
(135, 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),
(136, 4, 'swatch_image', NULL, NULL, 'varchar', NULL, 'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image', 'media_image', 'Swatch', NULL, NULL, 0, 0, NULL, 0, NULL),
(137, 4, 'tax_class_id', NULL, NULL, 'int', NULL, NULL, 'select', 'Tax Class', NULL, 'Magento\\Tax\\Model\\TaxClass\\Source\\Product', 0, 0, '2', 0, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute_group` (
  `attribute_group_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Group';

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

INSERT INTO `eav_attribute_group` (`attribute_group_id`, `attribute_set_id`, `attribute_group_name`, `sort_order`, `default_id`, `attribute_group_code`, `tab_group_code`) 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, 'Gift Options', 61, 0, 'gift-options', NULL),
(20, 4, 'Bundle Items', 16, 0, 'bundle-items', NULL);

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute_label` (
  `attribute_label_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Label';

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute_option` (
  `option_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option';

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

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

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute_option_swatch` (
  `swatch_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Swatches table';

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute_option_value` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option Value';

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

INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(1, 1, 0, 'Male'),
(2, 2, 0, 'Female'),
(3, 3, 0, 'Not Specified'),
(4, 4, 0, 'Animals & Pet Supplies'),
(5, 5, 0, 'Animals & Pet Supplies > Live Animals'),
(6, 6, 0, 'Animals & Pet Supplies > Pet Supplies'),
(7, 7, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies'),
(8, 8, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories'),
(9, 9, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories > Bird Cage Bird Baths'),
(10, 10, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories > Bird Cage Food & Water Dishes'),
(11, 11, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cages & Stands'),
(12, 12, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Food'),
(13, 13, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Gyms & Playstands'),
(14, 14, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Ladders & Perches'),
(15, 15, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Toys'),
(16, 16, 0, 'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Treats'),
(17, 17, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies'),
(18, 18, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Apparel'),
(19, 19, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Beds'),
(20, 20, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Food'),
(21, 21, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Furniture'),
(22, 22, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Furniture Accessories'),
(23, 23, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter'),
(24, 24, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Box Liners'),
(25, 25, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Box Mats'),
(26, 26, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Boxes'),
(27, 27, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Toys'),
(28, 28, 0, 'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Treats'),
(29, 29, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies'),
(30, 30, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Apparel'),
(31, 31, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Beds'),
(32, 32, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Diaper Pads & Liners'),
(33, 33, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Diapers'),
(34, 34, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Food'),
(35, 35, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Houses'),
(36, 36, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Kennel & Run Accessories'),
(37, 37, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Kennels & Runs'),
(38, 38, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Toys'),
(39, 39, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Treadmills'),
(40, 40, 0, 'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Treats'),
(41, 41, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies'),
(42, 42, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium & Pond Tubing'),
(43, 43, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Air Stones & Diffusers'),
(44, 44, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Cleaning Supplies'),
(45, 45, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Decor'),
(46, 46, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Filters'),
(47, 47, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Fish Nets'),
(48, 48, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Gravel & Substrates'),
(49, 49, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Lighting'),
(50, 50, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Overflow Boxes'),
(51, 51, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Stands'),
(52, 52, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Temperature Controllers'),
(53, 53, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Water Treatments'),
(54, 54, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquariums'),
(55, 55, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquatic Plant Fertilizers'),
(56, 56, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Fish Feeders'),
(57, 57, 0, 'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Fish Food'),
(58, 58, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Agility Equipment'),
(59, 59, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Apparel Hangers'),
(60, 60, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Bed Accessories'),
(61, 61, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Bells & Charms'),
(62, 62, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors'),
(63, 63, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Glucose Meters'),
(64, 64, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Pedometers'),
(65, 65, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Thermometers'),
(66, 66, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Bowl Mats'),
(67, 67, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Bowl Stands'),
(68, 68, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Bowls, Feeders & Waterers'),
(69, 69, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Carrier & Crate Accessories'),
(70, 70, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Carriers & Crates'),
(71, 71, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Collars & Harnesses'),
(72, 72, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Containment Systems'),
(73, 73, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Door Accessories'),
(74, 74, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Doors'),
(75, 75, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Eye Drops & Lubricants'),
(76, 76, 0, 'Animals & Pet Supplies > Pet Supplies > Pet First Aid & Emergency Kits'),
(77, 77, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Flea & Tick Control'),
(78, 78, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Food Containers'),
(79, 79, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Food Scoops'),
(80, 80, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies'),
(81, 81, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Combs & Brushes'),
(82, 82, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Fragrances & Deodorizing Sprays'),
(83, 83, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Hair Clippers & Trimmers'),
(84, 84, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Hair Dryers'),
(85, 85, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Nail Polish'),
(86, 86, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Nail Tools'),
(87, 87, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Shampoo & Conditioner'),
(88, 88, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Wipes'),
(89, 89, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Heating Pad Accessories'),
(90, 90, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Heating Pads'),
(91, 91, 0, 'Animals & Pet Supplies > Pet Supplies > Pet ID Tags'),
(92, 92, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Leash Extensions'),
(93, 93, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Leashes'),
(94, 94, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Medical Collars'),
(95, 95, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Medical Tape & Bandages'),
(96, 96, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Medicine'),
(97, 97, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Muzzles'),
(98, 98, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Oral Care Supplies'),
(99, 99, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Playpens'),
(100, 100, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Steps & Ramps'),
(101, 101, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Strollers'),
(102, 102, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Sunscreen'),
(103, 103, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Training Aids'),
(104, 104, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Clickers & Treat Dispensers'),
(105, 105, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Pad Holders'),
(106, 106, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Pads'),
(107, 107, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Sprays & Solutions'),
(108, 108, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Vitamins & Supplements'),
(109, 109, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Waste Bag Dispensers & Holders'),
(110, 110, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Waste Bags'),
(111, 111, 0, 'Animals & Pet Supplies > Pet Supplies > Pet Waste Disposal Systems & Tools'),
(112, 112, 0, 'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies'),
(113, 113, 0, 'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Food'),
(114, 114, 0, 'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitat Accessories'),
(115, 115, 0, 'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitat Heating & Lighting'),
(116, 116, 0, 'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitats'),
(117, 117, 0, 'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Substrates'),
(118, 118, 0, 'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies'),
(119, 119, 0, 'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Bedding'),
(120, 120, 0, 'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Food'),
(121, 121, 0, 'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Habitat Accessories'),
(122, 122, 0, 'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Habitats & Cages'),
(123, 123, 0, 'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Treats'),
(124, 124, 0, 'Animals & Pet Supplies > Pet Supplies > Vehicle Pet Barriers'),
(125, 125, 0, 'Apparel & Accessories'),
(126, 126, 0, 'Apparel & Accessories > Clothing'),
(127, 127, 0, 'Apparel & Accessories > Clothing > Activewear'),
(128, 128, 0, 'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear'),
(129, 129, 0, 'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Bibs'),
(130, 130, 0, 'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Jerseys'),
(131, 131, 0, 'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Shorts & Briefs'),
(132, 132, 0, 'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Skinsuits'),
(133, 133, 0, 'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Tights'),
(134, 134, 0, 'Apparel & Accessories > Clothing > Activewear > Boxing Shorts'),
(135, 135, 0, 'Apparel & Accessories > Clothing > Activewear > Dance Dresses, Skirts & Costumes'),
(136, 136, 0, 'Apparel & Accessories > Clothing > Activewear > Football Pants'),
(137, 137, 0, 'Apparel & Accessories > Clothing > Activewear > Hunting Clothing'),
(138, 138, 0, 'Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Ghillie Suits'),
(139, 139, 0, 'Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Hunting & Fishing Vests'),
(140, 140, 0, 'Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Hunting & Tactical Pants'),
(141, 141, 0, 'Apparel & Accessories > Clothing > Activewear > Martial Arts Shorts'),
(142, 142, 0, 'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing'),
(143, 143, 0, 'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Jackets'),
(144, 144, 0, 'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Pants'),
(145, 145, 0, 'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Suits'),
(146, 146, 0, 'Apparel & Accessories > Clothing > Activewear > Paintball Clothing'),
(147, 147, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing'),
(148, 148, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Bottoms'),
(149, 149, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Diaper Covers'),
(150, 150, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Dresses'),
(151, 151, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Outerwear'),
(152, 152, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Outfits'),
(153, 153, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Sleepwear'),
(154, 154, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Socks & Tights'),
(155, 155, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Swimwear'),
(156, 156, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Tops'),
(157, 157, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby One-Pieces'),
(158, 158, 0, 'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Toddler Underwear'),
(159, 159, 0, 'Apparel & Accessories > Clothing > Dresses'),
(160, 160, 0, 'Apparel & Accessories > Clothing > One-Pieces'),
(161, 161, 0, 'Apparel & Accessories > Clothing > One-Pieces > Jumpsuits & Rompers'),
(162, 162, 0, 'Apparel & Accessories > Clothing > One-Pieces > Leotards & Unitards'),
(163, 163, 0, 'Apparel & Accessories > Clothing > One-Pieces > Overalls'),
(164, 164, 0, 'Apparel & Accessories > Clothing > Outerwear'),
(165, 165, 0, 'Apparel & Accessories > Clothing > Outerwear > Chaps'),
(166, 166, 0, 'Apparel & Accessories > Clothing > Outerwear > Coats & Jackets'),
(167, 167, 0, 'Apparel & Accessories > Clothing > Outerwear > Rain Pants'),
(168, 168, 0, 'Apparel & Accessories > Clothing > Outerwear > Rain Suits'),
(169, 169, 0, 'Apparel & Accessories > Clothing > Outerwear > Snow Pants & Suits'),
(170, 170, 0, 'Apparel & Accessories > Clothing > Outerwear > Vests'),
(171, 171, 0, 'Apparel & Accessories > Clothing > Outfit Sets'),
(172, 172, 0, 'Apparel & Accessories > Clothing > Pants'),
(173, 173, 0, 'Apparel & Accessories > Clothing > Shirts & Tops'),
(174, 174, 0, 'Apparel & Accessories > Clothing > Shorts'),
(175, 175, 0, 'Apparel & Accessories > Clothing > Skirts'),
(176, 176, 0, 'Apparel & Accessories > Clothing > Skorts'),
(177, 177, 0, 'Apparel & Accessories > Clothing > Sleepwear & Loungewear'),
(178, 178, 0, 'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Loungewear'),
(179, 179, 0, 'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Nightgowns'),
(180, 180, 0, 'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Pajamas'),
(181, 181, 0, 'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Robes'),
(182, 182, 0, 'Apparel & Accessories > Clothing > Suits'),
(183, 183, 0, 'Apparel & Accessories > Clothing > Suits > Pant Suits'),
(184, 184, 0, 'Apparel & Accessories > Clothing > Suits > Skirt Suits'),
(185, 185, 0, 'Apparel & Accessories > Clothing > Suits > Tuxedos'),
(186, 186, 0, 'Apparel & Accessories > Clothing > Swimwear'),
(187, 187, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing'),
(188, 188, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Dirndls'),
(189, 189, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Hakama Trousers'),
(190, 190, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Japanese Black Formal Wear'),
(191, 191, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimono Outerwear'),
(192, 192, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos'),
(193, 193, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Religious Ceremonial Clothing'),
(194, 194, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Religious Ceremonial Clothing > Baptism & Communion Dresses'),
(195, 195, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Saris & Lehengas'),
(196, 196, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Traditional Leather Pants'),
(197, 197, 0, 'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Yukata'),
(198, 198, 0, 'Apparel & Accessories > Clothing > Underwear & Socks'),
(199, 199, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories'),
(200, 200, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Bra Strap Pads'),
(201, 201, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Bra Straps & Extenders'),
(202, 202, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Breast Enhancing Inserts'),
(203, 203, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Breast Petals & Concealers'),
(204, 204, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Bras'),
(205, 205, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Hosiery'),
(206, 206, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Jock Straps'),
(207, 207, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie'),
(208, 208, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories'),
(209, 209, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories > Garter Belts'),
(210, 210, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories > Garters'),
(211, 211, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Long Johns'),
(212, 212, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Petticoats & Pettipants'),
(213, 213, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Shapewear'),
(214, 214, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Socks'),
(215, 215, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Undershirts'),
(216, 216, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Underwear'),
(217, 217, 0, 'Apparel & Accessories > Clothing > Underwear & Socks > Underwear Slips'),
(218, 218, 0, 'Apparel & Accessories > Clothing > Uniforms'),
(219, 219, 0, 'Apparel & Accessories > Clothing > Uniforms > Contractor Pants & Coveralls'),
(220, 220, 0, 'Apparel & Accessories > Clothing > Uniforms > Flight Suits'),
(221, 221, 0, 'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms'),
(222, 222, 0, 'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef\'s Hats'),
(223, 223, 0, 'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef\'s Jackets'),
(224, 224, 0, 'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef\'s Pants'),
(225, 225, 0, 'Apparel & Accessories > Clothing > Uniforms > Military Uniforms'),
(226, 226, 0, 'Apparel & Accessories > Clothing > Uniforms > School Uniforms'),
(227, 227, 0, 'Apparel & Accessories > Clothing > Uniforms > Security Uniforms'),
(228, 228, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms'),
(229, 229, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Baseball Uniforms'),
(230, 230, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Basketball Uniforms'),
(231, 231, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Cheerleading Uniforms'),
(232, 232, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Cricket Uniforms'),
(233, 233, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Football Uniforms'),
(234, 234, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Hockey Uniforms'),
(235, 235, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Martial Arts Uniforms'),
(236, 236, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Officiating Uniforms'),
(237, 237, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Soccer Uniforms'),
(238, 238, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Softball Uniforms'),
(239, 239, 0, 'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Wrestling Uniforms'),
(240, 240, 0, 'Apparel & Accessories > Clothing > Uniforms > White Coats'),
(241, 241, 0, 'Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses'),
(242, 242, 0, 'Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses > Bridal Party Dresses'),
(243, 243, 0, 'Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses > Wedding Dresses'),
(244, 244, 0, 'Apparel & Accessories > Clothing Accessories'),
(245, 245, 0, 'Apparel & Accessories > Clothing Accessories > Arm Warmers & Sleeves'),
(246, 246, 0, 'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories'),
(247, 247, 0, 'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Belts'),
(248, 248, 0, 'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Gloves & Mittens'),
(249, 249, 0, 'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Hats'),
(250, 250, 0, 'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby Protective Wear'),
(251, 251, 0, 'Apparel & Accessories > Clothing Accessories > Balaclavas'),
(252, 252, 0, 'Apparel & Accessories > Clothing Accessories > Bandanas & Headties'),
(253, 253, 0, 'Apparel & Accessories > Clothing Accessories > Belt Buckles'),
(254, 254, 0, 'Apparel & Accessories > Clothing Accessories > Belts'),
(255, 255, 0, 'Apparel & Accessories > Clothing Accessories > Bridal Accessories'),
(256, 256, 0, 'Apparel & Accessories > Clothing Accessories > Bridal Accessories > Bridal Veils'),
(257, 257, 0, 'Apparel & Accessories > Clothing Accessories > Button Studs'),
(258, 258, 0, 'Apparel & Accessories > Clothing Accessories > Collar Stays'),
(259, 259, 0, 'Apparel & Accessories > Clothing Accessories > Cufflinks'),
(260, 260, 0, 'Apparel & Accessories > Clothing Accessories > Decorative Fans'),
(261, 261, 0, 'Apparel & Accessories > Clothing Accessories > Earmuffs'),
(262, 262, 0, 'Apparel & Accessories > Clothing Accessories > Gloves & Mittens'),
(263, 263, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories'),
(264, 264, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Bun & Volume Shapers'),
(265, 265, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Combs'),
(266, 266, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Extensions'),
(267, 267, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Forks & Sticks'),
(268, 268, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Nets'),
(269, 269, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Pins, Claws & Clips'),
(270, 270, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Wreaths'),
(271, 271, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Headbands'),
(272, 272, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Ponytail Holders'),
(273, 273, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Tiaras'),
(274, 274, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wig Accessories'),
(275, 275, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wig Accessories > Wig Caps'),
(276, 276, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wig Accessories > Wig Glue & Tape'),
(277, 277, 0, 'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wigs'),
(278, 278, 0, 'Apparel & Accessories > Clothing Accessories > Hand Muffs'),
(279, 279, 0, 'Apparel & Accessories > Clothing Accessories > Handkerchiefs'),
(280, 280, 0, 'Apparel & Accessories > Clothing Accessories > Hats'),
(281, 281, 0, 'Apparel & Accessories > Clothing Accessories > Headwear'),
(282, 282, 0, 'Apparel & Accessories > Clothing Accessories > Headwear > Fascinators'),
(283, 283, 0, 'Apparel & Accessories > Clothing Accessories > Headwear > Headdresses'),
(284, 284, 0, 'Apparel & Accessories > Clothing Accessories > Headwear > Turbans'),
(285, 285, 0, 'Apparel & Accessories > Clothing Accessories > Leg Warmers'),
(286, 286, 0, 'Apparel & Accessories > Clothing Accessories > Leis'),
(287, 287, 0, 'Apparel & Accessories > Clothing Accessories > Maternity Belts & Support Bands'),
(288, 288, 0, 'Apparel & Accessories > Clothing Accessories > Neck Gaiters'),
(289, 289, 0, 'Apparel & Accessories > Clothing Accessories > Neckties'),
(290, 290, 0, 'Apparel & Accessories > Clothing Accessories > Pinback Buttons'),
(291, 291, 0, 'Apparel & Accessories > Clothing Accessories > Sashes'),
(292, 292, 0, 'Apparel & Accessories > Clothing Accessories > Scarves & Shawls'),
(293, 293, 0, 'Apparel & Accessories > Clothing Accessories > Sunglasses'),
(294, 294, 0, 'Apparel & Accessories > Clothing Accessories > Suspenders'),
(295, 295, 0, 'Apparel & Accessories > Clothing Accessories > Tie Clips'),
(296, 296, 0, 'Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories'),
(297, 297, 0, 'Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Obis'),
(298, 298, 0, 'Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Tabi Socks'),
(299, 299, 0, 'Apparel & Accessories > Clothing Accessories > Wristbands'),
(300, 300, 0, 'Apparel & Accessories > Costumes & Accessories'),
(301, 301, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories'),
(302, 302, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Bald Caps'),
(303, 303, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Accessory Sets'),
(304, 304, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Capes'),
(305, 305, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Gloves'),
(306, 306, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Hats'),
(307, 307, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Special Effects'),
(308, 308, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Tobacco Products'),
(309, 309, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Pretend Jewelry'),
(310, 310, 0, 'Apparel & Accessories > Costumes & Accessories > Costume Shoes'),
(311, 311, 0, 'Apparel & Accessories > Costumes & Accessories > Costumes'),
(312, 312, 0, 'Apparel & Accessories > Costumes & Accessories > Masks'),
(313, 313, 0, 'Apparel & Accessories > Handbag & Wallet Accessories'),
(314, 314, 0, 'Apparel & Accessories > Handbag & Wallet Accessories > Checkbook Covers'),
(315, 315, 0, 'Apparel & Accessories > Handbag & Wallet Accessories > Keychains'),
(316, 316, 0, 'Apparel & Accessories > Handbag & Wallet Accessories > Lanyards'),
(317, 317, 0, 'Apparel & Accessories > Handbag & Wallet Accessories > Wallet Chains'),
(318, 318, 0, 'Apparel & Accessories > Handbags, Wallets & Cases'),
(319, 319, 0, 'Apparel & Accessories > Handbags, Wallets & Cases > Badge & Pass Holders'),
(320, 320, 0, 'Apparel & Accessories > Handbags, Wallets & Cases > Business Card Cases'),
(321, 321, 0, 'Apparel & Accessories > Handbags, Wallets & Cases > Handbags'),
(322, 322, 0, 'Apparel & Accessories > Handbags, Wallets & Cases > Wallets & Money Clips'),
(323, 323, 0, 'Apparel & Accessories > Jewelry'),
(324, 324, 0, 'Apparel & Accessories > Jewelry > Anklets'),
(325, 325, 0, 'Apparel & Accessories > Jewelry > Body Jewelry'),
(326, 326, 0, 'Apparel & Accessories > Jewelry > Bracelets'),
(327, 327, 0, 'Apparel & Accessories > Jewelry > Brooches & Lapel Pins'),
(328, 328, 0, 'Apparel & Accessories > Jewelry > Charms & Pendants'),
(329, 329, 0, 'Apparel & Accessories > Jewelry > Earrings'),
(330, 330, 0, 'Apparel & Accessories > Jewelry > Jewelry Sets'),
(331, 331, 0, 'Apparel & Accessories > Jewelry > Necklaces'),
(332, 332, 0, 'Apparel & Accessories > Jewelry > Rings'),
(333, 333, 0, 'Apparel & Accessories > Jewelry > Watch Accessories'),
(334, 334, 0, 'Apparel & Accessories > Jewelry > Watch Accessories > Watch Bands'),
(335, 335, 0, 'Apparel & Accessories > Jewelry > Watch Accessories > Watch Stickers & Decals'),
(336, 336, 0, 'Apparel & Accessories > Jewelry > Watch Accessories > Watch Winders'),
(337, 337, 0, 'Apparel & Accessories > Jewelry > Watches'),
(338, 338, 0, 'Apparel & Accessories > Shoe Accessories'),
(339, 339, 0, 'Apparel & Accessories > Shoe Accessories > Boot Liners'),
(340, 340, 0, 'Apparel & Accessories > Shoe Accessories > Gaiters'),
(341, 341, 0, 'Apparel & Accessories > Shoe Accessories > Shoe Covers'),
(342, 342, 0, 'Apparel & Accessories > Shoe Accessories > Shoelaces'),
(343, 343, 0, 'Apparel & Accessories > Shoe Accessories > Spurs'),
(344, 344, 0, 'Apparel & Accessories > Shoes'),
(345, 345, 0, 'Arts & Entertainment'),
(346, 346, 0, 'Arts & Entertainment > Event Tickets'),
(347, 347, 0, 'Arts & Entertainment > Hobbies & Creative Arts'),
(348, 348, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts'),
(349, 349, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits'),
(350, 350, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Candle Making Kits'),
(351, 351, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Drawing & Painting Kits'),
(352, 352, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Fabric Repair Kits'),
(353, 353, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Incense Making Kits'),
(354, 354, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Jewelry Making Kits'),
(355, 355, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Mosaic Kits'),
(356, 356, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Needlecraft Kits'),
(357, 357, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Scrapbooking & Stamping Kits'),
(358, 358, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Toy Craft Kits'),
(359, 359, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials'),
(360, 360, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper'),
(361, 361, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Cardstock & Scrapbooking Paper'),
(362, 362, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Construction Paper'),
(363, 363, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Craft Foil'),
(364, 364, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Drawing & Painting Paper'),
(365, 365, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Origami Paper'),
(366, 366, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Transfer Paper'),
(367, 367, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Vellum Paper'),
(368, 368, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures'),
(369, 369, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Buttons & Snaps'),
(370, 370, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Clasps & Hooks'),
(371, 371, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Eyelets & Grommets'),
(372, 372, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Hook and Loop Fasteners'),
(373, 373, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Zipper Pulls'),
(374, 374, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Zippers'),
(375, 375, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze'),
(376, 376, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Art & Craft Paint'),
(377, 377, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Art Fixatives'),
(378, 378, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Art Ink'),
(379, 379, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Ceramic & Pottery Glazes'),
(380, 380, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Craft Dyes'),
(381, 381, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Ink Pads'),
(382, 382, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Paint Mediums'),
(383, 383, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases'),
(384, 384, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Craft Foam & Styrofoam'),
(385, 385, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Craft Wood & Shapes'),
(386, 386, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Papier Mache Shapes'),
(387, 387, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Wreath & Floral Frames'),
(388, 388, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets'),
(389, 389, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Craft & Office Glue'),
(390, 390, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Craft Magnets'),
(391, 391, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Decorative Tape'),
(392, 392, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Floral Tape'),
(393, 393, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Fusible Tape'),
(394, 394, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers'),
(395, 395, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Jewelry & Beading Cord'),
(396, 396, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Thread & Floss'),
(397, 397, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Unspun Fiber'),
(398, 398, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Yarn'),
(399, 399, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire'),
(400, 400, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire > Craft Pipe Cleaners'),
(401, 401, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire > Floral Wire'),
(402, 402, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire > Jewelry & Beading Wire'),
(403, 403, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims'),
(404, 404, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Appliques & Patches'),
(405, 405, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Beads'),
(406, 406, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Bows & Yo-Yos'),
(407, 407, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Decorative Stickers'),
(408, 408, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Elastic'),
(409, 409, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Feathers'),
(410, 410, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Jewelry Findings'),
(411, 411, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Loose Stones'),
(412, 412, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Rhinestones & Flatbacks'),
(413, 413, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Ribbons & Trim'),
(414, 414, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Sequins & Glitter'),
(415, 415, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Sew-in Labels'),
(416, 416, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embossing Powder'),
(417, 417, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material'),
(418, 418, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material > Batting & Stuffing'),
(419, 419, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material > Filling Pellets'),
(420, 420, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material > Pillow Forms'),
(421, 421, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Leather & Vinyl'),
(422, 422, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials'),
(423, 423, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Clay & Modeling Dough'),
(424, 424, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Papier Mache Mixes'),
(425, 425, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Plaster Gauze'),
(426, 426, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Pottery Slips'),
(427, 427, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Raw Candle Wax'),
(428, 428, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles'),
(429, 429, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas'),
(430, 430, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas > Needlecraft Canvas'),
(431, 431, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas > Painting Canvas'),
(432, 432, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas > Plastic Canvas'),
(433, 433, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Fabric'),
(434, 434, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Interfacing'),
(435, 435, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Printable Fabric'),
(436, 436, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Wick Tabs'),
(437, 437, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Wicks'),
(438, 438, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories'),
(439, 439, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Craft Knife Blades'),
(440, 440, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Craft Machine Cases & Covers'),
(441, 441, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Sewing Machine Extension Tables'),
(442, 442, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Sewing Machine Feet'),
(443, 443, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Sewing Machine Replacement Parts'),
(444, 444, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Spinning Wheel Accessories'),
(445, 445, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Stamp Blocks'),
(446, 446, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools'),
(447, 447, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Blocking Mats'),
(448, 448, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Blocking Wires'),
(449, 449, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Color Mixing Tools'),
(450, 450, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Color Mixing Tools > Palette Knives'),
(451, 451, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Color Mixing Tools > Palettes'),
(452, 452, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools'),
(453, 453, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft & Office Scissors'),
(454, 454, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft Cutters & Embossers'),
(455, 455, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft Knives'),
(456, 456, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft Scoring Tools'),
(457, 457, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Embossing Heat Tools'),
(458, 458, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Embossing Pens & Styluses'),
(459, 459, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Seam Rippers'),
(460, 460, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Thread & Yarn Cutters'),
(461, 461, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Decoration Makers'),
(462, 462, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools'),
(463, 463, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Art Brushes'),
(464, 464, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Brayer Rollers'),
(465, 465, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Decorative Stamps'),
(466, 466, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Drafting Compasses'),
(467, 467, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Screen Printing Squeegees'),
(468, 468, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Stencil Machines'),
(469, 469, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Stencils & Die Cuts'),
(470, 470, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Stitch Markers & Counters'),
(471, 471, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Textile Art Gauges & Rulers'),
(472, 472, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Wood Burning Tools'),
(473, 473, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Cutting Mats'),
(474, 474, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Dress Forms'),
(475, 475, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Felting Pads & Mats'),
(476, 476, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Frames, Hoops & Stretchers'),
(477, 477, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Glue Guns'),
(478, 478, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Light Boxes'),
(479, 479, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks'),
(480, 480, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Crochet Hooks'),
(481, 481, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Hand-Sewing Needles'),
(482, 482, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Knitting Needles'),
(483, 483, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Latch & Locker Hooks'),
(484, 484, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Sewing Machine Needles'),
(485, 485, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Safety Pins'),
(486, 486, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Straight Pins'),
(487, 487, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines'),
(488, 488, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Felting Needles & Machines'),
(489, 489, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Hand Looms'),
(490, 490, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Mechanical Looms'),
(491, 491, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Sewing Machines'),
(492, 492, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Spinning Wheels'),
(493, 493, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thimbles & Sewing Palms');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(494, 494, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools'),
(495, 495, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Fiber Cards & Brushes'),
(496, 496, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Hand Spindles'),
(497, 497, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Needle Threaders'),
(498, 498, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Thread & Yarn Guides'),
(499, 499, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Thread & Yarn Spools'),
(500, 500, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Thread, Yarn & Bobbin Winders'),
(501, 501, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Weaving Beaters'),
(502, 502, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Weaving Shuttles'),
(503, 503, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization'),
(504, 504, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization > Needle, Pin & Hook Organizers'),
(505, 505, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization > Sewing Baskets & Kits'),
(506, 506, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization > Thread & Yarn Organizers'),
(507, 507, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds'),
(508, 508, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Beading Patterns'),
(509, 509, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Craft Molds'),
(510, 510, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Felting Molds'),
(511, 511, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Needlecraft Patterns'),
(512, 512, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Sewing Patterns'),
(513, 513, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles'),
(514, 514, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Autographs'),
(515, 515, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Coins & Currency'),
(516, 516, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Trading Cards'),
(517, 517, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons'),
(518, 518, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Guns'),
(519, 519, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Knives'),
(520, 520, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Swords'),
(521, 521, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Sword Stands & Displays'),
(522, 522, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Postage Stamps'),
(523, 523, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Rocks & Fossils'),
(524, 524, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Scale Model Accessories'),
(525, 525, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Scale Models'),
(526, 526, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Seal Stamps'),
(527, 527, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles'),
(528, 528, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia'),
(529, 529, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Auto Racing Autographed Paraphernalia'),
(530, 530, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Baseball & Softball Autographed Paraphernalia'),
(531, 531, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Basketball Autographed Paraphernalia'),
(532, 532, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Boxing Autographed Paraphernalia'),
(533, 533, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Football Autographed Paraphernalia'),
(534, 534, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Hockey Autographed Paraphernalia'),
(535, 535, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Soccer Autographed Paraphernalia'),
(536, 536, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Tennis Autographed Sports Paraphernalia'),
(537, 537, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories'),
(538, 538, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Auto Racing Fan Accessories'),
(539, 539, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Baseball & Softball Fan Accessories'),
(540, 540, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Basketball Fan Accessories'),
(541, 541, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Football Fan Accessories'),
(542, 542, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Hockey Fan Accessories'),
(543, 543, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Soccer Fan Accessories'),
(544, 544, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Tennis Fan Accessories'),
(545, 545, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Vintage Advertisements'),
(546, 546, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies'),
(547, 547, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Beer Brewing Grains & Malts'),
(548, 548, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Bottling Bottles'),
(549, 549, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Homebrewing & Winemaking Kits'),
(550, 550, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Wine Making'),
(551, 551, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Juggling'),
(552, 552, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Magic & Novelties'),
(553, 553, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Model Making'),
(554, 554, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Model Rocketry'),
(555, 555, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Model Train Accessories'),
(556, 556, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Model Trains & Train Sets'),
(557, 557, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Scale Model Kits'),
(558, 558, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories'),
(559, 559, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories'),
(560, 560, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning'),
(561, 561, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Care Kits'),
(562, 562, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Cleaners & Sanitizers'),
(563, 563, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Cleaning Tools'),
(564, 564, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Guards'),
(565, 565, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Lubricants'),
(566, 566, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Polishing Cloths'),
(567, 567, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Cases & Gigbags'),
(568, 568, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Mouthpieces'),
(569, 569, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Mutes'),
(570, 570, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Replacement Parts'),
(571, 571, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Straps & Stands'),
(572, 572, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Conductor Batons'),
(573, 573, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Electronic Tuners'),
(574, 574, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Metronomes'),
(575, 575, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Benches & Stools'),
(576, 576, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Lyres & Flip Folders'),
(577, 577, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories'),
(578, 578, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories > Music Stand Bags'),
(579, 579, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories > Music Stand Lights'),
(580, 580, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories > Sheet Music Clips'),
(581, 581, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stands'),
(582, 582, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories'),
(583, 583, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Cabinets'),
(584, 584, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Covers & Cases'),
(585, 585, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Footswitches'),
(586, 586, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Knobs'),
(587, 587, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Stands'),
(588, 588, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Tubes'),
(589, 589, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifiers'),
(590, 590, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories'),
(591, 591, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories > Musical Keyboard Bags & Cases'),
(592, 592, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories > Musical Keyboard Stands'),
(593, 593, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories > Sustain Pedals'),
(594, 594, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories'),
(595, 595, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Cymbal & Drum Cases'),
(596, 596, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Cymbal & Drum Mutes'),
(597, 597, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Heads'),
(598, 598, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Keys'),
(599, 599, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware'),
(600, 600, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware > Bass Drum Beaters'),
(601, 601, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware > Drum Kit Mounting Hardware'),
(602, 602, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware > Drum Pedals'),
(603, 603, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Stick & Brush Accessories'),
(604, 604, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Stick & Brush Accessories > Drum Stick & Brush Bags & Holders'),
(605, 605, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Sticks & Brushes'),
(606, 606, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Electronic Drum Modules'),
(607, 607, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Hand Percussion Accessories'),
(608, 608, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Hand Percussion Accessories > Hand Percussion Bags & Cases'),
(609, 609, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Hand Percussion Accessories > Hand Percussion Stands & Mounts'),
(610, 610, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Percussion Mallets'),
(611, 611, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Percussion Stands'),
(612, 612, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories'),
(613, 613, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories'),
(614, 614, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Acoustic Guitar Pickups'),
(615, 615, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Capos'),
(616, 616, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Electric Guitar Pickups'),
(617, 617, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Cases & Gig Bags'),
(618, 618, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Fittings & Parts'),
(619, 619, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Humidifiers'),
(620, 620, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Picks'),
(621, 621, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Slides'),
(622, 622, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Stands'),
(623, 623, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Straps'),
(624, 624, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar String Winders'),
(625, 625, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Strings'),
(626, 626, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Tuning Pegs'),
(627, 627, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories'),
(628, 628, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Bow Cases'),
(629, 629, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Bows'),
(630, 630, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Cases'),
(631, 631, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Fittings & Parts'),
(632, 632, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Mutes'),
(633, 633, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Pickups'),
(634, 634, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Stands'),
(635, 635, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Strings'),
(636, 636, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning'),
(637, 637, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning > Bow Rosin'),
(638, 638, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning > String Instrument Cleaning Cloths'),
(639, 639, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning > String Instrument Polish'),
(640, 640, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories'),
(641, 641, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories'),
(642, 642, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Care & Cleaning'),
(643, 643, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Care & Cleaning > Bassoon Swabs'),
(644, 644, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Cases & Gigbags'),
(645, 645, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts'),
(646, 646, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts > Bassoon Bocals'),
(647, 647, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts > Bassoon Small Parts'),
(648, 648, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Reeds'),
(649, 649, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Stands'),
(650, 650, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Straps & Supports'),
(651, 651, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories'),
(652, 652, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning'),
(653, 653, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Care Kits'),
(654, 654, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Pad Savers'),
(655, 655, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Swabs'),
(656, 656, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Cases & Gigbags'),
(657, 657, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Ligatures & Caps'),
(658, 658, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts'),
(659, 659, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Barrels'),
(660, 660, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Bells'),
(661, 661, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Mouthpieces'),
(662, 662, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Small Parts'),
(663, 663, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Pegs & Stands'),
(664, 664, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Reeds'),
(665, 665, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Straps & Supports'),
(666, 666, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories'),
(667, 667, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning'),
(668, 668, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Care Kits'),
(669, 669, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Cleaning Rods'),
(670, 670, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Swabs'),
(671, 671, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Cases & Gigbags'),
(672, 672, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts'),
(673, 673, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts > Flute Headjoints'),
(674, 674, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts > Flute Small Parts'),
(675, 675, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Pegs & Stands'),
(676, 676, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Harmonica Accessories'),
(677, 677, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Harmonica Accessories > Harmonica Cases'),
(678, 678, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Harmonica Accessories > Harmonica Holders'),
(679, 679, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories'),
(680, 680, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning'),
(681, 681, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning > Oboe Care Kits'),
(682, 682, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning > Oboe Swabs'),
(683, 683, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Cases & Gigbags'),
(684, 684, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Parts'),
(685, 685, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Parts > Oboe Small Parts'),
(686, 686, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Pegs & Stands'),
(687, 687, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Reeds'),
(688, 688, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Straps & Supports'),
(689, 689, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories'),
(690, 690, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories > Recorder Care & Cleaning'),
(691, 691, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories > Recorder Cases'),
(692, 692, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories > Recorder Parts'),
(693, 693, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories'),
(694, 694, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning'),
(695, 695, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Care Kits'),
(696, 696, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Pad Savers'),
(697, 697, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Swabs'),
(698, 698, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Cases & Gigbags'),
(699, 699, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Ligatures & Caps'),
(700, 700, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts'),
(701, 701, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Mouthpieces'),
(702, 702, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Necks'),
(703, 703, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Small Parts'),
(704, 704, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Pegs & Stands'),
(705, 705, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Reeds'),
(706, 706, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Straps & Supports'),
(707, 707, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Cork Grease'),
(708, 708, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Polishing Cloths'),
(709, 709, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Reed Cases'),
(710, 710, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Reed Knives'),
(711, 711, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments'),
(712, 712, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Accordions & Concertinas'),
(713, 713, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Bagpipes'),
(714, 714, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments'),
(715, 715, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Alto & Baritone Horns'),
(716, 716, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Euphoniums'),
(717, 717, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > French Horns'),
(718, 718, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Trombones'),
(719, 719, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Trumpets & Cornets'),
(720, 720, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Tubas'),
(721, 721, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments'),
(722, 722, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Audio Samplers'),
(723, 723, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > MIDI Controllers'),
(724, 724, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Musical Keyboards'),
(725, 725, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Sound Synthesizers'),
(726, 726, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion'),
(727, 727, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Bass Drums'),
(728, 728, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Cymbals'),
(729, 729, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Drum Kits'),
(730, 730, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Electronic Drums'),
(731, 731, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Glockenspiels & Xylophones'),
(732, 732, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Gongs'),
(733, 733, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion'),
(734, 734, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Claves & Castanets'),
(735, 735, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Finger & Hand Cymbals'),
(736, 736, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Bells & Chimes'),
(737, 737, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums'),
(738, 738, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Bongos'),
(739, 739, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Cajons'),
(740, 740, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Congas'),
(741, 741, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Frame Drums'),
(742, 742, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Goblet Drums'),
(743, 743, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Tablas'),
(744, 744, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Talking Drums'),
(745, 745, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Blocks'),
(746, 746, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Cowbells'),
(747, 747, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Scrapers & Ratchets'),
(748, 748, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Shakers'),
(749, 749, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Triangles'),
(750, 750, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Tambourines'),
(751, 751, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Vibraslaps'),
(752, 752, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hi-Hats'),
(753, 753, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Practice Pads'),
(754, 754, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Snare Drums'),
(755, 755, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Tom-Toms'),
(756, 756, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Pianos'),
(757, 757, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments'),
(758, 758, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Cellos'),
(759, 759, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Guitars'),
(760, 760, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Harps'),
(761, 761, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Upright Basses'),
(762, 762, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Violas'),
(763, 763, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Violins'),
(764, 764, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds'),
(765, 765, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Bassoons'),
(766, 766, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Clarinets'),
(767, 767, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutes'),
(768, 768, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutophones'),
(769, 769, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Harmonicas'),
(770, 770, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Jew\'s Harps'),
(771, 771, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Melodicas'),
(772, 772, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Musical Pipes'),
(773, 773, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Oboes & English Horns'),
(774, 774, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Ocarinas'),
(775, 775, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Recorders'),
(776, 776, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Saxophones'),
(777, 777, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Tin Whistles'),
(778, 778, 0, 'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Train Whistles'),
(779, 779, 0, 'Arts & Entertainment > Party & Celebration'),
(780, 780, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving'),
(781, 781, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Corsage & BoutonniÃ¨re Pins'),
(782, 782, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Corsages & BoutonniÃ¨res'),
(783, 783, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Fresh Cut Flowers'),
(784, 784, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Cards & Certificates'),
(785, 785, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping'),
(786, 786, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Bags'),
(787, 787, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Boxes & Tins'),
(788, 788, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Tags & Labels'),
(789, 789, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Tissue Paper'),
(790, 790, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Wrapping Paper'),
(791, 791, 0, 'Arts & Entertainment > Party & Celebration > Gift Giving > Greeting & Note Cards'),
(792, 792, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies'),
(793, 793, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Advice Cards'),
(794, 794, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Balloon Kits'),
(795, 795, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Balloons'),
(796, 796, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Banners'),
(797, 797, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Birthday Candles'),
(798, 798, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Chair Sashes'),
(799, 799, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Cocktail Decorations'),
(800, 800, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Confetti'),
(801, 801, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Decorative Pom-Poms'),
(802, 802, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games'),
(803, 803, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games > Beer Pong'),
(804, 804, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games > Beer Pong > Beer Pong Tables'),
(805, 805, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Straws & Stirrers'),
(806, 806, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Envelope Seals'),
(807, 807, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Event Programs'),
(808, 808, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Fireworks & Firecrackers'),
(809, 809, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Inflatable Party Decorations'),
(810, 810, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Invitations'),
(811, 811, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Noisemakers & Party Blowers'),
(812, 812, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Party Favors'),
(813, 813, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Party Favors > Wedding Favors'),
(814, 814, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Party Games'),
(815, 815, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Party Hats'),
(816, 816, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Party Streamers & Curtains'),
(817, 817, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Party Supply Kits'),
(818, 818, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > PiÃ±atas'),
(819, 819, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Place Card Holders'),
(820, 820, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Place Cards'),
(821, 821, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Response Cards'),
(822, 822, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Sparklers'),
(823, 823, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Special Occasion Card Boxes & Holders'),
(824, 824, 0, 'Arts & Entertainment > Party & Celebration > Party Supplies > Spray String'),
(825, 825, 0, 'Arts & Entertainment > Party & Celebration > Special Effects'),
(826, 826, 0, 'Arts & Entertainment > Party & Celebration > Special Effects > Disco Balls'),
(827, 827, 0, 'Arts & Entertainment > Party & Celebration > Special Effects > Fog Machines'),
(828, 828, 0, 'Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Controllers'),
(829, 829, 0, 'Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Light Stands'),
(830, 830, 0, 'Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Lighting'),
(831, 831, 0, 'Arts & Entertainment > Party & Celebration > Trophies & Awards'),
(832, 832, 0, 'Baby & Toddler'),
(833, 833, 0, 'Baby & Toddler > Baby Bathing'),
(834, 834, 0, 'Baby & Toddler > Baby Bathing > Baby Bathtubs & Bath Seats'),
(835, 835, 0, 'Baby & Toddler > Baby Bathing > Shower Visors'),
(836, 836, 0, 'Baby & Toddler > Baby Gift Sets'),
(837, 837, 0, 'Baby & Toddler > Baby Health'),
(838, 838, 0, 'Baby & Toddler > Baby Health > Baby Health & Grooming Kits'),
(839, 839, 0, 'Baby & Toddler > Baby Health > Nasal Aspirators'),
(840, 840, 0, 'Baby & Toddler > Baby Health > Pacifier Clips & Holders'),
(841, 841, 0, 'Baby & Toddler > Baby Health > Pacifier Wipes'),
(842, 842, 0, 'Baby & Toddler > Baby Health > Pacifiers & Teethers'),
(843, 843, 0, 'Baby & Toddler > Baby Safety');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(844, 844, 0, 'Baby & Toddler > Baby Safety > Baby & Pet Gate Accessories'),
(845, 845, 0, 'Baby & Toddler > Baby Safety > Baby & Pet Gates'),
(846, 846, 0, 'Baby & Toddler > Baby Safety > Baby Monitors'),
(847, 847, 0, 'Baby & Toddler > Baby Safety > Baby Safety Harnesses & Leashes'),
(848, 848, 0, 'Baby & Toddler > Baby Safety > Baby Safety Locks & Guards'),
(849, 849, 0, 'Baby & Toddler > Baby Safety > Baby Safety Rails'),
(850, 850, 0, 'Baby & Toddler > Baby Toys & Activity Equipment'),
(851, 851, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Alphabet Toys'),
(852, 852, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Activity Toys'),
(853, 853, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Bouncers & Rockers'),
(854, 854, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Jumpers & Swings'),
(855, 855, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Mobile Accessories'),
(856, 856, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Mobiles'),
(857, 857, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Soothers'),
(858, 858, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Baby Walkers & Entertainers'),
(859, 859, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Play Mats & Gyms'),
(860, 860, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Play Yards'),
(861, 861, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Push & Pull Toys'),
(862, 862, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Rattles'),
(863, 863, 0, 'Baby & Toddler > Baby Toys & Activity Equipment > Sorting & Stacking Toys'),
(864, 864, 0, 'Baby & Toddler > Baby Transport'),
(865, 865, 0, 'Baby & Toddler > Baby Transport > Baby & Toddler Car Seats'),
(866, 866, 0, 'Baby & Toddler > Baby Transport > Baby Carriers'),
(867, 867, 0, 'Baby & Toddler > Baby Transport > Baby Strollers'),
(868, 868, 0, 'Baby & Toddler > Baby Transport Accessories'),
(869, 869, 0, 'Baby & Toddler > Baby Transport Accessories > Baby & Toddler Car Seat Accessories'),
(870, 870, 0, 'Baby & Toddler > Baby Transport Accessories > Baby Carrier Accessories'),
(871, 871, 0, 'Baby & Toddler > Baby Transport Accessories > Baby Stroller Accessories'),
(872, 872, 0, 'Baby & Toddler > Baby Transport Accessories > Baby Transport Liners & Sacks'),
(873, 873, 0, 'Baby & Toddler > Baby Transport Accessories > Shopping Cart & High Chair Covers'),
(874, 874, 0, 'Baby & Toddler > Diapering'),
(875, 875, 0, 'Baby & Toddler > Diapering > Baby Wipe Dispensers & Warmers'),
(876, 876, 0, 'Baby & Toddler > Diapering > Baby Wipes'),
(877, 877, 0, 'Baby & Toddler > Diapering > Changing Mat & Tray Covers'),
(878, 878, 0, 'Baby & Toddler > Diapering > Changing Mats & Trays'),
(879, 879, 0, 'Baby & Toddler > Diapering > Diaper Kits'),
(880, 880, 0, 'Baby & Toddler > Diapering > Diaper Liners'),
(881, 881, 0, 'Baby & Toddler > Diapering > Diaper Organizers'),
(882, 882, 0, 'Baby & Toddler > Diapering > Diaper Pail Accessories'),
(883, 883, 0, 'Baby & Toddler > Diapering > Diaper Pails'),
(884, 884, 0, 'Baby & Toddler > Diapering > Diaper Rash Treatments'),
(885, 885, 0, 'Baby & Toddler > Diapering > Diaper Wet Bags'),
(886, 886, 0, 'Baby & Toddler > Diapering > Diapers'),
(887, 887, 0, 'Baby & Toddler > Nursing & Feeding'),
(888, 888, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food'),
(889, 889, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Cereal'),
(890, 890, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Drinks'),
(891, 891, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Food'),
(892, 892, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Formula'),
(893, 893, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Snacks'),
(894, 894, 0, 'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Toddler Nutrition Drinks & Shakes'),
(895, 895, 0, 'Baby & Toddler > Nursing & Feeding > Baby Bottle Nipples & Liners'),
(896, 896, 0, 'Baby & Toddler > Nursing & Feeding > Baby Bottles'),
(897, 897, 0, 'Baby & Toddler > Nursing & Feeding > Baby Care Timers'),
(898, 898, 0, 'Baby & Toddler > Nursing & Feeding > Bibs'),
(899, 899, 0, 'Baby & Toddler > Nursing & Feeding > Bottle Warmers & Sterilizers'),
(900, 900, 0, 'Baby & Toddler > Nursing & Feeding > Breast Milk Storage Containers'),
(901, 901, 0, 'Baby & Toddler > Nursing & Feeding > Breast Pump Accessories'),
(902, 902, 0, 'Baby & Toddler > Nursing & Feeding > Breast Pumps'),
(903, 903, 0, 'Baby & Toddler > Nursing & Feeding > Burp Cloths'),
(904, 904, 0, 'Baby & Toddler > Nursing & Feeding > Nursing Covers'),
(905, 905, 0, 'Baby & Toddler > Nursing & Feeding > Nursing Pads & Shields'),
(906, 906, 0, 'Baby & Toddler > Nursing & Feeding > Nursing Pillow Covers'),
(907, 907, 0, 'Baby & Toddler > Nursing & Feeding > Nursing Pillows'),
(908, 908, 0, 'Baby & Toddler > Nursing & Feeding > Sippy Cups'),
(909, 909, 0, 'Baby & Toddler > Potty Training'),
(910, 910, 0, 'Baby & Toddler > Potty Training > Potty Seats'),
(911, 911, 0, 'Baby & Toddler > Potty Training > Potty Training Kits'),
(912, 912, 0, 'Baby & Toddler > Swaddling & Receiving Blankets'),
(913, 913, 0, 'Business & Industrial'),
(914, 914, 0, 'Business & Industrial > Advertising & Marketing'),
(915, 915, 0, 'Business & Industrial > Advertising & Marketing > Brochures'),
(916, 916, 0, 'Business & Industrial > Advertising & Marketing > Trade Show Counters'),
(917, 917, 0, 'Business & Industrial > Advertising & Marketing > Trade Show Displays'),
(918, 918, 0, 'Business & Industrial > Agriculture'),
(919, 919, 0, 'Business & Industrial > Agriculture > Animal Husbandry'),
(920, 920, 0, 'Business & Industrial > Agriculture > Animal Husbandry > Egg Incubators'),
(921, 921, 0, 'Business & Industrial > Agriculture > Animal Husbandry > Livestock Feed'),
(922, 922, 0, 'Business & Industrial > Agriculture > Animal Husbandry > Livestock Feeders & Waterers'),
(923, 923, 0, 'Business & Industrial > Agriculture > Animal Husbandry > Livestock Halters'),
(924, 924, 0, 'Business & Industrial > Automation Control Components'),
(925, 925, 0, 'Business & Industrial > Automation Control Components > Programmable Logic Controllers'),
(926, 926, 0, 'Business & Industrial > Automation Control Components > Variable Frequency & Adjustable Speed Drives'),
(927, 927, 0, 'Business & Industrial > Construction'),
(928, 928, 0, 'Business & Industrial > Construction > Surveying'),
(929, 929, 0, 'Business & Industrial > Construction > Traffic Cones & Barrels'),
(930, 930, 0, 'Business & Industrial > Dentistry'),
(931, 931, 0, 'Business & Industrial > Dentistry > Dental Cement'),
(932, 932, 0, 'Business & Industrial > Dentistry > Dental Tools'),
(933, 933, 0, 'Business & Industrial > Dentistry > Dental Tools > Dappen Dishes'),
(934, 934, 0, 'Business & Industrial > Dentistry > Dental Tools > Dental Mirrors'),
(935, 935, 0, 'Business & Industrial > Dentistry > Dental Tools > Dental Tool Sets'),
(936, 936, 0, 'Business & Industrial > Dentistry > Dental Tools > Prophy Cups'),
(937, 937, 0, 'Business & Industrial > Dentistry > Dental Tools > Prophy Heads'),
(938, 938, 0, 'Business & Industrial > Dentistry > Prophy Paste'),
(939, 939, 0, 'Business & Industrial > Film & Television'),
(940, 940, 0, 'Business & Industrial > Finance & Insurance'),
(941, 941, 0, 'Business & Industrial > Finance & Insurance > Bullion'),
(942, 942, 0, 'Business & Industrial > Food Service'),
(943, 943, 0, 'Business & Industrial > Food Service > Bakery Boxes'),
(944, 944, 0, 'Business & Industrial > Food Service > Bus Tubs'),
(945, 945, 0, 'Business & Industrial > Food Service > Check Presenters'),
(946, 946, 0, 'Business & Industrial > Food Service > Concession Food Containers'),
(947, 947, 0, 'Business & Industrial > Food Service > Disposable Lids'),
(948, 948, 0, 'Business & Industrial > Food Service > Disposable Serveware'),
(949, 949, 0, 'Business & Industrial > Food Service > Disposable Serveware > Disposable Serving Trays'),
(950, 950, 0, 'Business & Industrial > Food Service > Disposable Tableware'),
(951, 951, 0, 'Business & Industrial > Food Service > Disposable Tableware > Disposable Bowls'),
(952, 952, 0, 'Business & Industrial > Food Service > Disposable Tableware > Disposable Cups'),
(953, 953, 0, 'Business & Industrial > Food Service > Disposable Tableware > Disposable Cutlery'),
(954, 954, 0, 'Business & Industrial > Food Service > Disposable Tableware > Disposable Plates'),
(955, 955, 0, 'Business & Industrial > Food Service > Food Service Baskets'),
(956, 956, 0, 'Business & Industrial > Food Service > Food Service Carts'),
(957, 957, 0, 'Business & Industrial > Food Service > Food Washers & Dryers'),
(958, 958, 0, 'Business & Industrial > Food Service > Hot Dog Rollers'),
(959, 959, 0, 'Business & Industrial > Food Service > Ice Bins'),
(960, 960, 0, 'Business & Industrial > Food Service > Plate & Dish Warmers'),
(961, 961, 0, 'Business & Industrial > Food Service > Sneeze Guards'),
(962, 962, 0, 'Business & Industrial > Food Service > Take-Out Containers'),
(963, 963, 0, 'Business & Industrial > Food Service > Tilt Skillets'),
(964, 964, 0, 'Business & Industrial > Food Service > Vending Machines'),
(965, 965, 0, 'Business & Industrial > Forestry & Logging'),
(966, 966, 0, 'Business & Industrial > Hairdressing & Cosmetology'),
(967, 967, 0, 'Business & Industrial > Hairdressing & Cosmetology > Hairdressing Capes & Neck Covers'),
(968, 968, 0, 'Business & Industrial > Hairdressing & Cosmetology > Pedicure Chairs'),
(969, 969, 0, 'Business & Industrial > Hairdressing & Cosmetology > Salon Chairs'),
(970, 970, 0, 'Business & Industrial > Heavy Machinery'),
(971, 971, 0, 'Business & Industrial > Heavy Machinery > Chippers'),
(972, 972, 0, 'Business & Industrial > Hotel & Hospitality'),
(973, 973, 0, 'Business & Industrial > Industrial Storage'),
(974, 974, 0, 'Business & Industrial > Industrial Storage > Industrial Cabinets'),
(975, 975, 0, 'Business & Industrial > Industrial Storage > Industrial Shelving'),
(976, 976, 0, 'Business & Industrial > Industrial Storage > Shipping Containers'),
(977, 977, 0, 'Business & Industrial > Industrial Storage > Wire Partitions, Enclosures & Doors'),
(978, 978, 0, 'Business & Industrial > Industrial Storage Accessories'),
(979, 979, 0, 'Business & Industrial > Janitorial Carts & Caddies'),
(980, 980, 0, 'Business & Industrial > Law Enforcement'),
(981, 981, 0, 'Business & Industrial > Law Enforcement > Cuffs'),
(982, 982, 0, 'Business & Industrial > Law Enforcement > Metal Detectors'),
(983, 983, 0, 'Business & Industrial > Manufacturing'),
(984, 984, 0, 'Business & Industrial > Material Handling'),
(985, 985, 0, 'Business & Industrial > Material Handling > Conveyors'),
(986, 986, 0, 'Business & Industrial > Material Handling > Lifts & Hoists'),
(987, 987, 0, 'Business & Industrial > Material Handling > Lifts & Hoists > Hoists, Cranes & Trolleys'),
(988, 988, 0, 'Business & Industrial > Material Handling > Lifts & Hoists > Jacks & Lift Trucks'),
(989, 989, 0, 'Business & Industrial > Material Handling > Lifts & Hoists > Personnel Lifts'),
(990, 990, 0, 'Business & Industrial > Material Handling > Lifts & Hoists > Pulleys, Blocks & Sheaves'),
(991, 991, 0, 'Business & Industrial > Material Handling > Lifts & Hoists > Winches'),
(992, 992, 0, 'Business & Industrial > Material Handling > Pallets & Loading Platforms'),
(993, 993, 0, 'Business & Industrial > Medical'),
(994, 994, 0, 'Business & Industrial > Medical > Hospital Curtains'),
(995, 995, 0, 'Business & Industrial > Medical > Hospital Gowns'),
(996, 996, 0, 'Business & Industrial > Medical > Medical Bedding'),
(997, 997, 0, 'Business & Industrial > Medical > Medical Equipment'),
(998, 998, 0, 'Business & Industrial > Medical > Medical Equipment > Automated External Defibrillators'),
(999, 999, 0, 'Business & Industrial > Medical > Medical Equipment > Gait Belts'),
(1000, 1000, 0, 'Business & Industrial > Medical > Medical Equipment > Medical Reflex Hammers & Tuning Forks'),
(1001, 1001, 0, 'Business & Industrial > Medical > Medical Equipment > Medical Stretchers & Gurneys'),
(1002, 1002, 0, 'Business & Industrial > Medical > Medical Equipment > Otoscopes & Ophthalmoscopes'),
(1003, 1003, 0, 'Business & Industrial > Medical > Medical Equipment > Patient Lifts'),
(1004, 1004, 0, 'Business & Industrial > Medical > Medical Equipment > Stethoscopes'),
(1005, 1005, 0, 'Business & Industrial > Medical > Medical Equipment > Vital Signs Monitor Accessories'),
(1006, 1006, 0, 'Business & Industrial > Medical > Medical Equipment > Vital Signs Monitors'),
(1007, 1007, 0, 'Business & Industrial > Medical > Medical Furniture'),
(1008, 1008, 0, 'Business & Industrial > Medical > Medical Furniture > Chiropractic Tables'),
(1009, 1009, 0, 'Business & Industrial > Medical > Medical Furniture > Examination Chairs & Tables'),
(1010, 1010, 0, 'Business & Industrial > Medical > Medical Furniture > Homecare & Hospital Beds'),
(1011, 1011, 0, 'Business & Industrial > Medical > Medical Furniture > Medical Cabinets'),
(1012, 1012, 0, 'Business & Industrial > Medical > Medical Furniture > Medical Carts'),
(1013, 1013, 0, 'Business & Industrial > Medical > Medical Furniture > Medical Carts > Crash Carts'),
(1014, 1014, 0, 'Business & Industrial > Medical > Medical Furniture > Medical Carts > IV Poles & Carts'),
(1015, 1015, 0, 'Business & Industrial > Medical > Medical Furniture > Surgical Tables'),
(1016, 1016, 0, 'Business & Industrial > Medical > Medical Instruments'),
(1017, 1017, 0, 'Business & Industrial > Medical > Medical Instruments > Medical Forceps'),
(1018, 1018, 0, 'Business & Industrial > Medical > Medical Instruments > Scalpel Blades'),
(1019, 1019, 0, 'Business & Industrial > Medical > Medical Instruments > Scalpels'),
(1020, 1020, 0, 'Business & Industrial > Medical > Medical Instruments > Surgical Needles & Sutures'),
(1021, 1021, 0, 'Business & Industrial > Medical > Medical Supplies'),
(1022, 1022, 0, 'Business & Industrial > Medical > Medical Supplies > Disposable Gloves'),
(1023, 1023, 0, 'Business & Industrial > Medical > Medical Supplies > Finger Cots'),
(1024, 1024, 0, 'Business & Industrial > Medical > Medical Supplies > Medical Needles & Syringes'),
(1025, 1025, 0, 'Business & Industrial > Medical > Medical Supplies > Ostomy Supplies'),
(1026, 1026, 0, 'Business & Industrial > Medical > Medical Supplies > Tongue Depressors'),
(1027, 1027, 0, 'Business & Industrial > Medical > Medical Teaching Equipment'),
(1028, 1028, 0, 'Business & Industrial > Medical > Medical Teaching Equipment > Medical & Emergency Response Training Mannequins'),
(1029, 1029, 0, 'Business & Industrial > Medical > Scrub Caps'),
(1030, 1030, 0, 'Business & Industrial > Medical > Scrubs'),
(1031, 1031, 0, 'Business & Industrial > Medical > Surgical Gowns'),
(1032, 1032, 0, 'Business & Industrial > Mining & Quarrying'),
(1033, 1033, 0, 'Business & Industrial > Piercing & Tattooing'),
(1034, 1034, 0, 'Business & Industrial > Piercing & Tattooing > Piercing Supplies'),
(1035, 1035, 0, 'Business & Industrial > Piercing & Tattooing > Piercing Supplies > Piercing Needles'),
(1036, 1036, 0, 'Business & Industrial > Piercing & Tattooing > Tattooing Supplies'),
(1037, 1037, 0, 'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattoo Cover-Ups'),
(1038, 1038, 0, 'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Inks'),
(1039, 1039, 0, 'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Machines'),
(1040, 1040, 0, 'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Needles'),
(1041, 1041, 0, 'Business & Industrial > Retail'),
(1042, 1042, 0, 'Business & Industrial > Retail > Clothing Display Racks'),
(1043, 1043, 0, 'Business & Industrial > Retail > Display Mannequins'),
(1044, 1044, 0, 'Business & Industrial > Retail > Mannequin Parts'),
(1045, 1045, 0, 'Business & Industrial > Retail > Money Handling'),
(1046, 1046, 0, 'Business & Industrial > Retail > Money Handling > Banknote Verifiers'),
(1047, 1047, 0, 'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories'),
(1048, 1048, 0, 'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories > Cash Drawers & Trays'),
(1049, 1049, 0, 'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories > Credit Card Terminals'),
(1050, 1050, 0, 'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories > Signature Capture Pads'),
(1051, 1051, 0, 'Business & Industrial > Retail > Money Handling > Cash Registers & POS Terminals'),
(1052, 1052, 0, 'Business & Industrial > Retail > Money Handling > Coin & Bill Counters'),
(1053, 1053, 0, 'Business & Industrial > Retail > Money Handling > Money Changers'),
(1054, 1054, 0, 'Business & Industrial > Retail > Money Handling > Money Deposit Bags'),
(1055, 1055, 0, 'Business & Industrial > Retail > Money Handling > Paper Coin Wrappers & Bill Straps'),
(1056, 1056, 0, 'Business & Industrial > Retail > Paper & Plastic Shopping Bags'),
(1057, 1057, 0, 'Business & Industrial > Retail > Pricing Guns'),
(1058, 1058, 0, 'Business & Industrial > Retail > Retail Display Cases'),
(1059, 1059, 0, 'Business & Industrial > Retail > Retail Display Props & Models'),
(1060, 1060, 0, 'Business & Industrial > Science & Laboratory'),
(1061, 1061, 0, 'Business & Industrial > Science & Laboratory > Biochemicals'),
(1062, 1062, 0, 'Business & Industrial > Science & Laboratory > Dissection Kits'),
(1063, 1063, 0, 'Business & Industrial > Science & Laboratory > Laboratory Chemicals'),
(1064, 1064, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment'),
(1065, 1065, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Autoclaves'),
(1066, 1066, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Centrifuges'),
(1067, 1067, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Dry Ice Makers'),
(1068, 1068, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Freeze-Drying Machines'),
(1069, 1069, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Blenders'),
(1070, 1070, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Freezers'),
(1071, 1071, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Funnels'),
(1072, 1072, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Hot Plates'),
(1073, 1073, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Ovens'),
(1074, 1074, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories'),
(1075, 1075, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Cameras'),
(1076, 1076, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Eyepieces & Adapters'),
(1077, 1077, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Objective Lenses'),
(1078, 1078, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Replacement Bulbs'),
(1079, 1079, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Slides'),
(1080, 1080, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscopes'),
(1081, 1081, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microtomes'),
(1082, 1082, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometer Accessories'),
(1083, 1083, 0, 'Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometers'),
(1084, 1084, 0, 'Business & Industrial > Science & Laboratory > Laboratory Specimens'),
(1085, 1085, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies'),
(1086, 1086, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Beakers'),
(1087, 1087, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Graduated Cylinders'),
(1088, 1088, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Laboratory Flasks'),
(1089, 1089, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Petri Dishes'),
(1090, 1090, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Pipettes'),
(1091, 1091, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Test Tube Racks'),
(1092, 1092, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Test Tubes'),
(1093, 1093, 0, 'Business & Industrial > Science & Laboratory > Laboratory Supplies > Wash Bottles'),
(1094, 1094, 0, 'Business & Industrial > Signage'),
(1095, 1095, 0, 'Business & Industrial > Signage > Business Hour Signs'),
(1096, 1096, 0, 'Business & Industrial > Signage > Digital Signs'),
(1097, 1097, 0, 'Business & Industrial > Signage > Electric Signs'),
(1098, 1098, 0, 'Business & Industrial > Signage > Electric Signs > LED Signs'),
(1099, 1099, 0, 'Business & Industrial > Signage > Electric Signs > Neon Signs'),
(1100, 1100, 0, 'Business & Industrial > Signage > Emergency & Exit Signs'),
(1101, 1101, 0, 'Business & Industrial > Signage > Facility Identification Signs'),
(1102, 1102, 0, 'Business & Industrial > Signage > Open & Closed Signs'),
(1103, 1103, 0, 'Business & Industrial > Signage > Parking Signs & Permits'),
(1104, 1104, 0, 'Business & Industrial > Signage > Policy Signs'),
(1105, 1105, 0, 'Business & Industrial > Signage > Retail & Sale Signs'),
(1106, 1106, 0, 'Business & Industrial > Signage > Road & Traffic Signs'),
(1107, 1107, 0, 'Business & Industrial > Signage > Safety & Warning Signs'),
(1108, 1108, 0, 'Business & Industrial > Signage > Security Signs'),
(1109, 1109, 0, 'Business & Industrial > Signage > Sidewalk & Yard Signs'),
(1110, 1110, 0, 'Business & Industrial > Work Safety Protective Gear'),
(1111, 1111, 0, 'Business & Industrial > Work Safety Protective Gear > Bullet Proof Vests'),
(1112, 1112, 0, 'Business & Industrial > Work Safety Protective Gear > Gas Mask & Respirator Accessories'),
(1113, 1113, 0, 'Business & Industrial > Work Safety Protective Gear > Hardhats'),
(1114, 1114, 0, 'Business & Industrial > Work Safety Protective Gear > Hazardous Material Suits'),
(1115, 1115, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Aprons'),
(1116, 1116, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Eyewear'),
(1117, 1117, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Masks'),
(1118, 1118, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Masks > Dust Masks'),
(1119, 1119, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Masks > Fireman\'s Masks'),
(1120, 1120, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Masks > Gas Masks & Respirators'),
(1121, 1121, 0, 'Business & Industrial > Work Safety Protective Gear > Protective Masks > Medical Masks'),
(1122, 1122, 0, 'Business & Industrial > Work Safety Protective Gear > Safety Gloves'),
(1123, 1123, 0, 'Business & Industrial > Work Safety Protective Gear > Safety Knee Pads'),
(1124, 1124, 0, 'Business & Industrial > Work Safety Protective Gear > Welding Helmets'),
(1125, 1125, 0, 'Business & Industrial > Work Safety Protective Gear > Work Safety Harnesses'),
(1126, 1126, 0, 'Business & Industrial > Work Safety Protective Gear > Work Safety Tethers'),
(1127, 1127, 0, 'Cameras & Optics'),
(1128, 1128, 0, 'Cameras & Optics > Camera & Optic Accessories'),
(1129, 1129, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera & Optic Replacement Cables'),
(1130, 1130, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses'),
(1131, 1131, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses > Camera Lenses'),
(1132, 1132, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses > Surveillance Camera Lenses'),
(1133, 1133, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses > Video Camera Lenses'),
(1134, 1134, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories'),
(1135, 1135, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens & Filter Adapter Rings'),
(1136, 1136, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Bags'),
(1137, 1137, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Caps'),
(1138, 1138, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Converters'),
(1139, 1139, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Filters'),
(1140, 1140, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Hoods'),
(1141, 1141, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories'),
(1142, 1142, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Accessory Sets'),
(1143, 1143, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Bags & Cases'),
(1144, 1144, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Body Replacement Panels & Doors'),
(1145, 1145, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Digital Backs'),
(1146, 1146, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Film'),
(1147, 1147, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Flash Accessories'),
(1148, 1148, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Flashes'),
(1149, 1149, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Focus Devices'),
(1150, 1150, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Gears'),
(1151, 1151, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Grips'),
(1152, 1152, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Image Sensors'),
(1153, 1153, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Lens Zoom Units'),
(1154, 1154, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Remote Controls'),
(1155, 1155, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Replacement Buttons & Knobs'),
(1156, 1156, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Replacement Screens & Displays'),
(1157, 1157, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Silencers & Sound Blimps'),
(1158, 1158, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Stabilizers & Supports'),
(1159, 1159, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Straps'),
(1160, 1160, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Sun Hoods & Viewfinder Attachments'),
(1161, 1161, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Flash Brackets'),
(1162, 1162, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > On-Camera Monitors'),
(1163, 1163, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Surveillance Camera Accessories'),
(1164, 1164, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Underwater Camera Housing Accessories'),
(1165, 1165, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Underwater Camera Housings'),
(1166, 1166, 0, 'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Video Camera Lights'),
(1167, 1167, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories'),
(1168, 1168, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Binocular & Monocular Accessories'),
(1169, 1169, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Optics Bags & Cases'),
(1170, 1170, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Rangefinder Accessories'),
(1171, 1171, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Spotting Scope Accessories'),
(1172, 1172, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Telescope Accessories'),
(1173, 1173, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Thermal Optic Accessories'),
(1174, 1174, 0, 'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Weapon Scope & Sight Accessories'),
(1175, 1175, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories'),
(1176, 1176, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod & Monopod Cases'),
(1177, 1177, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod & Monopod Heads'),
(1178, 1178, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Collars & Mounts'),
(1179, 1179, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Handles'),
(1180, 1180, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Spreaders'),
(1181, 1181, 0, 'Cameras & Optics > Camera & Optic Accessories > Tripods & Monopods'),
(1182, 1182, 0, 'Cameras & Optics > Cameras'),
(1183, 1183, 0, 'Cameras & Optics > Cameras > Borescopes'),
(1184, 1184, 0, 'Cameras & Optics > Cameras > Digital Cameras'),
(1185, 1185, 0, 'Cameras & Optics > Cameras > Disposable Cameras'),
(1186, 1186, 0, 'Cameras & Optics > Cameras > Film Cameras'),
(1187, 1187, 0, 'Cameras & Optics > Cameras > Surveillance Cameras'),
(1188, 1188, 0, 'Cameras & Optics > Cameras > Trail Cameras'),
(1189, 1189, 0, 'Cameras & Optics > Cameras > Video Cameras'),
(1190, 1190, 0, 'Cameras & Optics > Cameras > Webcams'),
(1191, 1191, 0, 'Cameras & Optics > Optics'),
(1192, 1192, 0, 'Cameras & Optics > Optics > Binoculars'),
(1193, 1193, 0, 'Cameras & Optics > Optics > Monoculars'),
(1194, 1194, 0, 'Cameras & Optics > Optics > Rangefinders'),
(1195, 1195, 0, 'Cameras & Optics > Optics > Scopes'),
(1196, 1196, 0, 'Cameras & Optics > Optics > Scopes > Spotting Scopes'),
(1197, 1197, 0, 'Cameras & Optics > Optics > Scopes > Telescopes'),
(1198, 1198, 0, 'Cameras & Optics > Optics > Scopes > Weapon Scopes & Sights'),
(1199, 1199, 0, 'Cameras & Optics > Photography'),
(1200, 1200, 0, 'Cameras & Optics > Photography > Darkroom'),
(1201, 1201, 0, 'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment'),
(1202, 1202, 0, 'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Copystands'),
(1203, 1203, 0, 'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Darkroom Sinks'),
(1204, 1204, 0, 'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Developing Tanks & Reels'),
(1205, 1205, 0, 'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Print Trays, Washers & Dryers'),
(1206, 1206, 0, 'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Retouching Equipment & Supplies'),
(1207, 1207, 0, 'Cameras & Optics > Photography > Darkroom > Enlarging Equipment'),
(1208, 1208, 0, 'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Darkroom Easels'),
(1209, 1209, 0, 'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Darkroom Timers'),
(1210, 1210, 0, 'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Focusing Aids'),
(1211, 1211, 0, 'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Photographic Analyzers'),
(1212, 1212, 0, 'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Photographic Enlargers'),
(1213, 1213, 0, 'Cameras & Optics > Photography > Darkroom > Photographic Chemicals'),
(1214, 1214, 0, 'Cameras & Optics > Photography > Darkroom > Photographic Paper'),
(1215, 1215, 0, 'Cameras & Optics > Photography > Darkroom > Safelights'),
(1216, 1216, 0, 'Cameras & Optics > Photography > Lighting & Studio'),
(1217, 1217, 0, 'Cameras & Optics > Photography > Lighting & Studio > Light Meter Accessories'),
(1218, 1218, 0, 'Cameras & Optics > Photography > Lighting & Studio > Light Meters'),
(1219, 1219, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Backgrounds'),
(1220, 1220, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Light & Flash Accessories'),
(1221, 1221, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls'),
(1222, 1222, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Flash Diffusers'),
(1223, 1223, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Flash Reflectors'),
(1224, 1224, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Lighting Filters & Gobos'),
(1225, 1225, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Softboxes'),
(1226, 1226, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Lights & Flashes'),
(1227, 1227, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Stand & Mount Accessories'),
(1228, 1228, 0, 'Cameras & Optics > Photography > Lighting & Studio > Studio Stands & Mounts'),
(1229, 1229, 0, 'Cameras & Optics > Photography > Photo Mounting Supplies'),
(1230, 1230, 0, 'Cameras & Optics > Photography > Photo Negative & Slide Storage'),
(1231, 1231, 0, 'Electronics'),
(1232, 1232, 0, 'Electronics > Arcade Equipment'),
(1233, 1233, 0, 'Electronics > Arcade Equipment > Basketball Arcade Games'),
(1234, 1234, 0, 'Electronics > Arcade Equipment > Pinball Machine Accessories'),
(1235, 1235, 0, 'Electronics > Arcade Equipment > Pinball Machines'),
(1236, 1236, 0, 'Electronics > Arcade Equipment > Skee-Ball Machines'),
(1237, 1237, 0, 'Electronics > Arcade Equipment > Video Game Arcade Cabinet Accessories'),
(1238, 1238, 0, 'Electronics > Arcade Equipment > Video Game Arcade Cabinets'),
(1239, 1239, 0, 'Electronics > Audio'),
(1240, 1240, 0, 'Electronics > Audio > Audio Accessories'),
(1241, 1241, 0, 'Electronics > Audio > Audio Accessories > Audio & Video Receiver Accessories'),
(1242, 1242, 0, 'Electronics > Audio > Audio Accessories > Headphone & Headset Accessories'),
(1243, 1243, 0, 'Electronics > Audio > Audio Accessories > Headphone & Headset Accessories > Headphone Cushions & Tips'),
(1244, 1244, 0, 'Electronics > Audio > Audio Accessories > Karaoke System Accessories'),
(1245, 1245, 0, 'Electronics > Audio > Audio Accessories > Karaoke System Accessories > Karaoke Chips'),
(1246, 1246, 0, 'Electronics > Audio > Audio Accessories > MP3 Player Accessories'),
(1247, 1247, 0, 'Electronics > Audio > Audio Accessories > MP3 Player Accessories > MP3 Player & Mobile Phone Accessory Sets'),
(1248, 1248, 0, 'Electronics > Audio > Audio Accessories > MP3 Player Accessories > MP3 Player Cases'),
(1249, 1249, 0, 'Electronics > Audio > Audio Accessories > Microphone Accessories'),
(1250, 1250, 0, 'Electronics > Audio > Audio Accessories > Microphone Stands'),
(1251, 1251, 0, 'Electronics > Audio > Audio Accessories > Satellite Radio Accessories'),
(1252, 1252, 0, 'Electronics > Audio > Audio Accessories > Speaker Accessories'),
(1253, 1253, 0, 'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Bags, Covers & Cases'),
(1254, 1254, 0, 'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Components & Kits'),
(1255, 1255, 0, 'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Stand Bags'),
(1256, 1256, 0, 'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Stands & Mounts'),
(1257, 1257, 0, 'Electronics > Audio > Audio Accessories > Speaker Accessories > Tactile Transducers'),
(1258, 1258, 0, 'Electronics > Audio > Audio Accessories > Turntable Accessories'),
(1259, 1259, 0, 'Electronics > Audio > Audio Components'),
(1260, 1260, 0, 'Electronics > Audio > Audio Components > Audio & Video Receivers'),
(1261, 1261, 0, 'Electronics > Audio > Audio Components > Audio Amplifiers'),
(1262, 1262, 0, 'Electronics > Audio > Audio Components > Audio Amplifiers > Headphone Amplifiers'),
(1263, 1263, 0, 'Electronics > Audio > Audio Components > Audio Amplifiers > Power Amplifiers'),
(1264, 1264, 0, 'Electronics > Audio > Audio Components > Audio Mixers'),
(1265, 1265, 0, 'Electronics > Audio > Audio Components > Audio Transmitters'),
(1266, 1266, 0, 'Electronics > Audio > Audio Components > Audio Transmitters > Bluetooth Transmitters'),
(1267, 1267, 0, 'Electronics > Audio > Audio Components > Audio Transmitters > FM Transmitters'),
(1268, 1268, 0, 'Electronics > Audio > Audio Components > Channel Strips'),
(1269, 1269, 0, 'Electronics > Audio > Audio Components > Direct Boxes'),
(1270, 1270, 0, 'Electronics > Audio > Audio Components > Headphones & Headsets'),
(1271, 1271, 0, 'Electronics > Audio > Audio Components > Microphones'),
(1272, 1272, 0, 'Electronics > Audio > Audio Components > Signal Processors'),
(1273, 1273, 0, 'Electronics > Audio > Audio Components > Signal Processors > Crossovers'),
(1274, 1274, 0, 'Electronics > Audio > Audio Components > Signal Processors > Effects Processors'),
(1275, 1275, 0, 'Electronics > Audio > Audio Components > Signal Processors > Equalizers'),
(1276, 1276, 0, 'Electronics > Audio > Audio Components > Signal Processors > Loudspeaker Management Systems'),
(1277, 1277, 0, 'Electronics > Audio > Audio Components > Signal Processors > Microphone Preamps'),
(1278, 1278, 0, 'Electronics > Audio > Audio Components > Signal Processors > Noise Gates & Compressors'),
(1279, 1279, 0, 'Electronics > Audio > Audio Components > Signal Processors > Phono Preamps'),
(1280, 1280, 0, 'Electronics > Audio > Audio Components > Speakers'),
(1281, 1281, 0, 'Electronics > Audio > Audio Components > Studio Recording Bundles'),
(1282, 1282, 0, 'Electronics > Audio > Audio Players & Recorders'),
(1283, 1283, 0, 'Electronics > Audio > Audio Players & Recorders > Boomboxes'),
(1284, 1284, 0, 'Electronics > Audio > Audio Players & Recorders > CD Players & Recorders'),
(1285, 1285, 0, 'Electronics > Audio > Audio Players & Recorders > Cassette Players & Recorders'),
(1286, 1286, 0, 'Electronics > Audio > Audio Players & Recorders > Home Theater Systems'),
(1287, 1287, 0, 'Electronics > Audio > Audio Players & Recorders > Jukeboxes'),
(1288, 1288, 0, 'Electronics > Audio > Audio Players & Recorders > Karaoke Systems'),
(1289, 1289, 0, 'Electronics > Audio > Audio Players & Recorders > MP3 Players'),
(1290, 1290, 0, 'Electronics > Audio > Audio Players & Recorders > MiniDisc Players & Recorders'),
(1291, 1291, 0, 'Electronics > Audio > Audio Players & Recorders > Multitrack Recorders'),
(1292, 1292, 0, 'Electronics > Audio > Audio Players & Recorders > Radios'),
(1293, 1293, 0, 'Electronics > Audio > Audio Players & Recorders > Reel-to-Reel Tape Players & Recorders'),
(1294, 1294, 0, 'Electronics > Audio > Audio Players & Recorders > Stereo Systems'),
(1295, 1295, 0, 'Electronics > Audio > Audio Players & Recorders > Turntables & Record Players'),
(1296, 1296, 0, 'Electronics > Audio > Audio Players & Recorders > Voice Recorders'),
(1297, 1297, 0, 'Electronics > Audio > Bullhorns'),
(1298, 1298, 0, 'Electronics > Audio > DJ & Specialty Audio'),
(1299, 1299, 0, 'Electronics > Audio > DJ & Specialty Audio > DJ CD Players'),
(1300, 1300, 0, 'Electronics > Audio > DJ & Specialty Audio > DJ Systems'),
(1301, 1301, 0, 'Electronics > Audio > Public Address Systems'),
(1302, 1302, 0, 'Electronics > Audio > Stage Equipment'),
(1303, 1303, 0, 'Electronics > Audio > Stage Equipment > Wireless Transmitters'),
(1304, 1304, 0, 'Electronics > Circuit Boards & Components'),
(1305, 1305, 0, 'Electronics > Circuit Boards & Components > Circuit Board Accessories'),
(1306, 1306, 0, 'Electronics > Circuit Boards & Components > Circuit Decoders & Encoders'),
(1307, 1307, 0, 'Electronics > Circuit Boards & Components > Circuit Prototyping'),
(1308, 1308, 0, 'Electronics > Circuit Boards & Components > Circuit Prototyping > Breadboards'),
(1309, 1309, 0, 'Electronics > Circuit Boards & Components > Electronic Filters'),
(1310, 1310, 0, 'Electronics > Circuit Boards & Components > Passive Circuit Components'),
(1311, 1311, 0, 'Electronics > Circuit Boards & Components > Passive Circuit Components > Capacitors'),
(1312, 1312, 0, 'Electronics > Circuit Boards & Components > Passive Circuit Components > Electronic Oscillators'),
(1313, 1313, 0, 'Electronics > Circuit Boards & Components > Passive Circuit Components > Inductors'),
(1314, 1314, 0, 'Electronics > Circuit Boards & Components > Passive Circuit Components > Resistors'),
(1315, 1315, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards'),
(1316, 1316, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Camera Circuit Boards'),
(1317, 1317, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards'),
(1318, 1318, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards > Computer Inverter Boards'),
(1319, 1319, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards > Hard Drive Circuit Boards'),
(1320, 1320, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards > Motherboards'),
(1321, 1321, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Development Boards'),
(1322, 1322, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Exercise Machine Circuit Boards'),
(1323, 1323, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Household Appliance Circuit Boards'),
(1324, 1324, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Pool & Spa Circuit Boards'),
(1325, 1325, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Printer, Copier, & Fax Machine Circuit Boards'),
(1326, 1326, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Scanner Circuit Boards'),
(1327, 1327, 0, 'Electronics > Circuit Boards & Components > Printed Circuit Boards > Television Circuit Boards'),
(1328, 1328, 0, 'Electronics > Circuit Boards & Components > Semiconductors'),
(1329, 1329, 0, 'Electronics > Circuit Boards & Components > Semiconductors > Diodes'),
(1330, 1330, 0, 'Electronics > Circuit Boards & Components > Semiconductors > Integrated Circuits & Chips'),
(1331, 1331, 0, 'Electronics > Circuit Boards & Components > Semiconductors > Microcontrollers'),
(1332, 1332, 0, 'Electronics > Circuit Boards & Components > Semiconductors > Transistors'),
(1333, 1333, 0, 'Electronics > Communications'),
(1334, 1334, 0, 'Electronics > Communications > Answering Machines'),
(1335, 1335, 0, 'Electronics > Communications > Caller IDs'),
(1336, 1336, 0, 'Electronics > Communications > Communication Radio Accessories'),
(1337, 1337, 0, 'Electronics > Communications > Communication Radios'),
(1338, 1338, 0, 'Electronics > Communications > Communication Radios > CB Radios'),
(1339, 1339, 0, 'Electronics > Communications > Communication Radios > Radio Scanners'),
(1340, 1340, 0, 'Electronics > Communications > Communication Radios > Two-Way Radios'),
(1341, 1341, 0, 'Electronics > Communications > Intercom Accessories'),
(1342, 1342, 0, 'Electronics > Communications > Intercoms'),
(1343, 1343, 0, 'Electronics > Communications > Pagers'),
(1344, 1344, 0, 'Electronics > Communications > Telephony'),
(1345, 1345, 0, 'Electronics > Communications > Telephony > Conference Phones'),
(1346, 1346, 0, 'Electronics > Communications > Telephony > Corded Phones'),
(1347, 1347, 0, 'Electronics > Communications > Telephony > Cordless Phones'),
(1348, 1348, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories'),
(1349, 1349, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Camera Accessories'),
(1350, 1350, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Cases'),
(1351, 1351, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Charms & Straps'),
(1352, 1352, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Pre-Paid Cards & SIM Cards'),
(1353, 1353, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Replacement Parts'),
(1354, 1354, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Stands'),
(1355, 1355, 0, 'Electronics > Communications > Telephony > Mobile Phone Accessories > SIM Card Ejection Tools'),
(1356, 1356, 0, 'Electronics > Communications > Telephony > Mobile Phones'),
(1357, 1357, 0, 'Electronics > Communications > Telephony > Satellite Phones'),
(1358, 1358, 0, 'Electronics > Communications > Telephony > Telephone Accessories'),
(1359, 1359, 0, 'Electronics > Communications > Telephony > Telephone Accessories > Phone Cards'),
(1360, 1360, 0, 'Electronics > Communications > Video Conferencing'),
(1361, 1361, 0, 'Electronics > Components'),
(1362, 1362, 0, 'Electronics > Components > Accelerometers'),
(1363, 1363, 0, 'Electronics > Components > Converters'),
(1364, 1364, 0, 'Electronics > Components > Converters > Audio Converters'),
(1365, 1365, 0, 'Electronics > Components > Converters > Scan Converters'),
(1366, 1366, 0, 'Electronics > Components > Electronics Component Connectors'),
(1367, 1367, 0, 'Electronics > Components > Modulators'),
(1368, 1368, 0, 'Electronics > Components > Splitters'),
(1369, 1369, 0, 'Electronics > Computers'),
(1370, 1370, 0, 'Electronics > Computers > Barebone Computers'),
(1371, 1371, 0, 'Electronics > Computers > Computer Servers'),
(1372, 1372, 0, 'Electronics > Computers > Desktop Computers'),
(1373, 1373, 0, 'Electronics > Computers > Handheld Devices'),
(1374, 1374, 0, 'Electronics > Computers > Handheld Devices > Data Collectors'),
(1375, 1375, 0, 'Electronics > Computers > Handheld Devices > E-Book Readers'),
(1376, 1376, 0, 'Electronics > Computers > Handheld Devices > PDAs'),
(1377, 1377, 0, 'Electronics > Computers > Interactive Kiosks'),
(1378, 1378, 0, 'Electronics > Computers > Laptops'),
(1379, 1379, 0, 'Electronics > Computers > Smart Glasses'),
(1380, 1380, 0, 'Electronics > Computers > Tablet Computers'),
(1381, 1381, 0, 'Electronics > Computers > Thin & Zero Clients'),
(1382, 1382, 0, 'Electronics > Computers > Touch Table Computers'),
(1383, 1383, 0, 'Electronics > Electronics Accessories'),
(1384, 1384, 0, 'Electronics > Electronics Accessories > Adapters'),
(1385, 1385, 0, 'Electronics > Electronics Accessories > Adapters > Audio & Video Cable Adapters & Couplers'),
(1386, 1386, 0, 'Electronics > Electronics Accessories > Adapters > Memory Card Adapters'),
(1387, 1387, 0, 'Electronics > Electronics Accessories > Adapters > USB Adapters'),
(1388, 1388, 0, 'Electronics > Electronics Accessories > Antenna Accessories'),
(1389, 1389, 0, 'Electronics > Electronics Accessories > Antenna Accessories > Antenna Mounts & Brackets'),
(1390, 1390, 0, 'Electronics > Electronics Accessories > Antenna Accessories > Antenna Rotators'),
(1391, 1391, 0, 'Electronics > Electronics Accessories > Antenna Accessories > Satellite LNBs'),
(1392, 1392, 0, 'Electronics > Electronics Accessories > Antennas'),
(1393, 1393, 0, 'Electronics > Electronics Accessories > Audio & Video Splitters & Switches'),
(1394, 1394, 0, 'Electronics > Electronics Accessories > Audio & Video Splitters & Switches > DVI Splitters & Switches'),
(1395, 1395, 0, 'Electronics > Electronics Accessories > Audio & Video Splitters & Switches > HDMI Splitters & Switches'),
(1396, 1396, 0, 'Electronics > Electronics Accessories > Audio & Video Splitters & Switches > VGA Splitters & Switches'),
(1397, 1397, 0, 'Electronics > Electronics Accessories > Blank Media'),
(1398, 1398, 0, 'Electronics > Electronics Accessories > Cable Management'),
(1399, 1399, 0, 'Electronics > Electronics Accessories > Cable Management > Cable Clips'),
(1400, 1400, 0, 'Electronics > Electronics Accessories > Cable Management > Cable Tie Guns'),
(1401, 1401, 0, 'Electronics > Electronics Accessories > Cable Management > Cable Trays'),
(1402, 1402, 0, 'Electronics > Electronics Accessories > Cable Management > Patch Panels'),
(1403, 1403, 0, 'Electronics > Electronics Accessories > Cable Management > Wire & Cable Identification Markers'),
(1404, 1404, 0, 'Electronics > Electronics Accessories > Cable Management > Wire & Cable Sleeves'),
(1405, 1405, 0, 'Electronics > Electronics Accessories > Cable Management > Wire & Cable Ties'),
(1406, 1406, 0, 'Electronics > Electronics Accessories > Cables'),
(1407, 1407, 0, 'Electronics > Electronics Accessories > Cables > Audio & Video Cables'),
(1408, 1408, 0, 'Electronics > Electronics Accessories > Cables > KVM Cables'),
(1409, 1409, 0, 'Electronics > Electronics Accessories > Cables > Network Cables'),
(1410, 1410, 0, 'Electronics > Electronics Accessories > Cables > Storage & Data Transfer Cables'),
(1411, 1411, 0, 'Electronics > Electronics Accessories > Cables > System & Power Cables'),
(1412, 1412, 0, 'Electronics > Electronics Accessories > Cables > Telephone Cables'),
(1413, 1413, 0, 'Electronics > Electronics Accessories > Computer Accessories'),
(1414, 1414, 0, 'Electronics > Electronics Accessories > Computer Accessories > Computer Accessory Sets'),
(1415, 1415, 0, 'Electronics > Electronics Accessories > Computer Accessories > Computer Covers & Skins'),
(1416, 1416, 0, 'Electronics > Electronics Accessories > Computer Accessories > Computer Risers & Stands'),
(1417, 1417, 0, 'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories'),
(1418, 1418, 0, 'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > E-Book Reader Accessories'),
(1419, 1419, 0, 'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > E-Book Reader Accessories > E-Book Reader Cases'),
(1420, 1420, 0, 'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > PDA Accessories');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(1421, 1421, 0, 'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > PDA Accessories > PDA Cases'),
(1422, 1422, 0, 'Electronics > Electronics Accessories > Computer Accessories > Keyboard & Mouse Wrist Rests'),
(1423, 1423, 0, 'Electronics > Electronics Accessories > Computer Accessories > Keyboard Trays & Platforms'),
(1424, 1424, 0, 'Electronics > Electronics Accessories > Computer Accessories > Laptop Docking Stations'),
(1425, 1425, 0, 'Electronics > Electronics Accessories > Computer Accessories > Mouse Pads'),
(1426, 1426, 0, 'Electronics > Electronics Accessories > Computer Accessories > Stylus Pen Nibs & Refills'),
(1427, 1427, 0, 'Electronics > Electronics Accessories > Computer Accessories > Stylus Pens'),
(1428, 1428, 0, 'Electronics > Electronics Accessories > Computer Accessories > Tablet Computer Docks & Stands'),
(1429, 1429, 0, 'Electronics > Electronics Accessories > Computer Components'),
(1430, 1430, 0, 'Electronics > Electronics Accessories > Computer Components > Blade Server Enclosures'),
(1431, 1431, 0, 'Electronics > Electronics Accessories > Computer Components > Computer Backplates & I/O Shields'),
(1432, 1432, 0, 'Electronics > Electronics Accessories > Computer Components > Computer Power Supplies'),
(1433, 1433, 0, 'Electronics > Electronics Accessories > Computer Components > Computer Processors'),
(1434, 1434, 0, 'Electronics > Electronics Accessories > Computer Components > Computer Racks & Mounts'),
(1435, 1435, 0, 'Electronics > Electronics Accessories > Computer Components > Computer Starter Kits'),
(1436, 1436, 0, 'Electronics > Electronics Accessories > Computer Components > Computer System Cooling Parts'),
(1437, 1437, 0, 'Electronics > Electronics Accessories > Computer Components > Desktop Computer & Server Cases'),
(1438, 1438, 0, 'Electronics > Electronics Accessories > Computer Components > E-Book Reader Parts'),
(1439, 1439, 0, 'Electronics > Electronics Accessories > Computer Components > E-Book Reader Parts > E-Book Reader Screens & Screen Digitizers'),
(1440, 1440, 0, 'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters'),
(1441, 1441, 0, 'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Audio Cards & Adapters'),
(1442, 1442, 0, 'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Computer Interface Cards & Adapters'),
(1443, 1443, 0, 'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Riser Cards'),
(1444, 1444, 0, 'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > TV Tuner Cards & Adapters'),
(1445, 1445, 0, 'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Video Cards & Adapters'),
(1446, 1446, 0, 'Electronics > Electronics Accessories > Computer Components > Input Device Accessories'),
(1447, 1447, 0, 'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Barcode Scanner Stands'),
(1448, 1448, 0, 'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Game Controller Accessories'),
(1449, 1449, 0, 'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Keyboard Keys & Caps'),
(1450, 1450, 0, 'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Mice & Trackball Accessories'),
(1451, 1451, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices'),
(1452, 1452, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Barcode Scanners'),
(1453, 1453, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Digital Note Taking Pens'),
(1454, 1454, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Electronic Card Readers'),
(1455, 1455, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Fingerprint Readers'),
(1456, 1456, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Game Controllers'),
(1457, 1457, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Gesture Control Input Devices'),
(1458, 1458, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Graphics Tablets'),
(1459, 1459, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > KVM Switches'),
(1460, 1460, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Keyboards'),
(1461, 1461, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Memory Card Readers'),
(1462, 1462, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Mice & Trackballs'),
(1463, 1463, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Numeric Keypads'),
(1464, 1464, 0, 'Electronics > Electronics Accessories > Computer Components > Input Devices > Touchpads'),
(1465, 1465, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts'),
(1466, 1466, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Hinges'),
(1467, 1467, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Housings & Trim'),
(1468, 1468, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Cables'),
(1469, 1469, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Keyboards'),
(1470, 1470, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Screens'),
(1471, 1471, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Speakers'),
(1472, 1472, 0, 'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Screen Digitizers'),
(1473, 1473, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices'),
(1474, 1474, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators'),
(1475, 1475, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators > CD/DVD Duplicators'),
(1476, 1476, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators > Hard Drive Duplicators'),
(1477, 1477, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators > USB Drive Duplicators'),
(1478, 1478, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Floppy Drives'),
(1479, 1479, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories'),
(1480, 1480, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories > Hard Drive Carrying Cases'),
(1481, 1481, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories > Hard Drive Docks'),
(1482, 1482, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories > Hard Drive Enclosures & Mounts'),
(1483, 1483, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Arrays'),
(1484, 1484, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drives'),
(1485, 1485, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Network Storage Systems'),
(1486, 1486, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Optical Drives'),
(1487, 1487, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > Tape Drives'),
(1488, 1488, 0, 'Electronics > Electronics Accessories > Computer Components > Storage Devices > USB Flash Drives'),
(1489, 1489, 0, 'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts'),
(1490, 1490, 0, 'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts > Tablet Computer Housings & Trim'),
(1491, 1491, 0, 'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts > Tablet Computer Replacement Speakers'),
(1492, 1492, 0, 'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts > Tablet Computer Screens & Screen Digitizers'),
(1493, 1493, 0, 'Electronics > Electronics Accessories > Computer Components > USB & FireWire Hubs'),
(1494, 1494, 0, 'Electronics > Electronics Accessories > Electronics Cleaners'),
(1495, 1495, 0, 'Electronics > Electronics Accessories > Electronics Films & Shields'),
(1496, 1496, 0, 'Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals'),
(1497, 1497, 0, 'Electronics > Electronics Accessories > Electronics Films & Shields > Keyboard Protectors'),
(1498, 1498, 0, 'Electronics > Electronics Accessories > Electronics Films & Shields > Privacy Filters'),
(1499, 1499, 0, 'Electronics > Electronics Accessories > Electronics Films & Shields > Screen Protectors'),
(1500, 1500, 0, 'Electronics > Electronics Accessories > Memory'),
(1501, 1501, 0, 'Electronics > Electronics Accessories > Memory > Cache Memory'),
(1502, 1502, 0, 'Electronics > Electronics Accessories > Memory > Flash Memory'),
(1503, 1503, 0, 'Electronics > Electronics Accessories > Memory > Flash Memory > Flash Memory Cards'),
(1504, 1504, 0, 'Electronics > Electronics Accessories > Memory > RAM'),
(1505, 1505, 0, 'Electronics > Electronics Accessories > Memory > ROM'),
(1506, 1506, 0, 'Electronics > Electronics Accessories > Memory > Video Memory'),
(1507, 1507, 0, 'Electronics > Electronics Accessories > Memory Accessories'),
(1508, 1508, 0, 'Electronics > Electronics Accessories > Memory Accessories > Memory Cases'),
(1509, 1509, 0, 'Electronics > Electronics Accessories > Mobile Phone & Tablet Tripods & Monopods'),
(1510, 1510, 0, 'Electronics > Electronics Accessories > Power'),
(1511, 1511, 0, 'Electronics > Electronics Accessories > Power > Batteries'),
(1512, 1512, 0, 'Electronics > Electronics Accessories > Power > Batteries > Camera Batteries'),
(1513, 1513, 0, 'Electronics > Electronics Accessories > Power > Batteries > Cordless Phone Batteries'),
(1514, 1514, 0, 'Electronics > Electronics Accessories > Power > Batteries > E-Book Reader Batteries'),
(1515, 1515, 0, 'Electronics > Electronics Accessories > Power > Batteries > General Purpose Batteries'),
(1516, 1516, 0, 'Electronics > Electronics Accessories > Power > Batteries > Laptop Batteries'),
(1517, 1517, 0, 'Electronics > Electronics Accessories > Power > Batteries > MP3 Player Batteries'),
(1518, 1518, 0, 'Electronics > Electronics Accessories > Power > Batteries > Mobile Phone Batteries'),
(1519, 1519, 0, 'Electronics > Electronics Accessories > Power > Batteries > PDA Batteries'),
(1520, 1520, 0, 'Electronics > Electronics Accessories > Power > Batteries > Tablet Computer Batteries'),
(1521, 1521, 0, 'Electronics > Electronics Accessories > Power > Batteries > UPS Batteries'),
(1522, 1522, 0, 'Electronics > Electronics Accessories > Power > Batteries > Video Camera Batteries'),
(1523, 1523, 0, 'Electronics > Electronics Accessories > Power > Batteries > Video Game Console & Controller Batteries'),
(1524, 1524, 0, 'Electronics > Electronics Accessories > Power > Battery Accessories'),
(1525, 1525, 0, 'Electronics > Electronics Accessories > Power > Battery Accessories > Battery Charge Controllers'),
(1526, 1526, 0, 'Electronics > Electronics Accessories > Power > Battery Accessories > Battery Holders'),
(1527, 1527, 0, 'Electronics > Electronics Accessories > Power > Battery Accessories > Camera Battery Chargers'),
(1528, 1528, 0, 'Electronics > Electronics Accessories > Power > Battery Accessories > General Purpose Battery Chargers'),
(1529, 1529, 0, 'Electronics > Electronics Accessories > Power > Battery Accessories > General Purpose Battery Testers'),
(1530, 1530, 0, 'Electronics > Electronics Accessories > Power > Fuel Cells'),
(1531, 1531, 0, 'Electronics > Electronics Accessories > Power > Power Adapter & Charger Accessories'),
(1532, 1532, 0, 'Electronics > Electronics Accessories > Power > Power Adapters & Chargers'),
(1533, 1533, 0, 'Electronics > Electronics Accessories > Power > Power Control Units'),
(1534, 1534, 0, 'Electronics > Electronics Accessories > Power > Power Strips & Surge Suppressors'),
(1535, 1535, 0, 'Electronics > Electronics Accessories > Power > Power Supply Enclosures'),
(1536, 1536, 0, 'Electronics > Electronics Accessories > Power > Surge Protection Devices'),
(1537, 1537, 0, 'Electronics > Electronics Accessories > Power > Travel Converters & Adapters'),
(1538, 1538, 0, 'Electronics > Electronics Accessories > Power > UPS'),
(1539, 1539, 0, 'Electronics > Electronics Accessories > Power > UPS Accessories'),
(1540, 1540, 0, 'Electronics > Electronics Accessories > Remote Controls'),
(1541, 1541, 0, 'Electronics > Electronics Accessories > Signal Boosters'),
(1542, 1542, 0, 'Electronics > Electronics Accessories > Signal Jammers'),
(1543, 1543, 0, 'Electronics > Electronics Accessories > Signal Jammers > GPS Jammers'),
(1544, 1544, 0, 'Electronics > Electronics Accessories > Signal Jammers > Mobile Phone Jammers'),
(1545, 1545, 0, 'Electronics > Electronics Accessories > Signal Jammers > Radar Jammers'),
(1546, 1546, 0, 'Electronics > GPS Accessories'),
(1547, 1547, 0, 'Electronics > GPS Accessories > GPS Cases'),
(1548, 1548, 0, 'Electronics > GPS Accessories > GPS Mounts'),
(1549, 1549, 0, 'Electronics > GPS Navigation Systems'),
(1550, 1550, 0, 'Electronics > GPS Tracking Devices'),
(1551, 1551, 0, 'Electronics > Marine Electronics'),
(1552, 1552, 0, 'Electronics > Marine Electronics > Fish Finders'),
(1553, 1553, 0, 'Electronics > Marine Electronics > Marine Audio & Video Receivers'),
(1554, 1554, 0, 'Electronics > Marine Electronics > Marine Chartplotters & GPS'),
(1555, 1555, 0, 'Electronics > Marine Electronics > Marine Radar'),
(1556, 1556, 0, 'Electronics > Marine Electronics > Marine Radios'),
(1557, 1557, 0, 'Electronics > Marine Electronics > Marine Speakers'),
(1558, 1558, 0, 'Electronics > Networking'),
(1559, 1559, 0, 'Electronics > Networking > Bridges & Routers'),
(1560, 1560, 0, 'Electronics > Networking > Bridges & Routers > Network Bridges'),
(1561, 1561, 0, 'Electronics > Networking > Bridges & Routers > VoIP Gateways & Routers'),
(1562, 1562, 0, 'Electronics > Networking > Bridges & Routers > Wireless Access Points'),
(1563, 1563, 0, 'Electronics > Networking > Bridges & Routers > Wireless Routers'),
(1564, 1564, 0, 'Electronics > Networking > Concentrators & Multiplexers'),
(1565, 1565, 0, 'Electronics > Networking > Hubs & Switches'),
(1566, 1566, 0, 'Electronics > Networking > Modem Accessories'),
(1567, 1567, 0, 'Electronics > Networking > Modems'),
(1568, 1568, 0, 'Electronics > Networking > Network Cards & Adapters'),
(1569, 1569, 0, 'Electronics > Networking > Network Security & Firewall Devices'),
(1570, 1570, 0, 'Electronics > Networking > Power Over Ethernet Adapters'),
(1571, 1571, 0, 'Electronics > Networking > Print Servers'),
(1572, 1572, 0, 'Electronics > Networking > Repeaters & Transceivers'),
(1573, 1573, 0, 'Electronics > Print, Copy, Scan & Fax'),
(1574, 1574, 0, 'Electronics > Print, Copy, Scan & Fax > 3D Printer Accessories'),
(1575, 1575, 0, 'Electronics > Print, Copy, Scan & Fax > 3D Printers'),
(1576, 1576, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories'),
(1577, 1577, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables'),
(1578, 1578, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Drums & Drum Kits'),
(1579, 1579, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Filters'),
(1580, 1580, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Maintenance Kits'),
(1581, 1581, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Ribbons'),
(1582, 1582, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printheads'),
(1583, 1583, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Toner & Inkjet Cartridge Refills'),
(1584, 1584, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Toner & Inkjet Cartridges'),
(1585, 1585, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Duplexers'),
(1586, 1586, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Memory'),
(1587, 1587, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Stands'),
(1588, 1588, 0, 'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer, Copier & Fax Machine Replacement Parts'),
(1589, 1589, 0, 'Electronics > Print, Copy, Scan & Fax > Printers, Copiers & Fax Machines'),
(1590, 1590, 0, 'Electronics > Print, Copy, Scan & Fax > Scanner Accessories'),
(1591, 1591, 0, 'Electronics > Print, Copy, Scan & Fax > Scanners'),
(1592, 1592, 0, 'Electronics > Radar Detectors'),
(1593, 1593, 0, 'Electronics > Speed Radars'),
(1594, 1594, 0, 'Electronics > Toll Collection Devices'),
(1595, 1595, 0, 'Electronics > Video'),
(1596, 1596, 0, 'Electronics > Video > Computer Monitors'),
(1597, 1597, 0, 'Electronics > Video > Projectors'),
(1598, 1598, 0, 'Electronics > Video > Projectors > Multimedia Projectors'),
(1599, 1599, 0, 'Electronics > Video > Projectors > Overhead Projectors'),
(1600, 1600, 0, 'Electronics > Video > Projectors > Slide Projectors'),
(1601, 1601, 0, 'Electronics > Video > Satellite & Cable TV'),
(1602, 1602, 0, 'Electronics > Video > Satellite & Cable TV > Cable TV Receivers'),
(1603, 1603, 0, 'Electronics > Video > Satellite & Cable TV > Satellite Receivers'),
(1604, 1604, 0, 'Electronics > Video > Televisions'),
(1605, 1605, 0, 'Electronics > Video > Video Accessories'),
(1606, 1606, 0, 'Electronics > Video > Video Accessories > 3D Glasses'),
(1607, 1607, 0, 'Electronics > Video > Video Accessories > Computer Monitor Accessories'),
(1608, 1608, 0, 'Electronics > Video > Video Accessories > Computer Monitor Accessories > Color Calibrators'),
(1609, 1609, 0, 'Electronics > Video > Video Accessories > Projector Accessories'),
(1610, 1610, 0, 'Electronics > Video > Video Accessories > Projector Accessories > Projection & Tripod Skirts'),
(1611, 1611, 0, 'Electronics > Video > Video Accessories > Projector Accessories > Projection Screen Stands'),
(1612, 1612, 0, 'Electronics > Video > Video Accessories > Projector Accessories > Projection Screens'),
(1613, 1613, 0, 'Electronics > Video > Video Accessories > Projector Accessories > Projector Mounts'),
(1614, 1614, 0, 'Electronics > Video > Video Accessories > Projector Accessories > Projector Replacement Lamps'),
(1615, 1615, 0, 'Electronics > Video > Video Accessories > Rewinders'),
(1616, 1616, 0, 'Electronics > Video > Video Accessories > Television Parts & Accessories'),
(1617, 1617, 0, 'Electronics > Video > Video Accessories > Television Parts & Accessories > TV & Monitor Mounts'),
(1618, 1618, 0, 'Electronics > Video > Video Accessories > Television Parts & Accessories > TV Converter Boxes'),
(1619, 1619, 0, 'Electronics > Video > Video Accessories > Television Parts & Accessories > TV Replacement Lamps'),
(1620, 1620, 0, 'Electronics > Video > Video Accessories > Television Parts & Accessories > TV Replacement Speakers'),
(1621, 1621, 0, 'Electronics > Video > Video Editing Hardware & Production Equipment'),
(1622, 1622, 0, 'Electronics > Video > Video Multiplexers'),
(1623, 1623, 0, 'Electronics > Video > Video Players & Recorders'),
(1624, 1624, 0, 'Electronics > Video > Video Players & Recorders > DVD & Blu-ray Players'),
(1625, 1625, 0, 'Electronics > Video > Video Players & Recorders > DVD Recorders'),
(1626, 1626, 0, 'Electronics > Video > Video Players & Recorders > Digital Video Recorders'),
(1627, 1627, 0, 'Electronics > Video > Video Players & Recorders > Streaming & Home Media Players'),
(1628, 1628, 0, 'Electronics > Video > Video Players & Recorders > VCRs'),
(1629, 1629, 0, 'Electronics > Video > Video Servers'),
(1630, 1630, 0, 'Electronics > Video > Video Transmitters'),
(1631, 1631, 0, 'Electronics > Video Game Console Accessories'),
(1632, 1632, 0, 'Electronics > Video Game Console Accessories > Home Game Console Accessories'),
(1633, 1633, 0, 'Electronics > Video Game Console Accessories > Portable Game Console Accessories'),
(1634, 1634, 0, 'Electronics > Video Game Consoles'),
(1635, 1635, 0, 'Food, Beverages & Tobacco'),
(1636, 1636, 0, 'Food, Beverages & Tobacco > Beverages'),
(1637, 1637, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages'),
(1638, 1638, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Beer'),
(1639, 1639, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Bitters'),
(1640, 1640, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Cocktail Mixes'),
(1641, 1641, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Flavored Alcoholic Beverages'),
(1642, 1642, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Hard Cider'),
(1643, 1643, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits'),
(1644, 1644, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Absinthe'),
(1645, 1645, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Brandy'),
(1646, 1646, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Gin'),
(1647, 1647, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Liqueurs'),
(1648, 1648, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Rum'),
(1649, 1649, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Shochu & Soju'),
(1650, 1650, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Tequila'),
(1651, 1651, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Vodka'),
(1652, 1652, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Whiskey'),
(1653, 1653, 0, 'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Wine'),
(1654, 1654, 0, 'Food, Beverages & Tobacco > Beverages > Buttermilk'),
(1655, 1655, 0, 'Food, Beverages & Tobacco > Beverages > Coffee'),
(1656, 1656, 0, 'Food, Beverages & Tobacco > Beverages > Eggnog'),
(1657, 1657, 0, 'Food, Beverages & Tobacco > Beverages > Fruit Flavored Drinks'),
(1658, 1658, 0, 'Food, Beverages & Tobacco > Beverages > Hot Chocolate'),
(1659, 1659, 0, 'Food, Beverages & Tobacco > Beverages > Juice'),
(1660, 1660, 0, 'Food, Beverages & Tobacco > Beverages > Milk'),
(1661, 1661, 0, 'Food, Beverages & Tobacco > Beverages > Non-Dairy Milk'),
(1662, 1662, 0, 'Food, Beverages & Tobacco > Beverages > Powdered Beverage Mixes'),
(1663, 1663, 0, 'Food, Beverages & Tobacco > Beverages > Soda'),
(1664, 1664, 0, 'Food, Beverages & Tobacco > Beverages > Sports & Energy Drinks'),
(1665, 1665, 0, 'Food, Beverages & Tobacco > Beverages > Tea & Infusions'),
(1666, 1666, 0, 'Food, Beverages & Tobacco > Beverages > Vinegar Drinks'),
(1667, 1667, 0, 'Food, Beverages & Tobacco > Beverages > Water'),
(1668, 1668, 0, 'Food, Beverages & Tobacco > Food Items'),
(1669, 1669, 0, 'Food, Beverages & Tobacco > Food Items > Bakery'),
(1670, 1670, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Bagels'),
(1671, 1671, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Bakery Assortments'),
(1672, 1672, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Breads & Buns'),
(1673, 1673, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Cakes & Dessert Bars'),
(1674, 1674, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Coffee Cakes'),
(1675, 1675, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Cookies'),
(1676, 1676, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Cupcakes'),
(1677, 1677, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Donuts'),
(1678, 1678, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Fudge'),
(1679, 1679, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Ice Cream Cones'),
(1680, 1680, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Muffins'),
(1681, 1681, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Pastries & Scones'),
(1682, 1682, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Pies & Tarts'),
(1683, 1683, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Taco Shells & Tostadas'),
(1684, 1684, 0, 'Food, Beverages & Tobacco > Food Items > Bakery > Tortillas & Wraps'),
(1685, 1685, 0, 'Food, Beverages & Tobacco > Food Items > Candied & Chocolate Covered Fruit'),
(1686, 1686, 0, 'Food, Beverages & Tobacco > Food Items > Candy & Chocolate'),
(1687, 1687, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces'),
(1688, 1688, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Cocktail Sauce'),
(1689, 1689, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Curry Sauce'),
(1690, 1690, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings'),
(1691, 1691, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Fruit Toppings'),
(1692, 1692, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Ice Cream Syrup'),
(1693, 1693, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Fish Sauce'),
(1694, 1694, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Gravy'),
(1695, 1695, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Honey'),
(1696, 1696, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Horseradish Sauce'),
(1697, 1697, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Hot Sauce'),
(1698, 1698, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Ketchup'),
(1699, 1699, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Marinades & Grilling Sauces'),
(1700, 1700, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Mayonnaise'),
(1701, 1701, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Mustard'),
(1702, 1702, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Olives & Capers'),
(1703, 1703, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pasta Sauce'),
(1704, 1704, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pickled Fruits & Vegetables'),
(1705, 1705, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pizza Sauce'),
(1706, 1706, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Relish & Chutney'),
(1707, 1707, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Salad Dressing'),
(1708, 1708, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Satay Sauce'),
(1709, 1709, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Soy Sauce'),
(1710, 1710, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Sweet and Sour Sauces'),
(1711, 1711, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup'),
(1712, 1712, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Tahini'),
(1713, 1713, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Tartar Sauce'),
(1714, 1714, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > White & Cream Sauces'),
(1715, 1715, 0, 'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Worcestershire Sauce'),
(1716, 1716, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients'),
(1717, 1717, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Chips'),
(1718, 1718, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Chocolate'),
(1719, 1719, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Flavors & Extracts'),
(1720, 1720, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes'),
(1721, 1721, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Powder'),
(1722, 1722, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Soda'),
(1723, 1723, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Batter & Coating Mixes'),
(1724, 1724, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Bean Paste'),
(1725, 1725, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Bread Crumbs'),
(1726, 1726, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Canned & Dry Milk'),
(1727, 1727, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cookie Decorating Kits'),
(1728, 1728, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oils'),
(1729, 1729, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Starch'),
(1730, 1730, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Wine'),
(1731, 1731, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Corn Syrup'),
(1732, 1732, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough'),
(1733, 1733, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Bread & Pastry Dough'),
(1734, 1734, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Cookie & Brownie Dough'),
(1735, 1735, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Pie Crusts'),
(1736, 1736, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations'),
(1737, 1737, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Floss Sugar'),
(1738, 1738, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Flour'),
(1739, 1739, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Food Coloring'),
(1740, 1740, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Frosting & Icing'),
(1741, 1741, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Lemon & Lime Juice'),
(1742, 1742, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Marshmallows'),
(1743, 1743, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Meal'),
(1744, 1744, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Molasses'),
(1745, 1745, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Pie & Pastry Fillings'),
(1746, 1746, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Shortening & Lard'),
(1747, 1747, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Starter Cultures'),
(1748, 1748, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Sugar & Sweeteners'),
(1749, 1749, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Tapioca Pearls'),
(1750, 1750, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Tomato Paste'),
(1751, 1751, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Unflavored Gelatin'),
(1752, 1752, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Vinegar'),
(1753, 1753, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Waffle & Pancake Mixes'),
(1754, 1754, 0, 'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Yeast'),
(1755, 1755, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products'),
(1756, 1756, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Butter & Margarine'),
(1757, 1757, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Cheese'),
(1758, 1758, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Coffee Creamer'),
(1759, 1759, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Cottage Cheese'),
(1760, 1760, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Cream'),
(1761, 1761, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Sour Cream'),
(1762, 1762, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Whipped Cream'),
(1763, 1763, 0, 'Food, Beverages & Tobacco > Food Items > Dairy Products > Yogurt'),
(1764, 1764, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads'),
(1765, 1765, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Apple Butter'),
(1766, 1766, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Cheese Dips & Spreads'),
(1767, 1767, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Cream Cheese'),
(1768, 1768, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Guacamole'),
(1769, 1769, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Hummus'),
(1770, 1770, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Jams & Jellies'),
(1771, 1771, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Nut Butters'),
(1772, 1772, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Salsa'),
(1773, 1773, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Tapenade'),
(1774, 1774, 0, 'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Vegetable Dip'),
(1775, 1775, 0, 'Food, Beverages & Tobacco > Food Items > Food Gift Baskets'),
(1776, 1776, 0, 'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties'),
(1777, 1777, 0, 'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Cream & Frozen Yogurt'),
(1778, 1778, 0, 'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Cream Novelties'),
(1779, 1779, 0, 'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Pops'),
(1780, 1780, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables'),
(1781, 1781, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Jarred Fruits'),
(1782, 1782, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Jarred Vegetables'),
(1783, 1783, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Prepared Beans'),
(1784, 1784, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dried Fruits'),
(1785, 1785, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dried Vegetables'),
(1786, 1786, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dry Beans'),
(1787, 1787, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits'),
(1788, 1788, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Apples'),
(1789, 1789, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Atemoyas'),
(1790, 1790, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Avocados'),
(1791, 1791, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Babacos'),
(1792, 1792, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Bananas'),
(1793, 1793, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Berries'),
(1794, 1794, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Breadfruit'),
(1795, 1795, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cactus Pears'),
(1796, 1796, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cherimoyas'),
(1797, 1797, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits'),
(1798, 1798, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Grapefruits'),
(1799, 1799, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Kumquats'),
(1800, 1800, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Lemons'),
(1801, 1801, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Limequats'),
(1802, 1802, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Limes'),
(1803, 1803, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Oranges'),
(1804, 1804, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Tangelos'),
(1805, 1805, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Coconuts'),
(1806, 1806, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Dates'),
(1807, 1807, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Feijoas'),
(1808, 1808, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Figs'),
(1809, 1809, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Fruit Mixes'),
(1810, 1810, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Grapes'),
(1811, 1811, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Guavas'),
(1812, 1812, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Homely Fruits'),
(1813, 1813, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Kiwis'),
(1814, 1814, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Longan'),
(1815, 1815, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Loquats'),
(1816, 1816, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Lychees'),
(1817, 1817, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > MadroÃ±o'),
(1818, 1818, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mamey'),
(1819, 1819, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mangosteens'),
(1820, 1820, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Melons'),
(1821, 1821, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Papayas'),
(1822, 1822, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Passion Fruit'),
(1823, 1823, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pears'),
(1824, 1824, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Persimmons'),
(1825, 1825, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Physalis'),
(1826, 1826, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pineapples'),
(1827, 1827, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pitahayas'),
(1828, 1828, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pomegranates'),
(1829, 1829, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Quince'),
(1830, 1830, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Rambutans'),
(1831, 1831, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sapodillo'),
(1832, 1832, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sapote'),
(1833, 1833, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Soursops'),
(1834, 1834, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Starfruits'),
(1835, 1835, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits'),
(1836, 1836, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Apricots'),
(1837, 1837, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Cherries'),
(1838, 1838, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Mangoes'),
(1839, 1839, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Peaches & Nectarines'),
(1840, 1840, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Plumcots'),
(1841, 1841, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Plums'),
(1842, 1842, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sugar Apples'),
(1843, 1843, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Tamarindo'),
(1844, 1844, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables'),
(1845, 1845, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Arracachas'),
(1846, 1846, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Artichokes'),
(1847, 1847, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Asparagus'),
(1848, 1848, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beans'),
(1849, 1849, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beets'),
(1850, 1850, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Borage'),
(1851, 1851, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Broccoli'),
(1852, 1852, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Brussel Sprouts'),
(1853, 1853, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cabbage'),
(1854, 1854, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cactus Leaves'),
(1855, 1855, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cardoon'),
(1856, 1856, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Carrots'),
(1857, 1857, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cauliflower'),
(1858, 1858, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Celery'),
(1859, 1859, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Celery Roots'),
(1860, 1860, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Corn'),
(1861, 1861, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cucumbers'),
(1862, 1862, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Eggplants'),
(1863, 1863, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Fennel Bulbs'),
(1864, 1864, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Fiddlehead Ferns'),
(1865, 1865, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gai Choy'),
(1866, 1866, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gai Lan'),
(1867, 1867, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Garlic'),
(1868, 1868, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Ginger Root'),
(1869, 1869, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gobo Root'),
(1870, 1870, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens'),
(1871, 1871, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Arugula'),
(1872, 1872, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Beet Greens'),
(1873, 1873, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Bok Choy'),
(1874, 1874, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Chard'),
(1875, 1875, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Chicory'),
(1876, 1876, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Choy Sum'),
(1877, 1877, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Kale'),
(1878, 1878, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Lettuce'),
(1879, 1879, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > On Choy'),
(1880, 1880, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Salad Mixes'),
(1881, 1881, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Spinach'),
(1882, 1882, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Yu Choy'),
(1883, 1883, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Horseradish Root'),
(1884, 1884, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Jicama'),
(1885, 1885, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Kohlrabi'),
(1886, 1886, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Leeks'),
(1887, 1887, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Lotus Roots'),
(1888, 1888, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Malangas'),
(1889, 1889, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Mushrooms'),
(1890, 1890, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Okra'),
(1891, 1891, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Onions'),
(1892, 1892, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Parsley Roots'),
(1893, 1893, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Parsnips'),
(1894, 1894, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Peas'),
(1895, 1895, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Peppers'),
(1896, 1896, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Potatoes'),
(1897, 1897, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Radishes'),
(1898, 1898, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Rhubarb'),
(1899, 1899, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Shallots'),
(1900, 1900, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sprouts'),
(1901, 1901, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Squashes & Gourds'),
(1902, 1902, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sugar Cane'),
(1903, 1903, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sunchokes'),
(1904, 1904, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sweet Potatoes'),
(1905, 1905, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tamarillos'),
(1906, 1906, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Taro Root'),
(1907, 1907, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tomatoes'),
(1908, 1908, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Turnips & Rutabagas'),
(1909, 1909, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Vegetable Mixes'),
(1910, 1910, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Water Chestnuts'),
(1911, 1911, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Watercress'),
(1912, 1912, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Wheatgrass');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(1913, 1913, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Yams'),
(1914, 1914, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Yuca Root'),
(1915, 1915, 0, 'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fruit Sauces'),
(1916, 1916, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal'),
(1917, 1917, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Amaranth'),
(1918, 1918, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Barley'),
(1919, 1919, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Buckwheat'),
(1920, 1920, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Cereal & Granola'),
(1921, 1921, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Couscous'),
(1922, 1922, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Millet'),
(1923, 1923, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Oats, Grits & Hot Cereal'),
(1924, 1924, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Quinoa'),
(1925, 1925, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Rice'),
(1926, 1926, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Rye'),
(1927, 1927, 0, 'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Wheat'),
(1928, 1928, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs'),
(1929, 1929, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Eggs'),
(1930, 1930, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat'),
(1931, 1931, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Canned Meats'),
(1932, 1932, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Fresh & Frozen Meats'),
(1933, 1933, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Lunch & Deli Meats'),
(1934, 1934, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood'),
(1935, 1935, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood > Canned Seafood'),
(1936, 1936, 0, 'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood > Fresh & Frozen Seafood'),
(1937, 1937, 0, 'Food, Beverages & Tobacco > Food Items > Nuts & Seeds'),
(1938, 1938, 0, 'Food, Beverages & Tobacco > Food Items > Pasta & Noodles'),
(1939, 1939, 0, 'Food, Beverages & Tobacco > Food Items > Prepared Foods'),
(1940, 1940, 0, 'Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Appetizers & Side Dishes'),
(1941, 1941, 0, 'Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Meals & EntrÃ©es'),
(1942, 1942, 0, 'Food, Beverages & Tobacco > Food Items > Seasonings & Spices'),
(1943, 1943, 0, 'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices'),
(1944, 1944, 0, 'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > MSG'),
(1945, 1945, 0, 'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Pepper'),
(1946, 1946, 0, 'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Salt'),
(1947, 1947, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods'),
(1948, 1948, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Breadsticks'),
(1949, 1949, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Cereal & Granola Bars'),
(1950, 1950, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Cheese Puffs'),
(1951, 1951, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Chips'),
(1952, 1952, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers'),
(1953, 1953, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Croutons'),
(1954, 1954, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Fruit Snacks'),
(1955, 1955, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Jerky'),
(1956, 1956, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Popcorn'),
(1957, 1957, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Pork Rinds'),
(1958, 1958, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Pretzels'),
(1959, 1959, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Pudding & Gelatin Snacks'),
(1960, 1960, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Puffed Rice Cakes'),
(1961, 1961, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Salad Toppings'),
(1962, 1962, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Sesame Sticks'),
(1963, 1963, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Snack Cakes'),
(1964, 1964, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Sticky Rice Cakes'),
(1965, 1965, 0, 'Food, Beverages & Tobacco > Food Items > Snack Foods > Trail & Snack Mixes'),
(1966, 1966, 0, 'Food, Beverages & Tobacco > Food Items > Soups & Broths'),
(1967, 1967, 0, 'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products'),
(1968, 1968, 0, 'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Cheese Alternatives'),
(1969, 1969, 0, 'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Meat Alternatives'),
(1970, 1970, 0, 'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Seitan'),
(1971, 1971, 0, 'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Tempeh'),
(1972, 1972, 0, 'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Tofu'),
(1973, 1973, 0, 'Food, Beverages & Tobacco > Tobacco Products'),
(1974, 1974, 0, 'Food, Beverages & Tobacco > Tobacco Products > Chewing Tobacco'),
(1975, 1975, 0, 'Food, Beverages & Tobacco > Tobacco Products > Cigarettes'),
(1976, 1976, 0, 'Food, Beverages & Tobacco > Tobacco Products > Cigars'),
(1977, 1977, 0, 'Food, Beverages & Tobacco > Tobacco Products > Loose Tobacco'),
(1978, 1978, 0, 'Food, Beverages & Tobacco > Tobacco Products > Smoking Pipes'),
(1979, 1979, 0, 'Food, Beverages & Tobacco > Tobacco Products > Vaporizers & Electronic Cigarettes'),
(1980, 1980, 0, 'Furniture'),
(1981, 1981, 0, 'Furniture > Baby & Toddler Furniture'),
(1982, 1982, 0, 'Furniture > Baby & Toddler Furniture > Baby & Toddler Furniture Sets'),
(1983, 1983, 0, 'Furniture > Baby & Toddler Furniture > Bassinet & Cradle Accessories'),
(1984, 1984, 0, 'Furniture > Baby & Toddler Furniture > Bassinets & Cradles'),
(1985, 1985, 0, 'Furniture > Baby & Toddler Furniture > Changing Tables'),
(1986, 1986, 0, 'Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories'),
(1987, 1987, 0, 'Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories > Crib Bumpers & Liners'),
(1988, 1988, 0, 'Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories > Crib Conversion Kits'),
(1989, 1989, 0, 'Furniture > Baby & Toddler Furniture > Cribs & Toddler Beds'),
(1990, 1990, 0, 'Furniture > Baby & Toddler Furniture > High Chair & Booster Seat Accessories'),
(1991, 1991, 0, 'Furniture > Baby & Toddler Furniture > High Chairs & Booster Seats'),
(1992, 1992, 0, 'Furniture > Beds & Accessories'),
(1993, 1993, 0, 'Furniture > Beds & Accessories > Bed & Bed Frame Accessories'),
(1994, 1994, 0, 'Furniture > Beds & Accessories > Beds & Bed Frames'),
(1995, 1995, 0, 'Furniture > Beds & Accessories > Headboards & Footboards'),
(1996, 1996, 0, 'Furniture > Beds & Accessories > Mattress Foundations'),
(1997, 1997, 0, 'Furniture > Beds & Accessories > Mattresses'),
(1998, 1998, 0, 'Furniture > Benches'),
(1999, 1999, 0, 'Furniture > Benches > Kitchen & Dining Benches'),
(2000, 2000, 0, 'Furniture > Benches > Storage & Entryway Benches'),
(2001, 2001, 0, 'Furniture > Benches > Vanity Benches'),
(2002, 2002, 0, 'Furniture > Cabinets & Storage'),
(2003, 2003, 0, 'Furniture > Cabinets & Storage > Armoires & Wardrobes'),
(2004, 2004, 0, 'Furniture > Cabinets & Storage > Buffets & Sideboards'),
(2005, 2005, 0, 'Furniture > Cabinets & Storage > China Cabinets & Hutches'),
(2006, 2006, 0, 'Furniture > Cabinets & Storage > Dressers'),
(2007, 2007, 0, 'Furniture > Cabinets & Storage > File Cabinets'),
(2008, 2008, 0, 'Furniture > Cabinets & Storage > Ironing Centers'),
(2009, 2009, 0, 'Furniture > Cabinets & Storage > Kitchen Cabinets'),
(2010, 2010, 0, 'Furniture > Cabinets & Storage > Magazine Racks'),
(2011, 2011, 0, 'Furniture > Cabinets & Storage > Media Storage Cabinets & Racks'),
(2012, 2012, 0, 'Furniture > Cabinets & Storage > Storage Cabinets & Lockers'),
(2013, 2013, 0, 'Furniture > Cabinets & Storage > Storage Chests'),
(2014, 2014, 0, 'Furniture > Cabinets & Storage > Storage Chests > Hope Chests'),
(2015, 2015, 0, 'Furniture > Cabinets & Storage > Storage Chests > Toy Chests'),
(2016, 2016, 0, 'Furniture > Cabinets & Storage > Vanities'),
(2017, 2017, 0, 'Furniture > Cabinets & Storage > Vanities > Bathroom Vanities'),
(2018, 2018, 0, 'Furniture > Cabinets & Storage > Vanities > Bedroom Vanities'),
(2019, 2019, 0, 'Furniture > Cabinets & Storage > Wine & Liquor Cabinets'),
(2020, 2020, 0, 'Furniture > Cabinets & Storage > Wine Racks'),
(2021, 2021, 0, 'Furniture > Carts & Islands'),
(2022, 2022, 0, 'Furniture > Carts & Islands > Kitchen & Dining Carts'),
(2023, 2023, 0, 'Furniture > Carts & Islands > Kitchen Islands'),
(2024, 2024, 0, 'Furniture > Chair Accessories'),
(2025, 2025, 0, 'Furniture > Chair Accessories > Hanging Chair Replacement Parts'),
(2026, 2026, 0, 'Furniture > Chairs'),
(2027, 2027, 0, 'Furniture > Chairs > Arm Chairs, Recliners & Sleeper Chairs'),
(2028, 2028, 0, 'Furniture > Chairs > Bean Bag Chairs'),
(2029, 2029, 0, 'Furniture > Chairs > Chaises'),
(2030, 2030, 0, 'Furniture > Chairs > Electric Massaging Chairs'),
(2031, 2031, 0, 'Furniture > Chairs > Floor Chairs'),
(2032, 2032, 0, 'Furniture > Chairs > Folding Chairs & Stools'),
(2033, 2033, 0, 'Furniture > Chairs > Gaming Chairs'),
(2034, 2034, 0, 'Furniture > Chairs > Hanging Chairs'),
(2035, 2035, 0, 'Furniture > Chairs > Kitchen & Dining Room Chairs'),
(2036, 2036, 0, 'Furniture > Chairs > Rocking Chairs'),
(2037, 2037, 0, 'Furniture > Chairs > Slipper Chairs'),
(2038, 2038, 0, 'Furniture > Chairs > Table & Bar Stools'),
(2039, 2039, 0, 'Furniture > Entertainment Centers & TV Stands'),
(2040, 2040, 0, 'Furniture > Furniture Sets'),
(2041, 2041, 0, 'Furniture > Furniture Sets > Bathroom Furniture Sets'),
(2042, 2042, 0, 'Furniture > Furniture Sets > Bedroom Furniture Sets'),
(2043, 2043, 0, 'Furniture > Furniture Sets > Kitchen & Dining Furniture Sets'),
(2044, 2044, 0, 'Furniture > Furniture Sets > Living Room Furniture Sets'),
(2045, 2045, 0, 'Furniture > Futon Frames'),
(2046, 2046, 0, 'Furniture > Futon Pads'),
(2047, 2047, 0, 'Furniture > Futons'),
(2048, 2048, 0, 'Furniture > Office Furniture'),
(2049, 2049, 0, 'Furniture > Office Furniture > Desks'),
(2050, 2050, 0, 'Furniture > Office Furniture > Office Chairs'),
(2051, 2051, 0, 'Furniture > Office Furniture > Office Furniture Sets'),
(2052, 2052, 0, 'Furniture > Office Furniture > Workspace Tables'),
(2053, 2053, 0, 'Furniture > Office Furniture > Workspace Tables > Art & Drafting Tables'),
(2054, 2054, 0, 'Furniture > Office Furniture > Workspace Tables > Conference Room Tables'),
(2055, 2055, 0, 'Furniture > Office Furniture > Workstations & Cubicles'),
(2056, 2056, 0, 'Furniture > Office Furniture Accessories'),
(2057, 2057, 0, 'Furniture > Office Furniture Accessories > Desk Parts & Accessories'),
(2058, 2058, 0, 'Furniture > Office Furniture Accessories > Office Chair Accessories'),
(2059, 2059, 0, 'Furniture > Office Furniture Accessories > Workstation & Cubicle Accessories'),
(2060, 2060, 0, 'Furniture > Ottomans'),
(2061, 2061, 0, 'Furniture > Outdoor Furniture'),
(2062, 2062, 0, 'Furniture > Outdoor Furniture > Outdoor Beds'),
(2063, 2063, 0, 'Furniture > Outdoor Furniture > Outdoor Furniture Sets'),
(2064, 2064, 0, 'Furniture > Outdoor Furniture > Outdoor Ottomans'),
(2065, 2065, 0, 'Furniture > Outdoor Furniture > Outdoor Seating'),
(2066, 2066, 0, 'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Benches'),
(2067, 2067, 0, 'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Chairs'),
(2068, 2068, 0, 'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Sectional Sofa Units'),
(2069, 2069, 0, 'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Sofas'),
(2070, 2070, 0, 'Furniture > Outdoor Furniture > Outdoor Seating > Sunloungers'),
(2071, 2071, 0, 'Furniture > Outdoor Furniture > Outdoor Storage Boxes'),
(2072, 2072, 0, 'Furniture > Outdoor Furniture > Outdoor Tables'),
(2073, 2073, 0, 'Furniture > Outdoor Furniture Accessories'),
(2074, 2074, 0, 'Furniture > Outdoor Furniture Accessories > Outdoor Furniture Covers'),
(2075, 2075, 0, 'Furniture > Room Divider Accessories'),
(2076, 2076, 0, 'Furniture > Room Dividers'),
(2077, 2077, 0, 'Furniture > Shelving'),
(2078, 2078, 0, 'Furniture > Shelving > Bookcases & Standing Shelves'),
(2079, 2079, 0, 'Furniture > Shelving > Wall Shelves & Ledges'),
(2080, 2080, 0, 'Furniture > Shelving Accessories'),
(2081, 2081, 0, 'Furniture > Shelving Accessories > Replacement Shelves'),
(2082, 2082, 0, 'Furniture > Sofa Accessories'),
(2083, 2083, 0, 'Furniture > Sofa Accessories > Chair & Sofa Supports'),
(2084, 2084, 0, 'Furniture > Sofa Accessories > Sectional Sofa Units'),
(2085, 2085, 0, 'Furniture > Sofas'),
(2086, 2086, 0, 'Furniture > Table Accessories'),
(2087, 2087, 0, 'Furniture > Table Accessories > Table Legs'),
(2088, 2088, 0, 'Furniture > Table Accessories > Table Tops'),
(2089, 2089, 0, 'Furniture > Tables'),
(2090, 2090, 0, 'Furniture > Tables > Accent Tables'),
(2091, 2091, 0, 'Furniture > Tables > Accent Tables > Coffee Tables'),
(2092, 2092, 0, 'Furniture > Tables > Accent Tables > End Tables'),
(2093, 2093, 0, 'Furniture > Tables > Accent Tables > Sofa Tables'),
(2094, 2094, 0, 'Furniture > Tables > Activity Tables'),
(2095, 2095, 0, 'Furniture > Tables > Folding Tables'),
(2096, 2096, 0, 'Furniture > Tables > Kitchen & Dining Room Tables'),
(2097, 2097, 0, 'Furniture > Tables > Kotatsu'),
(2098, 2098, 0, 'Furniture > Tables > Nightstands'),
(2099, 2099, 0, 'Furniture > Tables > Poker & Game Tables'),
(2100, 2100, 0, 'Furniture > Tables > Sewing Machine Tables'),
(2101, 2101, 0, 'Hardware'),
(2102, 2102, 0, 'Hardware > Building Consumables'),
(2103, 2103, 0, 'Hardware > Building Consumables > Chemicals'),
(2104, 2104, 0, 'Hardware > Building Consumables > Chemicals > Acid Neutralizers'),
(2105, 2105, 0, 'Hardware > Building Consumables > Chemicals > Ammonia'),
(2106, 2106, 0, 'Hardware > Building Consumables > Chemicals > Chimney Cleaners'),
(2107, 2107, 0, 'Hardware > Building Consumables > Chemicals > Concrete & Masonry Cleaners'),
(2108, 2108, 0, 'Hardware > Building Consumables > Chemicals > De-icers'),
(2109, 2109, 0, 'Hardware > Building Consumables > Chemicals > Deck & Fence Cleaners'),
(2110, 2110, 0, 'Hardware > Building Consumables > Chemicals > Drain Cleaners'),
(2111, 2111, 0, 'Hardware > Building Consumables > Chemicals > Electrical Freeze Sprays'),
(2112, 2112, 0, 'Hardware > Building Consumables > Chemicals > Lighter Fluid'),
(2113, 2113, 0, 'Hardware > Building Consumables > Chemicals > Septic Tank & Cesspool Treatments'),
(2114, 2114, 0, 'Hardware > Building Consumables > Hardware Glue & Adhesives'),
(2115, 2115, 0, 'Hardware > Building Consumables > Hardware Tape'),
(2116, 2116, 0, 'Hardware > Building Consumables > Lubricants'),
(2117, 2117, 0, 'Hardware > Building Consumables > Masonry Consumables'),
(2118, 2118, 0, 'Hardware > Building Consumables > Masonry Consumables > Bricks & Concrete Blocks'),
(2119, 2119, 0, 'Hardware > Building Consumables > Masonry Consumables > Cement, Mortar & Concrete Mixes'),
(2120, 2120, 0, 'Hardware > Building Consumables > Masonry Consumables > Grout'),
(2121, 2121, 0, 'Hardware > Building Consumables > Painting Consumables'),
(2122, 2122, 0, 'Hardware > Building Consumables > Painting Consumables > Paint'),
(2123, 2123, 0, 'Hardware > Building Consumables > Painting Consumables > Paint Binders'),
(2124, 2124, 0, 'Hardware > Building Consumables > Painting Consumables > Primers'),
(2125, 2125, 0, 'Hardware > Building Consumables > Painting Consumables > Stains'),
(2126, 2126, 0, 'Hardware > Building Consumables > Painting Consumables > Varnishes & Finishes'),
(2127, 2127, 0, 'Hardware > Building Consumables > Plumbing Primer'),
(2128, 2128, 0, 'Hardware > Building Consumables > Protective Coatings & Sealants'),
(2129, 2129, 0, 'Hardware > Building Consumables > Solder & Flux'),
(2130, 2130, 0, 'Hardware > Building Consumables > Solvents, Strippers & Thinners'),
(2131, 2131, 0, 'Hardware > Building Consumables > Wall Patching Compounds & Plaster'),
(2132, 2132, 0, 'Hardware > Building Materials'),
(2133, 2133, 0, 'Hardware > Building Materials > Countertops'),
(2134, 2134, 0, 'Hardware > Building Materials > Door Hardware'),
(2135, 2135, 0, 'Hardware > Building Materials > Door Hardware > Door Bells & Chimes'),
(2136, 2136, 0, 'Hardware > Building Materials > Door Hardware > Door Closers'),
(2137, 2137, 0, 'Hardware > Building Materials > Door Hardware > Door Frames'),
(2138, 2138, 0, 'Hardware > Building Materials > Door Hardware > Door Keyhole Escutcheons'),
(2139, 2139, 0, 'Hardware > Building Materials > Door Hardware > Door Knobs & Handles'),
(2140, 2140, 0, 'Hardware > Building Materials > Door Hardware > Door Knockers'),
(2141, 2141, 0, 'Hardware > Building Materials > Door Hardware > Door Push Plates'),
(2142, 2142, 0, 'Hardware > Building Materials > Door Hardware > Door Stops'),
(2143, 2143, 0, 'Hardware > Building Materials > Door Hardware > Door Strikes'),
(2144, 2144, 0, 'Hardware > Building Materials > Doors'),
(2145, 2145, 0, 'Hardware > Building Materials > Doors > Garage Doors'),
(2146, 2146, 0, 'Hardware > Building Materials > Doors > Home Doors'),
(2147, 2147, 0, 'Hardware > Building Materials > Drywall'),
(2148, 2148, 0, 'Hardware > Building Materials > Flooring & Carpet'),
(2149, 2149, 0, 'Hardware > Building Materials > Glass'),
(2150, 2150, 0, 'Hardware > Building Materials > Handrails & Railing Systems'),
(2151, 2151, 0, 'Hardware > Building Materials > Hatches'),
(2152, 2152, 0, 'Hardware > Building Materials > Insulation'),
(2153, 2153, 0, 'Hardware > Building Materials > Lumber & Sheet Stock'),
(2154, 2154, 0, 'Hardware > Building Materials > Molding'),
(2155, 2155, 0, 'Hardware > Building Materials > Rebar & Remesh'),
(2156, 2156, 0, 'Hardware > Building Materials > Roofing'),
(2157, 2157, 0, 'Hardware > Building Materials > Roofing > Gutter Accessories'),
(2158, 2158, 0, 'Hardware > Building Materials > Roofing > Gutters'),
(2159, 2159, 0, 'Hardware > Building Materials > Roofing > Roof Flashings'),
(2160, 2160, 0, 'Hardware > Building Materials > Roofing > Roofing Shingles & Tiles'),
(2161, 2161, 0, 'Hardware > Building Materials > Shutters'),
(2162, 2162, 0, 'Hardware > Building Materials > Siding'),
(2163, 2163, 0, 'Hardware > Building Materials > Sound Dampening Panels & Foam'),
(2164, 2164, 0, 'Hardware > Building Materials > Staircases'),
(2165, 2165, 0, 'Hardware > Building Materials > Wall & Ceiling Tile'),
(2166, 2166, 0, 'Hardware > Building Materials > Wall Paneling'),
(2167, 2167, 0, 'Hardware > Building Materials > Weather Stripping & Weatherization Supplies'),
(2168, 2168, 0, 'Hardware > Building Materials > Window Hardware'),
(2169, 2169, 0, 'Hardware > Building Materials > Window Hardware > Window Cranks'),
(2170, 2170, 0, 'Hardware > Building Materials > Window Hardware > Window Frames'),
(2171, 2171, 0, 'Hardware > Building Materials > Windows'),
(2172, 2172, 0, 'Hardware > Fencing & Barriers'),
(2173, 2173, 0, 'Hardware > Fencing & Barriers > Fence & Gate Accessories'),
(2174, 2174, 0, 'Hardware > Fencing & Barriers > Fence Panels'),
(2175, 2175, 0, 'Hardware > Fencing & Barriers > Fence Pickets'),
(2176, 2176, 0, 'Hardware > Fencing & Barriers > Fence Posts & Rails'),
(2177, 2177, 0, 'Hardware > Fencing & Barriers > Garden Borders & Edging'),
(2178, 2178, 0, 'Hardware > Fencing & Barriers > Gates'),
(2179, 2179, 0, 'Hardware > Fencing & Barriers > Lattice'),
(2180, 2180, 0, 'Hardware > Fencing & Barriers > Safety & Crowd Control Barriers'),
(2181, 2181, 0, 'Hardware > Fuel Containers & Tanks'),
(2182, 2182, 0, 'Hardware > Hardware Accessories'),
(2183, 2183, 0, 'Hardware > Hardware Accessories > Brackets & Reinforcement Braces'),
(2184, 2184, 0, 'Hardware > Hardware Accessories > Cabinet Hardware'),
(2185, 2185, 0, 'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet & Furniture Keyhole Escutcheons'),
(2186, 2186, 0, 'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Backplates'),
(2187, 2187, 0, 'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Catches'),
(2188, 2188, 0, 'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Doors'),
(2189, 2189, 0, 'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Knobs & Handles'),
(2190, 2190, 0, 'Hardware > Hardware Accessories > Casters'),
(2191, 2191, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope'),
(2192, 2192, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Bungee Cords'),
(2193, 2193, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Chains'),
(2194, 2194, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Pull Chains'),
(2195, 2195, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Ropes & Hardware Cable'),
(2196, 2196, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Tie Down Straps'),
(2197, 2197, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Twine'),
(2198, 2198, 0, 'Hardware > Hardware Accessories > Chain, Wire & Rope > Utility Wire'),
(2199, 2199, 0, 'Hardware > Hardware Accessories > Coils'),
(2200, 2200, 0, 'Hardware > Hardware Accessories > Concrete Molds'),
(2201, 2201, 0, 'Hardware > Hardware Accessories > Dowel Pins & Rods'),
(2202, 2202, 0, 'Hardware > Hardware Accessories > Drawer Slides'),
(2203, 2203, 0, 'Hardware > Hardware Accessories > Drop Cloths'),
(2204, 2204, 0, 'Hardware > Hardware Accessories > Filters & Screens'),
(2205, 2205, 0, 'Hardware > Hardware Accessories > Flagging & Caution Tape'),
(2206, 2206, 0, 'Hardware > Hardware Accessories > Gas Hoses'),
(2207, 2207, 0, 'Hardware > Hardware Accessories > Ground Spikes'),
(2208, 2208, 0, 'Hardware > Hardware Accessories > Hardware Fasteners'),
(2209, 2209, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Drywall Anchors'),
(2210, 2210, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Nails'),
(2211, 2211, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Nuts & Bolts'),
(2212, 2212, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Rivets'),
(2213, 2213, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Screw Posts'),
(2214, 2214, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Screws'),
(2215, 2215, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Threaded Rods'),
(2216, 2216, 0, 'Hardware > Hardware Accessories > Hardware Fasteners > Washers'),
(2217, 2217, 0, 'Hardware > Hardware Accessories > Hinges'),
(2218, 2218, 0, 'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners'),
(2219, 2219, 0, 'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Chain Connectors & Links'),
(2220, 2220, 0, 'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Gear Ties'),
(2221, 2221, 0, 'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Lifting Hooks, Clamps & Shackles'),
(2222, 2222, 0, 'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Utility Buckles'),
(2223, 2223, 0, 'Hardware > Hardware Accessories > Lubrication Hoses'),
(2224, 2224, 0, 'Hardware > Hardware Accessories > Metal Casting Molds'),
(2225, 2225, 0, 'Hardware > Hardware Accessories > Moving & Soundproofing Blankets & Covers'),
(2226, 2226, 0, 'Hardware > Hardware Accessories > Pneumatic Hoses'),
(2227, 2227, 0, 'Hardware > Hardware Accessories > Post Base Plates'),
(2228, 2228, 0, 'Hardware > Hardware Accessories > Springs'),
(2229, 2229, 0, 'Hardware > Hardware Accessories > Tarps'),
(2230, 2230, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization'),
(2231, 2231, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Garden Hose Storage'),
(2232, 2232, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Tool & Equipment Belts'),
(2233, 2233, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Bags'),
(2234, 2234, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Boxes'),
(2235, 2235, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Cabinets & Chests'),
(2236, 2236, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Organizer Liners & Inserts'),
(2237, 2237, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Sheaths'),
(2238, 2238, 0, 'Hardware > Hardware Accessories > Tool Storage & Organization > Work Benches'),
(2239, 2239, 0, 'Hardware > Hardware Accessories > Wall Jacks & Braces'),
(2240, 2240, 0, 'Hardware > Hardware Pumps'),
(2241, 2241, 0, 'Hardware > Hardware Pumps > Home Appliance Pumps'),
(2242, 2242, 0, 'Hardware > Hardware Pumps > Pool, Fountain & Pond Pumps'),
(2243, 2243, 0, 'Hardware > Hardware Pumps > Sprinkler, Booster & Irrigation System Pumps'),
(2244, 2244, 0, 'Hardware > Hardware Pumps > Sump, Sewage & Effluent Pumps'),
(2245, 2245, 0, 'Hardware > Hardware Pumps > Utility Pumps'),
(2246, 2246, 0, 'Hardware > Hardware Pumps > Well Pumps & Systems'),
(2247, 2247, 0, 'Hardware > Heating, Ventilation & Air Conditioning'),
(2248, 2248, 0, 'Hardware > Heating, Ventilation & Air Conditioning > Air & Filter Dryers'),
(2249, 2249, 0, 'Hardware > Heating, Ventilation & Air Conditioning > Air Ducts'),
(2250, 2250, 0, 'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls'),
(2251, 2251, 0, 'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls > Control Panels'),
(2252, 2252, 0, 'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls > Humidistats'),
(2253, 2253, 0, 'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls > Thermostats'),
(2254, 2254, 0, 'Hardware > Heating, Ventilation & Air Conditioning > Vents & Flues'),
(2255, 2255, 0, 'Hardware > Locks & Keys'),
(2256, 2256, 0, 'Hardware > Locks & Keys > Key Blanks'),
(2257, 2257, 0, 'Hardware > Locks & Keys > Key Caps'),
(2258, 2258, 0, 'Hardware > Locks & Keys > Key Card Entry Systems'),
(2259, 2259, 0, 'Hardware > Locks & Keys > Locks & Latches'),
(2260, 2260, 0, 'Hardware > Plumbing'),
(2261, 2261, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports'),
(2262, 2262, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Gaskets & O-Rings'),
(2263, 2263, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > In-Wall Carriers & Mounting Frames'),
(2264, 2264, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Nozzles'),
(2265, 2265, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Pipe Adapters & Bushings'),
(2266, 2266, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Pipe Caps & Plugs'),
(2267, 2267, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Pipe Connectors'),
(2268, 2268, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Flanges'),
(2269, 2269, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Pipe Clamps'),
(2270, 2270, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Regulators'),
(2271, 2271, 0, 'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Valves'),
(2272, 2272, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts'),
(2273, 2273, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories'),
(2274, 2274, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories > Bathtub Bases & Feet'),
(2275, 2275, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories > Bathtub Skirts'),
(2276, 2276, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories > Bathtub Spouts'),
(2277, 2277, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components'),
(2278, 2278, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Covers & Strainers'),
(2279, 2279, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Frames'),
(2280, 2280, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Liners'),
(2281, 2281, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Openers'),
(2282, 2282, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Rods'),
(2283, 2283, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Plumbing Traps'),
(2284, 2284, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Plumbing Wastes'),
(2285, 2285, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drains'),
(2286, 2286, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Faucet Accessories'),
(2287, 2287, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Faucet Accessories > Faucet Aerators'),
(2288, 2288, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Faucet Accessories > Faucet Handles & Controls'),
(2289, 2289, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Fixture Plates'),
(2290, 2290, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts'),
(2291, 2291, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Bathtub & Shower Jets'),
(2292, 2292, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Electric & Power Showers'),
(2293, 2293, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Arms & Connectors'),
(2294, 2294, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Bases'),
(2295, 2295, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Columns'),
(2296, 2296, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Doors & Enclosures'),
(2297, 2297, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Heads'),
(2298, 2298, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Walls & Surrounds'),
(2299, 2299, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Water Filters'),
(2300, 2300, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Sink Accessories'),
(2301, 2301, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Sink Accessories > Sink Legs'),
(2302, 2302, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories'),
(2303, 2303, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Ballcocks & Flappers'),
(2304, 2304, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Bidet Faucets & Sprayers'),
(2305, 2305, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet & Bidet Seats'),
(2306, 2306, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Seat Covers'),
(2307, 2307, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Seat Lid Covers'),
(2308, 2308, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Tank Covers'),
(2309, 2309, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Tank Levers'),
(2310, 2310, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Tanks'),
(2311, 2311, 0, 'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Trim'),
(2312, 2312, 0, 'Hardware > Plumbing > Plumbing Fixtures'),
(2313, 2313, 0, 'Hardware > Plumbing > Plumbing Fixtures > Bathroom Suites'),
(2314, 2314, 0, 'Hardware > Plumbing > Plumbing Fixtures > Bathtubs'),
(2315, 2315, 0, 'Hardware > Plumbing > Plumbing Fixtures > Faucets'),
(2316, 2316, 0, 'Hardware > Plumbing > Plumbing Fixtures > Shower Stalls & Kits'),
(2317, 2317, 0, 'Hardware > Plumbing > Plumbing Fixtures > Sinks'),
(2318, 2318, 0, 'Hardware > Plumbing > Plumbing Fixtures > Sinks > Bathroom Sinks'),
(2319, 2319, 0, 'Hardware > Plumbing > Plumbing Fixtures > Sinks > Kitchen & Utility Sinks'),
(2320, 2320, 0, 'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets'),
(2321, 2321, 0, 'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Bidets'),
(2322, 2322, 0, 'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Toilets'),
(2323, 2323, 0, 'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Urinals'),
(2324, 2324, 0, 'Hardware > Plumbing > Plumbing Hoses & Supply Lines'),
(2325, 2325, 0, 'Hardware > Plumbing > Plumbing Pipes'),
(2326, 2326, 0, 'Hardware > Plumbing > Plumbing Repair Kits'),
(2327, 2327, 0, 'Hardware > Plumbing > Water Dispensing & Filtration'),
(2328, 2328, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > In-Line Water Filters'),
(2329, 2329, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers'),
(2330, 2330, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers > Drinking Fountains'),
(2331, 2331, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers > Water Chillers'),
(2332, 2332, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Distillers'),
(2333, 2333, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories'),
(2334, 2334, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories > Water Filter Cartridges'),
(2335, 2335, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories > Water Filter Housings'),
(2336, 2336, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Softener Salt'),
(2337, 2337, 0, 'Hardware > Plumbing > Water Dispensing & Filtration > Water Softeners'),
(2338, 2338, 0, 'Hardware > Plumbing > Water Levelers'),
(2339, 2339, 0, 'Hardware > Plumbing > Water Timers'),
(2340, 2340, 0, 'Hardware > Plumbing > Well Supplies'),
(2341, 2341, 0, 'Hardware > Power & Electrical Supplies'),
(2342, 2342, 0, 'Hardware > Power & Electrical Supplies > Armatures, Rotors & Stators'),
(2343, 2343, 0, 'Hardware > Power & Electrical Supplies > Ballasts & Starters'),
(2344, 2344, 0, 'Hardware > Power & Electrical Supplies > Carbon Brushes'),
(2345, 2345, 0, 'Hardware > Power & Electrical Supplies > Circuit Breaker Panels'),
(2346, 2346, 0, 'Hardware > Power & Electrical Supplies > Conduit & Housings'),
(2347, 2347, 0, 'Hardware > Power & Electrical Supplies > Conduit & Housings > Electrical Conduit'),
(2348, 2348, 0, 'Hardware > Power & Electrical Supplies > Conduit & Housings > Heat-Shrink Tubing'),
(2349, 2349, 0, 'Hardware > Power & Electrical Supplies > Electrical Motors'),
(2350, 2350, 0, 'Hardware > Power & Electrical Supplies > Electrical Mount Boxes & Brackets'),
(2351, 2351, 0, 'Hardware > Power & Electrical Supplies > Electrical Plug Caps'),
(2352, 2352, 0, 'Hardware > Power & Electrical Supplies > Electrical Switches'),
(2353, 2353, 0, 'Hardware > Power & Electrical Supplies > Electrical Switches > Light Switches'),
(2354, 2354, 0, 'Hardware > Power & Electrical Supplies > Electrical Switches > Specialty Electrical Switches & Relays'),
(2355, 2355, 0, 'Hardware > Power & Electrical Supplies > Electrical Wires & Cable'),
(2356, 2356, 0, 'Hardware > Power & Electrical Supplies > Extension Cord Accessories'),
(2357, 2357, 0, 'Hardware > Power & Electrical Supplies > Extension Cords'),
(2358, 2358, 0, 'Hardware > Power & Electrical Supplies > Generator Accessories'),
(2359, 2359, 0, 'Hardware > Power & Electrical Supplies > Generators'),
(2360, 2360, 0, 'Hardware > Power & Electrical Supplies > Home Automation Kits'),
(2361, 2361, 0, 'Hardware > Power & Electrical Supplies > Phone & Data Jacks'),
(2362, 2362, 0, 'Hardware > Power & Electrical Supplies > Power Converters'),
(2363, 2363, 0, 'Hardware > Power & Electrical Supplies > Power Inlets'),
(2364, 2364, 0, 'Hardware > Power & Electrical Supplies > Power Inverters'),
(2365, 2365, 0, 'Hardware > Power & Electrical Supplies > Power Outlets & Sockets'),
(2366, 2366, 0, 'Hardware > Power & Electrical Supplies > Solar Energy Kits'),
(2367, 2367, 0, 'Hardware > Power & Electrical Supplies > Solar Panels'),
(2368, 2368, 0, 'Hardware > Power & Electrical Supplies > Voltage Transformers & Regulators'),
(2369, 2369, 0, 'Hardware > Power & Electrical Supplies > Wall Plates & Covers'),
(2370, 2370, 0, 'Hardware > Power & Electrical Supplies > Wall Socket Controls & Sensors'),
(2371, 2371, 0, 'Hardware > Power & Electrical Supplies > Wire Caps & Nuts'),
(2372, 2372, 0, 'Hardware > Power & Electrical Supplies > Wire Terminals & Connectors'),
(2373, 2373, 0, 'Hardware > Small Engines'),
(2374, 2374, 0, 'Hardware > Storage Tanks'),
(2375, 2375, 0, 'Hardware > Tool Accessories'),
(2376, 2376, 0, 'Hardware > Tool Accessories > Abrasive Blaster Accessories'),
(2377, 2377, 0, 'Hardware > Tool Accessories > Abrasive Blaster Accessories > Sandblasting Cabinets'),
(2378, 2378, 0, 'Hardware > Tool Accessories > Axe Accessories'),
(2379, 2379, 0, 'Hardware > Tool Accessories > Axe Accessories > Axe Handles'),
(2380, 2380, 0, 'Hardware > Tool Accessories > Axe Accessories > Axe Heads'),
(2381, 2381, 0, 'Hardware > Tool Accessories > Cutter Accessories'),
(2382, 2382, 0, 'Hardware > Tool Accessories > Cutter Accessories > Nibbler Dies'),
(2383, 2383, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories'),
(2384, 2384, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill & Screwdriver Bits'),
(2385, 2385, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Bit Extensions'),
(2386, 2386, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Bit Sharpeners'),
(2387, 2387, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Chucks'),
(2388, 2388, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Stands & Guides'),
(2389, 2389, 0, 'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Hole Saws'),
(2390, 2390, 0, 'Hardware > Tool Accessories > Driver Accessories'),
(2391, 2391, 0, 'Hardware > Tool Accessories > Flashlight Accessories'),
(2392, 2392, 0, 'Hardware > Tool Accessories > Grinder Accessories'),
(2393, 2393, 0, 'Hardware > Tool Accessories > Grinder Accessories > Grinding Wheels & Points'),
(2394, 2394, 0, 'Hardware > Tool Accessories > Hammer Accessories'),
(2395, 2395, 0, 'Hardware > Tool Accessories > Hammer Accessories > Air Hammer Accessories'),
(2396, 2396, 0, 'Hardware > Tool Accessories > Hammer Accessories > Hammer Handles'),
(2397, 2397, 0, 'Hardware > Tool Accessories > Hammer Accessories > Hammer Heads'),
(2398, 2398, 0, 'Hardware > Tool Accessories > Industrial Staples'),
(2399, 2399, 0, 'Hardware > Tool Accessories > Jigs'),
(2400, 2400, 0, 'Hardware > Tool Accessories > Magnetizers & Demagnetizers'),
(2401, 2401, 0, 'Hardware > Tool Accessories > Mattock & Pickaxe Accessories'),
(2402, 2402, 0, 'Hardware > Tool Accessories > Mattock & Pickaxe Accessories > Mattock & Pickaxe Handles'),
(2403, 2403, 0, 'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories'),
(2404, 2404, 0, 'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Electrical Testing Tool Accessories'),
(2405, 2405, 0, 'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Gas Detector Accessories'),
(2406, 2406, 0, 'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Measuring Scale Accessories'),
(2407, 2407, 0, 'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Multimeter Accessories'),
(2408, 2408, 0, 'Hardware > Tool Accessories > Mixing Tool Paddles'),
(2409, 2409, 0, 'Hardware > Tool Accessories > Paint Tool Accessories'),
(2410, 2410, 0, 'Hardware > Tool Accessories > Paint Tool Accessories > Airbrush Accessories'),
(2411, 2411, 0, 'Hardware > Tool Accessories > Paint Tool Accessories > Paint Brush Cleaning Solutions'),
(2412, 2412, 0, 'Hardware > Tool Accessories > Paint Tool Accessories > Paint Roller Accessories'),
(2413, 2413, 0, 'Hardware > Tool Accessories > Power Tool Batteries'),
(2414, 2414, 0, 'Hardware > Tool Accessories > Power Tool Chargers'),
(2415, 2415, 0, 'Hardware > Tool Accessories > Router Accessories'),
(2416, 2416, 0, 'Hardware > Tool Accessories > Router Accessories > Router Bits'),
(2417, 2417, 0, 'Hardware > Tool Accessories > Router Accessories > Router Tables'),
(2418, 2418, 0, 'Hardware > Tool Accessories > Sanding Accessories'),
(2419, 2419, 0, 'Hardware > Tool Accessories > Sanding Accessories > Sandpaper & Sanding Sponges'),
(2420, 2420, 0, 'Hardware > Tool Accessories > Saw Accessories'),
(2421, 2421, 0, 'Hardware > Tool Accessories > Saw Accessories > Band Saw Accessories'),
(2422, 2422, 0, 'Hardware > Tool Accessories > Saw Accessories > Handheld Circular Saw Accessories'),
(2423, 2423, 0, 'Hardware > Tool Accessories > Saw Accessories > Jigsaw Accessories'),
(2424, 2424, 0, 'Hardware > Tool Accessories > Saw Accessories > Miter Saw Accessories'),
(2425, 2425, 0, 'Hardware > Tool Accessories > Saw Accessories > Table Saw Accessories'),
(2426, 2426, 0, 'Hardware > Tool Accessories > Shaper Accessories'),
(2427, 2427, 0, 'Hardware > Tool Accessories > Shaper Accessories > Shaper Cutters'),
(2428, 2428, 0, 'Hardware > Tool Accessories > Soldering Iron Accessories'),
(2429, 2429, 0, 'Hardware > Tool Accessories > Soldering Iron Accessories > Soldering Iron Stands'),
(2430, 2430, 0, 'Hardware > Tool Accessories > Soldering Iron Accessories > Soldering Iron Tips'),
(2431, 2431, 0, 'Hardware > Tool Accessories > Tool Blades'),
(2432, 2432, 0, 'Hardware > Tool Accessories > Tool Blades > Cutter & Scraper Blades'),
(2433, 2433, 0, 'Hardware > Tool Accessories > Tool Blades > Saw Blades'),
(2434, 2434, 0, 'Hardware > Tool Accessories > Tool Handle Wedges'),
(2435, 2435, 0, 'Hardware > Tool Accessories > Tool Safety Tethers'),
(2436, 2436, 0, 'Hardware > Tool Accessories > Tool Sockets'),
(2437, 2437, 0, 'Hardware > Tool Accessories > Tool Stands'),
(2438, 2438, 0, 'Hardware > Tool Accessories > Tool Stands > Saw Stands'),
(2439, 2439, 0, 'Hardware > Tool Accessories > Wedge Tools'),
(2440, 2440, 0, 'Hardware > Tool Accessories > Welding Accessories'),
(2441, 2441, 0, 'Hardware > Tools'),
(2442, 2442, 0, 'Hardware > Tools > Abrasive Blasters'),
(2443, 2443, 0, 'Hardware > Tools > Anvils'),
(2444, 2444, 0, 'Hardware > Tools > Axes'),
(2445, 2445, 0, 'Hardware > Tools > Carpentry Jointers'),
(2446, 2446, 0, 'Hardware > Tools > Carving Chisels & Gouges'),
(2447, 2447, 0, 'Hardware > Tools > Caulking Tools'),
(2448, 2448, 0, 'Hardware > Tools > Chimney Brushes'),
(2449, 2449, 0, 'Hardware > Tools > Compactors'),
(2450, 2450, 0, 'Hardware > Tools > Compressors'),
(2451, 2451, 0, 'Hardware > Tools > Concrete Brooms'),
(2452, 2452, 0, 'Hardware > Tools > Cutters'),
(2453, 2453, 0, 'Hardware > Tools > Cutters > Bolt Cutters'),
(2454, 2454, 0, 'Hardware > Tools > Cutters > Glass Cutters'),
(2455, 2455, 0, 'Hardware > Tools > Cutters > Handheld Metal Shears & Nibblers'),
(2456, 2456, 0, 'Hardware > Tools > Cutters > Nippers'),
(2457, 2457, 0, 'Hardware > Tools > Cutters > Pipe Cutters'),
(2458, 2458, 0, 'Hardware > Tools > Cutters > Rebar Cutters'),
(2459, 2459, 0, 'Hardware > Tools > Cutters > Tile & Shingle Cutters'),
(2460, 2460, 0, 'Hardware > Tools > Cutters > Utility Knives'),
(2461, 2461, 0, 'Hardware > Tools > Deburrers'),
(2462, 2462, 0, 'Hardware > Tools > Dollies & Hand Trucks'),
(2463, 2463, 0, 'Hardware > Tools > Drills'),
(2464, 2464, 0, 'Hardware > Tools > Drills > Augers'),
(2465, 2465, 0, 'Hardware > Tools > Drills > Drill Presses'),
(2466, 2466, 0, 'Hardware > Tools > Drills > Handheld Power Drills'),
(2467, 2467, 0, 'Hardware > Tools > Drills > Mortisers'),
(2468, 2468, 0, 'Hardware > Tools > Drills > Pneumatic Drills'),
(2469, 2469, 0, 'Hardware > Tools > Electrician Fish Tape'),
(2470, 2470, 0, 'Hardware > Tools > Flashlights & Headlamps'),
(2471, 2471, 0, 'Hardware > Tools > Grease Guns'),
(2472, 2472, 0, 'Hardware > Tools > Grinders'),
(2473, 2473, 0, 'Hardware > Tools > Grips'),
(2474, 2474, 0, 'Hardware > Tools > Hammers'),
(2475, 2475, 0, 'Hardware > Tools > Hammers > Manual Hammers'),
(2476, 2476, 0, 'Hardware > Tools > Hammers > Powered Hammers'),
(2477, 2477, 0, 'Hardware > Tools > Handheld Power Mixers'),
(2478, 2478, 0, 'Hardware > Tools > Hardware Torches'),
(2479, 2479, 0, 'Hardware > Tools > Heat Guns'),
(2480, 2480, 0, 'Hardware > Tools > Impact Wrenches & Drivers'),
(2481, 2481, 0, 'Hardware > Tools > Industrial Vibrators'),
(2482, 2482, 0, 'Hardware > Tools > Inspection Mirrors'),
(2483, 2483, 0, 'Hardware > Tools > Ladders & Scaffolding'),
(2484, 2484, 0, 'Hardware > Tools > Ladders & Scaffolding > Ladder Carts'),
(2485, 2485, 0, 'Hardware > Tools > Ladders & Scaffolding > Ladders'),
(2486, 2486, 0, 'Hardware > Tools > Ladders & Scaffolding > Scaffolding'),
(2487, 2487, 0, 'Hardware > Tools > Ladders & Scaffolding > Step Stools'),
(2488, 2488, 0, 'Hardware > Tools > Ladders & Scaffolding > Work Platforms'),
(2489, 2489, 0, 'Hardware > Tools > Lathes'),
(2490, 2490, 0, 'Hardware > Tools > Light Bulb Changers'),
(2491, 2491, 0, 'Hardware > Tools > Lighters & Matches'),
(2492, 2492, 0, 'Hardware > Tools > Log Splitters'),
(2493, 2493, 0, 'Hardware > Tools > Magnetic Sweepers'),
(2494, 2494, 0, 'Hardware > Tools > Marking Tools'),
(2495, 2495, 0, 'Hardware > Tools > Masonry Tools'),
(2496, 2496, 0, 'Hardware > Tools > Masonry Tools > Brick Tools'),
(2497, 2497, 0, 'Hardware > Tools > Masonry Tools > Cement Mixers'),
(2498, 2498, 0, 'Hardware > Tools > Masonry Tools > Construction Lines'),
(2499, 2499, 0, 'Hardware > Tools > Masonry Tools > Floats'),
(2500, 2500, 0, 'Hardware > Tools > Masonry Tools > Grout Sponges'),
(2501, 2501, 0, 'Hardware > Tools > Masonry Tools > Masonry Edgers & Groovers'),
(2502, 2502, 0, 'Hardware > Tools > Masonry Tools > Masonry Jointers'),
(2503, 2503, 0, 'Hardware > Tools > Masonry Tools > Masonry Trowels'),
(2504, 2504, 0, 'Hardware > Tools > Masonry Tools > Power Trowels'),
(2505, 2505, 0, 'Hardware > Tools > Mattocks & Pickaxes'),
(2506, 2506, 0, 'Hardware > Tools > Measuring Tools & Sensors'),
(2507, 2507, 0, 'Hardware > Tools > Measuring Tools & Sensors > Air Quality Meters'),
(2508, 2508, 0, 'Hardware > Tools > Measuring Tools & Sensors > Altimeters'),
(2509, 2509, 0, 'Hardware > Tools > Measuring Tools & Sensors > Anemometers'),
(2510, 2510, 0, 'Hardware > Tools > Measuring Tools & Sensors > Barometers'),
(2511, 2511, 0, 'Hardware > Tools > Measuring Tools & Sensors > Calipers'),
(2512, 2512, 0, 'Hardware > Tools > Measuring Tools & Sensors > Cruising Rods'),
(2513, 2513, 0, 'Hardware > Tools > Measuring Tools & Sensors > Distance Meters'),
(2514, 2514, 0, 'Hardware > Tools > Measuring Tools & Sensors > Dividers'),
(2515, 2515, 0, 'Hardware > Tools > Measuring Tools & Sensors > Electrical Testing Tools'),
(2516, 2516, 0, 'Hardware > Tools > Measuring Tools & Sensors > Flow Meters & Controllers'),
(2517, 2517, 0, 'Hardware > Tools > Measuring Tools & Sensors > Gas Detectors'),
(2518, 2518, 0, 'Hardware > Tools > Measuring Tools & Sensors > Gauges'),
(2519, 2519, 0, 'Hardware > Tools > Measuring Tools & Sensors > Geiger Counters'),
(2520, 2520, 0, 'Hardware > Tools > Measuring Tools & Sensors > Hygrometers'),
(2521, 2521, 0, 'Hardware > Tools > Measuring Tools & Sensors > Infrared Thermometers'),
(2522, 2522, 0, 'Hardware > Tools > Measuring Tools & Sensors > Knife Guides'),
(2523, 2523, 0, 'Hardware > Tools > Measuring Tools & Sensors > Levels'),
(2524, 2524, 0, 'Hardware > Tools > Measuring Tools & Sensors > Levels > Bubble Levels'),
(2525, 2525, 0, 'Hardware > Tools > Measuring Tools & Sensors > Levels > Laser Levels'),
(2526, 2526, 0, 'Hardware > Tools > Measuring Tools & Sensors > Levels > Sight Levels'),
(2527, 2527, 0, 'Hardware > Tools > Measuring Tools & Sensors > Measuring Scales'),
(2528, 2528, 0, 'Hardware > Tools > Measuring Tools & Sensors > Measuring Wheels'),
(2529, 2529, 0, 'Hardware > Tools > Measuring Tools & Sensors > Moisture Meters'),
(2530, 2530, 0, 'Hardware > Tools > Measuring Tools & Sensors > Probes & Finders'),
(2531, 2531, 0, 'Hardware > Tools > Measuring Tools & Sensors > Protractors'),
(2532, 2532, 0, 'Hardware > Tools > Measuring Tools & Sensors > Rebar Locators'),
(2533, 2533, 0, 'Hardware > Tools > Measuring Tools & Sensors > Rulers'),
(2534, 2534, 0, 'Hardware > Tools > Measuring Tools & Sensors > Seismometer'),
(2535, 2535, 0, 'Hardware > Tools > Measuring Tools & Sensors > Sound Meters'),
(2536, 2536, 0, 'Hardware > Tools > Measuring Tools & Sensors > Squares'),
(2537, 2537, 0, 'Hardware > Tools > Measuring Tools & Sensors > Straight Edges'),
(2538, 2538, 0, 'Hardware > Tools > Measuring Tools & Sensors > Stud Sensors'),
(2539, 2539, 0, 'Hardware > Tools > Measuring Tools & Sensors > Tape Measures'),
(2540, 2540, 0, 'Hardware > Tools > Measuring Tools & Sensors > Theodolites'),
(2541, 2541, 0, 'Hardware > Tools > Measuring Tools & Sensors > Thermal Imaging Cameras'),
(2542, 2542, 0, 'Hardware > Tools > Measuring Tools & Sensors > Thermocouples & Thermopiles'),
(2543, 2543, 0, 'Hardware > Tools > Measuring Tools & Sensors > Transducers'),
(2544, 2544, 0, 'Hardware > Tools > Measuring Tools & Sensors > UV Light Meters'),
(2545, 2545, 0, 'Hardware > Tools > Measuring Tools & Sensors > Vibration Meters'),
(2546, 2546, 0, 'Hardware > Tools > Measuring Tools & Sensors > Weather Forecasters & Stations'),
(2547, 2547, 0, 'Hardware > Tools > Measuring Tools & Sensors > pH Meters'),
(2548, 2548, 0, 'Hardware > Tools > Milling Machines'),
(2549, 2549, 0, 'Hardware > Tools > Multifunction Power Tools'),
(2550, 2550, 0, 'Hardware > Tools > Nail Pullers'),
(2551, 2551, 0, 'Hardware > Tools > Nailers & Staplers'),
(2552, 2552, 0, 'Hardware > Tools > Oil Filter Drains'),
(2553, 2553, 0, 'Hardware > Tools > Paint Tools'),
(2554, 2554, 0, 'Hardware > Tools > Paint Tools > Airbrushes'),
(2555, 2555, 0, 'Hardware > Tools > Paint Tools > Paint Brushes'),
(2556, 2556, 0, 'Hardware > Tools > Paint Tools > Paint Edgers'),
(2557, 2557, 0, 'Hardware > Tools > Paint Tools > Paint Rollers'),
(2558, 2558, 0, 'Hardware > Tools > Paint Tools > Paint Shakers'),
(2559, 2559, 0, 'Hardware > Tools > Paint Tools > Paint Sponges'),
(2560, 2560, 0, 'Hardware > Tools > Paint Tools > Paint Sprayers');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(2561, 2561, 0, 'Hardware > Tools > Paint Tools > Paint Strainers'),
(2562, 2562, 0, 'Hardware > Tools > Paint Tools > Paint Trays'),
(2563, 2563, 0, 'Hardware > Tools > Pickup Tools'),
(2564, 2564, 0, 'Hardware > Tools > Pipe & Bar Benders'),
(2565, 2565, 0, 'Hardware > Tools > Pipe & Tube Cleaners'),
(2566, 2566, 0, 'Hardware > Tools > Pipe Brushes'),
(2567, 2567, 0, 'Hardware > Tools > Planers'),
(2568, 2568, 0, 'Hardware > Tools > Planes'),
(2569, 2569, 0, 'Hardware > Tools > Pliers'),
(2570, 2570, 0, 'Hardware > Tools > Plungers'),
(2571, 2571, 0, 'Hardware > Tools > Polishers & Buffers'),
(2572, 2572, 0, 'Hardware > Tools > Post Hole Diggers'),
(2573, 2573, 0, 'Hardware > Tools > Pry Bars'),
(2574, 2574, 0, 'Hardware > Tools > Punches & Awls'),
(2575, 2575, 0, 'Hardware > Tools > Putty Knives & Scrapers'),
(2576, 2576, 0, 'Hardware > Tools > Reamers'),
(2577, 2577, 0, 'Hardware > Tools > Riveting Tools'),
(2578, 2578, 0, 'Hardware > Tools > Riveting Tools > Rivet Guns'),
(2579, 2579, 0, 'Hardware > Tools > Riveting Tools > Rivet Pliers'),
(2580, 2580, 0, 'Hardware > Tools > Routing Tools'),
(2581, 2581, 0, 'Hardware > Tools > Sanders'),
(2582, 2582, 0, 'Hardware > Tools > Sanding Blocks'),
(2583, 2583, 0, 'Hardware > Tools > Saw Horses'),
(2584, 2584, 0, 'Hardware > Tools > Saws'),
(2585, 2585, 0, 'Hardware > Tools > Saws > Band Saws'),
(2586, 2586, 0, 'Hardware > Tools > Saws > Cut-Off Saws'),
(2587, 2587, 0, 'Hardware > Tools > Saws > Hand Saws'),
(2588, 2588, 0, 'Hardware > Tools > Saws > Handheld Circular Saws'),
(2589, 2589, 0, 'Hardware > Tools > Saws > Jigsaws'),
(2590, 2590, 0, 'Hardware > Tools > Saws > Masonry & Tile Saws'),
(2591, 2591, 0, 'Hardware > Tools > Saws > Miter Saws'),
(2592, 2592, 0, 'Hardware > Tools > Saws > Panel Saws'),
(2593, 2593, 0, 'Hardware > Tools > Saws > Reciprocating Saws'),
(2594, 2594, 0, 'Hardware > Tools > Saws > Scroll Saws'),
(2595, 2595, 0, 'Hardware > Tools > Saws > Table Saws'),
(2596, 2596, 0, 'Hardware > Tools > Screwdrivers'),
(2597, 2597, 0, 'Hardware > Tools > Shapers'),
(2598, 2598, 0, 'Hardware > Tools > Sharpeners'),
(2599, 2599, 0, 'Hardware > Tools > Socket Drivers'),
(2600, 2600, 0, 'Hardware > Tools > Soldering Irons'),
(2601, 2601, 0, 'Hardware > Tools > Tap Reseaters'),
(2602, 2602, 0, 'Hardware > Tools > Taps & Dies'),
(2603, 2603, 0, 'Hardware > Tools > Threading Machines'),
(2604, 2604, 0, 'Hardware > Tools > Tool Clamps & Vises'),
(2605, 2605, 0, 'Hardware > Tools > Tool Files'),
(2606, 2606, 0, 'Hardware > Tools > Tool Keys'),
(2607, 2607, 0, 'Hardware > Tools > Tool Knives'),
(2608, 2608, 0, 'Hardware > Tools > Tool Sets'),
(2609, 2609, 0, 'Hardware > Tools > Tool Sets > Hand Tool Sets'),
(2610, 2610, 0, 'Hardware > Tools > Tool Sets > Power Tool Combo Sets'),
(2611, 2611, 0, 'Hardware > Tools > Welding Guns & Plasma Cutters'),
(2612, 2612, 0, 'Hardware > Tools > Wire & Cable Hand Tools'),
(2613, 2613, 0, 'Hardware > Tools > Work Lights'),
(2614, 2614, 0, 'Hardware > Tools > Wrenches'),
(2615, 2615, 0, 'Health & Beauty'),
(2616, 2616, 0, 'Health & Beauty > Health Care'),
(2617, 2617, 0, 'Health & Beauty > Health Care > Acupuncture'),
(2618, 2618, 0, 'Health & Beauty > Health Care > Acupuncture > Acupuncture Models'),
(2619, 2619, 0, 'Health & Beauty > Health Care > Acupuncture > Acupuncture Needles'),
(2620, 2620, 0, 'Health & Beauty > Health Care > Bed Pans'),
(2621, 2621, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories'),
(2622, 2622, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Activity Monitor Accessories'),
(2623, 2623, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories'),
(2624, 2624, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Blood Glucose Control Solution'),
(2625, 2625, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Blood Glucose Test Strips'),
(2626, 2626, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Lancing Devices'),
(2627, 2627, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Pressure Monitor Accessories'),
(2628, 2628, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Pressure Monitor Accessories > Blood Pressure Monitor Cuffs'),
(2629, 2629, 0, 'Health & Beauty > Health Care > Biometric Monitor Accessories > Body Weight Scale Accessories'),
(2630, 2630, 0, 'Health & Beauty > Health Care > Biometric Monitors'),
(2631, 2631, 0, 'Health & Beauty > Health Care > Biometric Monitors > Activity Monitors'),
(2632, 2632, 0, 'Health & Beauty > Health Care > Biometric Monitors > Blood Glucose Meters'),
(2633, 2633, 0, 'Health & Beauty > Health Care > Biometric Monitors > Blood Pressure Monitors'),
(2634, 2634, 0, 'Health & Beauty > Health Care > Biometric Monitors > Body Fat Analyzers'),
(2635, 2635, 0, 'Health & Beauty > Health Care > Biometric Monitors > Body Weight Scales'),
(2636, 2636, 0, 'Health & Beauty > Health Care > Biometric Monitors > Breathalyzers'),
(2637, 2637, 0, 'Health & Beauty > Health Care > Biometric Monitors > Cholesterol Analyzers'),
(2638, 2638, 0, 'Health & Beauty > Health Care > Biometric Monitors > Fertility Monitors and Ovulation Tests'),
(2639, 2639, 0, 'Health & Beauty > Health Care > Biometric Monitors > Medical Thermometers'),
(2640, 2640, 0, 'Health & Beauty > Health Care > Biometric Monitors > Prenatal Heart Rate Monitors'),
(2641, 2641, 0, 'Health & Beauty > Health Care > Biometric Monitors > Pulse Oximeters'),
(2642, 2642, 0, 'Health & Beauty > Health Care > Condoms'),
(2643, 2643, 0, 'Health & Beauty > Health Care > Conductivity Gels & Lotions'),
(2644, 2644, 0, 'Health & Beauty > Health Care > Contraceptive Cases'),
(2645, 2645, 0, 'Health & Beauty > Health Care > First Aid'),
(2646, 2646, 0, 'Health & Beauty > Health Care > First Aid > Antiseptics & Cleaning Supplies'),
(2647, 2647, 0, 'Health & Beauty > Health Care > First Aid > Cast & Bandage Protectors'),
(2648, 2648, 0, 'Health & Beauty > Health Care > First Aid > Eye Wash Supplies'),
(2649, 2649, 0, 'Health & Beauty > Health Care > First Aid > First Aid Kits'),
(2650, 2650, 0, 'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies'),
(2651, 2651, 0, 'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Heat Rubs'),
(2652, 2652, 0, 'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Heating Pads'),
(2653, 2653, 0, 'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Ice Packs'),
(2654, 2654, 0, 'Health & Beauty > Health Care > First Aid > Medical Tape & Bandages'),
(2655, 2655, 0, 'Health & Beauty > Health Care > Fitness & Nutrition'),
(2656, 2656, 0, 'Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Bars'),
(2657, 2657, 0, 'Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Drinks & Shakes'),
(2658, 2658, 0, 'Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Gels & Chews'),
(2659, 2659, 0, 'Health & Beauty > Health Care > Fitness & Nutrition > Nutritional Food PurÃ©es'),
(2660, 2660, 0, 'Health & Beauty > Health Care > Fitness & Nutrition > Tube Feeding Supplements'),
(2661, 2661, 0, 'Health & Beauty > Health Care > Fitness & Nutrition > Vitamins & Supplements'),
(2662, 2662, 0, 'Health & Beauty > Health Care > Hearing Aids'),
(2663, 2663, 0, 'Health & Beauty > Health Care > Incontinence Aids'),
(2664, 2664, 0, 'Health & Beauty > Health Care > Light Therapy Lamps'),
(2665, 2665, 0, 'Health & Beauty > Health Care > Medical Alarm Systems'),
(2666, 2666, 0, 'Health & Beauty > Health Care > Medical Identification Tags & Jewelry'),
(2667, 2667, 0, 'Health & Beauty > Health Care > Medical Tests'),
(2668, 2668, 0, 'Health & Beauty > Health Care > Medical Tests > Allergy Test Kits'),
(2669, 2669, 0, 'Health & Beauty > Health Care > Medical Tests > Blood Typing Test Kits'),
(2670, 2670, 0, 'Health & Beauty > Health Care > Medical Tests > Drug Tests'),
(2671, 2671, 0, 'Health & Beauty > Health Care > Medical Tests > HIV Tests'),
(2672, 2672, 0, 'Health & Beauty > Health Care > Medical Tests > Pregnancy Tests'),
(2673, 2673, 0, 'Health & Beauty > Health Care > Medical Tests > Urinary Tract Infection Tests'),
(2674, 2674, 0, 'Health & Beauty > Health Care > Medicine & Drugs'),
(2675, 2675, 0, 'Health & Beauty > Health Care > Mobility & Accessibility'),
(2676, 2676, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment'),
(2677, 2677, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Mobility Scooters'),
(2678, 2678, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Stair Lifts'),
(2679, 2679, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Transfer Boards & Sheets'),
(2680, 2680, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Wheelchairs'),
(2681, 2681, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment Accessories'),
(2682, 2682, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Furniture & Fixtures'),
(2683, 2683, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Furniture & Fixtures > Shower Benches & Seats'),
(2684, 2684, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aid Accessories'),
(2685, 2685, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids'),
(2686, 2686, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Canes & Walking Sticks'),
(2687, 2687, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Crutches'),
(2688, 2688, 0, 'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Walkers'),
(2689, 2689, 0, 'Health & Beauty > Health Care > Occupational & Physical Therapy Equipment'),
(2690, 2690, 0, 'Health & Beauty > Health Care > Occupational & Physical Therapy Equipment > Electrical Muscle Stimulators'),
(2691, 2691, 0, 'Health & Beauty > Health Care > Occupational & Physical Therapy Equipment > Therapeutic Swings'),
(2692, 2692, 0, 'Health & Beauty > Health Care > Pillboxes'),
(2693, 2693, 0, 'Health & Beauty > Health Care > Respiratory Care'),
(2694, 2694, 0, 'Health & Beauty > Health Care > Respiratory Care > Nebulizers'),
(2695, 2695, 0, 'Health & Beauty > Health Care > Respiratory Care > Oxygen Tanks'),
(2696, 2696, 0, 'Health & Beauty > Health Care > Respiratory Care > PAP Machines'),
(2697, 2697, 0, 'Health & Beauty > Health Care > Respiratory Care > PAP Masks'),
(2698, 2698, 0, 'Health & Beauty > Health Care > Respiratory Care > Steam Inhalers'),
(2699, 2699, 0, 'Health & Beauty > Health Care > Specimen Cups'),
(2700, 2700, 0, 'Health & Beauty > Health Care > Spermicides'),
(2701, 2701, 0, 'Health & Beauty > Health Care > Stump Shrinkers'),
(2702, 2702, 0, 'Health & Beauty > Health Care > Supports & Braces'),
(2703, 2703, 0, 'Health & Beauty > Health Care > Surgical Lubricants'),
(2704, 2704, 0, 'Health & Beauty > Jewelry Cleaning & Care'),
(2705, 2705, 0, 'Health & Beauty > Jewelry Cleaning & Care > Jewelry Cleaning Solutions & Polishes'),
(2706, 2706, 0, 'Health & Beauty > Jewelry Cleaning & Care > Jewelry Cleaning Tools'),
(2707, 2707, 0, 'Health & Beauty > Jewelry Cleaning & Care > Jewelry Holders'),
(2708, 2708, 0, 'Health & Beauty > Jewelry Cleaning & Care > Jewelry Steam Cleaners'),
(2709, 2709, 0, 'Health & Beauty > Jewelry Cleaning & Care > Watch Repair Kits'),
(2710, 2710, 0, 'Health & Beauty > Personal Care'),
(2711, 2711, 0, 'Health & Beauty > Personal Care > Back Care'),
(2712, 2712, 0, 'Health & Beauty > Personal Care > Back Care > Back & Lumbar Support Cushions'),
(2713, 2713, 0, 'Health & Beauty > Personal Care > Cosmetics'),
(2714, 2714, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body'),
(2715, 2715, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Adult Hygienic Wipes'),
(2716, 2716, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bar Soap'),
(2717, 2717, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Additives'),
(2718, 2718, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Brushes'),
(2719, 2719, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Sponges & Loofahs'),
(2720, 2720, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Body Wash'),
(2721, 2721, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Hand Sanitizers & Wipes'),
(2722, 2722, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Liquid Hand Soap'),
(2723, 2723, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Powdered Hand Soap'),
(2724, 2724, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Shower Caps'),
(2725, 2725, 0, 'Health & Beauty > Personal Care > Cosmetics > Bath & Body Gift Sets'),
(2726, 2726, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Sets'),
(2727, 2727, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tool Cleansers'),
(2728, 2728, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools'),
(2729, 2729, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools'),
(2730, 2730, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Double Eyelid Glue & Tape'),
(2731, 2731, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyebrow Stencils'),
(2732, 2732, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyelash Curler Refills'),
(2733, 2733, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyelash Curlers'),
(2734, 2734, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Face Mirrors'),
(2735, 2735, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Facial Blotting Paper'),
(2736, 2736, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories'),
(2737, 2737, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories > False Eyelash Adhesive'),
(2738, 2738, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories > False Eyelash Applicators'),
(2739, 2739, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories > False Eyelash Remover'),
(2740, 2740, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Makeup Brushes'),
(2741, 2741, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Makeup Sponges'),
(2742, 2742, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Refillable Makeup Palettes & Cases'),
(2743, 2743, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools'),
(2744, 2744, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Cuticle Pushers'),
(2745, 2745, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Cuticle Scissors'),
(2746, 2746, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Manicure & Pedicure Spacers'),
(2747, 2747, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Manicure Tool Sets'),
(2748, 2748, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Buffers'),
(2749, 2749, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Clippers'),
(2750, 2750, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Drill Accessories'),
(2751, 2751, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Drills'),
(2752, 2752, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Dryers'),
(2753, 2753, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Files & Emery Boards'),
(2754, 2754, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools'),
(2755, 2755, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Facial Saunas'),
(2756, 2756, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Foot Files'),
(2757, 2757, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Lotion & Sunscreen Applicators'),
(2758, 2758, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Pumice Stones'),
(2759, 2759, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Care Extractors'),
(2760, 2760, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Care Rollers'),
(2761, 2761, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Cleansing Brush Heads'),
(2762, 2762, 0, 'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Cleansing Brushes & Systems'),
(2763, 2763, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup'),
(2764, 2764, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup'),
(2765, 2765, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup > Body & Hair Glitter'),
(2766, 2766, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup > Body Paint & Foundation'),
(2767, 2767, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Costume & Stage Makeup'),
(2768, 2768, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup'),
(2769, 2769, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eye Primer'),
(2770, 2770, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eye Shadow'),
(2771, 2771, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyebrow Enhancers'),
(2772, 2772, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyeliner'),
(2773, 2773, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > False Eyelashes'),
(2774, 2774, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Lash & Brow Growth Treatments'),
(2775, 2775, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Mascara'),
(2776, 2776, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Mascara Primer'),
(2777, 2777, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup'),
(2778, 2778, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Blushes & Bronzers'),
(2779, 2779, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Face Powder'),
(2780, 2780, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Face Primer'),
(2781, 2781, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Foundations & Concealers'),
(2782, 2782, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Highlighters & Luminizers'),
(2783, 2783, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup'),
(2784, 2784, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip & Cheek Stains'),
(2785, 2785, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Gloss'),
(2786, 2786, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Liner'),
(2787, 2787, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Primer'),
(2788, 2788, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lipstick'),
(2789, 2789, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Makeup Finishing Sprays'),
(2790, 2790, 0, 'Health & Beauty > Personal Care > Cosmetics > Makeup > Temporary Tattoos'),
(2791, 2791, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care'),
(2792, 2792, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Cuticle Cream & Oil'),
(2793, 2793, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > False Nails'),
(2794, 2794, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Manicure Glue'),
(2795, 2795, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Art Kits & Accessories'),
(2796, 2796, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Drying Drops & Sprays'),
(2797, 2797, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Removers'),
(2798, 2798, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Thinners'),
(2799, 2799, 0, 'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polishes'),
(2800, 2800, 0, 'Health & Beauty > Personal Care > Cosmetics > Perfume & Cologne'),
(2801, 2801, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care'),
(2802, 2802, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Acne Treatments & Kits'),
(2803, 2803, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Anti-Aging Skin Care Kits'),
(2804, 2804, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Body Oil'),
(2805, 2805, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Body Powder'),
(2806, 2806, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Compressed Skin Care Mask Sheets'),
(2807, 2807, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Cleansers'),
(2808, 2808, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Cleansing Kits'),
(2809, 2809, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Pore Strips'),
(2810, 2810, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Lip Balms & Treatments'),
(2811, 2811, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer'),
(2812, 2812, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Makeup Removers'),
(2813, 2813, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Petroleum Jelly'),
(2814, 2814, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Skin Care Masks & Peels'),
(2815, 2815, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Skin Insect Repellent'),
(2816, 2816, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Sunscreen'),
(2817, 2817, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products'),
(2818, 2818, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Self Tanner'),
(2819, 2819, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Tanning Oil & Lotion'),
(2820, 2820, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Toners & Astringents'),
(2821, 2821, 0, 'Health & Beauty > Personal Care > Cosmetics > Skin Care > Wart Removers'),
(2822, 2822, 0, 'Health & Beauty > Personal Care > Cotton Balls'),
(2823, 2823, 0, 'Health & Beauty > Personal Care > Cotton Swabs'),
(2824, 2824, 0, 'Health & Beauty > Personal Care > Deodorant & Anti-Perspirant'),
(2825, 2825, 0, 'Health & Beauty > Personal Care > Ear Care'),
(2826, 2826, 0, 'Health & Beauty > Personal Care > Ear Care > Ear Candles'),
(2827, 2827, 0, 'Health & Beauty > Personal Care > Ear Care > Ear Drops'),
(2828, 2828, 0, 'Health & Beauty > Personal Care > Ear Care > Ear Dryers'),
(2829, 2829, 0, 'Health & Beauty > Personal Care > Ear Care > Ear Picks & Spoons'),
(2830, 2830, 0, 'Health & Beauty > Personal Care > Ear Care > Ear Syringes'),
(2831, 2831, 0, 'Health & Beauty > Personal Care > Ear Care > Ear Wax Removal Kits'),
(2832, 2832, 0, 'Health & Beauty > Personal Care > Ear Care > Earplug Dispensers'),
(2833, 2833, 0, 'Health & Beauty > Personal Care > Ear Care > Earplugs'),
(2834, 2834, 0, 'Health & Beauty > Personal Care > Enema Kits & Supplies'),
(2835, 2835, 0, 'Health & Beauty > Personal Care > Feminine Sanitary Supplies'),
(2836, 2836, 0, 'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Deodorant'),
(2837, 2837, 0, 'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Douches & Creams'),
(2838, 2838, 0, 'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Pads & Protectors'),
(2839, 2839, 0, 'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Menstrual Cups'),
(2840, 2840, 0, 'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Tampons'),
(2841, 2841, 0, 'Health & Beauty > Personal Care > Foot Care'),
(2842, 2842, 0, 'Health & Beauty > Personal Care > Foot Care > Bunion Care Supplies'),
(2843, 2843, 0, 'Health & Beauty > Personal Care > Foot Care > Corn & Callus Care Supplies'),
(2844, 2844, 0, 'Health & Beauty > Personal Care > Foot Care > Foot Odor Removers'),
(2845, 2845, 0, 'Health & Beauty > Personal Care > Foot Care > Insoles & Inserts'),
(2846, 2846, 0, 'Health & Beauty > Personal Care > Foot Care > Toe Spacers'),
(2847, 2847, 0, 'Health & Beauty > Personal Care > Hair Care'),
(2848, 2848, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Care Kits'),
(2849, 2849, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Color'),
(2850, 2850, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Color Removers'),
(2851, 2851, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Coloring Accessories'),
(2852, 2852, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Loss Concealers'),
(2853, 2853, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Loss Treatments'),
(2854, 2854, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Permanents & Straighteners'),
(2855, 2855, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Shears'),
(2856, 2856, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Steamers & Heat Caps'),
(2857, 2857, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Products'),
(2858, 2858, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories'),
(2859, 2859, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Curler Clips & Pins'),
(2860, 2860, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Dryer Accessories'),
(2861, 2861, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Iron Accessories'),
(2862, 2862, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools'),
(2863, 2863, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Combs & Brushes'),
(2864, 2864, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Curling Irons'),
(2865, 2865, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Curlers'),
(2866, 2866, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Dryers'),
(2867, 2867, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Straighteners'),
(2868, 2868, 0, 'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Styling Tool Sets'),
(2869, 2869, 0, 'Health & Beauty > Personal Care > Hair Care > Shampoo & Conditioner'),
(2870, 2870, 0, 'Health & Beauty > Personal Care > Massage & Relaxation'),
(2871, 2871, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Back Scratchers'),
(2872, 2872, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Eye Pillows'),
(2873, 2873, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Massage Chairs'),
(2874, 2874, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Massage Oil'),
(2875, 2875, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Massage Stone Warmers'),
(2876, 2876, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Massage Stones'),
(2877, 2877, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Massage Tables'),
(2878, 2878, 0, 'Health & Beauty > Personal Care > Massage & Relaxation > Massagers'),
(2879, 2879, 0, 'Health & Beauty > Personal Care > Oral Care'),
(2880, 2880, 0, 'Health & Beauty > Personal Care > Oral Care > Breath Spray'),
(2881, 2881, 0, 'Health & Beauty > Personal Care > Oral Care > Dental Floss'),
(2882, 2882, 0, 'Health & Beauty > Personal Care > Oral Care > Dental Mouthguards'),
(2883, 2883, 0, 'Health & Beauty > Personal Care > Oral Care > Dental Water Jet Replacement Tips'),
(2884, 2884, 0, 'Health & Beauty > Personal Care > Oral Care > Dental Water Jets'),
(2885, 2885, 0, 'Health & Beauty > Personal Care > Oral Care > Denture Adhesives'),
(2886, 2886, 0, 'Health & Beauty > Personal Care > Oral Care > Denture Cleaners'),
(2887, 2887, 0, 'Health & Beauty > Personal Care > Oral Care > Denture Repair Kits'),
(2888, 2888, 0, 'Health & Beauty > Personal Care > Oral Care > Dentures'),
(2889, 2889, 0, 'Health & Beauty > Personal Care > Oral Care > Gum Stimulators'),
(2890, 2890, 0, 'Health & Beauty > Personal Care > Oral Care > Mouthwash'),
(2891, 2891, 0, 'Health & Beauty > Personal Care > Oral Care > Orthodontic Appliance Cases'),
(2892, 2892, 0, 'Health & Beauty > Personal Care > Oral Care > Power Flossers'),
(2893, 2893, 0, 'Health & Beauty > Personal Care > Oral Care > Teeth Whiteners'),
(2894, 2894, 0, 'Health & Beauty > Personal Care > Oral Care > Tongue Scrapers'),
(2895, 2895, 0, 'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories'),
(2896, 2896, 0, 'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Covers'),
(2897, 2897, 0, 'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Replacement Heads'),
(2898, 2898, 0, 'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Sanitizers'),
(2899, 2899, 0, 'Health & Beauty > Personal Care > Oral Care > Toothbrushes'),
(2900, 2900, 0, 'Health & Beauty > Personal Care > Oral Care > Toothpaste'),
(2901, 2901, 0, 'Health & Beauty > Personal Care > Oral Care > Toothpaste Squeezers & Dispensers'),
(2902, 2902, 0, 'Health & Beauty > Personal Care > Oral Care > Toothpicks'),
(2903, 2903, 0, 'Health & Beauty > Personal Care > Personal Lubricants'),
(2904, 2904, 0, 'Health & Beauty > Personal Care > Shaving & Grooming'),
(2905, 2905, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Aftershave'),
(2906, 2906, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Body & Facial Hair Bleach'),
(2907, 2907, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Electric Razor Accessories'),
(2908, 2908, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Electric Razors'),
(2909, 2909, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Clipper & Trimmer Accessories'),
(2910, 2910, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Clippers & Trimmers'),
(2911, 2911, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal'),
(2912, 2912, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Depilatories'),
(2913, 2913, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Electrolysis Devices'),
(2914, 2914, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Epilators'),
(2915, 2915, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Hair Removal Wax Warmers'),
(2916, 2916, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Laser & IPL Hair Removal Devices'),
(2917, 2917, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Waxing Kits & Supplies'),
(2918, 2918, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Razors & Razor Blades'),
(2919, 2919, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Bowls & Mugs'),
(2920, 2920, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Brushes'),
(2921, 2921, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Cream'),
(2922, 2922, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Kits'),
(2923, 2923, 0, 'Health & Beauty > Personal Care > Shaving & Grooming > Styptic Pencils'),
(2924, 2924, 0, 'Health & Beauty > Personal Care > Sleeping Aids'),
(2925, 2925, 0, 'Health & Beauty > Personal Care > Sleeping Aids > Eye Masks'),
(2926, 2926, 0, 'Health & Beauty > Personal Care > Sleeping Aids > Snoring & Sleep Apnea Aids'),
(2927, 2927, 0, 'Health & Beauty > Personal Care > Sleeping Aids > Travel Pillows'),
(2928, 2928, 0, 'Health & Beauty > Personal Care > Sleeping Aids > White Noise Machines'),
(2929, 2929, 0, 'Health & Beauty > Personal Care > Spray Tanning Tents'),
(2930, 2930, 0, 'Health & Beauty > Personal Care > Tanning Beds'),
(2931, 2931, 0, 'Health & Beauty > Personal Care > Tweezers'),
(2932, 2932, 0, 'Health & Beauty > Personal Care > Vision Care'),
(2933, 2933, 0, 'Health & Beauty > Personal Care > Vision Care > Contact Lens Care'),
(2934, 2934, 0, 'Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Care Kits'),
(2935, 2935, 0, 'Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Cases'),
(2936, 2936, 0, 'Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Solution'),
(2937, 2937, 0, 'Health & Beauty > Personal Care > Vision Care > Contact Lenses'),
(2938, 2938, 0, 'Health & Beauty > Personal Care > Vision Care > Eye Drops & Lubricants'),
(2939, 2939, 0, 'Health & Beauty > Personal Care > Vision Care > Eyeglass Lenses'),
(2940, 2940, 0, 'Health & Beauty > Personal Care > Vision Care > Eyeglasses'),
(2941, 2941, 0, 'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories'),
(2942, 2942, 0, 'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories > Eyewear Cases & Holders'),
(2943, 2943, 0, 'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories > Eyewear Lens Cleaning Solutions'),
(2944, 2944, 0, 'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories > Eyewear Straps & Chains'),
(2945, 2945, 0, 'Health & Beauty > Personal Care > Vision Care > Sunglass Lenses'),
(2946, 2946, 0, 'Home & Garden'),
(2947, 2947, 0, 'Home & Garden > Bathroom Accessories'),
(2948, 2948, 0, 'Home & Garden > Bathroom Accessories > Bath Caddies'),
(2949, 2949, 0, 'Home & Garden > Bathroom Accessories > Bath Mats & Rugs'),
(2950, 2950, 0, 'Home & Garden > Bathroom Accessories > Bath Pillows'),
(2951, 2951, 0, 'Home & Garden > Bathroom Accessories > Bathroom Accessory Mounts'),
(2952, 2952, 0, 'Home & Garden > Bathroom Accessories > Bathroom Accessory Sets'),
(2953, 2953, 0, 'Home & Garden > Bathroom Accessories > Facial Tissue Holders'),
(2954, 2954, 0, 'Home & Garden > Bathroom Accessories > Hand Dryer Accessories'),
(2955, 2955, 0, 'Home & Garden > Bathroom Accessories > Hand Dryers'),
(2956, 2956, 0, 'Home & Garden > Bathroom Accessories > Medicine Cabinets'),
(2957, 2957, 0, 'Home & Garden > Bathroom Accessories > Robe Hooks'),
(2958, 2958, 0, 'Home & Garden > Bathroom Accessories > Safety Grab Bars'),
(2959, 2959, 0, 'Home & Garden > Bathroom Accessories > Shower Curtain Rings'),
(2960, 2960, 0, 'Home & Garden > Bathroom Accessories > Shower Curtains'),
(2961, 2961, 0, 'Home & Garden > Bathroom Accessories > Shower Rods'),
(2962, 2962, 0, 'Home & Garden > Bathroom Accessories > Soap & Lotion Dispensers'),
(2963, 2963, 0, 'Home & Garden > Bathroom Accessories > Soap Dishes & Holders'),
(2964, 2964, 0, 'Home & Garden > Bathroom Accessories > Toilet Brush Replacement Heads'),
(2965, 2965, 0, 'Home & Garden > Bathroom Accessories > Toilet Brushes & Holders'),
(2966, 2966, 0, 'Home & Garden > Bathroom Accessories > Toilet Paper Holders'),
(2967, 2967, 0, 'Home & Garden > Bathroom Accessories > Toothbrush Holders'),
(2968, 2968, 0, 'Home & Garden > Bathroom Accessories > Towel Racks & Holders'),
(2969, 2969, 0, 'Home & Garden > Business & Home Security'),
(2970, 2970, 0, 'Home & Garden > Business & Home Security > Dummy Surveillance Cameras'),
(2971, 2971, 0, 'Home & Garden > Business & Home Security > Home Alarm Systems'),
(2972, 2972, 0, 'Home & Garden > Business & Home Security > Motion Sensors'),
(2973, 2973, 0, 'Home & Garden > Business & Home Security > Safety & Security Mirrors'),
(2974, 2974, 0, 'Home & Garden > Business & Home Security > Security Lights'),
(2975, 2975, 0, 'Home & Garden > Business & Home Security > Security Monitors & Recorders'),
(2976, 2976, 0, 'Home & Garden > Business & Home Security > Security Safe Accessories'),
(2977, 2977, 0, 'Home & Garden > Business & Home Security > Security Safes'),
(2978, 2978, 0, 'Home & Garden > Business & Home Security > Security System Sensors'),
(2979, 2979, 0, 'Home & Garden > Decor'),
(2980, 2980, 0, 'Home & Garden > Decor > Address Signs'),
(2981, 2981, 0, 'Home & Garden > Decor > Artificial Flora'),
(2982, 2982, 0, 'Home & Garden > Decor > Artificial Food'),
(2983, 2983, 0, 'Home & Garden > Decor > Artwork'),
(2984, 2984, 0, 'Home & Garden > Decor > Artwork > Decorative Tapestries'),
(2985, 2985, 0, 'Home & Garden > Decor > Artwork > Posters, Prints, & Visual Artwork'),
(2986, 2986, 0, 'Home & Garden > Decor > Artwork > Sculptures & Statues'),
(2987, 2987, 0, 'Home & Garden > Decor > Backrest Pillows'),
(2988, 2988, 0, 'Home & Garden > Decor > Baskets'),
(2989, 2989, 0, 'Home & Garden > Decor > Bird & Wildlife Feeder Accessories'),
(2990, 2990, 0, 'Home & Garden > Decor > Bird & Wildlife Feeders'),
(2991, 2991, 0, 'Home & Garden > Decor > Bird & Wildlife Feeders > Bird Feeders'),
(2992, 2992, 0, 'Home & Garden > Decor > Bird & Wildlife Feeders > Butterfly Feeders'),
(2993, 2993, 0, 'Home & Garden > Decor > Bird & Wildlife Feeders > Squirrel Feeders'),
(2994, 2994, 0, 'Home & Garden > Decor > Bird & Wildlife House Accessories'),
(2995, 2995, 0, 'Home & Garden > Decor > Bird & Wildlife Houses'),
(2996, 2996, 0, 'Home & Garden > Decor > Bird & Wildlife Houses > Bat Houses'),
(2997, 2997, 0, 'Home & Garden > Decor > Bird & Wildlife Houses > Birdhouses'),
(2998, 2998, 0, 'Home & Garden > Decor > Bird & Wildlife Houses > Butterfly Houses'),
(2999, 2999, 0, 'Home & Garden > Decor > Bird Baths'),
(3000, 3000, 0, 'Home & Garden > Decor > Bookends'),
(3001, 3001, 0, 'Home & Garden > Decor > Cardboard Cutouts'),
(3002, 3002, 0, 'Home & Garden > Decor > Chair & Sofa Cushions'),
(3003, 3003, 0, 'Home & Garden > Decor > Clock Parts'),
(3004, 3004, 0, 'Home & Garden > Decor > Clocks'),
(3005, 3005, 0, 'Home & Garden > Decor > Clocks > Alarm Clocks'),
(3006, 3006, 0, 'Home & Garden > Decor > Clocks > Desk & Shelf Clocks'),
(3007, 3007, 0, 'Home & Garden > Decor > Clocks > Floor & Grandfather Clocks'),
(3008, 3008, 0, 'Home & Garden > Decor > Clocks > Wall Clocks'),
(3009, 3009, 0, 'Home & Garden > Decor > Coat & Hat Racks'),
(3010, 3010, 0, 'Home & Garden > Decor > Decorative Bells'),
(3011, 3011, 0, 'Home & Garden > Decor > Decorative Bottles'),
(3012, 3012, 0, 'Home & Garden > Decor > Decorative Bowls'),
(3013, 3013, 0, 'Home & Garden > Decor > Decorative Jars'),
(3014, 3014, 0, 'Home & Garden > Decor > Decorative Plaques'),
(3015, 3015, 0, 'Home & Garden > Decor > Decorative Plates'),
(3016, 3016, 0, 'Home & Garden > Decor > Decorative Trays'),
(3017, 3017, 0, 'Home & Garden > Decor > Door Mats'),
(3018, 3018, 0, 'Home & Garden > Decor > Dreamcatchers'),
(3019, 3019, 0, 'Home & Garden > Decor > Dried Flowers'),
(3020, 3020, 0, 'Home & Garden > Decor > Ecospheres'),
(3021, 3021, 0, 'Home & Garden > Decor > Figurines'),
(3022, 3022, 0, 'Home & Garden > Decor > Finials'),
(3023, 3023, 0, 'Home & Garden > Decor > Flag & Windsock Accessories'),
(3024, 3024, 0, 'Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Pole Lights'),
(3025, 3025, 0, 'Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Pole Mounting Hardware & Kits'),
(3026, 3026, 0, 'Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Poles'),
(3027, 3027, 0, 'Home & Garden > Decor > Flags & Windsocks'),
(3028, 3028, 0, 'Home & Garden > Decor > Flameless Candles'),
(3029, 3029, 0, 'Home & Garden > Decor > Fountains & Ponds'),
(3030, 3030, 0, 'Home & Garden > Decor > Fountains & Ponds > Fountain & Pond Accessories'),
(3031, 3031, 0, 'Home & Garden > Decor > Fountains & Ponds > Fountains & Waterfalls'),
(3032, 3032, 0, 'Home & Garden > Decor > Fountains & Ponds > Ponds'),
(3033, 3033, 0, 'Home & Garden > Decor > Garden & Stepping Stones'),
(3034, 3034, 0, 'Home & Garden > Decor > Growth Charts'),
(3035, 3035, 0, 'Home & Garden > Decor > Home Decor Decals'),
(3036, 3036, 0, 'Home & Garden > Decor > Home Fragrance Accessories'),
(3037, 3037, 0, 'Home & Garden > Decor > Home Fragrance Accessories > Candle & Oil Warmers'),
(3038, 3038, 0, 'Home & Garden > Decor > Home Fragrance Accessories > Candle Holders'),
(3039, 3039, 0, 'Home & Garden > Decor > Home Fragrance Accessories > Candle Snuffers'),
(3040, 3040, 0, 'Home & Garden > Decor > Home Fragrance Accessories > Incense Holders'),
(3041, 3041, 0, 'Home & Garden > Decor > Home Fragrances'),
(3042, 3042, 0, 'Home & Garden > Decor > Home Fragrances > Air Fresheners'),
(3043, 3043, 0, 'Home & Garden > Decor > Home Fragrances > Candles'),
(3044, 3044, 0, 'Home & Garden > Decor > Home Fragrances > Fragrance Oil'),
(3045, 3045, 0, 'Home & Garden > Decor > Home Fragrances > Incense'),
(3046, 3046, 0, 'Home & Garden > Decor > Home Fragrances > Potpourri'),
(3047, 3047, 0, 'Home & Garden > Decor > Home Fragrances > Wax Tarts'),
(3048, 3048, 0, 'Home & Garden > Decor > Hourglasses'),
(3049, 3049, 0, 'Home & Garden > Decor > House Numbers & Letters'),
(3050, 3050, 0, 'Home & Garden > Decor > Lawn Ornaments & Garden Sculptures'),
(3051, 3051, 0, 'Home & Garden > Decor > Mail Slots'),
(3052, 3052, 0, 'Home & Garden > Decor > Mailbox Accessories'),
(3053, 3053, 0, 'Home & Garden > Decor > Mailbox Accessories > Mailbox Covers'),
(3054, 3054, 0, 'Home & Garden > Decor > Mailbox Accessories > Mailbox Enclosures'),
(3055, 3055, 0, 'Home & Garden > Decor > Mailbox Accessories > Mailbox Flags'),
(3056, 3056, 0, 'Home & Garden > Decor > Mailbox Accessories > Mailbox Posts'),
(3057, 3057, 0, 'Home & Garden > Decor > Mailbox Accessories > Mailbox Replacement Doors'),
(3058, 3058, 0, 'Home & Garden > Decor > Mailboxes'),
(3059, 3059, 0, 'Home & Garden > Decor > Mirrors'),
(3060, 3060, 0, 'Home & Garden > Decor > Music Boxes'),
(3061, 3061, 0, 'Home & Garden > Decor > Napkin Rings'),
(3062, 3062, 0, 'Home & Garden > Decor > Novelty Signs'),
(3063, 3063, 0, 'Home & Garden > Decor > Ottoman Cushions'),
(3064, 3064, 0, 'Home & Garden > Decor > Picture Frames'),
(3065, 3065, 0, 'Home & Garden > Decor > Piggy Banks & Money Jars'),
(3066, 3066, 0, 'Home & Garden > Decor > Rain Chains'),
(3067, 3067, 0, 'Home & Garden > Decor > Rain Gauges'),
(3068, 3068, 0, 'Home & Garden > Decor > Refrigerator Magnets'),
(3069, 3069, 0, 'Home & Garden > Decor > Rugs'),
(3070, 3070, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations'),
(3071, 3071, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Advent Calendars'),
(3072, 3072, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Christmas Tree Skirts'),
(3073, 3073, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Christmas Tree Stands'),
(3074, 3074, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Easter Egg Decorating Kits'),
(3075, 3075, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornament Displays & Stands'),
(3076, 3076, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornament Hooks'),
(3077, 3077, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornaments'),
(3078, 3078, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Stocking Hangers'),
(3079, 3079, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Stockings'),
(3080, 3080, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Japanese Traditional Dolls'),
(3081, 3081, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Nativity Sets'),
(3082, 3082, 0, 'Home & Garden > Decor > Seasonal & Holiday Decorations > Seasonal Village Sets & Accessories'),
(3083, 3083, 0, 'Home & Garden > Decor > Shadow Boxes'),
(3084, 3084, 0, 'Home & Garden > Decor > Slipcovers'),
(3085, 3085, 0, 'Home & Garden > Decor > Snow Globes'),
(3086, 3086, 0, 'Home & Garden > Decor > Suncatchers'),
(3087, 3087, 0, 'Home & Garden > Decor > Sundials'),
(3088, 3088, 0, 'Home & Garden > Decor > Throw Pillows'),
(3089, 3089, 0, 'Home & Garden > Decor > Trunks'),
(3090, 3090, 0, 'Home & Garden > Decor > Vase Fillers & Table Scatters'),
(3091, 3091, 0, 'Home & Garden > Decor > Vases'),
(3092, 3092, 0, 'Home & Garden > Decor > Wallpaper'),
(3093, 3093, 0, 'Home & Garden > Decor > Weather Vanes & Roof Decor'),
(3094, 3094, 0, 'Home & Garden > Decor > Wind Chimes'),
(3095, 3095, 0, 'Home & Garden > Decor > Wind Wheels & Spinners'),
(3096, 3096, 0, 'Home & Garden > Decor > Window Magnets'),
(3097, 3097, 0, 'Home & Garden > Decor > Window Treatment Accessories'),
(3098, 3098, 0, 'Home & Garden > Decor > Window Treatment Accessories > Curtain & Drape Rings'),
(3099, 3099, 0, 'Home & Garden > Decor > Window Treatment Accessories > Curtain & Drape Rods'),
(3100, 3100, 0, 'Home & Garden > Decor > Window Treatment Accessories > Curtain Holdbacks & Tassels'),
(3101, 3101, 0, 'Home & Garden > Decor > Window Treatment Accessories > Window Treatment Replacement Parts'),
(3102, 3102, 0, 'Home & Garden > Decor > Window Treatments'),
(3103, 3103, 0, 'Home & Garden > Decor > Window Treatments > Curtains & Drapes'),
(3104, 3104, 0, 'Home & Garden > Decor > Window Treatments > Stained Glass Panels'),
(3105, 3105, 0, 'Home & Garden > Decor > Window Treatments > Window Blinds & Shades'),
(3106, 3106, 0, 'Home & Garden > Decor > Window Treatments > Window Films'),
(3107, 3107, 0, 'Home & Garden > Decor > Window Treatments > Window Screens'),
(3108, 3108, 0, 'Home & Garden > Decor > Window Treatments > Window Valances & Cornices'),
(3109, 3109, 0, 'Home & Garden > Decor > World Globes'),
(3110, 3110, 0, 'Home & Garden > Decor > Wreaths & Garlands'),
(3111, 3111, 0, 'Home & Garden > Emergency Preparedness'),
(3112, 3112, 0, 'Home & Garden > Emergency Preparedness > Earthquake Alarms'),
(3113, 3113, 0, 'Home & Garden > Emergency Preparedness > Emergency Blankets'),
(3114, 3114, 0, 'Home & Garden > Emergency Preparedness > Emergency Food Kits'),
(3115, 3115, 0, 'Home & Garden > Emergency Preparedness > Emergency Tools & Kits'),
(3116, 3116, 0, 'Home & Garden > Emergency Preparedness > Furniture Anchors'),
(3117, 3117, 0, 'Home & Garden > Fireplace & Wood Stove Accessories'),
(3118, 3118, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Bellows'),
(3119, 3119, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace & Wood Stove Grates'),
(3120, 3120, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Andirons'),
(3121, 3121, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Reflectors'),
(3122, 3122, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Screens'),
(3123, 3123, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Tools'),
(3124, 3124, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Firewood & Fuel'),
(3125, 3125, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Hearth Pads'),
(3126, 3126, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Log Rack & Carrier Accessories'),
(3127, 3127, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Log Racks & Carriers'),
(3128, 3128, 0, 'Home & Garden > Fireplace & Wood Stove Accessories > Wood Stove Fans & Blowers'),
(3129, 3129, 0, 'Home & Garden > Fireplaces'),
(3130, 3130, 0, 'Home & Garden > Flood, Fire & Gas Safety'),
(3131, 3131, 0, 'Home & Garden > Flood, Fire & Gas Safety > Fire Alarm Control Panels'),
(3132, 3132, 0, 'Home & Garden > Flood, Fire & Gas Safety > Fire Alarms'),
(3133, 3133, 0, 'Home & Garden > Flood, Fire & Gas Safety > Fire Extinguisher & Equipment Storage'),
(3134, 3134, 0, 'Home & Garden > Flood, Fire & Gas Safety > Fire Extinguishers'),
(3135, 3135, 0, 'Home & Garden > Flood, Fire & Gas Safety > Fire Sprinklers'),
(3136, 3136, 0, 'Home & Garden > Flood, Fire & Gas Safety > Heat Detectors'),
(3137, 3137, 0, 'Home & Garden > Flood, Fire & Gas Safety > Smoke & Carbon Monoxide Detectors'),
(3138, 3138, 0, 'Home & Garden > Flood, Fire & Gas Safety > Water & Flood Detectors'),
(3139, 3139, 0, 'Home & Garden > Household Appliance Accessories'),
(3140, 3140, 0, 'Home & Garden > Household Appliance Accessories > Air Conditioner Accessories'),
(3141, 3141, 0, 'Home & Garden > Household Appliance Accessories > Air Conditioner Accessories > Air Conditioner Covers'),
(3142, 3142, 0, 'Home & Garden > Household Appliance Accessories > Air Conditioner Accessories > Air Conditioner Filters'),
(3143, 3143, 0, 'Home & Garden > Household Appliance Accessories > Air Purifier Accessories'),
(3144, 3144, 0, 'Home & Garden > Household Appliance Accessories > Air Purifier Accessories > Air Purifier Filters'),
(3145, 3145, 0, 'Home & Garden > Household Appliance Accessories > Dehumidifier Accessories'),
(3146, 3146, 0, 'Home & Garden > Household Appliance Accessories > Fan Accessories'),
(3147, 3147, 0, 'Home & Garden > Household Appliance Accessories > Floor & Steam Cleaner Accessories'),
(3148, 3148, 0, 'Home & Garden > Household Appliance Accessories > Furnace & Boiler Accessories'),
(3149, 3149, 0, 'Home & Garden > Household Appliance Accessories > Heating Radiator Accessories'),
(3150, 3150, 0, 'Home & Garden > Household Appliance Accessories > Heating Radiator Accessories > Heating Radiator Reflectors'),
(3151, 3151, 0, 'Home & Garden > Household Appliance Accessories > Humidifier Accessories'),
(3152, 3152, 0, 'Home & Garden > Household Appliance Accessories > Humidifier Accessories > Humidifier Filters'),
(3153, 3153, 0, 'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories'),
(3154, 3154, 0, 'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Garment Steamer Accessories'),
(3155, 3155, 0, 'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Iron Accessories'),
(3156, 3156, 0, 'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Steam Press Accessories'),
(3157, 3157, 0, 'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Washer & Dryer Accessories'),
(3158, 3158, 0, 'Home & Garden > Household Appliance Accessories > Patio Heater Accessories'),
(3159, 3159, 0, 'Home & Garden > Household Appliance Accessories > Patio Heater Accessories > Patio Heater Covers'),
(3160, 3160, 0, 'Home & Garden > Household Appliance Accessories > Vacuum Accessories');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(3161, 3161, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories'),
(3162, 3162, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Anode Rods'),
(3163, 3163, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Hot Water Tanks'),
(3164, 3164, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Elements'),
(3165, 3165, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Expansion Tanks'),
(3166, 3166, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Pans'),
(3167, 3167, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Stacks'),
(3168, 3168, 0, 'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Vents'),
(3169, 3169, 0, 'Home & Garden > Household Appliances'),
(3170, 3170, 0, 'Home & Garden > Household Appliances > Climate Control Appliances'),
(3171, 3171, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Air Conditioners'),
(3172, 3172, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Air Purifiers'),
(3173, 3173, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Dehumidifiers'),
(3174, 3174, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Duct Heaters'),
(3175, 3175, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Evaporative Coolers'),
(3176, 3176, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Fans'),
(3177, 3177, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Ceiling Fans'),
(3178, 3178, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Desk & Pedestal Fans'),
(3179, 3179, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Powered Hand Fans & Misters'),
(3180, 3180, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Ventilation Fans'),
(3181, 3181, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Wall Mount Fans'),
(3182, 3182, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Furnaces & Boilers'),
(3183, 3183, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Heating Radiators'),
(3184, 3184, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Humidifiers'),
(3185, 3185, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Outdoor Misting Systems'),
(3186, 3186, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Patio Heaters'),
(3187, 3187, 0, 'Home & Garden > Household Appliances > Climate Control Appliances > Space Heaters'),
(3188, 3188, 0, 'Home & Garden > Household Appliances > Floor & Carpet Dryers'),
(3189, 3189, 0, 'Home & Garden > Household Appliances > Floor & Steam Cleaners'),
(3190, 3190, 0, 'Home & Garden > Household Appliances > Floor Polishers & Buffers'),
(3191, 3191, 0, 'Home & Garden > Household Appliances > Futon Dryers'),
(3192, 3192, 0, 'Home & Garden > Household Appliances > Garage Door Keypads & Remotes'),
(3193, 3193, 0, 'Home & Garden > Household Appliances > Garage Door Openers'),
(3194, 3194, 0, 'Home & Garden > Household Appliances > Laundry Appliances'),
(3195, 3195, 0, 'Home & Garden > Household Appliances > Laundry Appliances > Dryers'),
(3196, 3196, 0, 'Home & Garden > Household Appliances > Laundry Appliances > Garment Steamers'),
(3197, 3197, 0, 'Home & Garden > Household Appliances > Laundry Appliances > Irons & Ironing Systems'),
(3198, 3198, 0, 'Home & Garden > Household Appliances > Laundry Appliances > Laundry Combo Units'),
(3199, 3199, 0, 'Home & Garden > Household Appliances > Laundry Appliances > Steam Presses'),
(3200, 3200, 0, 'Home & Garden > Household Appliances > Laundry Appliances > Washing Machines'),
(3201, 3201, 0, 'Home & Garden > Household Appliances > Ultrasonic Cleaners'),
(3202, 3202, 0, 'Home & Garden > Household Appliances > Vacuums'),
(3203, 3203, 0, 'Home & Garden > Household Appliances > Wallpaper Steamers'),
(3204, 3204, 0, 'Home & Garden > Household Appliances > Water Heaters'),
(3205, 3205, 0, 'Home & Garden > Household Supplies'),
(3206, 3206, 0, 'Home & Garden > Household Supplies > Drawer & Shelf Liners'),
(3207, 3207, 0, 'Home & Garden > Household Supplies > Floor Protection Films & Runners'),
(3208, 3208, 0, 'Home & Garden > Household Supplies > Furniture Floor Protectors'),
(3209, 3209, 0, 'Home & Garden > Household Supplies > Garage Floor Mats'),
(3210, 3210, 0, 'Home & Garden > Household Supplies > Garbage Bags'),
(3211, 3211, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies'),
(3212, 3212, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Broom & Mop Handles'),
(3213, 3213, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Broom Heads'),
(3214, 3214, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Brooms'),
(3215, 3215, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Buckets'),
(3216, 3216, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Carpet Sweepers'),
(3217, 3217, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Cleaning Gloves'),
(3218, 3218, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Duster Refills'),
(3219, 3219, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Dusters'),
(3220, 3220, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Dustpans'),
(3221, 3221, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Fabric & Upholstery Protectors'),
(3222, 3222, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products'),
(3223, 3223, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > All-Purpose Cleaners'),
(3224, 3224, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Carpet Cleaners'),
(3225, 3225, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Descalers & Decalcifiers'),
(3226, 3226, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Dish Detergent & Soap'),
(3227, 3227, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Dishwasher Cleaners'),
(3228, 3228, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Fabric & Upholstery Cleaners'),
(3229, 3229, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Floor Cleaners'),
(3230, 3230, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Furniture Cleaners & Polish'),
(3231, 3231, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Glass & Surface Cleaners'),
(3232, 3232, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Household Disinfectants'),
(3233, 3233, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Oven & Grill Cleaners'),
(3234, 3234, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Pet Odor & Stain Removers'),
(3235, 3235, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Rinse Aids'),
(3236, 3236, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Stainless Steel Cleaners & Polishes'),
(3237, 3237, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Toilet Bowl Cleaners'),
(3238, 3238, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Tub & Tile Cleaners'),
(3239, 3239, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Washing Machine Cleaners'),
(3240, 3240, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Mop Heads & Refills'),
(3241, 3241, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Mops'),
(3242, 3242, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Scrub Brush Heads & Refills'),
(3243, 3243, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Scrub Brushes'),
(3244, 3244, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Shop Towels & General-Purpose Cleaning Cloths'),
(3245, 3245, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Sponges & Scouring Pads'),
(3246, 3246, 0, 'Home & Garden > Household Supplies > Household Cleaning Supplies > Squeegees'),
(3247, 3247, 0, 'Home & Garden > Household Supplies > Household Paper Products'),
(3248, 3248, 0, 'Home & Garden > Household Supplies > Household Paper Products > Facial Tissues'),
(3249, 3249, 0, 'Home & Garden > Household Supplies > Household Paper Products > Paper Napkins'),
(3250, 3250, 0, 'Home & Garden > Household Supplies > Household Paper Products > Paper Towels'),
(3251, 3251, 0, 'Home & Garden > Household Supplies > Household Paper Products > Toilet Paper'),
(3252, 3252, 0, 'Home & Garden > Household Supplies > Household Thermometers'),
(3253, 3253, 0, 'Home & Garden > Household Supplies > Laundry Supplies'),
(3254, 3254, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Bleach'),
(3255, 3255, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Clothespins'),
(3256, 3256, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Dry Cleaning Kits'),
(3257, 3257, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Drying Racks & Hangers'),
(3258, 3258, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Fabric Refreshers'),
(3259, 3259, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Fabric Shavers'),
(3260, 3260, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Fabric Softeners & Dryer Sheets'),
(3261, 3261, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Fabric Stain Removers'),
(3262, 3262, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Fabric Starch'),
(3263, 3263, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Garment Shields'),
(3264, 3264, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Iron Rests'),
(3265, 3265, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Ironing Board Pads & Covers'),
(3266, 3266, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Ironing Board Replacement Parts'),
(3267, 3267, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Ironing Boards'),
(3268, 3268, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Laundry Balls'),
(3269, 3269, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Laundry Baskets'),
(3270, 3270, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Laundry Detergent'),
(3271, 3271, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Laundry Wash Bags & Frames'),
(3272, 3272, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Lint Rollers'),
(3273, 3273, 0, 'Home & Garden > Household Supplies > Laundry Supplies > Wrinkle Releasers & Anti-Static Sprays'),
(3274, 3274, 0, 'Home & Garden > Household Supplies > Moisture Absorbers'),
(3275, 3275, 0, 'Home & Garden > Household Supplies > Pest Control'),
(3276, 3276, 0, 'Home & Garden > Household Supplies > Pest Control > Fly Swatters'),
(3277, 3277, 0, 'Home & Garden > Household Supplies > Pest Control > Pest Control Traps'),
(3278, 3278, 0, 'Home & Garden > Household Supplies > Pest Control > Pesticides'),
(3279, 3279, 0, 'Home & Garden > Household Supplies > Pest Control > Repellents'),
(3280, 3280, 0, 'Home & Garden > Household Supplies > Pest Control > Repellents > Animal & Pet Repellents'),
(3281, 3281, 0, 'Home & Garden > Household Supplies > Pest Control > Repellents > Household Insect Repellents'),
(3282, 3282, 0, 'Home & Garden > Household Supplies > Rug Pads'),
(3283, 3283, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools'),
(3284, 3284, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Boot Pulls'),
(3285, 3285, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Bags'),
(3286, 3286, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Brushes'),
(3287, 3287, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Care Kits'),
(3288, 3288, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Dryers'),
(3289, 3289, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Horns & Dressing Aids'),
(3290, 3290, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Polishers'),
(3291, 3291, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Polishes & Waxes'),
(3292, 3292, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Scrapers'),
(3293, 3293, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Treatments & Dyes'),
(3294, 3294, 0, 'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Trees & Shapers'),
(3295, 3295, 0, 'Home & Garden > Household Supplies > Stair Treads'),
(3296, 3296, 0, 'Home & Garden > Household Supplies > Storage & Organization'),
(3297, 3297, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage'),
(3298, 3298, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Charging Valets'),
(3299, 3299, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Closet Organizers & Garment Racks'),
(3300, 3300, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Clothes Valets'),
(3301, 3301, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Hangers'),
(3302, 3302, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Hat Boxes'),
(3303, 3303, 0, 'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Shoe Racks & Organizers'),
(3304, 3304, 0, 'Home & Garden > Household Supplies > Storage & Organization > Flatware Chests'),
(3305, 3305, 0, 'Home & Garden > Household Supplies > Storage & Organization > Household Drawer Organizer Inserts'),
(3306, 3306, 0, 'Home & Garden > Household Supplies > Storage & Organization > Household Storage Bags'),
(3307, 3307, 0, 'Home & Garden > Household Supplies > Storage & Organization > Household Storage Caddies'),
(3308, 3308, 0, 'Home & Garden > Household Supplies > Storage & Organization > Household Storage Containers'),
(3309, 3309, 0, 'Home & Garden > Household Supplies > Storage & Organization > Household Storage Drawers'),
(3310, 3310, 0, 'Home & Garden > Household Supplies > Storage & Organization > Photo Storage'),
(3311, 3311, 0, 'Home & Garden > Household Supplies > Storage & Organization > Photo Storage > Photo Albums'),
(3312, 3312, 0, 'Home & Garden > Household Supplies > Storage & Organization > Photo Storage > Photo Storage Boxes'),
(3313, 3313, 0, 'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks'),
(3314, 3314, 0, 'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Ironing Board Hooks & Racks'),
(3315, 3315, 0, 'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Umbrella Stands & Racks'),
(3316, 3316, 0, 'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Utility Hooks'),
(3317, 3317, 0, 'Home & Garden > Household Supplies > Trash Compactor Accessories'),
(3318, 3318, 0, 'Home & Garden > Household Supplies > Waste Containment'),
(3319, 3319, 0, 'Home & Garden > Household Supplies > Waste Containment > Dumpsters'),
(3320, 3320, 0, 'Home & Garden > Household Supplies > Waste Containment > Hazardous Waste Containers'),
(3321, 3321, 0, 'Home & Garden > Household Supplies > Waste Containment > Recycling Containers'),
(3322, 3322, 0, 'Home & Garden > Household Supplies > Waste Containment > Trash Cans & Wastebaskets'),
(3323, 3323, 0, 'Home & Garden > Household Supplies > Waste Containment Accessories'),
(3324, 3324, 0, 'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Carts'),
(3325, 3325, 0, 'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Enclosures'),
(3326, 3326, 0, 'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Labels & Signs'),
(3327, 3327, 0, 'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Lids'),
(3328, 3328, 0, 'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Wheels'),
(3329, 3329, 0, 'Home & Garden > Kitchen & Dining'),
(3330, 3330, 0, 'Home & Garden > Kitchen & Dining > Barware'),
(3331, 3331, 0, 'Home & Garden > Kitchen & Dining > Barware > Absinthe Fountains'),
(3332, 3332, 0, 'Home & Garden > Kitchen & Dining > Barware > Beer Dispensers & Taps'),
(3333, 3333, 0, 'Home & Garden > Kitchen & Dining > Barware > Beverage Chilling Cubes & Sticks'),
(3334, 3334, 0, 'Home & Garden > Kitchen & Dining > Barware > Beverage Tubs & Chillers'),
(3335, 3335, 0, 'Home & Garden > Kitchen & Dining > Barware > Bottle Caps'),
(3336, 3336, 0, 'Home & Garden > Kitchen & Dining > Barware > Bottle Stoppers & Savers'),
(3337, 3337, 0, 'Home & Garden > Kitchen & Dining > Barware > Coaster Holders'),
(3338, 3338, 0, 'Home & Garden > Kitchen & Dining > Barware > Coasters'),
(3339, 3339, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail & Barware Tool Sets'),
(3340, 3340, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools'),
(3341, 3341, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Bar Ice Picks'),
(3342, 3342, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Bottle Openers'),
(3343, 3343, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Cocktail Shakers'),
(3344, 3344, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Cocktail Strainers'),
(3345, 3345, 0, 'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Muddlers'),
(3346, 3346, 0, 'Home & Garden > Kitchen & Dining > Barware > Corkscrews'),
(3347, 3347, 0, 'Home & Garden > Kitchen & Dining > Barware > Decanters'),
(3348, 3348, 0, 'Home & Garden > Kitchen & Dining > Barware > Foil Cutters'),
(3349, 3349, 0, 'Home & Garden > Kitchen & Dining > Barware > Wine Aerators'),
(3350, 3350, 0, 'Home & Garden > Kitchen & Dining > Barware > Wine Bottle Holders'),
(3351, 3351, 0, 'Home & Garden > Kitchen & Dining > Barware > Wine Glass Charms'),
(3352, 3352, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware'),
(3353, 3353, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware'),
(3354, 3354, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Bakeware Sets'),
(3355, 3355, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Baking & Cookie Sheets'),
(3356, 3356, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Bread Pans & Molds'),
(3357, 3357, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Broiling Pans'),
(3358, 3358, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Cake Pans & Molds'),
(3359, 3359, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Muffin & Pastry Pans'),
(3360, 3360, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pie & Quiche Pans'),
(3361, 3361, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pizza Pans'),
(3362, 3362, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pizza Stones'),
(3363, 3363, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Ramekins & Souffle Dishes'),
(3364, 3364, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Roasting Pans'),
(3365, 3365, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories'),
(3366, 3366, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Mats & Liners'),
(3367, 3367, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Weights'),
(3368, 3368, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Roasting Pan Racks'),
(3369, 3369, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware'),
(3370, 3370, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware & Bakeware Combo Sets'),
(3371, 3371, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Casserole Dishes'),
(3372, 3372, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Cookware Sets'),
(3373, 3373, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > CrÃªpe & Blini Pans'),
(3374, 3374, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Double Boilers'),
(3375, 3375, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Dutch Ovens'),
(3376, 3376, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Fermentation & Pickling Crocks'),
(3377, 3377, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Griddles & Grill Pans'),
(3378, 3378, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Grill Presses'),
(3379, 3379, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Paella Pans'),
(3380, 3380, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Pressure Cookers & Canners'),
(3381, 3381, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Saucepans'),
(3382, 3382, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > SautÃ© Pans'),
(3383, 3383, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Skillets & Frying Pans'),
(3384, 3384, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Stock Pots'),
(3385, 3385, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Stovetop Kettles'),
(3386, 3386, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Tagines & Clay Cooking Pots'),
(3387, 3387, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Woks'),
(3388, 3388, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories'),
(3389, 3389, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pot & Pan Handles'),
(3390, 3390, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pot & Pan Lids'),
(3391, 3391, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pressure Cooker & Canner Accessories'),
(3392, 3392, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Steamer Baskets'),
(3393, 3393, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories'),
(3394, 3394, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories > Wok Brushes'),
(3395, 3395, 0, 'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories > Wok Rings'),
(3396, 3396, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers'),
(3397, 3397, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Airpots'),
(3398, 3398, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Canteens'),
(3399, 3399, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Coolers'),
(3400, 3400, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves'),
(3401, 3401, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves > Can & Bottle Sleeves'),
(3402, 3402, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves > Cup Sleeves'),
(3403, 3403, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Flasks'),
(3404, 3404, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Insulated Bags'),
(3405, 3405, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Lunch Boxes & Totes'),
(3406, 3406, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Picnic Baskets'),
(3407, 3407, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Replacement Drink Lids'),
(3408, 3408, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Thermoses'),
(3409, 3409, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Water Bottles'),
(3410, 3410, 0, 'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Wine Carrier Bags'),
(3411, 3411, 0, 'Home & Garden > Kitchen & Dining > Food Storage'),
(3412, 3412, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Bread Boxes & Bags'),
(3413, 3413, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Candy Buckets'),
(3414, 3414, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Cookie Jars'),
(3415, 3415, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Container Covers'),
(3416, 3416, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Storage Bags'),
(3417, 3417, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Storage Containers'),
(3418, 3418, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps'),
(3419, 3419, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Foil'),
(3420, 3420, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Parchment Paper'),
(3421, 3421, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Plastic Wrap'),
(3422, 3422, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Wax Paper'),
(3423, 3423, 0, 'Home & Garden > Kitchen & Dining > Food Storage > Honey Jars'),
(3424, 3424, 0, 'Home & Garden > Kitchen & Dining > Food Storage Accessories'),
(3425, 3425, 0, 'Home & Garden > Kitchen & Dining > Food Storage Accessories > Food & Beverage Labels'),
(3426, 3426, 0, 'Home & Garden > Kitchen & Dining > Food Storage Accessories > Food Wrap Dispensers'),
(3427, 3427, 0, 'Home & Garden > Kitchen & Dining > Food Storage Accessories > Oxygen Absorbers'),
(3428, 3428, 0, 'Home & Garden > Kitchen & Dining > Food Storage Accessories > Twist Ties & Bag Clips'),
(3429, 3429, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories'),
(3430, 3430, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Breadmaker Accessories'),
(3431, 3431, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories'),
(3432, 3432, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Decanter Warmers'),
(3433, 3433, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Decanters'),
(3434, 3434, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Filter Baskets'),
(3435, 3435, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Filters'),
(3436, 3436, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Grinder Accessories'),
(3437, 3437, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Grinders'),
(3438, 3438, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Maker & Espresso Machine Replacement Parts'),
(3439, 3439, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Maker Water Filters'),
(3440, 3440, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Frothing Pitchers'),
(3441, 3441, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Portafilters'),
(3442, 3442, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cooktop, Oven & Range Accessories'),
(3443, 3443, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cotton Candy Machine Accessories'),
(3444, 3444, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Deep Fryer Accessories'),
(3445, 3445, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Dishwasher Parts & Accessories'),
(3446, 3446, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Electric Kettle Accessories'),
(3447, 3447, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Electric Skillet & Wok Accessories'),
(3448, 3448, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories'),
(3449, 3449, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Cooking Gel Fuels'),
(3450, 3450, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Fondue Forks'),
(3451, 3451, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Fondue Pot Stands'),
(3452, 3452, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories'),
(3453, 3453, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories > Food Dehydrator Sheets'),
(3454, 3454, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories > Food Dehydrator Trays'),
(3455, 3455, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Grinder Accessories'),
(3456, 3456, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer & Blender Accessories'),
(3457, 3457, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Freezer Accessories'),
(3458, 3458, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Garbage Disposal Accessories'),
(3459, 3459, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Cream Maker Accessories'),
(3460, 3460, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Cream Maker Accessories > Ice Cream Maker Freezer Bowls'),
(3461, 3461, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Crusher & Shaver Accessories'),
(3462, 3462, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Maker Accessories'),
(3463, 3463, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Juicer Accessories'),
(3464, 3464, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Microwave Oven Accessories'),
(3465, 3465, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories'),
(3466, 3466, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Charcoal Briquettes'),
(3467, 3467, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Charcoal Chimneys'),
(3468, 3468, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Carts'),
(3469, 3469, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Covers'),
(3470, 3470, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Racks & Toppers'),
(3471, 3471, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Replacement Parts'),
(3472, 3472, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Spits & Baskets'),
(3473, 3473, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grilling Planks'),
(3474, 3474, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Smoking Chips & Pellets'),
(3475, 3475, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Pasta Maker Accessories'),
(3476, 3476, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Popcorn Maker Accessories'),
(3477, 3477, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Portable Cooking Stove Accessories'),
(3478, 3478, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Range Hood Accessories'),
(3479, 3479, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Refrigerator Accessories'),
(3480, 3480, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Soda Maker Accessories'),
(3481, 3481, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories'),
(3482, 3482, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories > Steam Table Pan Covers'),
(3483, 3483, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories > Steam Table Pans'),
(3484, 3484, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Toaster Accessories'),
(3485, 3485, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Vacuum Sealer Accessories'),
(3486, 3486, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Vacuum Sealer Accessories > Vacuum Sealer Bags'),
(3487, 3487, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Waffle Iron Accessories'),
(3488, 3488, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Water Cooler Accessories'),
(3489, 3489, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Water Cooler Accessories > Water Cooler Bottles'),
(3490, 3490, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Wine Fridge Accessories'),
(3491, 3491, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Yogurt Maker Accessories'),
(3492, 3492, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances'),
(3493, 3493, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Beverage Warmers'),
(3494, 3494, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Breadmakers'),
(3495, 3495, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Chocolate Tempering Machines'),
(3496, 3496, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines'),
(3497, 3497, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Drip Coffee Makers'),
(3498, 3498, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Electric & Stovetop Espresso Pots'),
(3499, 3499, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Espresso Machines'),
(3500, 3500, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > French Presses'),
(3501, 3501, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Percolators'),
(3502, 3502, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Vacuum Coffee Makers'),
(3503, 3503, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Cooktops'),
(3504, 3504, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Cotton Candy Machines'),
(3505, 3505, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Deep Fryers'),
(3506, 3506, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Deli Slicers'),
(3507, 3507, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Dishwashers'),
(3508, 3508, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Griddles & Grills'),
(3509, 3509, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Kettles'),
(3510, 3510, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Skillets & Woks'),
(3511, 3511, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Fondue Pots & Sets'),
(3512, 3512, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers'),
(3513, 3513, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Egg Cookers'),
(3514, 3514, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Food Steamers'),
(3515, 3515, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Rice Cookers'),
(3516, 3516, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Slow Cookers'),
(3517, 3517, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Thermal Cookers'),
(3518, 3518, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Water Ovens'),
(3519, 3519, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Dehydrators'),
(3520, 3520, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills'),
(3521, 3521, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Mixers & Blenders'),
(3522, 3522, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Smokers'),
(3523, 3523, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers'),
(3524, 3524, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Chafing Dishes'),
(3525, 3525, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Food Heat Lamps'),
(3526, 3526, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Rice Keepers'),
(3527, 3527, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Steam Tables'),
(3528, 3528, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Freezers'),
(3529, 3529, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Frozen Drink Makers'),
(3530, 3530, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Garbage Disposals'),
(3531, 3531, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Gas Griddles'),
(3532, 3532, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Hot Drink Makers'),
(3533, 3533, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Hot Plates'),
(3534, 3534, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Cream Makers'),
(3535, 3535, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Crushers & Shavers'),
(3536, 3536, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Makers'),
(3537, 3537, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Juicers'),
(3538, 3538, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Knife Sharpeners'),
(3539, 3539, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Microwave Ovens'),
(3540, 3540, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Milk Frothers & Steamers'),
(3541, 3541, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Mochi Makers'),
(3542, 3542, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Outdoor Grills'),
(3543, 3543, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ovens'),
(3544, 3544, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Pasta Makers'),
(3545, 3545, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Popcorn Makers'),
(3546, 3546, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Portable Cooking Stoves'),
(3547, 3547, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Range Hoods'),
(3548, 3548, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ranges'),
(3549, 3549, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Refrigerators'),
(3550, 3550, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Roaster Ovens & Rotisseries'),
(3551, 3551, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Soda Makers'),
(3552, 3552, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Soy Milk Makers'),
(3553, 3553, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Tea Makers'),
(3554, 3554, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills'),
(3555, 3555, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Countertop & Toaster Ovens'),
(3556, 3556, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Donut Makers'),
(3557, 3557, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Muffin & Cupcake Makers'),
(3558, 3558, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pizza Makers & Ovens'),
(3559, 3559, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pizzelle Makers'),
(3560, 3560, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pretzel Makers'),
(3561, 3561, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Sandwich Makers'),
(3562, 3562, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Toasters'),
(3563, 3563, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Tortilla & Flatbread Makers'),
(3564, 3564, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Waffle Irons'),
(3565, 3565, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Trash Compactors'),
(3566, 3566, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Vacuum Sealers'),
(3567, 3567, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Water Coolers'),
(3568, 3568, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Water Filters'),
(3569, 3569, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Wine Fridges'),
(3570, 3570, 0, 'Home & Garden > Kitchen & Dining > Kitchen Appliances > Yogurt Makers'),
(3571, 3571, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils'),
(3572, 3572, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Aprons'),
(3573, 3573, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Baking Peels'),
(3574, 3574, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Basters'),
(3575, 3575, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Basting Brushes'),
(3576, 3576, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Beverage Dispensers'),
(3577, 3577, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cake Decorating Supplies'),
(3578, 3578, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cake Servers'),
(3579, 3579, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Can Crushers'),
(3580, 3580, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Can Openers'),
(3581, 3581, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Carving Forks'),
(3582, 3582, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Channel Knives'),
(3583, 3583, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Colanders & Strainers'),
(3584, 3584, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Condiment Dispensers'),
(3585, 3585, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cookie Cutters'),
(3586, 3586, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cookie Presses'),
(3587, 3587, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Thermometer Accessories'),
(3588, 3588, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Thermometers'),
(3589, 3589, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Timers'),
(3590, 3590, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Torches'),
(3591, 3591, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooling Racks'),
(3592, 3592, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cutting Boards'),
(3593, 3593, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dish Racks & Drain Boards'),
(3594, 3594, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dough Wheels'),
(3595, 3595, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knife Accessories'),
(3596, 3596, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knife Accessories > Electric Knife Replacement Blades'),
(3597, 3597, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knives'),
(3598, 3598, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Flour Sifters'),
(3599, 3599, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food & Drink Stencils'),
(3600, 3600, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers'),
(3601, 3601, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Lobster & Crab Crackers'),
(3602, 3602, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Nutcrackers'),
(3603, 3603, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Nutcrackers > Decorative Nutcrackers'),
(3604, 3604, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Dispensers'),
(3605, 3605, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Graters & Zesters'),
(3606, 3606, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Peelers & Corers'),
(3607, 3607, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Steaming Bags'),
(3608, 3608, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Sticks & Skewers'),
(3609, 3609, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Funnels'),
(3610, 3610, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Garlic Presses'),
(3611, 3611, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Gelatin Molds'),
(3612, 3612, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ice Cube Trays'),
(3613, 3613, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Jerky Guns'),
(3614, 3614, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Knives'),
(3615, 3615, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Molds'),
(3616, 3616, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers'),
(3617, 3617, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Can Organizers'),
(3618, 3618, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Drinkware Holders'),
(3619, 3619, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Cabinet Organizers'),
(3620, 3620, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Counter & Beverage Station Organizers'),
(3621, 3621, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Utensil Holders & Racks'),
(3622, 3622, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Knife Blocks & Holders'),
(3623, 3623, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Napkin Holders & Dispensers'),
(3624, 3624, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Paper Towel Holders & Dispensers'),
(3625, 3625, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Pot Racks'),
(3626, 3626, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Spice Organizers'),
(3627, 3627, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Straw Holders & Dispensers'),
(3628, 3628, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Sugar Caddies'),
(3629, 3629, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Toothpick Holders & Dispensers'),
(3630, 3630, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Utensil & Flatware Trays'),
(3631, 3631, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers'),
(3632, 3632, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Bench Scrapers'),
(3633, 3633, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Bowl Scrapers'),
(3634, 3634, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Grill Scrapers'),
(3635, 3635, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Shears'),
(3636, 3636, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers'),
(3637, 3637, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Utensil Sets'),
(3638, 3638, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ladles'),
(3639, 3639, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mashers'),
(3640, 3640, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Measuring Cups & Spoons'),
(3641, 3641, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Meat Tenderizers'),
(3642, 3642, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mixing Bowls'),
(3643, 3643, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mortars & Pestles'),
(3644, 3644, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oil & Vinegar Dispensers');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(3645, 3645, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oven Bags'),
(3646, 3646, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oven Mitts & Pot Holders'),
(3647, 3647, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pasta Molds & Stamps'),
(3648, 3648, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pastry Blenders'),
(3649, 3649, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pastry Cloths'),
(3650, 3650, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pizza Cutter Accessories'),
(3651, 3651, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pizza Cutters'),
(3652, 3652, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ricers'),
(3653, 3653, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories'),
(3654, 3654, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories > Rolling Pin Covers & Sleeves'),
(3655, 3655, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories > Rolling Pin Rings'),
(3656, 3656, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pins'),
(3657, 3657, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Salad Dressing Mixers & Shakers'),
(3658, 3658, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Salad Spinners'),
(3659, 3659, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops'),
(3660, 3660, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Ice Cream Scoops'),
(3661, 3661, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Ice Scoops'),
(3662, 3662, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Melon Ballers'),
(3663, 3663, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Popcorn & French Fry Scoops'),
(3664, 3664, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sink Caddies'),
(3665, 3665, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sink Mats & Grids'),
(3666, 3666, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Slotted Spoons'),
(3667, 3667, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spatulas'),
(3668, 3668, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spice Grinder Accessories'),
(3669, 3669, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spice Grinders'),
(3670, 3670, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spoon Rests'),
(3671, 3671, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sugar Dispensers'),
(3672, 3672, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sushi Mats'),
(3673, 3673, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Tea Strainers'),
(3674, 3674, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Tongs'),
(3675, 3675, 0, 'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Whisks'),
(3676, 3676, 0, 'Home & Garden > Kitchen & Dining > Prefabricated Kitchens & Kitchenettes'),
(3677, 3677, 0, 'Home & Garden > Kitchen & Dining > Tableware'),
(3678, 3678, 0, 'Home & Garden > Kitchen & Dining > Tableware > Coffee & Tea Sets'),
(3679, 3679, 0, 'Home & Garden > Kitchen & Dining > Tableware > Coffee Servers & Tea Pots'),
(3680, 3680, 0, 'Home & Garden > Kitchen & Dining > Tableware > Dinnerware'),
(3681, 3681, 0, 'Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Bowls'),
(3682, 3682, 0, 'Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Dinnerware Sets'),
(3683, 3683, 0, 'Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Plates'),
(3684, 3684, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware'),
(3685, 3685, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Beer Glasses'),
(3686, 3686, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Cups'),
(3687, 3687, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Saucers'),
(3688, 3688, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Drinkware Sets'),
(3689, 3689, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Mugs'),
(3690, 3690, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Shot Glasses'),
(3691, 3691, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware'),
(3692, 3692, 0, 'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Tumblers'),
(3693, 3693, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware'),
(3694, 3694, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopstick Accessories'),
(3695, 3695, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopsticks'),
(3696, 3696, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware > Flatware Sets'),
(3697, 3697, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware > Forks'),
(3698, 3698, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware > Spoons'),
(3699, 3699, 0, 'Home & Garden > Kitchen & Dining > Tableware > Flatware > Table Knives'),
(3700, 3700, 0, 'Home & Garden > Kitchen & Dining > Tableware > Salt & Pepper Shakers'),
(3701, 3701, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware'),
(3702, 3702, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Butter Dishes'),
(3703, 3703, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Cake Boards'),
(3704, 3704, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Cake Stands'),
(3705, 3705, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Egg Cups'),
(3706, 3706, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Gravy Boats'),
(3707, 3707, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Punch Bowls'),
(3708, 3708, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Pitchers & Carafes'),
(3709, 3709, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Platters'),
(3710, 3710, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Trays'),
(3711, 3711, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Sugar Bowls & Creamers'),
(3712, 3712, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware > Tureens'),
(3713, 3713, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories'),
(3714, 3714, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Punch Bowl Stands'),
(3715, 3715, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Tureen Lids'),
(3716, 3716, 0, 'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Tureen Stands'),
(3717, 3717, 0, 'Home & Garden > Kitchen & Dining > Tableware > Tablecloth Clips & Weights'),
(3718, 3718, 0, 'Home & Garden > Kitchen & Dining > Tableware > Trivets'),
(3719, 3719, 0, 'Home & Garden > Lawn & Garden'),
(3720, 3720, 0, 'Home & Garden > Lawn & Garden > Gardening'),
(3721, 3721, 0, 'Home & Garden > Lawn & Garden > Gardening > Composting'),
(3722, 3722, 0, 'Home & Garden > Lawn & Garden > Gardening > Composting > Compost'),
(3723, 3723, 0, 'Home & Garden > Lawn & Garden > Gardening > Composting > Compost Aerators'),
(3724, 3724, 0, 'Home & Garden > Lawn & Garden > Gardening > Composting > Composters'),
(3725, 3725, 0, 'Home & Garden > Lawn & Garden > Gardening > Disease Control'),
(3726, 3726, 0, 'Home & Garden > Lawn & Garden > Gardening > Fertilizers'),
(3727, 3727, 0, 'Home & Garden > Lawn & Garden > Gardening > Garden Pot Saucers & Trays'),
(3728, 3728, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories'),
(3729, 3729, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Gardening Scooters, Seats & Kneelers'),
(3730, 3730, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Gardening Totes'),
(3731, 3731, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Potting Benches'),
(3732, 3732, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories'),
(3733, 3733, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories > Gardening Tool Handles'),
(3734, 3734, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories > Gardening Tool Heads'),
(3735, 3735, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories > Wheelbarrow Parts'),
(3736, 3736, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools'),
(3737, 3737, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Bulb Planting Tools'),
(3738, 3738, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Cultivating Tools'),
(3739, 3739, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Forks'),
(3740, 3740, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Sickles & Machetes'),
(3741, 3741, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Trowels'),
(3742, 3742, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Lawn & Garden Sprayers'),
(3743, 3743, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Lawn Rollers'),
(3744, 3744, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Pruning Saws'),
(3745, 3745, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Pruning Shears'),
(3746, 3746, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Rakes'),
(3747, 3747, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Shovels & Spades'),
(3748, 3748, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Spreaders'),
(3749, 3749, 0, 'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Wheelbarrows'),
(3750, 3750, 0, 'Home & Garden > Lawn & Garden > Gardening > Greenhouses'),
(3751, 3751, 0, 'Home & Garden > Lawn & Garden > Gardening > Herbicides'),
(3752, 3752, 0, 'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric'),
(3753, 3753, 0, 'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric Accessories'),
(3754, 3754, 0, 'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric Accessories > Landscape Fabric Staples & Pins'),
(3755, 3755, 0, 'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric Accessories > Landscape Fabric Tape'),
(3756, 3756, 0, 'Home & Garden > Lawn & Garden > Gardening > Mulch'),
(3757, 3757, 0, 'Home & Garden > Lawn & Garden > Gardening > Plant Cages & Supports'),
(3758, 3758, 0, 'Home & Garden > Lawn & Garden > Gardening > Plant Stands'),
(3759, 3759, 0, 'Home & Garden > Lawn & Garden > Gardening > Pot & Planter Liners'),
(3760, 3760, 0, 'Home & Garden > Lawn & Garden > Gardening > Pots & Planters'),
(3761, 3761, 0, 'Home & Garden > Lawn & Garden > Gardening > Rain Barrels'),
(3762, 3762, 0, 'Home & Garden > Lawn & Garden > Gardening > Sands & Soils'),
(3763, 3763, 0, 'Home & Garden > Lawn & Garden > Outdoor Living'),
(3764, 3764, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Awning Accessories'),
(3765, 3765, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Awnings'),
(3766, 3766, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Hammock Parts & Accessories'),
(3767, 3767, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Hammocks'),
(3768, 3768, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets'),
(3769, 3769, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Beach Mats'),
(3770, 3770, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Picnic Blankets'),
(3771, 3771, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Poncho Liners'),
(3772, 3772, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures'),
(3773, 3773, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopies & Gazebos'),
(3774, 3774, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories'),
(3775, 3775, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Enclosure Kits'),
(3776, 3776, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Frames'),
(3777, 3777, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Tops'),
(3778, 3778, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy Poles'),
(3779, 3779, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy Weights'),
(3780, 3780, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Garden Arches, Trellises, Arbors & Pergolas'),
(3781, 3781, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Garden Bridges'),
(3782, 3782, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Sheds, Garages & Carports'),
(3783, 3783, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories'),
(3784, 3784, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella & Sunshade Fabric'),
(3785, 3785, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Bases'),
(3786, 3786, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Covers'),
(3787, 3787, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Enclosure Kits'),
(3788, 3788, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Lights'),
(3789, 3789, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrellas & Sunshades'),
(3790, 3790, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Porch Swing Accessories'),
(3791, 3791, 0, 'Home & Garden > Lawn & Garden > Outdoor Living > Porch Swings'),
(3792, 3792, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment'),
(3793, 3793, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Chainsaws'),
(3794, 3794, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Grass Edgers'),
(3795, 3795, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Hedge Trimmers'),
(3796, 3796, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Aerators & Dethatchers'),
(3797, 3797, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers'),
(3798, 3798, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Riding Mowers'),
(3799, 3799, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Robotic Mowers'),
(3800, 3800, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Tow-Behind Mowers'),
(3801, 3801, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Walk-Behind Mowers'),
(3802, 3802, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Vacuums'),
(3803, 3803, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Leaf Blowers'),
(3804, 3804, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Outdoor Power Equipment Base Units'),
(3805, 3805, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Outdoor Power Equipment Sets'),
(3806, 3806, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Power Sweepers'),
(3807, 3807, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Power Tillers & Cultivators'),
(3808, 3808, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Pressure Washers'),
(3809, 3809, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Snow Blowers'),
(3810, 3810, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Tractors'),
(3811, 3811, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Weed Trimmers'),
(3812, 3812, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories'),
(3813, 3813, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories'),
(3814, 3814, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories > Chainsaw Bars'),
(3815, 3815, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories > Chainsaw Chains'),
(3816, 3816, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Grass Edger Accessories'),
(3817, 3817, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Hedge Trimmer Accessories'),
(3818, 3818, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories'),
(3819, 3819, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Brush Mower Attachments'),
(3820, 3820, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Bags'),
(3821, 3821, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Belts'),
(3822, 3822, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Blades'),
(3823, 3823, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Covers'),
(3824, 3824, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Mulch Kits'),
(3825, 3825, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Mulch Plugs & Plates'),
(3826, 3826, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Pulleys & Idlers'),
(3827, 3827, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Tire Tubes'),
(3828, 3828, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Tires'),
(3829, 3829, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Wheels'),
(3830, 3830, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Striping Kits'),
(3831, 3831, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Sweepers'),
(3832, 3832, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Leaf Blower Accessories'),
(3833, 3833, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Leaf Blower Accessories > Leaf Blower Tubes'),
(3834, 3834, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments'),
(3835, 3835, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Grass Edger Attachments'),
(3836, 3836, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Ground & Leaf Blower Attachments'),
(3837, 3837, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Hedge Trimmer Attachments'),
(3838, 3838, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Pole Saw Attachments'),
(3839, 3839, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Tiller & Cultivator Attachments'),
(3840, 3840, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Weed Trimmer Attachments'),
(3841, 3841, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Outdoor Power Equipment Batteries'),
(3842, 3842, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Pressure Washer Accessories'),
(3843, 3843, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Snow Blower Accessories'),
(3844, 3844, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories'),
(3845, 3845, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories > Tractor Tires'),
(3846, 3846, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories > Tractor Wheels'),
(3847, 3847, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories'),
(3848, 3848, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Blades & Spools'),
(3849, 3849, 0, 'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Spool Covers'),
(3850, 3850, 0, 'Home & Garden > Lawn & Garden > Snow Removal'),
(3851, 3851, 0, 'Home & Garden > Lawn & Garden > Snow Removal > Ice Scrapers & Snow Brushes'),
(3852, 3852, 0, 'Home & Garden > Lawn & Garden > Snow Removal > Snow Shovels'),
(3853, 3853, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation'),
(3854, 3854, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hose Fittings & Valves'),
(3855, 3855, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hose Spray Nozzles'),
(3856, 3856, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hoses'),
(3857, 3857, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories'),
(3858, 3858, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories > Sprinkler Controls'),
(3859, 3859, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories > Sprinkler Valves'),
(3860, 3860, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinklers & Sprinkler Heads'),
(3861, 3861, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Can Accesssories'),
(3862, 3862, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Cans'),
(3863, 3863, 0, 'Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Globes & Spikes'),
(3864, 3864, 0, 'Home & Garden > Lighting'),
(3865, 3865, 0, 'Home & Garden > Lighting > Emergency Lighting'),
(3866, 3866, 0, 'Home & Garden > Lighting > Floating & Submersible Lights'),
(3867, 3867, 0, 'Home & Garden > Lighting > Flood & Spot Lights'),
(3868, 3868, 0, 'Home & Garden > Lighting > In-Ground Lights'),
(3869, 3869, 0, 'Home & Garden > Lighting > Lamps'),
(3870, 3870, 0, 'Home & Garden > Lighting > Landscape Pathway Lighting'),
(3871, 3871, 0, 'Home & Garden > Lighting > Light Bulbs'),
(3872, 3872, 0, 'Home & Garden > Lighting > Light Bulbs > Compact Fluorescent Lamps'),
(3873, 3873, 0, 'Home & Garden > Lighting > Light Bulbs > Fluorescent Tubes'),
(3874, 3874, 0, 'Home & Garden > Lighting > Light Bulbs > Incandescent Light Bulbs'),
(3875, 3875, 0, 'Home & Garden > Lighting > Light Bulbs > LED Light Bulbs'),
(3876, 3876, 0, 'Home & Garden > Lighting > Light Ropes & Strings'),
(3877, 3877, 0, 'Home & Garden > Lighting > Lighting Fixtures'),
(3878, 3878, 0, 'Home & Garden > Lighting > Lighting Fixtures > Cabinet Light Fixtures'),
(3879, 3879, 0, 'Home & Garden > Lighting > Lighting Fixtures > Ceiling Light Fixtures'),
(3880, 3880, 0, 'Home & Garden > Lighting > Lighting Fixtures > Chandeliers'),
(3881, 3881, 0, 'Home & Garden > Lighting > Lighting Fixtures > Wall Light Fixtures'),
(3882, 3882, 0, 'Home & Garden > Lighting > Night Lights & Ambient Lighting'),
(3883, 3883, 0, 'Home & Garden > Lighting > Picture Lights'),
(3884, 3884, 0, 'Home & Garden > Lighting > Tiki Torches & Oil Lamps'),
(3885, 3885, 0, 'Home & Garden > Lighting > Track Lighting'),
(3886, 3886, 0, 'Home & Garden > Lighting > Track Lighting > Track Lighting Accessories'),
(3887, 3887, 0, 'Home & Garden > Lighting > Track Lighting > Track Lighting Fixtures'),
(3888, 3888, 0, 'Home & Garden > Lighting > Track Lighting > Track Lighting Rails'),
(3889, 3889, 0, 'Home & Garden > Lighting Accessories'),
(3890, 3890, 0, 'Home & Garden > Lighting Accessories > Lamp Post Bases'),
(3891, 3891, 0, 'Home & Garden > Lighting Accessories > Lamp Post Mounts'),
(3892, 3892, 0, 'Home & Garden > Lighting Accessories > Lamp Shades'),
(3893, 3893, 0, 'Home & Garden > Lighting Accessories > Lighting Timers'),
(3894, 3894, 0, 'Home & Garden > Lighting Accessories > Oil Lamp Fuel'),
(3895, 3895, 0, 'Home & Garden > Linens & Bedding'),
(3896, 3896, 0, 'Home & Garden > Linens & Bedding > Bedding'),
(3897, 3897, 0, 'Home & Garden > Linens & Bedding > Bedding > Bed Canopies'),
(3898, 3898, 0, 'Home & Garden > Linens & Bedding > Bedding > Bed Sheets'),
(3899, 3899, 0, 'Home & Garden > Linens & Bedding > Bedding > Bedskirts'),
(3900, 3900, 0, 'Home & Garden > Linens & Bedding > Bedding > Blankets'),
(3901, 3901, 0, 'Home & Garden > Linens & Bedding > Bedding > Duvet Covers'),
(3902, 3902, 0, 'Home & Garden > Linens & Bedding > Bedding > Mattress Protectors'),
(3903, 3903, 0, 'Home & Garden > Linens & Bedding > Bedding > Mattress Protectors > Mattress Encasements'),
(3904, 3904, 0, 'Home & Garden > Linens & Bedding > Bedding > Mattress Protectors > Mattress Pads'),
(3905, 3905, 0, 'Home & Garden > Linens & Bedding > Bedding > Nap Mats'),
(3906, 3906, 0, 'Home & Garden > Linens & Bedding > Bedding > Pillowcases & Shams'),
(3907, 3907, 0, 'Home & Garden > Linens & Bedding > Bedding > Pillows'),
(3908, 3908, 0, 'Home & Garden > Linens & Bedding > Bedding > Quilts & Comforters'),
(3909, 3909, 0, 'Home & Garden > Linens & Bedding > Kitchen Linens Sets'),
(3910, 3910, 0, 'Home & Garden > Linens & Bedding > Table Linens'),
(3911, 3911, 0, 'Home & Garden > Linens & Bedding > Table Linens > Cloth Napkins'),
(3912, 3912, 0, 'Home & Garden > Linens & Bedding > Table Linens > Doilies'),
(3913, 3913, 0, 'Home & Garden > Linens & Bedding > Table Linens > Placemats'),
(3914, 3914, 0, 'Home & Garden > Linens & Bedding > Table Linens > Table Runners'),
(3915, 3915, 0, 'Home & Garden > Linens & Bedding > Table Linens > Table Skirts'),
(3916, 3916, 0, 'Home & Garden > Linens & Bedding > Table Linens > Tablecloths'),
(3917, 3917, 0, 'Home & Garden > Linens & Bedding > Towels'),
(3918, 3918, 0, 'Home & Garden > Linens & Bedding > Towels > Bath Towels & Washcloths'),
(3919, 3919, 0, 'Home & Garden > Linens & Bedding > Towels > Beach Towels'),
(3920, 3920, 0, 'Home & Garden > Linens & Bedding > Towels > Kitchen Towels'),
(3921, 3921, 0, 'Home & Garden > Parasols & Rain Umbrellas'),
(3922, 3922, 0, 'Home & Garden > Plants'),
(3923, 3923, 0, 'Home & Garden > Plants > Aquatic Plants'),
(3924, 3924, 0, 'Home & Garden > Plants > Flowers'),
(3925, 3925, 0, 'Home & Garden > Plants > Indoor & Outdoor Plants'),
(3926, 3926, 0, 'Home & Garden > Plants > Plant & Herb Growing Kits'),
(3927, 3927, 0, 'Home & Garden > Plants > Seeds'),
(3928, 3928, 0, 'Home & Garden > Plants > Trees'),
(3929, 3929, 0, 'Home & Garden > Pool & Spa'),
(3930, 3930, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories'),
(3931, 3931, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Diving Boards'),
(3932, 3932, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Chlorine Generators'),
(3933, 3933, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Filters'),
(3934, 3934, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Maintenance Kits'),
(3935, 3935, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Brushes & Brooms'),
(3936, 3936, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cleaner Hoses'),
(3937, 3937, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cleaners & Chemicals'),
(3938, 3938, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cover Accessories'),
(3939, 3939, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Covers & Ground Cloths'),
(3940, 3940, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Deck Kits'),
(3941, 3941, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Floats & Loungers'),
(3942, 3942, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Heaters'),
(3943, 3943, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Ladders, Steps & Ramps'),
(3944, 3944, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Liners'),
(3945, 3945, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Skimmers'),
(3946, 3946, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Sweeps & Vacuums'),
(3947, 3947, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Toys'),
(3948, 3948, 0, 'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Water Slides'),
(3949, 3949, 0, 'Home & Garden > Pool & Spa > Saunas'),
(3950, 3950, 0, 'Home & Garden > Pool & Spa > Spas'),
(3951, 3951, 0, 'Home & Garden > Pool & Spa > Swimming Pools'),
(3952, 3952, 0, 'Home & Garden > Smoking Accessories'),
(3953, 3953, 0, 'Home & Garden > Smoking Accessories > Ashtrays'),
(3954, 3954, 0, 'Home & Garden > Smoking Accessories > Cigar Cases'),
(3955, 3955, 0, 'Home & Garden > Smoking Accessories > Cigar Cutters & Punches'),
(3956, 3956, 0, 'Home & Garden > Smoking Accessories > Cigarette Cases'),
(3957, 3957, 0, 'Home & Garden > Smoking Accessories > Cigarette Holders'),
(3958, 3958, 0, 'Home & Garden > Smoking Accessories > Humidor Accessories'),
(3959, 3959, 0, 'Home & Garden > Smoking Accessories > Humidors'),
(3960, 3960, 0, 'Home & Garden > Umbrella Sleeves & Cases'),
(3961, 3961, 0, 'Home & Garden > Wood Stoves'),
(3962, 3962, 0, 'Luggage & Bags'),
(3963, 3963, 0, 'Luggage & Bags > Backpacks'),
(3964, 3964, 0, 'Luggage & Bags > Briefcases'),
(3965, 3965, 0, 'Luggage & Bags > Cosmetic & Toiletry Bags'),
(3966, 3966, 0, 'Luggage & Bags > Diaper Bags'),
(3967, 3967, 0, 'Luggage & Bags > Dry Boxes'),
(3968, 3968, 0, 'Luggage & Bags > Duffel Bags'),
(3969, 3969, 0, 'Luggage & Bags > Fanny Packs'),
(3970, 3970, 0, 'Luggage & Bags > Garment Bags'),
(3971, 3971, 0, 'Luggage & Bags > Luggage Accessories'),
(3972, 3972, 0, 'Luggage & Bags > Luggage Accessories > Dry Box Liners & Inserts'),
(3973, 3973, 0, 'Luggage & Bags > Luggage Accessories > Luggage Covers'),
(3974, 3974, 0, 'Luggage & Bags > Luggage Accessories > Luggage Racks & Stands'),
(3975, 3975, 0, 'Luggage & Bags > Luggage Accessories > Luggage Straps'),
(3976, 3976, 0, 'Luggage & Bags > Luggage Accessories > Luggage Tags'),
(3977, 3977, 0, 'Luggage & Bags > Luggage Accessories > Packing Organizers'),
(3978, 3978, 0, 'Luggage & Bags > Luggage Accessories > Travel Bottles & Containers'),
(3979, 3979, 0, 'Luggage & Bags > Luggage Accessories > Travel Pouches'),
(3980, 3980, 0, 'Luggage & Bags > Messenger Bags'),
(3981, 3981, 0, 'Luggage & Bags > Shopping Totes'),
(3982, 3982, 0, 'Luggage & Bags > Suitcases'),
(3983, 3983, 0, 'Luggage & Bags > Train Cases'),
(3984, 3984, 0, 'Mature'),
(3985, 3985, 0, 'Mature > Erotic'),
(3986, 3986, 0, 'Mature > Erotic > Erotic Books'),
(3987, 3987, 0, 'Mature > Erotic > Erotic Clothing'),
(3988, 3988, 0, 'Mature > Erotic > Erotic DVDs & Videos'),
(3989, 3989, 0, 'Mature > Erotic > Erotic Food & Edibles'),
(3990, 3990, 0, 'Mature > Erotic > Erotic Games'),
(3991, 3991, 0, 'Mature > Erotic > Erotic Magazines'),
(3992, 3992, 0, 'Mature > Erotic > Pole Dancing Kits'),
(3993, 3993, 0, 'Mature > Erotic > Sex Toys'),
(3994, 3994, 0, 'Mature > Weapons'),
(3995, 3995, 0, 'Mature > Weapons > Brass Knuckles'),
(3996, 3996, 0, 'Mature > Weapons > Clubs & Batons'),
(3997, 3997, 0, 'Mature > Weapons > Combat Knives'),
(3998, 3998, 0, 'Mature > Weapons > Gun Care & Accessories'),
(3999, 3999, 0, 'Mature > Weapons > Gun Care & Accessories > Ammunition'),
(4000, 4000, 0, 'Mature > Weapons > Gun Care & Accessories > Ammunition Cases & Holders'),
(4001, 4001, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Cases & Range Bags'),
(4002, 4002, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Cleaning'),
(4003, 4003, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Cleaning > Gun Cleaning Cloths & Swabs'),
(4004, 4004, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Cleaning > Gun Cleaning Patches'),
(4005, 4005, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Cleaning > Gun Cleaning Solvents'),
(4006, 4006, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Grips'),
(4007, 4007, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Holsters'),
(4008, 4008, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Lights'),
(4009, 4009, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Rails'),
(4010, 4010, 0, 'Mature > Weapons > Gun Care & Accessories > Gun Slings'),
(4011, 4011, 0, 'Mature > Weapons > Gun Care & Accessories > Reloading Supplies & Equipment'),
(4012, 4012, 0, 'Mature > Weapons > Gun Care & Accessories > Reloading Supplies & Equipment > Ammunition Reloading Presses'),
(4013, 4013, 0, 'Mature > Weapons > Guns'),
(4014, 4014, 0, 'Mature > Weapons > Mace & Pepper Spray'),
(4015, 4015, 0, 'Mature > Weapons > Nunchucks'),
(4016, 4016, 0, 'Mature > Weapons > Spears'),
(4017, 4017, 0, 'Mature > Weapons > Staff & Stick Weapons'),
(4018, 4018, 0, 'Mature > Weapons > Stun Guns & Tasers'),
(4019, 4019, 0, 'Mature > Weapons > Swords'),
(4020, 4020, 0, 'Mature > Weapons > Throwing Stars'),
(4021, 4021, 0, 'Mature > Weapons > Whips'),
(4022, 4022, 0, 'Media'),
(4023, 4023, 0, 'Media > Books'),
(4024, 4024, 0, 'Media > Carpentry & Woodworking Project Plans'),
(4025, 4025, 0, 'Media > DVDs & Videos'),
(4026, 4026, 0, 'Media > Magazines & Newspapers'),
(4027, 4027, 0, 'Media > Music & Sound Recordings'),
(4028, 4028, 0, 'Media > Product Manuals'),
(4029, 4029, 0, 'Media > Product Manuals > Camera & Optics Manuals'),
(4030, 4030, 0, 'Media > Product Manuals > Electronics Manuals'),
(4031, 4031, 0, 'Media > Product Manuals > Exercise & Fitness Equipment Manuals'),
(4032, 4032, 0, 'Media > Product Manuals > Household Appliance Manuals'),
(4033, 4033, 0, 'Media > Product Manuals > Kitchen Appliance Manuals'),
(4034, 4034, 0, 'Media > Product Manuals > Model & Toys Manuals'),
(4035, 4035, 0, 'Media > Product Manuals > Office Supply Manuals'),
(4036, 4036, 0, 'Media > Product Manuals > Power Tool & Equipment Manuals'),
(4037, 4037, 0, 'Media > Product Manuals > Vehicle Service Manuals'),
(4038, 4038, 0, 'Media > Sheet Music'),
(4039, 4039, 0, 'Office Supplies'),
(4040, 4040, 0, 'Office Supplies > Book Accessories'),
(4041, 4041, 0, 'Office Supplies > Book Accessories > Book Covers'),
(4042, 4042, 0, 'Office Supplies > Book Accessories > Book Lights'),
(4043, 4043, 0, 'Office Supplies > Book Accessories > Book Stands & Rests'),
(4044, 4044, 0, 'Office Supplies > Book Accessories > Bookmarks'),
(4045, 4045, 0, 'Office Supplies > Desk Pads & Blotters'),
(4046, 4046, 0, 'Office Supplies > Filing & Organization'),
(4047, 4047, 0, 'Office Supplies > Filing & Organization > Address Books'),
(4048, 4048, 0, 'Office Supplies > Filing & Organization > Binding Supplies'),
(4049, 4049, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories'),
(4050, 4050, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Binder Rings'),
(4051, 4051, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Index Dividers'),
(4052, 4052, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Sheet Protectors'),
(4053, 4053, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binders'),
(4054, 4054, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binding Combs & Spines'),
(4055, 4055, 0, 'Office Supplies > Filing & Organization > Binding Supplies > Binding Machines'),
(4056, 4056, 0, 'Office Supplies > Filing & Organization > Business Card Books'),
(4057, 4057, 0, 'Office Supplies > Filing & Organization > Business Card Stands'),
(4058, 4058, 0, 'Office Supplies > Filing & Organization > CD/DVD Cases & Organizers'),
(4059, 4059, 0, 'Office Supplies > Filing & Organization > Calendars, Organizers & Planners'),
(4060, 4060, 0, 'Office Supplies > Filing & Organization > Card Files'),
(4061, 4061, 0, 'Office Supplies > Filing & Organization > Card Sleeves'),
(4062, 4062, 0, 'Office Supplies > Filing & Organization > Cash Boxes'),
(4063, 4063, 0, 'Office Supplies > Filing & Organization > Desk Organizers'),
(4064, 4064, 0, 'Office Supplies > Filing & Organization > File Boxes'),
(4065, 4065, 0, 'Office Supplies > Filing & Organization > File Folders'),
(4066, 4066, 0, 'Office Supplies > Filing & Organization > Folders & Report Covers'),
(4067, 4067, 0, 'Office Supplies > Filing & Organization > Greeting Card Organizers'),
(4068, 4068, 0, 'Office Supplies > Filing & Organization > Mail Sorters'),
(4069, 4069, 0, 'Office Supplies > Filing & Organization > Pen & Pencil Cases'),
(4070, 4070, 0, 'Office Supplies > Filing & Organization > Portfolios & Padfolios'),
(4071, 4071, 0, 'Office Supplies > Filing & Organization > Recipe Card Boxes'),
(4072, 4072, 0, 'Office Supplies > General Office Supplies'),
(4073, 4073, 0, 'Office Supplies > General Office Supplies > Brass Fasteners'),
(4074, 4074, 0, 'Office Supplies > General Office Supplies > Correction Fluids, Pens & Tapes'),
(4075, 4075, 0, 'Office Supplies > General Office Supplies > Erasers'),
(4076, 4076, 0, 'Office Supplies > General Office Supplies > Labels & Tags'),
(4077, 4077, 0, 'Office Supplies > General Office Supplies > Labels & Tags > Address Labels'),
(4078, 4078, 0, 'Office Supplies > General Office Supplies > Labels & Tags > Folder Tabs'),
(4079, 4079, 0, 'Office Supplies > General Office Supplies > Labels & Tags > Label Clips'),
(4080, 4080, 0, 'Office Supplies > General Office Supplies > Labels & Tags > Label Tapes & Refill Rolls'),
(4081, 4081, 0, 'Office Supplies > General Office Supplies > Labels & Tags > Shipping Labels'),
(4082, 4082, 0, 'Office Supplies > General Office Supplies > Labels & Tags > Shipping Tags'),
(4083, 4083, 0, 'Office Supplies > General Office Supplies > Laminating Film, Pouches & Sheets'),
(4084, 4084, 0, 'Office Supplies > General Office Supplies > Mounting Putty'),
(4085, 4085, 0, 'Office Supplies > General Office Supplies > Office Tape'),
(4086, 4086, 0, 'Office Supplies > General Office Supplies > Paper Clips & Clamps'),
(4087, 4087, 0, 'Office Supplies > General Office Supplies > Paper Products'),
(4088, 4088, 0, 'Office Supplies > General Office Supplies > Paper Products > Binder Paper'),
(4089, 4089, 0, 'Office Supplies > General Office Supplies > Paper Products > Blank ID Cards'),
(4090, 4090, 0, 'Office Supplies > General Office Supplies > Paper Products > Business Cards'),
(4091, 4091, 0, 'Office Supplies > General Office Supplies > Paper Products > Business Forms & Receipts'),
(4092, 4092, 0, 'Office Supplies > General Office Supplies > Paper Products > Checks'),
(4093, 4093, 0, 'Office Supplies > General Office Supplies > Paper Products > Cover Paper'),
(4094, 4094, 0, 'Office Supplies > General Office Supplies > Paper Products > Envelopes'),
(4095, 4095, 0, 'Office Supplies > General Office Supplies > Paper Products > Index Cards'),
(4096, 4096, 0, 'Office Supplies > General Office Supplies > Paper Products > Notebooks & Notepads'),
(4097, 4097, 0, 'Office Supplies > General Office Supplies > Paper Products > Post Cards'),
(4098, 4098, 0, 'Office Supplies > General Office Supplies > Paper Products > Printer & Copier Paper'),
(4099, 4099, 0, 'Office Supplies > General Office Supplies > Paper Products > Receipt & Adding Machine Paper Rolls'),
(4100, 4100, 0, 'Office Supplies > General Office Supplies > Paper Products > Stationery'),
(4101, 4101, 0, 'Office Supplies > General Office Supplies > Paper Products > Sticky Notes'),
(4102, 4102, 0, 'Office Supplies > General Office Supplies > Rubber Bands'),
(4103, 4103, 0, 'Office Supplies > General Office Supplies > Staples'),
(4104, 4104, 0, 'Office Supplies > General Office Supplies > Tacks & Pushpins'),
(4105, 4105, 0, 'Office Supplies > Impulse Sealers'),
(4106, 4106, 0, 'Office Supplies > Lap Desks'),
(4107, 4107, 0, 'Office Supplies > Name Plates'),
(4108, 4108, 0, 'Office Supplies > Office & Chair Mats'),
(4109, 4109, 0, 'Office Supplies > Office & Chair Mats > Anti-Fatigue Mats'),
(4110, 4110, 0, 'Office Supplies > Office & Chair Mats > Chair Mats'),
(4111, 4111, 0, 'Office Supplies > Office & Chair Mats > Office Mats'),
(4112, 4112, 0, 'Office Supplies > Office Carts'),
(4113, 4113, 0, 'Office Supplies > Office Carts > AV Carts'),
(4114, 4114, 0, 'Office Supplies > Office Carts > Book Carts'),
(4115, 4115, 0, 'Office Supplies > Office Carts > File Carts'),
(4116, 4116, 0, 'Office Supplies > Office Carts > Mail Carts'),
(4117, 4117, 0, 'Office Supplies > Office Carts > Utility Carts'),
(4118, 4118, 0, 'Office Supplies > Office Equipment'),
(4119, 4119, 0, 'Office Supplies > Office Equipment > Calculator Accessories'),
(4120, 4120, 0, 'Office Supplies > Office Equipment > Calculators'),
(4121, 4121, 0, 'Office Supplies > Office Equipment > Electronic Dictionaries & Translators'),
(4122, 4122, 0, 'Office Supplies > Office Equipment > Label Makers'),
(4123, 4123, 0, 'Office Supplies > Office Equipment > Laminators'),
(4124, 4124, 0, 'Office Supplies > Office Equipment > Office Shredders'),
(4125, 4125, 0, 'Office Supplies > Office Equipment > Postage Meters'),
(4126, 4126, 0, 'Office Supplies > Office Equipment > Time & Attendance Clocks'),
(4127, 4127, 0, 'Office Supplies > Office Equipment > Transcribers & Dictation Systems'),
(4128, 4128, 0, 'Office Supplies > Office Equipment > Typewriters'),
(4129, 4129, 0, 'Office Supplies > Office Instruments'),
(4130, 4130, 0, 'Office Supplies > Office Instruments > Call Bells'),
(4131, 4131, 0, 'Office Supplies > Office Instruments > Clipboards'),
(4132, 4132, 0, 'Office Supplies > Office Instruments > Letter Openers'),
(4133, 4133, 0, 'Office Supplies > Office Instruments > Magnifiers'),
(4134, 4134, 0, 'Office Supplies > Office Instruments > Office Rubber Stamps'),
(4135, 4135, 0, 'Office Supplies > Office Instruments > Pencil Sharpeners'),
(4136, 4136, 0, 'Office Supplies > Office Instruments > Staple Removers'),
(4137, 4137, 0, 'Office Supplies > Office Instruments > Staplers'),
(4138, 4138, 0, 'Office Supplies > Office Instruments > Tape Dispensers'),
(4139, 4139, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories'),
(4140, 4140, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Marker & Highlighter Ink Refills'),
(4141, 4141, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pen Ink & Refills'),
(4142, 4142, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pencil Lead & Refills'),
(4143, 4143, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments'),
(4144, 4144, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Art Charcoals'),
(4145, 4145, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Chalk'),
(4146, 4146, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Crayons'),
(4147, 4147, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Markers & Highlighters'),
(4148, 4148, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Multifunction Writing Instruments'),
(4149, 4149, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pastels'),
(4150, 4150, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils'),
(4151, 4151, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pen & Pencil Sets'),
(4152, 4152, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils'),
(4153, 4153, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils > Art Pencils'),
(4154, 4154, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils > Writing Pencils'),
(4155, 4155, 0, 'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pens'),
(4156, 4156, 0, 'Office Supplies > Paper Handling'),
(4157, 4157, 0, 'Office Supplies > Paper Handling > Fingertip Grips'),
(4158, 4158, 0, 'Office Supplies > Paper Handling > Hole Punches'),
(4159, 4159, 0, 'Office Supplies > Paper Handling > Paper Folding Machines'),
(4160, 4160, 0, 'Office Supplies > Paper Handling > Paper Joggers'),
(4161, 4161, 0, 'Office Supplies > Paper Handling > Paperweights'),
(4162, 4162, 0, 'Office Supplies > Paper Handling > Pencil Boards'),
(4163, 4163, 0, 'Office Supplies > Presentation Supplies'),
(4164, 4164, 0, 'Office Supplies > Presentation Supplies > Chalkboards'),
(4165, 4165, 0, 'Office Supplies > Presentation Supplies > Display Boards'),
(4166, 4166, 0, 'Office Supplies > Presentation Supplies > Display Boards > Bulletin Board Accessories'),
(4167, 4167, 0, 'Office Supplies > Presentation Supplies > Display Boards > Bulletin Board Accessories > Bulletin Board Trim'),
(4168, 4168, 0, 'Office Supplies > Presentation Supplies > Display Boards > Bulletin Boards'),
(4169, 4169, 0, 'Office Supplies > Presentation Supplies > Display Boards > Foam Boards'),
(4170, 4170, 0, 'Office Supplies > Presentation Supplies > Display Boards > Mounting Boards'),
(4171, 4171, 0, 'Office Supplies > Presentation Supplies > Display Boards > Poster Boards'),
(4172, 4172, 0, 'Office Supplies > Presentation Supplies > Document Cameras'),
(4173, 4173, 0, 'Office Supplies > Presentation Supplies > Dry-Erase Boards'),
(4174, 4174, 0, 'Office Supplies > Presentation Supplies > Easel Pads'),
(4175, 4175, 0, 'Office Supplies > Presentation Supplies > Easels'),
(4176, 4176, 0, 'Office Supplies > Presentation Supplies > Laser Pointers'),
(4177, 4177, 0, 'Office Supplies > Presentation Supplies > Lecterns'),
(4178, 4178, 0, 'Office Supplies > Presentation Supplies > Transparencies'),
(4179, 4179, 0, 'Office Supplies > Presentation Supplies > Wireless Presenters'),
(4180, 4180, 0, 'Office Supplies > Shipping Supplies'),
(4181, 4181, 0, 'Office Supplies > Shipping Supplies > Moving & Shipping Boxes'),
(4182, 4182, 0, 'Office Supplies > Shipping Supplies > Packing Materials'),
(4183, 4183, 0, 'Office Supplies > Shipping Supplies > Packing Tape'),
(4184, 4184, 0, 'Religious & Ceremonial'),
(4185, 4185, 0, 'Religious & Ceremonial > Memorial Ceremony Supplies'),
(4186, 4186, 0, 'Religious & Ceremonial > Memorial Ceremony Supplies > Memorial Urns'),
(4187, 4187, 0, 'Religious & Ceremonial > Religious Items'),
(4188, 4188, 0, 'Religious & Ceremonial > Religious Items > Prayer Beads'),
(4189, 4189, 0, 'Religious & Ceremonial > Religious Items > Prayer Cards'),
(4190, 4190, 0, 'Religious & Ceremonial > Religious Items > Religious Altars'),
(4191, 4191, 0, 'Religious & Ceremonial > Religious Items > Religious Veils'),
(4192, 4192, 0, 'Religious & Ceremonial > Religious Items > Tarot Cards'),
(4193, 4193, 0, 'Religious & Ceremonial > Wedding Ceremony Supplies'),
(4194, 4194, 0, 'Religious & Ceremonial > Wedding Ceremony Supplies > Aisle Runners'),
(4195, 4195, 0, 'Religious & Ceremonial > Wedding Ceremony Supplies > Flower Girl Baskets'),
(4196, 4196, 0, 'Religious & Ceremonial > Wedding Ceremony Supplies > Ring Pillows & Holders'),
(4197, 4197, 0, 'Software'),
(4198, 4198, 0, 'Software > Computer Software'),
(4199, 4199, 0, 'Software > Computer Software > Antivirus & Security Software'),
(4200, 4200, 0, 'Software > Computer Software > Business & Productivity Software'),
(4201, 4201, 0, 'Software > Computer Software > Compilers & Programming Tools'),
(4202, 4202, 0, 'Software > Computer Software > Computer Utilities & Maintenance Software'),
(4203, 4203, 0, 'Software > Computer Software > Dictionary & Translation Software'),
(4204, 4204, 0, 'Software > Computer Software > Educational Software'),
(4205, 4205, 0, 'Software > Computer Software > Financial, Tax & Accounting Software'),
(4206, 4206, 0, 'Software > Computer Software > GPS Map Data & Software'),
(4207, 4207, 0, 'Software > Computer Software > Handheld & PDA Software'),
(4208, 4208, 0, 'Software > Computer Software > Multimedia & Design Software'),
(4209, 4209, 0, 'Software > Computer Software > Multimedia & Design Software > 3D Modeling Software'),
(4210, 4210, 0, 'Software > Computer Software > Multimedia & Design Software > Animation Editing Software'),
(4211, 4211, 0, 'Software > Computer Software > Multimedia & Design Software > Graphic Design & Illustration Software'),
(4212, 4212, 0, 'Software > Computer Software > Multimedia & Design Software > Home & Interior Design Software'),
(4213, 4213, 0, 'Software > Computer Software > Multimedia & Design Software > Home Publishing Software'),
(4214, 4214, 0, 'Software > Computer Software > Multimedia & Design Software > Media Viewing Software'),
(4215, 4215, 0, 'Software > Computer Software > Multimedia & Design Software > Music Composition Software'),
(4216, 4216, 0, 'Software > Computer Software > Multimedia & Design Software > Sound Editing Software'),
(4217, 4217, 0, 'Software > Computer Software > Multimedia & Design Software > Video Editing Software'),
(4218, 4218, 0, 'Software > Computer Software > Multimedia & Design Software > Web Design Software'),
(4219, 4219, 0, 'Software > Computer Software > Network Software'),
(4220, 4220, 0, 'Software > Computer Software > Office Application Software'),
(4221, 4221, 0, 'Software > Computer Software > Operating Systems'),
(4222, 4222, 0, 'Software > Computer Software > Restore Disks'),
(4223, 4223, 0, 'Software > Digital Goods & Currency'),
(4224, 4224, 0, 'Software > Digital Goods & Currency > Computer Icons'),
(4225, 4225, 0, 'Software > Digital Goods & Currency > Desktop Wallpaper'),
(4226, 4226, 0, 'Software > Digital Goods & Currency > Digital Artwork'),
(4227, 4227, 0, 'Software > Digital Goods & Currency > Document Templates'),
(4228, 4228, 0, 'Software > Digital Goods & Currency > Fonts'),
(4229, 4229, 0, 'Software > Digital Goods & Currency > Stock Photographs & Video Footage'),
(4230, 4230, 0, 'Software > Digital Goods & Currency > Virtual Currency'),
(4231, 4231, 0, 'Software > Video Game Software'),
(4232, 4232, 0, 'Sporting Goods'),
(4233, 4233, 0, 'Sporting Goods > Athletics'),
(4234, 4234, 0, 'Sporting Goods > Athletics > Baseball & Softball');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(4235, 4235, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Bases & Plates'),
(4236, 4236, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Batting Gloves'),
(4237, 4237, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Gloves & Mitts'),
(4238, 4238, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Pitching Mats'),
(4239, 4239, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Pitching Mounds'),
(4240, 4240, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear'),
(4241, 4241, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Baseball & Softball Batting Helmets'),
(4242, 4242, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Baseball & Softball Chest Protectors'),
(4243, 4243, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Baseball & Softball Leg Guards'),
(4244, 4244, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Catchers Equipment Sets'),
(4245, 4245, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Catchers Helmets & Masks'),
(4246, 4246, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseball Bats'),
(4247, 4247, 0, 'Sporting Goods > Athletics > Baseball & Softball > Baseballs'),
(4248, 4248, 0, 'Sporting Goods > Athletics > Baseball & Softball > Pitching Machines'),
(4249, 4249, 0, 'Sporting Goods > Athletics > Baseball & Softball > Softball Bats'),
(4250, 4250, 0, 'Sporting Goods > Athletics > Baseball & Softball > Softballs'),
(4251, 4251, 0, 'Sporting Goods > Athletics > Basketball'),
(4252, 4252, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories'),
(4253, 4253, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Backboards'),
(4254, 4254, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Hoop Padding'),
(4255, 4255, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Hoop Posts'),
(4256, 4256, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Nets'),
(4257, 4257, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Rims'),
(4258, 4258, 0, 'Sporting Goods > Athletics > Basketball > Basketball Hoops'),
(4259, 4259, 0, 'Sporting Goods > Athletics > Basketball > Basketball Training Aids'),
(4260, 4260, 0, 'Sporting Goods > Athletics > Basketball > Basketballs'),
(4261, 4261, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts'),
(4262, 4262, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear'),
(4263, 4263, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & MMA Hand Wraps'),
(4264, 4264, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & Martial Arts Arm Guards'),
(4265, 4265, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & Martial Arts Body Protectors'),
(4266, 4266, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & Martial Arts Headgear'),
(4267, 4267, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing Gloves & Mitts'),
(4268, 4268, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > MMA Shin Guards'),
(4269, 4269, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment'),
(4270, 4270, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Boxing & MMA Punch Mitts'),
(4271, 4271, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Grappling Dummies'),
(4272, 4272, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Punching & Training Bag Accessories'),
(4273, 4273, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Punching & Training Bags'),
(4274, 4274, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Strike Shields'),
(4275, 4275, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing Ring Parts'),
(4276, 4276, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing Rings'),
(4277, 4277, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Martial Arts Belts'),
(4278, 4278, 0, 'Sporting Goods > Athletics > Boxing & Martial Arts > Martial Arts Weapons'),
(4279, 4279, 0, 'Sporting Goods > Athletics > Broomball Equipment'),
(4280, 4280, 0, 'Sporting Goods > Athletics > Cheerleading'),
(4281, 4281, 0, 'Sporting Goods > Athletics > Cheerleading > Cheerleading Pom Poms'),
(4282, 4282, 0, 'Sporting Goods > Athletics > Coaching & Officiating'),
(4283, 4283, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Captains Armbands'),
(4284, 4284, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Field & Court Boundary Markers'),
(4285, 4285, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Flip Coins & Discs'),
(4286, 4286, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Linesman Flags'),
(4287, 4287, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Penalty Cards & Flags'),
(4288, 4288, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Pitch Counters'),
(4289, 4289, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Referee Stands & Chairs'),
(4290, 4290, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Referee Wallets'),
(4291, 4291, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Scoreboards'),
(4292, 4292, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Sport & Safety Whistles'),
(4293, 4293, 0, 'Sporting Goods > Athletics > Coaching & Officiating > Umpire Indicators'),
(4294, 4294, 0, 'Sporting Goods > Athletics > Cricket'),
(4295, 4295, 0, 'Sporting Goods > Athletics > Cricket > Cricket Balls'),
(4296, 4296, 0, 'Sporting Goods > Athletics > Cricket > Cricket Bat Accessories'),
(4297, 4297, 0, 'Sporting Goods > Athletics > Cricket > Cricket Bat Accessories > Cricket Bat Grips'),
(4298, 4298, 0, 'Sporting Goods > Athletics > Cricket > Cricket Bats'),
(4299, 4299, 0, 'Sporting Goods > Athletics > Cricket > Cricket Equipment Sets'),
(4300, 4300, 0, 'Sporting Goods > Athletics > Cricket > Cricket Protective Gear'),
(4301, 4301, 0, 'Sporting Goods > Athletics > Cricket > Cricket Protective Gear > Cricket Gloves'),
(4302, 4302, 0, 'Sporting Goods > Athletics > Cricket > Cricket Protective Gear > Cricket Helmets'),
(4303, 4303, 0, 'Sporting Goods > Athletics > Cricket > Cricket Protective Gear > Cricket Leg Guards'),
(4304, 4304, 0, 'Sporting Goods > Athletics > Cricket > Cricket Stumps'),
(4305, 4305, 0, 'Sporting Goods > Athletics > Dancing'),
(4306, 4306, 0, 'Sporting Goods > Athletics > Dancing > Ballet Barres'),
(4307, 4307, 0, 'Sporting Goods > Athletics > Fencing'),
(4308, 4308, 0, 'Sporting Goods > Athletics > Fencing > Fencing Protective Gear'),
(4309, 4309, 0, 'Sporting Goods > Athletics > Fencing > Fencing Protective Gear > Fencing Gloves & Cuffs'),
(4310, 4310, 0, 'Sporting Goods > Athletics > Fencing > Fencing Protective Gear > Fencing Jackets & LamÃ©s'),
(4311, 4311, 0, 'Sporting Goods > Athletics > Fencing > Fencing Protective Gear > Fencing Masks'),
(4312, 4312, 0, 'Sporting Goods > Athletics > Fencing > Fencing Weapons'),
(4313, 4313, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse'),
(4314, 4314, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear'),
(4315, 4315, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Gloves'),
(4316, 4316, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Helmets'),
(4317, 4317, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Masks & Goggles'),
(4318, 4318, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Pads'),
(4319, 4319, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey Balls'),
(4320, 4320, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey Goals'),
(4321, 4321, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey Sticks'),
(4322, 4322, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Balls'),
(4323, 4323, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Equipment Sets'),
(4324, 4324, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Goals'),
(4325, 4325, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts'),
(4326, 4326, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts > Lacrosse Mesh & String'),
(4327, 4327, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts > Lacrosse Stick Heads'),
(4328, 4328, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts > Lacrosse Stick Shafts'),
(4329, 4329, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Sticks'),
(4330, 4330, 0, 'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Training Aids'),
(4331, 4331, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey'),
(4332, 4332, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Balls & Pucks'),
(4333, 4333, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Goals'),
(4334, 4334, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear'),
(4335, 4335, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Elbow Pads'),
(4336, 4336, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Gloves'),
(4337, 4337, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Goalie Equipment Sets'),
(4338, 4338, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Helmets'),
(4339, 4339, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Pants'),
(4340, 4340, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Shin Guards & Leg Pads'),
(4341, 4341, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Shoulder Pads & Chest Protectors'),
(4342, 4342, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Suspenders & Belts'),
(4343, 4343, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Sledges'),
(4344, 4344, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Care'),
(4345, 4345, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Parts'),
(4346, 4346, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Parts > Hockey Stick Blades'),
(4347, 4347, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Parts > Hockey Stick Shafts'),
(4348, 4348, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Sticks'),
(4349, 4349, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories'),
(4350, 4350, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Figure Skate Boots'),
(4351, 4351, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Ice Skate Blades'),
(4352, 4352, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Ice Skate Sharpeners'),
(4353, 4353, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Skate Blade Guards'),
(4354, 4354, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Skate Lace Tighteners'),
(4355, 4355, 0, 'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skates'),
(4356, 4356, 0, 'Sporting Goods > Athletics > Football'),
(4357, 4357, 0, 'Sporting Goods > Athletics > Football > Football Gloves'),
(4358, 4358, 0, 'Sporting Goods > Athletics > Football > Football Goal Posts'),
(4359, 4359, 0, 'Sporting Goods > Athletics > Football > Football Kicking Tees & Holders'),
(4360, 4360, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear'),
(4361, 4361, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Girdles'),
(4362, 4362, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories'),
(4363, 4363, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Chin Straps'),
(4364, 4364, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Face Masks'),
(4365, 4365, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Helmet Padding'),
(4366, 4366, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Helmet Visors'),
(4367, 4367, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmets'),
(4368, 4368, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Neck Rolls'),
(4369, 4369, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Rib Protection Shirts & Vests'),
(4370, 4370, 0, 'Sporting Goods > Athletics > Football > Football Protective Gear > Football Shoulder Pads'),
(4371, 4371, 0, 'Sporting Goods > Athletics > Football > Football Training Equipment'),
(4372, 4372, 0, 'Sporting Goods > Athletics > Football > Football Training Equipment > Football Dummies & Sleds'),
(4373, 4373, 0, 'Sporting Goods > Athletics > Football > Footballs'),
(4374, 4374, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment'),
(4375, 4375, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Altitude Training Masks'),
(4376, 4376, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Athletic Cups'),
(4377, 4377, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Carrying Bags & Carts'),
(4378, 4378, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Pump Accessories'),
(4379, 4379, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Pump Accessories > Ball Pump Needles'),
(4380, 4380, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Pumps'),
(4381, 4381, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Exercise & Gym Mat Storage Racks & Carts'),
(4382, 4382, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Grip Spray & Chalk'),
(4383, 4383, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Gym Mats'),
(4384, 4384, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Practice Nets & Screens'),
(4385, 4385, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Speed & Agility Ladders & Hurdles'),
(4386, 4386, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Sports & Agility Cones'),
(4387, 4387, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Sports Megaphones'),
(4388, 4388, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Sports Mouthguards'),
(4389, 4389, 0, 'Sporting Goods > Athletics > General Purpose Athletic Equipment > Stadium Seats & Cushions'),
(4390, 4390, 0, 'Sporting Goods > Athletics > Gymnastics'),
(4391, 4391, 0, 'Sporting Goods > Athletics > Gymnastics > Gymnastics Bars & Balance Beams'),
(4392, 4392, 0, 'Sporting Goods > Athletics > Gymnastics > Gymnastics Protective Gear'),
(4393, 4393, 0, 'Sporting Goods > Athletics > Gymnastics > Gymnastics Protective Gear > Gymnastics Grips'),
(4394, 4394, 0, 'Sporting Goods > Athletics > Gymnastics > Gymnastics Rings'),
(4395, 4395, 0, 'Sporting Goods > Athletics > Gymnastics > Gymnastics Springboards'),
(4396, 4396, 0, 'Sporting Goods > Athletics > Gymnastics > Pommel Horses'),
(4397, 4397, 0, 'Sporting Goods > Athletics > Gymnastics > Vaulting Horses'),
(4398, 4398, 0, 'Sporting Goods > Athletics > Racquetball & Squash'),
(4399, 4399, 0, 'Sporting Goods > Athletics > Racquetball & Squash > Racquetball & Squash Balls'),
(4400, 4400, 0, 'Sporting Goods > Athletics > Racquetball & Squash > Racquetball & Squash Eyewear'),
(4401, 4401, 0, 'Sporting Goods > Athletics > Racquetball & Squash > Racquetball & Squash Gloves'),
(4402, 4402, 0, 'Sporting Goods > Athletics > Racquetball & Squash > Racquetball Racquets'),
(4403, 4403, 0, 'Sporting Goods > Athletics > Racquetball & Squash > Squash Racquets'),
(4404, 4404, 0, 'Sporting Goods > Athletics > Rounders'),
(4405, 4405, 0, 'Sporting Goods > Athletics > Rounders > Rounders Bats'),
(4406, 4406, 0, 'Sporting Goods > Athletics > Rounders > Rounders Gloves'),
(4407, 4407, 0, 'Sporting Goods > Athletics > Rugby'),
(4408, 4408, 0, 'Sporting Goods > Athletics > Rugby > Rugby Balls'),
(4409, 4409, 0, 'Sporting Goods > Athletics > Rugby > Rugby Gloves'),
(4410, 4410, 0, 'Sporting Goods > Athletics > Rugby > Rugby Posts'),
(4411, 4411, 0, 'Sporting Goods > Athletics > Rugby > Rugby Protective Gear'),
(4412, 4412, 0, 'Sporting Goods > Athletics > Rugby > Rugby Protective Gear > Rugby Headgear'),
(4413, 4413, 0, 'Sporting Goods > Athletics > Rugby > Rugby Training Aids'),
(4414, 4414, 0, 'Sporting Goods > Athletics > Soccer'),
(4415, 4415, 0, 'Sporting Goods > Athletics > Soccer > Soccer Balls'),
(4416, 4416, 0, 'Sporting Goods > Athletics > Soccer > Soccer Corner Flags'),
(4417, 4417, 0, 'Sporting Goods > Athletics > Soccer > Soccer Gloves'),
(4418, 4418, 0, 'Sporting Goods > Athletics > Soccer > Soccer Goal Accessories'),
(4419, 4419, 0, 'Sporting Goods > Athletics > Soccer > Soccer Goals'),
(4420, 4420, 0, 'Sporting Goods > Athletics > Soccer > Soccer Protective Gear'),
(4421, 4421, 0, 'Sporting Goods > Athletics > Soccer > Soccer Protective Gear > Soccer Shin Guards'),
(4422, 4422, 0, 'Sporting Goods > Athletics > Team Handball'),
(4423, 4423, 0, 'Sporting Goods > Athletics > Team Handball > Handballs'),
(4424, 4424, 0, 'Sporting Goods > Athletics > Tennis'),
(4425, 4425, 0, 'Sporting Goods > Athletics > Tennis > Tennis Ball Hoppers & Carts'),
(4426, 4426, 0, 'Sporting Goods > Athletics > Tennis > Tennis Ball Machines'),
(4427, 4427, 0, 'Sporting Goods > Athletics > Tennis > Tennis Ball Savers'),
(4428, 4428, 0, 'Sporting Goods > Athletics > Tennis > Tennis Balls'),
(4429, 4429, 0, 'Sporting Goods > Athletics > Tennis > Tennis Nets'),
(4430, 4430, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories'),
(4431, 4431, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Racquet Vibration Dampeners'),
(4432, 4432, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet Bags'),
(4433, 4433, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet Grips & Tape'),
(4434, 4434, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet Grommets'),
(4435, 4435, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet String'),
(4436, 4436, 0, 'Sporting Goods > Athletics > Tennis > Tennis Racquets'),
(4437, 4437, 0, 'Sporting Goods > Athletics > Track & Field'),
(4438, 4438, 0, 'Sporting Goods > Athletics > Track & Field > Discus'),
(4439, 4439, 0, 'Sporting Goods > Athletics > Track & Field > High Jump Crossbars'),
(4440, 4440, 0, 'Sporting Goods > Athletics > Track & Field > High Jump Pits'),
(4441, 4441, 0, 'Sporting Goods > Athletics > Track & Field > Javelins'),
(4442, 4442, 0, 'Sporting Goods > Athletics > Track & Field > Pole Vault Pits'),
(4443, 4443, 0, 'Sporting Goods > Athletics > Track & Field > Relay Batons'),
(4444, 4444, 0, 'Sporting Goods > Athletics > Track & Field > Shot Puts'),
(4445, 4445, 0, 'Sporting Goods > Athletics > Track & Field > Starter Pistols'),
(4446, 4446, 0, 'Sporting Goods > Athletics > Track & Field > Throwing Hammers'),
(4447, 4447, 0, 'Sporting Goods > Athletics > Track & Field > Track Hurdles'),
(4448, 4448, 0, 'Sporting Goods > Athletics > Track & Field > Track Starting Blocks'),
(4449, 4449, 0, 'Sporting Goods > Athletics > Track & Field > Vaulting Poles'),
(4450, 4450, 0, 'Sporting Goods > Athletics > Volleyball'),
(4451, 4451, 0, 'Sporting Goods > Athletics > Volleyball > Volleyball Nets'),
(4452, 4452, 0, 'Sporting Goods > Athletics > Volleyball > Volleyball Protective Gear'),
(4453, 4453, 0, 'Sporting Goods > Athletics > Volleyball > Volleyball Protective Gear > Volleyball Knee Pads'),
(4454, 4454, 0, 'Sporting Goods > Athletics > Volleyball > Volleyball Training Aids'),
(4455, 4455, 0, 'Sporting Goods > Athletics > Volleyball > Volleyballs'),
(4456, 4456, 0, 'Sporting Goods > Athletics > Wallyball Equipment'),
(4457, 4457, 0, 'Sporting Goods > Athletics > Water Polo'),
(4458, 4458, 0, 'Sporting Goods > Athletics > Water Polo > Water Polo Balls'),
(4459, 4459, 0, 'Sporting Goods > Athletics > Water Polo > Water Polo Caps'),
(4460, 4460, 0, 'Sporting Goods > Athletics > Water Polo > Water Polo Goals'),
(4461, 4461, 0, 'Sporting Goods > Athletics > Wrestling'),
(4462, 4462, 0, 'Sporting Goods > Athletics > Wrestling > Wrestling Protective Gear'),
(4463, 4463, 0, 'Sporting Goods > Athletics > Wrestling > Wrestling Protective Gear > Wrestling Headgear'),
(4464, 4464, 0, 'Sporting Goods > Athletics > Wrestling > Wrestling Protective Gear > Wrestling Knee Pads'),
(4465, 4465, 0, 'Sporting Goods > Exercise & Fitness'),
(4466, 4466, 0, 'Sporting Goods > Exercise & Fitness > Ab Wheels & Rollers'),
(4467, 4467, 0, 'Sporting Goods > Exercise & Fitness > Aerobic Steps'),
(4468, 4468, 0, 'Sporting Goods > Exercise & Fitness > Balance Trainers'),
(4469, 4469, 0, 'Sporting Goods > Exercise & Fitness > Cardio'),
(4470, 4470, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories'),
(4471, 4471, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Elliptical Trainer Accessories'),
(4472, 4472, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Exercise Bike Accessories'),
(4473, 4473, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Rowing Machine Accessories'),
(4474, 4474, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Stair Climber & Stepper Accessories'),
(4475, 4475, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Treadmill Accessories'),
(4476, 4476, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines'),
(4477, 4477, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Elliptical Trainers'),
(4478, 4478, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Exercise Bikes'),
(4479, 4479, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Rowing Machines'),
(4480, 4480, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Stair Climbers & Steppers'),
(4481, 4481, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Treadmills'),
(4482, 4482, 0, 'Sporting Goods > Exercise & Fitness > Cardio > Jump Ropes'),
(4483, 4483, 0, 'Sporting Goods > Exercise & Fitness > Exercise Balls'),
(4484, 4484, 0, 'Sporting Goods > Exercise & Fitness > Exercise Bands'),
(4485, 4485, 0, 'Sporting Goods > Exercise & Fitness > Exercise Benches'),
(4486, 4486, 0, 'Sporting Goods > Exercise & Fitness > Exercise Equipment Mats'),
(4487, 4487, 0, 'Sporting Goods > Exercise & Fitness > Exercise Machine & Equipment Sets'),
(4488, 4488, 0, 'Sporting Goods > Exercise & Fitness > Exercise Wedges'),
(4489, 4489, 0, 'Sporting Goods > Exercise & Fitness > Foam Roller Accessories'),
(4490, 4490, 0, 'Sporting Goods > Exercise & Fitness > Foam Roller Accessories > Foam Roller Storage Bags'),
(4491, 4491, 0, 'Sporting Goods > Exercise & Fitness > Foam Rollers'),
(4492, 4492, 0, 'Sporting Goods > Exercise & Fitness > Hand Exercisers'),
(4493, 4493, 0, 'Sporting Goods > Exercise & Fitness > Inversion Tables & Systems'),
(4494, 4494, 0, 'Sporting Goods > Exercise & Fitness > Medicine Balls'),
(4495, 4495, 0, 'Sporting Goods > Exercise & Fitness > Power Towers'),
(4496, 4496, 0, 'Sporting Goods > Exercise & Fitness > Push Up & Pull Up Bars'),
(4497, 4497, 0, 'Sporting Goods > Exercise & Fitness > Reaction Balls'),
(4498, 4498, 0, 'Sporting Goods > Exercise & Fitness > Speed & Resistance Parachutes'),
(4499, 4499, 0, 'Sporting Goods > Exercise & Fitness > Sport Safety Lights & Reflectors'),
(4500, 4500, 0, 'Sporting Goods > Exercise & Fitness > Stopwatches'),
(4501, 4501, 0, 'Sporting Goods > Exercise & Fitness > Suspension Trainers'),
(4502, 4502, 0, 'Sporting Goods > Exercise & Fitness > Vibration Exercise Machines'),
(4503, 4503, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting'),
(4504, 4504, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories'),
(4505, 4505, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories > Free Weight Storage Racks'),
(4506, 4506, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories > Weight Bar Collars'),
(4507, 4507, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories > Weight Bars'),
(4508, 4508, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weights'),
(4509, 4509, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Belts'),
(4510, 4510, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Gloves & Hand Supports'),
(4511, 4511, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Machine & Exercise Bench Accessories'),
(4512, 4512, 0, 'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Machines & Racks'),
(4513, 4513, 0, 'Sporting Goods > Exercise & Fitness > Weighted Clothing'),
(4514, 4514, 0, 'Sporting Goods > Exercise & Fitness > Yoga & Pilates'),
(4515, 4515, 0, 'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Pilates Machines'),
(4516, 4516, 0, 'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Blocks'),
(4517, 4517, 0, 'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Mats'),
(4518, 4518, 0, 'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Towels'),
(4519, 4519, 0, 'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga Mat Bags & Straps'),
(4520, 4520, 0, 'Sporting Goods > Indoor Games'),
(4521, 4521, 0, 'Sporting Goods > Indoor Games > Air Hockey'),
(4522, 4522, 0, 'Sporting Goods > Indoor Games > Air Hockey > Air Hockey Equipment'),
(4523, 4523, 0, 'Sporting Goods > Indoor Games > Air Hockey > Air Hockey Table Parts'),
(4524, 4524, 0, 'Sporting Goods > Indoor Games > Air Hockey > Air Hockey Tables'),
(4525, 4525, 0, 'Sporting Goods > Indoor Games > Billiards'),
(4526, 4526, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Ball Racks'),
(4527, 4527, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Balls'),
(4528, 4528, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories'),
(4529, 4529, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Cases'),
(4530, 4530, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Chalk'),
(4531, 4531, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Racks'),
(4532, 4532, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Cues & Bridges'),
(4533, 4533, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Gloves'),
(4534, 4534, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Table Lights'),
(4535, 4535, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories'),
(4536, 4536, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Pockets'),
(4537, 4537, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Brushes'),
(4538, 4538, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Cloth'),
(4539, 4539, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Covers'),
(4540, 4540, 0, 'Sporting Goods > Indoor Games > Billiards > Billiard Tables'),
(4541, 4541, 0, 'Sporting Goods > Indoor Games > Bowling'),
(4542, 4542, 0, 'Sporting Goods > Indoor Games > Bowling > Bowling Ball Bags'),
(4543, 4543, 0, 'Sporting Goods > Indoor Games > Bowling > Bowling Balls'),
(4544, 4544, 0, 'Sporting Goods > Indoor Games > Bowling > Bowling Gloves'),
(4545, 4545, 0, 'Sporting Goods > Indoor Games > Bowling > Bowling Pins'),
(4546, 4546, 0, 'Sporting Goods > Indoor Games > Bowling > Bowling Wrist Supports'),
(4547, 4547, 0, 'Sporting Goods > Indoor Games > Foosball'),
(4548, 4548, 0, 'Sporting Goods > Indoor Games > Foosball > Foosball Balls'),
(4549, 4549, 0, 'Sporting Goods > Indoor Games > Foosball > Foosball Table Parts & Accessories'),
(4550, 4550, 0, 'Sporting Goods > Indoor Games > Foosball > Foosball Tables'),
(4551, 4551, 0, 'Sporting Goods > Indoor Games > Multi-Game Tables'),
(4552, 4552, 0, 'Sporting Goods > Indoor Games > Ping Pong'),
(4553, 4553, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Balls'),
(4554, 4554, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Nets & Posts'),
(4555, 4555, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Paddle Accessories'),
(4556, 4556, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Paddles & Sets'),
(4557, 4557, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Robot Accessories'),
(4558, 4558, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Robots'),
(4559, 4559, 0, 'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Tables'),
(4560, 4560, 0, 'Sporting Goods > Indoor Games > Table Shuffleboard'),
(4561, 4561, 0, 'Sporting Goods > Indoor Games > Table Shuffleboard > Shuffleboard Tables'),
(4562, 4562, 0, 'Sporting Goods > Indoor Games > Table Shuffleboard > Table Shuffleboard Powder'),
(4563, 4563, 0, 'Sporting Goods > Indoor Games > Table Shuffleboard > Table Shuffleboard Pucks'),
(4564, 4564, 0, 'Sporting Goods > Indoor Games > Throwing Darts'),
(4565, 4565, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Dart Backboards'),
(4566, 4566, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts'),
(4567, 4567, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts > Dart Flights'),
(4568, 4568, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts > Dart Shafts'),
(4569, 4569, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts > Dart Tips'),
(4570, 4570, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Dartboards'),
(4571, 4571, 0, 'Sporting Goods > Indoor Games > Throwing Darts > Darts'),
(4572, 4572, 0, 'Sporting Goods > Outdoor Recreation'),
(4573, 4573, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports'),
(4574, 4574, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting'),
(4575, 4575, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Boating Gloves'),
(4576, 4576, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Canoe Accessories'),
(4577, 4577, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Canoes'),
(4578, 4578, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Kayak Accessories'),
(4579, 4579, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Kayaks'),
(4580, 4580, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Paddle Leashes'),
(4581, 4581, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Paddles & Oars'),
(4582, 4582, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Pedal Boats'),
(4583, 4583, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Row Boats'),
(4584, 4584, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Whitewater Rafts'),
(4585, 4585, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel'),
(4586, 4586, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Drysuits'),
(4587, 4587, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Life Jacket Accessories'),
(4588, 4588, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Life Jackets'),
(4589, 4589, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Rash Guards & Swim Shirts'),
(4590, 4590, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Water Sport Helmets'),
(4591, 4591, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces'),
(4592, 4592, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces > Wetsuit Bottoms'),
(4593, 4593, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces > Wetsuit Hoods, Gloves & Boots'),
(4594, 4594, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces > Wetsuit Tops'),
(4595, 4595, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuits'),
(4596, 4596, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling'),
(4597, 4597, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Buoyancy Compensators'),
(4598, 4598, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Dive Computers'),
(4599, 4599, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving & Snorkeling Equipment Sets'),
(4600, 4600, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving & Snorkeling Fins'),
(4601, 4601, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving & Snorkeling Masks'),
(4602, 4602, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving Belts'),
(4603, 4603, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving Knives & Shears'),
(4604, 4604, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving Regulators'),
(4605, 4605, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Snorkels'),
(4606, 4606, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing'),
(4607, 4607, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kiteboard Cases'),
(4608, 4608, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kiteboard Parts'),
(4609, 4609, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kiteboards'),
(4610, 4610, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kitesurfing & Windsurfing Harnesses'),
(4611, 4611, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kitesurfing Kites'),
(4612, 4612, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing'),
(4613, 4613, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Bodyboards'),
(4614, 4614, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Paddleboards'),
(4615, 4615, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Skimboards'),
(4616, 4616, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surf Leashes'),
(4617, 4617, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboard Cases & Bags'),
(4618, 4618, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboard Fins'),
(4619, 4619, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboard Wax'),
(4620, 4620, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboards'),
(4621, 4621, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfing Gloves'),
(4622, 4622, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfing Tail Pads'),
(4623, 4623, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming'),
(4624, 4624, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Child Swimming Aids'),
(4625, 4625, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Hand Paddles'),
(4626, 4626, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Kickboards'),
(4627, 4627, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Pull Buoys'),
(4628, 4628, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Belts'),
(4629, 4629, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Caps'),
(4630, 4630, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Gloves'),
(4631, 4631, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Goggle & Mask Accessories'),
(4632, 4632, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Goggles & Masks'),
(4633, 4633, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Weights'),
(4634, 4634, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Fins'),
(4635, 4635, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Fins > Monofins'),
(4636, 4636, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Fins > Training Fins'),
(4637, 4637, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Machines'),
(4638, 4638, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Nose Clips'),
(4639, 4639, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports'),
(4640, 4640, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Kneeboarding'),
(4641, 4641, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Kneeboarding > Kneeboards'),
(4642, 4642, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Towable Rafts & Tubes'),
(4643, 4643, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Towed Water Sport Gloves'),
(4644, 4644, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding'),
(4645, 4645, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding > Kiteboard & Wakeboard Bindings'),
(4646, 4646, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding > Wakeboard Parts'),
(4647, 4647, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding > Wakeboards'),
(4648, 4648, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing'),
(4649, 4649, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Sit-Down Hydrofoils'),
(4650, 4650, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Water Ski Bindings'),
(4651, 4651, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Water Ski Cases & Bags'),
(4652, 4652, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Water Skis'),
(4653, 4653, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Sport Tow Cables'),
(4654, 4654, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Watercraft Storage Racks'),
(4655, 4655, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Watercraft Storage Racks > Boat Storage Racks'),
(4656, 4656, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Watercraft Storage Racks > Water Sport Board Storage Racks'),
(4657, 4657, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing'),
(4658, 4658, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Board Parts'),
(4659, 4659, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Board Fins'),
(4660, 4660, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Board Masts'),
(4661, 4661, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Boards'),
(4662, 4662, 0, 'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Sails'),
(4663, 4663, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking'),
(4664, 4664, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture'),
(4665, 4665, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture > Air Mattress & Sleeping Pad Accessories'),
(4666, 4666, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture > Air Mattresses'),
(4667, 4667, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture > Cots'),
(4668, 4668, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Cookware & Dinnerware'),
(4669, 4669, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Lights & Lanterns'),
(4670, 4670, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Tools'),
(4671, 4671, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Tools > Hunting & Survival Knives'),
(4672, 4672, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Tools > Multifunction Tools & Knives'),
(4673, 4673, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Chemical Hand Warmers'),
(4674, 4674, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Compression Sacks'),
(4675, 4675, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Hiking Pole Accessories'),
(4676, 4676, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Hiking Poles'),
(4677, 4677, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Mosquito Nets & Insect Screens'),
(4678, 4678, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Navigational Compasses'),
(4679, 4679, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Toilets & Showers'),
(4680, 4680, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Toilets & Showers > Portable Showers & Privacy Enclosures'),
(4681, 4681, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Toilets & Showers > Portable Toilets & Urination Devices'),
(4682, 4682, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Water Filters & Purifiers'),
(4683, 4683, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Sleeping Bag Liners'),
(4684, 4684, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Sleeping Bags'),
(4685, 4685, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Sleeping Pads'),
(4686, 4686, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories'),
(4687, 4687, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Inner Tents'),
(4688, 4688, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Tent Footprints'),
(4689, 4689, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Tent Poles & Stakes'),
(4690, 4690, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Tent Vestibules'),
(4691, 4691, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tents'),
(4692, 4692, 0, 'Sporting Goods > Outdoor Recreation > Camping & Hiking > Windbreaks'),
(4693, 4693, 0, 'Sporting Goods > Outdoor Recreation > Climbing'),
(4694, 4694, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Belay Devices'),
(4695, 4695, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Carabiners'),
(4696, 4696, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories'),
(4697, 4697, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories > Climbing Gloves'),
(4698, 4698, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories > Climbing Helmets'),
(4699, 4699, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories > Crampons'),
(4700, 4700, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Ascenders & Descenders'),
(4701, 4701, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Chalk Bags'),
(4702, 4702, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Crash Pads'),
(4703, 4703, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Harnesses'),
(4704, 4704, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Protection Devices'),
(4705, 4705, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Rope'),
(4706, 4706, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Rope Bags'),
(4707, 4707, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Climbing Webbing'),
(4708, 4708, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Ice Climbing Tools'),
(4709, 4709, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Ice Screws'),
(4710, 4710, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Indoor Climbing Holds'),
(4711, 4711, 0, 'Sporting Goods > Outdoor Recreation > Climbing > Quickdraws'),
(4712, 4712, 0, 'Sporting Goods > Outdoor Recreation > Cycling'),
(4713, 4713, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories'),
(4714, 4714, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Bags & Panniers'),
(4715, 4715, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Baskets'),
(4716, 4716, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Bells & Horns'),
(4717, 4717, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Cages'),
(4718, 4718, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Child Seat Accessories'),
(4719, 4719, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Child Seats'),
(4720, 4720, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Computer Accessories'),
(4721, 4721, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Computers'),
(4722, 4722, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Covers'),
(4723, 4723, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Fenders'),
(4724, 4724, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Front & Rear Racks'),
(4725, 4725, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Handlebar Grips & Decor'),
(4726, 4726, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Locks'),
(4727, 4727, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Mirrors'),
(4728, 4728, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Pumps'),
(4729, 4729, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Saddle Pads & Seat Covers'),
(4730, 4730, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Shock Pumps'),
(4731, 4731, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Spoke Beads'),
(4732, 4732, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Stands & Storage'),
(4733, 4733, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tire Repair Supplies & Kits'),
(4734, 4734, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Toe Straps & Clips'),
(4735, 4735, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tools'),
(4736, 4736, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Trailers'),
(4737, 4737, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Trainers'),
(4738, 4738, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Training Wheels'),
(4739, 4739, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Transport Bags & Cases'),
(4740, 4740, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Water Sport Board Racks'),
(4741, 4741, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Electric Bicycle Conversion Kits'),
(4742, 4742, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(4743, 4743, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts'),
(4744, 4744, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Calipers'),
(4745, 4745, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Levers'),
(4746, 4746, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Rotors'),
(4747, 4747, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Sets'),
(4748, 4748, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Cable Housings'),
(4749, 4749, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Cables'),
(4750, 4750, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts'),
(4751, 4751, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Bottom Brackets'),
(4752, 4752, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Cassettes & Freewheels'),
(4753, 4753, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Chainrings'),
(4754, 4754, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Chains'),
(4755, 4755, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Cranks'),
(4756, 4756, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Derailleurs'),
(4757, 4757, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Pedals'),
(4758, 4758, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Shifters'),
(4759, 4759, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Forks'),
(4760, 4760, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Frames'),
(4761, 4761, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Groupsets'),
(4762, 4762, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Handlebar Extensions'),
(4763, 4763, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Handlebars'),
(4764, 4764, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts'),
(4765, 4765, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts > Bicycle Headset Bearings'),
(4766, 4766, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts > Bicycle Headset Spacers'),
(4767, 4767, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headsets'),
(4768, 4768, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Kickstands'),
(4769, 4769, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Saddles'),
(4770, 4770, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Seatpost Clamps'),
(4771, 4771, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Seatposts'),
(4772, 4772, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Small Parts'),
(4773, 4773, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Stems'),
(4774, 4774, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tire Valve Adapters'),
(4775, 4775, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tire Valve Caps'),
(4776, 4776, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tire Valves'),
(4777, 4777, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tires'),
(4778, 4778, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tubes'),
(4779, 4779, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts'),
(4780, 4780, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Foot Pegs'),
(4781, 4781, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Hub Parts'),
(4782, 4782, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Hubs'),
(4783, 4783, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Rim Strips'),
(4784, 4784, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Spokes'),
(4785, 4785, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Axles & Skewers'),
(4786, 4786, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Nipples'),
(4787, 4787, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Rims'),
(4788, 4788, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheels'),
(4789, 4789, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Bicycles'),
(4790, 4790, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories'),
(4791, 4791, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories'),
(4792, 4792, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories > Bicycle Cleat Bolts'),
(4793, 4793, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories > Bicycle Cleat Covers'),
(4794, 4794, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories > Bicycle Cleat Shims & Wedges'),
(4795, 4795, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleats'),
(4796, 4796, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Gloves'),
(4797, 4797, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Helmet Parts & Accessories'),
(4798, 4798, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Helmets'),
(4799, 4799, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Protective Pads'),
(4800, 4800, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Shoe Covers'),
(4801, 4801, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Tricycle Accessories'),
(4802, 4802, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Tricycles'),
(4803, 4803, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Unicycle Accessories'),
(4804, 4804, 0, 'Sporting Goods > Outdoor Recreation > Cycling > Unicycles'),
(4805, 4805, 0, 'Sporting Goods > Outdoor Recreation > Equestrian'),
(4806, 4806, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care'),
(4807, 4807, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Blankets & Sheets'),
(4808, 4808, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Boots & Leg Wraps'),
(4809, 4809, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Feed'),
(4810, 4810, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Fly Masks'),
(4811, 4811, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Grooming'),
(4812, 4812, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Grooming > Horse Clippers & Trimmers'),
(4813, 4813, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Grooming > Horse Grooming Combs, Brushes & Mitts'),
(4814, 4814, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Treats'),
(4815, 4815, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Vitamins & Supplements'),
(4816, 4816, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Wormers'),
(4817, 4817, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack'),
(4818, 4818, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Bridle Bits'),
(4819, 4819, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Bridles'),
(4820, 4820, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Cinches'),
(4821, 4821, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Halters'),
(4822, 4822, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Harnesses'),
(4823, 4823, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Leads'),
(4824, 4824, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Reins'),
(4825, 4825, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Saddles'),
(4826, 4826, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Stirrups'),
(4827, 4827, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories'),
(4828, 4828, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Horse Tack Boxes'),
(4829, 4829, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories'),
(4830, 4830, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Bags & Panniers'),
(4831, 4831, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Covers & Cases'),
(4832, 4832, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Pads & Blankets'),
(4833, 4833, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Racks'),
(4834, 4834, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories'),
(4835, 4835, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Equestrian Gloves'),
(4836, 4836, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Equestrian Helmets'),
(4837, 4837, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Riding Crops & Whips'),
(4838, 4838, 0, 'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Riding Pants'),
(4839, 4839, 0, 'Sporting Goods > Outdoor Recreation > Fishing'),
(4840, 4840, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Bite Alarms'),
(4841, 4841, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing & Hunting Waders'),
(4842, 4842, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Bait & Chum Containers'),
(4843, 4843, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Gaffs'),
(4844, 4844, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Hook Removal Tools'),
(4845, 4845, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Lines & Leaders'),
(4846, 4846, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Nets'),
(4847, 4847, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories'),
(4848, 4848, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories > Fishing Reel Bags & Cases'),
(4849, 4849, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories > Fishing Reel Lubricants'),
(4850, 4850, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories > Fishing Reel Replacement Spools'),
(4851, 4851, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reels'),
(4852, 4852, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rod Accessories'),
(4853, 4853, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rod Accessories > Fishing Rod Bags & Cases'),
(4854, 4854, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rod Accessories > Fishing Rod Holders & Storage Racks'),
(4855, 4855, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rods'),
(4856, 4856, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Spears'),
(4857, 4857, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle'),
(4858, 4858, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Baits & Lures'),
(4859, 4859, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Floats'),
(4860, 4860, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Hooks'),
(4861, 4861, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Sinkers'),
(4862, 4862, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Snaps & Swivels'),
(4863, 4863, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fishing Traps'),
(4864, 4864, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials'),
(4865, 4865, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials > Fishing Beads'),
(4866, 4866, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials > Fishing Yarn'),
(4867, 4867, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Live Bait'),
(4868, 4868, 0, 'Sporting Goods > Outdoor Recreation > Fishing > Tackle Bags & Boxes'),
(4869, 4869, 0, 'Sporting Goods > Outdoor Recreation > Golf'),
(4870, 4870, 0, 'Sporting Goods > Outdoor Recreation > Golf > Divot Tools'),
(4871, 4871, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Accessory Sets'),
(4872, 4872, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories'),
(4873, 4873, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories > Golf Bag Carts'),
(4874, 4874, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories > Golf Bag Covers & Cases'),
(4875, 4875, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Bags'),
(4876, 4876, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Ball Markers'),
(4877, 4877, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Balls'),
(4878, 4878, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories'),
(4879, 4879, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Grips'),
(4880, 4880, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Headcovers'),
(4881, 4881, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Shafts'),
(4882, 4882, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Clubs'),
(4883, 4883, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Flags'),
(4884, 4884, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Gloves'),
(4885, 4885, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Tees'),
(4886, 4886, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Towels'),
(4887, 4887, 0, 'Sporting Goods > Outdoor Recreation > Golf > Golf Training Aids'),
(4888, 4888, 0, 'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving'),
(4889, 4889, 0, 'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving > Air Suits'),
(4890, 4890, 0, 'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving > Hang Gliders'),
(4891, 4891, 0, 'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving > Parachutes'),
(4892, 4892, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting'),
(4893, 4893, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery'),
(4894, 4894, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Archery Armguards'),
(4895, 4895, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Archery Gloves & Releases'),
(4896, 4896, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Archery Targets'),
(4897, 4897, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories'),
(4898, 4898, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories > Arrow Fletchings'),
(4899, 4899, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories > Arrow Nocks'),
(4900, 4900, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories > Broadheads & Field Points'),
(4901, 4901, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrows & Bolts'),
(4902, 4902, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bow & Crossbow Accessories'),
(4903, 4903, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows'),
(4904, 4904, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows > Compound Bows'),
(4905, 4905, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows > Crossbows'),
(4906, 4906, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows > Recurve & Longbows'),
(4907, 4907, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Quivers'),
(4908, 4908, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Clay Pigeon Shooting'),
(4909, 4909, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Clay Pigeon Shooting > Clay Pigeon Throwers'),
(4910, 4910, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Clay Pigeon Shooting > Clay Pigeons'),
(4911, 4911, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting'),
(4912, 4912, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting & Shooting Protective Gear'),
(4913, 4913, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting & Shooting Protective Gear > Hunting & Shooting Gloves'),
(4914, 4914, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting & Shooting Protective Gear > Hunting & Shooting Jackets'),
(4915, 4915, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Animal Traps'),
(4916, 4916, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Hearing Enhancers'),
(4917, 4917, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Hunting Blinds & Screens'),
(4918, 4918, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Hunting Dog Equipment'),
(4919, 4919, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Tree Stands'),
(4920, 4920, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wild Game Feeders'),
(4921, 4921, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants'),
(4922, 4922, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Cover Scents & Scent Attractants'),
(4923, 4923, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Hunting & Wildlife Calls'),
(4924, 4924, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Hunting & Wildlife Decoys'),
(4925, 4925, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Wildlife Bait, Feed & Minerals'),
(4926, 4926, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft'),
(4927, 4927, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft'),
(4928, 4928, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Gun Parts & Accessories'),
(4929, 4929, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Gun Parts & Accessories > Airsoft Gun Batteries'),
(4930, 4930, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Guns'),
(4931, 4931, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Pellets'),
(4932, 4932, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball'),
(4933, 4933, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear'),
(4934, 4934, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Gloves'),
(4935, 4935, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Goggles & Masks'),
(4936, 4936, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Pads'),
(4937, 4937, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Vests'),
(4938, 4938, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Grenade Launchers'),
(4939, 4939, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Grenades'),
(4940, 4940, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories'),
(4941, 4941, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Air Tanks'),
(4942, 4942, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Gun Barrels'),
(4943, 4943, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Gun Drop Forwards'),
(4944, 4944, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Hoppers'),
(4945, 4945, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Guns'),
(4946, 4946, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Harnesses & Packs'),
(4947, 4947, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintballs'),
(4948, 4948, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories'),
(4949, 4949, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories > Shooting Rests'),
(4950, 4950, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories > Shooting Sticks & Bipods'),
(4951, 4951, 0, 'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories > Shooting Targets'),
(4952, 4952, 0, 'Sporting Goods > Outdoor Recreation > Hydration System Accessories'),
(4953, 4953, 0, 'Sporting Goods > Outdoor Recreation > Hydration Systems'),
(4954, 4954, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating'),
(4955, 4955, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline & Roller Skating Protective Gear'),
(4956, 4956, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline & Roller Skating Protective Gear > Roller Skating Pads'),
(4957, 4957, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline Skate Parts'),
(4958, 4958, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline Skates'),
(4959, 4959, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Roller Skate Parts'),
(4960, 4960, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Roller Skates'),
(4961, 4961, 0, 'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Roller Skis'),
(4962, 4962, 0, 'Sporting Goods > Outdoor Recreation > Kite Buggying'),
(4963, 4963, 0, 'Sporting Goods > Outdoor Recreation > Kite Buggying > Kite Buggies'),
(4964, 4964, 0, 'Sporting Goods > Outdoor Recreation > Kite Buggying > Kite Buggy Accessories'),
(4965, 4965, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games'),
(4966, 4966, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton'),
(4967, 4967, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton > Badminton Nets'),
(4968, 4968, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton > Badminton Racquets & Sets'),
(4969, 4969, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton > Shuttlecocks'),
(4970, 4970, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Deck Shuffleboard'),
(4971, 4971, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Deck Shuffleboard > Deck Shuffleboard Cues'),
(4972, 4972, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Deck Shuffleboard > Deck Shuffleboard Pucks'),
(4973, 4973, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Disc Golf'),
(4974, 4974, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Disc Golf > Disc Golf Bags'),
(4975, 4975, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Disc Golf > Disc Golf Baskets'),
(4976, 4976, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Lawn Games'),
(4977, 4977, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Paddle Ball Sets'),
(4978, 4978, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Pickleball'),
(4979, 4979, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Pickleball > Pickleball Paddles'),
(4980, 4980, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Pickleball > Pickleballs'),
(4981, 4981, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Platform & Paddle Tennis'),
(4982, 4982, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Platform & Paddle Tennis > Platform & Paddle Tennis Paddles'),
(4983, 4983, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Platform & Paddle Tennis > Platform Tennis Balls'),
(4984, 4984, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball'),
(4985, 4985, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball > Tetherball Poles'),
(4986, 4986, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball > Tetherball Sets'),
(4987, 4987, 0, 'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball > Tetherballs'),
(4988, 4988, 0, 'Sporting Goods > Outdoor Recreation > Riding Scooters'),
(4989, 4989, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding'),
(4990, 4990, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skate Rails'),
(4991, 4991, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skate Ramps'),
(4992, 4992, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts'),
(4993, 4993, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Decks'),
(4994, 4994, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Small Parts'),
(4995, 4995, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Trucks'),
(4996, 4996, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Wheels'),
(4997, 4997, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear'),
(4998, 4998, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear > Skate Helmets'),
(4999, 4999, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear > Skateboarding Gloves'),
(5000, 5000, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear > Skateboarding Pads'),
(5001, 5001, 0, 'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboards'),
(5002, 5002, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities'),
(5003, 5003, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Avalanche Safety'),
(5004, 5004, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Avalanche Safety > Avalanche Probes'),
(5005, 5005, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Avalanche Safety > Avalanche Safety Airbags'),
(5006, 5006, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding'),
(5007, 5007, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Bags'),
(5008, 5008, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Goggle Accessories'),
(5009, 5009, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Goggle Accessories > Ski & Snowboard Goggle Lenses'),
(5010, 5010, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Goggles'),
(5011, 5011, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Helmets'),
(5012, 5012, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Leashes'),
(5013, 5013, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Storage Racks'),
(5014, 5014, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Tuning Tools'),
(5015, 5015, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Wax'),
(5016, 5016, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Binding Parts'),
(5017, 5017, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Bindings'),
(5018, 5018, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Boots'),
(5019, 5019, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Poles'),
(5020, 5020, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Skis'),
(5021, 5021, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Skis > Cross-Country Skis'),
(5022, 5022, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Skis > Downhill Skis'),
(5023, 5023, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboard Binding Parts'),
(5024, 5024, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboard Bindings'),
(5025, 5025, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboard Boots'),
(5026, 5026, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboards'),
(5027, 5027, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Sleds'),
(5028, 5028, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Snowshoeing'),
(5029, 5029, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Snowshoeing > Snowshoe Bindings'),
(5030, 5030, 0, 'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Snowshoeing > Snowshoes'),
(5031, 5031, 0, 'Toys & Games'),
(5032, 5032, 0, 'Toys & Games > Game Timers'),
(5033, 5033, 0, 'Toys & Games > Games'),
(5034, 5034, 0, 'Toys & Games > Games > Battle Top Accessories'),
(5035, 5035, 0, 'Toys & Games > Games > Battle Tops'),
(5036, 5036, 0, 'Toys & Games > Games > Bingo Sets'),
(5037, 5037, 0, 'Toys & Games > Games > Blackjack & Craps Sets'),
(5038, 5038, 0, 'Toys & Games > Games > Board Games'),
(5039, 5039, 0, 'Toys & Games > Games > Card Game Accessories'),
(5040, 5040, 0, 'Toys & Games > Games > Card Games'),
(5041, 5041, 0, 'Toys & Games > Games > Dexterity Games'),
(5042, 5042, 0, 'Toys & Games > Games > Dice Sets & Games'),
(5043, 5043, 0, 'Toys & Games > Games > Poker Chip Accessories'),
(5044, 5044, 0, 'Toys & Games > Games > Poker Chip Accessories > Poker Chip Carriers & Trays'),
(5045, 5045, 0, 'Toys & Games > Games > Poker Chips & Sets'),
(5046, 5046, 0, 'Toys & Games > Games > Portable Electronic Games'),
(5047, 5047, 0, 'Toys & Games > Games > Roulette Wheels & Sets'),
(5048, 5048, 0, 'Toys & Games > Games > Slot Machines'),
(5049, 5049, 0, 'Toys & Games > Games > Tile Games'),
(5050, 5050, 0, 'Toys & Games > Outdoor Play Equipment'),
(5051, 5051, 0, 'Toys & Games > Outdoor Play Equipment > Inflatable Bouncer Accessories'),
(5052, 5052, 0, 'Toys & Games > Outdoor Play Equipment > Inflatable Bouncers'),
(5053, 5053, 0, 'Toys & Games > Outdoor Play Equipment > Play Swings'),
(5054, 5054, 0, 'Toys & Games > Outdoor Play Equipment > Play Tents & Tunnels'),
(5055, 5055, 0, 'Toys & Games > Outdoor Play Equipment > Playhouses'),
(5056, 5056, 0, 'Toys & Games > Outdoor Play Equipment > Pogo Sticks'),
(5057, 5057, 0, 'Toys & Games > Outdoor Play Equipment > Sandboxes'),
(5058, 5058, 0, 'Toys & Games > Outdoor Play Equipment > See Saws'),
(5059, 5059, 0, 'Toys & Games > Outdoor Play Equipment > Slides'),
(5060, 5060, 0, 'Toys & Games > Outdoor Play Equipment > Stilts'),
(5061, 5061, 0, 'Toys & Games > Outdoor Play Equipment > Swing Set & Playset Accessories'),
(5062, 5062, 0, 'Toys & Games > Outdoor Play Equipment > Swing Sets & Playsets'),
(5063, 5063, 0, 'Toys & Games > Outdoor Play Equipment > Trampoline Accessories'),
(5064, 5064, 0, 'Toys & Games > Outdoor Play Equipment > Trampolines'),
(5065, 5065, 0, 'Toys & Games > Outdoor Play Equipment > Water Play Equipment'),
(5066, 5066, 0, 'Toys & Games > Outdoor Play Equipment > Water Play Equipment > Play Sprinkers'),
(5067, 5067, 0, 'Toys & Games > Outdoor Play Equipment > Water Play Equipment > Water Parks & Slides'),
(5068, 5068, 0, 'Toys & Games > Outdoor Play Equipment > Water Play Equipment > Water Tables'),
(5069, 5069, 0, 'Toys & Games > Puzzles'),
(5070, 5070, 0, 'Toys & Games > Puzzles > Jigsaw Puzzle Accessories'),
(5071, 5071, 0, 'Toys & Games > Puzzles > Jigsaw Puzzles'),
(5072, 5072, 0, 'Toys & Games > Puzzles > Mechanical Puzzles'),
(5073, 5073, 0, 'Toys & Games > Puzzles > Wooden & Pegged Puzzles'),
(5074, 5074, 0, 'Toys & Games > Toys'),
(5075, 5075, 0, 'Toys & Games > Toys > Activity Toys'),
(5076, 5076, 0, 'Toys & Games > Toys > Activity Toys > Ball & Cup Games'),
(5077, 5077, 0, 'Toys & Games > Toys > Activity Toys > Bouncy Balls'),
(5078, 5078, 0, 'Toys & Games > Toys > Activity Toys > Bubble Blowing Solution'),
(5079, 5079, 0, 'Toys & Games > Toys > Activity Toys > Bubble Blowing Toys'),
(5080, 5080, 0, 'Toys & Games > Toys > Activity Toys > Coiled Spring Toys'),
(5081, 5081, 0, 'Toys & Games > Toys > Activity Toys > Marbles'),
(5082, 5082, 0, 'Toys & Games > Toys > Activity Toys > Paddle Ball Toys'),
(5083, 5083, 0, 'Toys & Games > Toys > Activity Toys > Ribbon & Streamer Toys'),
(5084, 5084, 0, 'Toys & Games > Toys > Activity Toys > Spinning Tops'),
(5085, 5085, 0, 'Toys & Games > Toys > Activity Toys > Toy Jacks'),
(5086, 5086, 0, 'Toys & Games > Toys > Activity Toys > Yo-Yo Parts & Accessories'),
(5087, 5087, 0, 'Toys & Games > Toys > Activity Toys > Yo-Yos'),
(5088, 5088, 0, 'Toys & Games > Toys > Art & Drawing Toys'),
(5089, 5089, 0, 'Toys & Games > Toys > Art & Drawing Toys > Play Dough & Putty'),
(5090, 5090, 0, 'Toys & Games > Toys > Art & Drawing Toys > Toy Drawing Tablets'),
(5091, 5091, 0, 'Toys & Games > Toys > Ball Pit Accessories'),
(5092, 5092, 0, 'Toys & Games > Toys > Ball Pit Accessories > Ball Pit Balls'),
(5093, 5093, 0, 'Toys & Games > Toys > Ball Pits'),
(5094, 5094, 0, 'Toys & Games > Toys > Bath Toys'),
(5095, 5095, 0, 'Toys & Games > Toys > Beach & Sand Toys'),
(5096, 5096, 0, 'Toys & Games > Toys > Building Toys'),
(5097, 5097, 0, 'Toys & Games > Toys > Building Toys > Construction Set Toys'),
(5098, 5098, 0, 'Toys & Games > Toys > Building Toys > Foam Blocks'),
(5099, 5099, 0, 'Toys & Games > Toys > Building Toys > Interlocking Blocks'),
(5100, 5100, 0, 'Toys & Games > Toys > Building Toys > Marble Track Sets'),
(5101, 5101, 0, 'Toys & Games > Toys > Building Toys > Wooden Blocks'),
(5102, 5102, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures'),
(5103, 5103, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures'),
(5104, 5104, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Bobblehead Figures'),
(5105, 5105, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Doll & Action Figure Accessories'),
(5106, 5106, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dollhouse Accessories'),
(5107, 5107, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dollhouses'),
(5108, 5108, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dolls'),
(5109, 5109, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Paper & Magnetic Dolls'),
(5110, 5110, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppet & Puppet Theater Accessories'),
(5111, 5111, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppet Theaters'),
(5112, 5112, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppets & Marionettes'),
(5113, 5113, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Stuffed Animals'),
(5114, 5114, 0, 'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Toy Playsets'),
(5115, 5115, 0, 'Toys & Games > Toys > Educational Toys'),
(5116, 5116, 0, 'Toys & Games > Toys > Educational Toys > Ant Farms'),
(5117, 5117, 0, 'Toys & Games > Toys > Educational Toys > Astronomy Toys & Models'),
(5118, 5118, 0, 'Toys & Games > Toys > Educational Toys > Bug Collecting Kits'),
(5119, 5119, 0, 'Toys & Games > Toys > Educational Toys > Educational Flash Cards'),
(5120, 5120, 0, 'Toys & Games > Toys > Educational Toys > Reading Toys'),
(5121, 5121, 0, 'Toys & Games > Toys > Educational Toys > Science & Exploration Sets'),
(5122, 5122, 0, 'Toys & Games > Toys > Educational Toys > Toy Abacuses'),
(5123, 5123, 0, 'Toys & Games > Toys > Executive Toys'),
(5124, 5124, 0, 'Toys & Games > Toys > Executive Toys > Magnet Toys'),
(5125, 5125, 0, 'Toys & Games > Toys > Flying Toy Accessories'),
(5126, 5126, 0, 'Toys & Games > Toys > Flying Toy Accessories > Kite Accessories'),
(5127, 5127, 0, 'Toys & Games > Toys > Flying Toy Accessories > Kite Accessories > Kite Line Reels & Winders'),
(5128, 5128, 0, 'Toys & Games > Toys > Flying Toys'),
(5129, 5129, 0, 'Toys & Games > Toys > Flying Toys > Air & Water Rockets'),
(5130, 5130, 0, 'Toys & Games > Toys > Flying Toys > Kites'),
(5131, 5131, 0, 'Toys & Games > Toys > Flying Toys > Toy Gliders'),
(5132, 5132, 0, 'Toys & Games > Toys > Flying Toys > Toy Parachutes'),
(5133, 5133, 0, 'Toys & Games > Toys > Musical Toys'),
(5134, 5134, 0, 'Toys & Games > Toys > Musical Toys > Toy Instruments'),
(5135, 5135, 0, 'Toys & Games > Toys > Play Vehicle Accessories'),
(5136, 5136, 0, 'Toys & Games > Toys > Play Vehicle Accessories > Toy Race Car & Track Accessories'),
(5137, 5137, 0, 'Toys & Games > Toys > Play Vehicle Accessories > Toy Train Accessories'),
(5138, 5138, 0, 'Toys & Games > Toys > Play Vehicles'),
(5139, 5139, 0, 'Toys & Games > Toys > Play Vehicles > Toy Airplanes'),
(5140, 5140, 0, 'Toys & Games > Toys > Play Vehicles > Toy Boats'),
(5141, 5141, 0, 'Toys & Games > Toys > Play Vehicles > Toy Cars'),
(5142, 5142, 0, 'Toys & Games > Toys > Play Vehicles > Toy Helicopters'),
(5143, 5143, 0, 'Toys & Games > Toys > Play Vehicles > Toy Motorcycles'),
(5144, 5144, 0, 'Toys & Games > Toys > Play Vehicles > Toy Race Car & Track Sets'),
(5145, 5145, 0, 'Toys & Games > Toys > Play Vehicles > Toy Spaceships'),
(5146, 5146, 0, 'Toys & Games > Toys > Play Vehicles > Toy Trains & Train Sets'),
(5147, 5147, 0, 'Toys & Games > Toys > Play Vehicles > Toy Trucks & Construction Vehicles'),
(5148, 5148, 0, 'Toys & Games > Toys > Pretend Play'),
(5149, 5149, 0, 'Toys & Games > Toys > Pretend Play > Play Money & Banking'),
(5150, 5150, 0, 'Toys & Games > Toys > Pretend Play > Pretend Electronics'),
(5151, 5151, 0, 'Toys & Games > Toys > Pretend Play > Pretend Housekeeping'),
(5152, 5152, 0, 'Toys & Games > Toys > Pretend Play > Pretend Lawn & Garden'),
(5153, 5153, 0, 'Toys & Games > Toys > Pretend Play > Pretend Professions & Role Playing'),
(5154, 5154, 0, 'Toys & Games > Toys > Pretend Play > Pretend Shopping & Grocery'),
(5155, 5155, 0, 'Toys & Games > Toys > Pretend Play > Toy Kitchens & Play Food'),
(5156, 5156, 0, 'Toys & Games > Toys > Pretend Play > Toy Tools'),
(5157, 5157, 0, 'Toys & Games > Toys > Remote Control Toy Accessories'),
(5158, 5158, 0, 'Toys & Games > Toys > Remote Control Toys'),
(5159, 5159, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Airships & Blimps'),
(5160, 5160, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Boats & Watercraft'),
(5161, 5161, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Cars & Trucks'),
(5162, 5162, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Helicopters'),
(5163, 5163, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Motorcycles'),
(5164, 5164, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Planes'),
(5165, 5165, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Robots'),
(5166, 5166, 0, 'Toys & Games > Toys > Remote Control Toys > Remote Control Tanks'),
(5167, 5167, 0, 'Toys & Games > Toys > Riding Toy Accessories'),
(5168, 5168, 0, 'Toys & Games > Toys > Riding Toys'),
(5169, 5169, 0, 'Toys & Games > Toys > Riding Toys > Electric Riding Vehicles'),
(5170, 5170, 0, 'Toys & Games > Toys > Riding Toys > Hobby Horses'),
(5171, 5171, 0, 'Toys & Games > Toys > Riding Toys > Push & Pedal Riding Vehicles'),
(5172, 5172, 0, 'Toys & Games > Toys > Riding Toys > Rocking & Spring Riding Toys'),
(5173, 5173, 0, 'Toys & Games > Toys > Riding Toys > Wagons'),
(5174, 5174, 0, 'Toys & Games > Toys > Robotic Toys'),
(5175, 5175, 0, 'Toys & Games > Toys > Sports Toy Accessories'),
(5176, 5176, 0, 'Toys & Games > Toys > Sports Toy Accessories > Fitness Toy Accessories'),
(5177, 5177, 0, 'Toys & Games > Toys > Sports Toy Accessories > Fitness Toy Accessories > Hula Hoop Accessories'),
(5178, 5178, 0, 'Toys & Games > Toys > Sports Toys'),
(5179, 5179, 0, 'Toys & Games > Toys > Sports Toys > Baseball Toys'),
(5180, 5180, 0, 'Toys & Games > Toys > Sports Toys > Basketball Toys'),
(5181, 5181, 0, 'Toys & Games > Toys > Sports Toys > Boomerangs'),
(5182, 5182, 0, 'Toys & Games > Toys > Sports Toys > Bowling Toys'),
(5183, 5183, 0, 'Toys & Games > Toys > Sports Toys > Fingerboards & Fingerboard Sets'),
(5184, 5184, 0, 'Toys & Games > Toys > Sports Toys > Fishing Toys'),
(5185, 5185, 0, 'Toys & Games > Toys > Sports Toys > Fitness Toys'),
(5186, 5186, 0, 'Toys & Games > Toys > Sports Toys > Fitness Toys > Hula Hoops'),
(5187, 5187, 0, 'Toys & Games > Toys > Sports Toys > Flying Discs'),
(5188, 5188, 0, 'Toys & Games > Toys > Sports Toys > Footbags'),
(5189, 5189, 0, 'Toys & Games > Toys > Sports Toys > Golf Toys'),
(5190, 5190, 0, 'Toys & Games > Toys > Sports Toys > Hockey Toys'),
(5191, 5191, 0, 'Toys & Games > Toys > Sports Toys > Playground Balls'),
(5192, 5192, 0, 'Toys & Games > Toys > Sports Toys > Racquet Sport Toys'),
(5193, 5193, 0, 'Toys & Games > Toys > Sports Toys > Toy Footballs'),
(5194, 5194, 0, 'Toys & Games > Toys > Toy Gift Baskets'),
(5195, 5195, 0, 'Toys & Games > Toys > Toy Weapon & Gadget Accessories'),
(5196, 5196, 0, 'Toys & Games > Toys > Toy Weapons & Gadgets'),
(5197, 5197, 0, 'Toys & Games > Toys > Visual Toys'),
(5198, 5198, 0, 'Toys & Games > Toys > Visual Toys > Kaleidoscopes'),
(5199, 5199, 0, 'Toys & Games > Toys > Visual Toys > Prisms'),
(5200, 5200, 0, 'Toys & Games > Toys > Wind-Up Toys'),
(5201, 5201, 0, 'Vehicles & Parts'),
(5202, 5202, 0, 'Vehicles & Parts > Vehicle Parts & Accessories'),
(5203, 5203, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Aircraft Parts & Accessories'),
(5204, 5204, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics'),
(5205, 5205, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle A/V Players & In-Dash Systems'),
(5206, 5206, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Amplifiers'),
(5207, 5207, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Cassette Adapters'),
(5208, 5208, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Cassette Players'),
(5209, 5209, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Equalizers & Crossovers'),
(5210, 5210, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Parking Cameras'),
(5211, 5211, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Speakerphones'),
(5212, 5212, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Speakers'),
(5213, 5213, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Subwoofers'),
(5214, 5214, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Video Monitor Mounts'),
(5215, 5215, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts'),
(5216, 5216, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Braking'),
(5217, 5217, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Carpet & Upholstery'),
(5218, 5218, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control'),
(5219, 5219, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Controls'),
(5220, 5220, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Oil Circulation'),
(5221, 5221, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts'),
(5222, 5222, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engines'),
(5223, 5223, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust'),
(5224, 5224, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Frame & Body Parts'),
(5225, 5225, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems'),
(5226, 5226, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Interior Fittings'),
(5227, 5227, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting'),
(5228, 5228, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Mirrors'),
(5229, 5229, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Power & Electrical Systems'),
(5230, 5230, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Seating'),
(5231, 5231, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Sensors & Gauges'),
(5232, 5232, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Suspension Parts'),
(5233, 5233, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Towing'),
(5234, 5234, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Transmission & Drivetrain Parts'),
(5235, 5235, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems'),
(5236, 5236, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels'),
(5237, 5237, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Automotive Rims & Wheels'),
(5238, 5238, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Motorcycle Rims & Wheels'),
(5239, 5239, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Off-Road and All-Terrain Vehicle Rims & Wheels'),
(5240, 5240, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tire Accessories'),
(5241, 5241, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires'),
(5242, 5242, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Automotive Tires'),
(5243, 5243, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Motorcycle Tires'),
(5244, 5244, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Off-Road and All-Terrain Vehicle Tires'),
(5245, 5245, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Wheel Parts'),
(5246, 5246, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Window Parts & Accessories'),
(5247, 5247, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor'),
(5248, 5248, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Portable Fuel Cans'),
(5249, 5249, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning'),
(5250, 5250, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Car Wash Brushes'),
(5251, 5251, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Car Wash Solutions');
INSERT INTO `eav_attribute_option_value` (`value_id`, `option_id`, `store_id`, `value`) VALUES
(5252, 5252, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Carpet & Upholstery Cleaners'),
(5253, 5253, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Fuel Injection Cleaning Kits'),
(5254, 5254, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Glass Cleaners'),
(5255, 5255, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Waxes, Polishes & Protectants'),
(5256, 5256, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers'),
(5257, 5257, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Golf Cart Enclosures'),
(5258, 5258, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Motor Vehicle Windshield Covers'),
(5259, 5259, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Tonneau Covers'),
(5260, 5260, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Hardtops'),
(5261, 5261, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Soft Tops'),
(5262, 5262, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers'),
(5263, 5263, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Automotive Storage Covers'),
(5264, 5264, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Golf Cart Storage Covers'),
(5265, 5265, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Motorcycle Storage Covers'),
(5266, 5266, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Recreational Vehicle Storage Covers'),
(5267, 5267, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Watercraft Storage Covers'),
(5268, 5268, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor'),
(5269, 5269, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Bumper Stickers'),
(5270, 5270, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Air Fresheners'),
(5271, 5271, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Antenna Balls'),
(5272, 5272, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Dashboard Accessories'),
(5273, 5273, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Decals'),
(5274, 5274, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Decor Accessory Sets'),
(5275, 5275, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Display Flags'),
(5276, 5276, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Emblems & Hood Ornaments'),
(5277, 5277, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Hitch Covers'),
(5278, 5278, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plate Covers'),
(5279, 5279, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plate Frames'),
(5280, 5280, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plate Mounts & Holders'),
(5281, 5281, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plates'),
(5282, 5282, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Magnets'),
(5283, 5283, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Rear View Mirror Ornaments'),
(5284, 5284, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Shift Boots'),
(5285, 5285, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Shift Knobs'),
(5286, 5286, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Steering Wheel Covers'),
(5287, 5287, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Wraps'),
(5288, 5288, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids'),
(5289, 5289, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Antifreeze'),
(5290, 5290, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Brake Fluid'),
(5291, 5291, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Cooling System Additives'),
(5292, 5292, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Engine Degreasers'),
(5293, 5293, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Fuel System Cleaners'),
(5294, 5294, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Greases'),
(5295, 5295, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Hydraulic Clutch Fluid'),
(5296, 5296, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Motor Oil'),
(5297, 5297, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Performance Additives'),
(5298, 5298, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Power Steering Fluid'),
(5299, 5299, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Transmission Fluid'),
(5300, 5300, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Windshield Fluid'),
(5301, 5301, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Paint'),
(5302, 5302, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Paint > Motor Vehicle Body Paint'),
(5303, 5303, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Paint > Motor Vehicle Brake Caliper Paint'),
(5304, 5304, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools'),
(5305, 5305, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Motor Vehicle Brake Service Kits'),
(5306, 5306, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Motor Vehicle Clutch Alignment & Removal Tools'),
(5307, 5307, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Battery Chargers'),
(5308, 5308, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Battery Testers'),
(5309, 5309, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Body Filler'),
(5310, 5310, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Diagnostic Scanners'),
(5311, 5311, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Jump Starters'),
(5312, 5312, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Jumper Cables'),
(5313, 5313, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Tire Repair & Tire Changing Tools'),
(5314, 5314, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Windshield Repair Kits'),
(5315, 5315, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security'),
(5316, 5316, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear'),
(5317, 5317, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Chest & Back Protectors'),
(5318, 5318, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Elbow & Wrist Guards'),
(5319, 5319, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Gloves'),
(5320, 5320, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Goggles'),
(5321, 5321, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Hand Guards'),
(5322, 5322, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Helmet Parts & Accessories'),
(5323, 5323, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Helmets'),
(5324, 5324, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Kidney Belts'),
(5325, 5325, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Knee & Shin Guards'),
(5326, 5326, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Neck Braces'),
(5327, 5327, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Off-Road & All-Terrain Vehicle Protective Gear'),
(5328, 5328, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Off-Road & All-Terrain Vehicle Protective Gear > ATV & UTV Bar Pads'),
(5329, 5329, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks'),
(5330, 5330, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Automotive Alarm Accessories'),
(5331, 5331, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Automotive Alarm Systems'),
(5332, 5332, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Motorcycle Alarms & Locks'),
(5333, 5333, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts'),
(5334, 5334, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts > Vehicle Door Lock Actuators'),
(5335, 5335, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts > Vehicle Door Lock Knobs'),
(5336, 5336, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts > Vehicle Door Locks & Locking Systems'),
(5337, 5337, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Hitch Locks'),
(5338, 5338, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Immobilizers'),
(5339, 5339, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Remote Keyless Systems'),
(5340, 5340, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Steering Wheel Locks'),
(5341, 5341, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Wheel Clamps'),
(5342, 5342, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment'),
(5343, 5343, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Car Window Nets'),
(5344, 5344, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Emergency Road Flares'),
(5345, 5345, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Motor Vehicle Airbag Parts'),
(5346, 5346, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Motor Vehicle Roll Cages & Bars'),
(5347, 5347, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belt Buckles'),
(5348, 5348, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belt Covers'),
(5349, 5349, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belt Straps'),
(5350, 5350, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belts'),
(5351, 5351, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Warning Whips'),
(5352, 5352, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Wheel Chocks'),
(5353, 5353, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo'),
(5354, 5354, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Cargo Nets'),
(5355, 5355, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Rack Accessories'),
(5356, 5356, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Rack Accessories > Vehicle Bicycle Rack Accessories'),
(5357, 5357, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Rack Accessories > Vehicle Ski & Snowboard Rack Accessories'),
(5358, 5358, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks'),
(5359, 5359, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Base Rack Systems'),
(5360, 5360, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Bicycle Racks'),
(5361, 5361, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Boat Racks'),
(5362, 5362, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Cargo Racks'),
(5363, 5363, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Fishing Rod Racks'),
(5364, 5364, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Gun Racks'),
(5365, 5365, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Motorcycle & Scooter Racks'),
(5366, 5366, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Ski & Snowboard Racks'),
(5367, 5367, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Water Sport Board Racks'),
(5368, 5368, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Loading Ramps'),
(5369, 5369, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers'),
(5370, 5370, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Boat Trailers'),
(5371, 5371, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Horse & Livestock Trailers'),
(5372, 5372, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Travel Trailers'),
(5373, 5373, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Utility & Cargo Trailers'),
(5374, 5374, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motorcycle Bags & Panniers'),
(5375, 5375, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Truck Bed Storage Boxes & Organizers'),
(5376, 5376, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Vehicle Headrest Hangers & Hooks'),
(5377, 5377, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Vehicle Organizers'),
(5378, 5378, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories'),
(5379, 5379, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring'),
(5380, 5380, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Chains'),
(5381, 5381, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Lines & Ropes'),
(5382, 5382, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Windlasses'),
(5383, 5383, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchors'),
(5384, 5384, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Boat Hooks'),
(5385, 5385, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Boat Ladders'),
(5386, 5386, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Dock Cleats'),
(5387, 5387, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Dock Steps'),
(5388, 5388, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Sailboat Parts'),
(5389, 5389, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care'),
(5390, 5390, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Cleaners'),
(5391, 5391, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Polishes'),
(5392, 5392, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts'),
(5393, 5393, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Alternators'),
(5394, 5394, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Carburetors & Parts'),
(5395, 5395, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Engine Controls'),
(5396, 5396, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Ignition Parts'),
(5397, 5397, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Impellers'),
(5398, 5398, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Motor Locks'),
(5399, 5399, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Motor Mounts'),
(5400, 5400, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Pistons & Parts'),
(5401, 5401, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Propellers'),
(5402, 5402, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engines & Motors'),
(5403, 5403, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts'),
(5404, 5404, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts > Watercraft Manifolds'),
(5405, 5405, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts > Watercraft Mufflers & Parts'),
(5406, 5406, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems'),
(5407, 5407, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Lines & Parts'),
(5408, 5408, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Meters'),
(5409, 5409, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Pumps & Parts'),
(5410, 5410, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Tanks & Parts'),
(5411, 5411, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Lighting'),
(5412, 5412, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts'),
(5413, 5413, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts > Watercraft Steering Cables'),
(5414, 5414, 0, 'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts > Watercraft Steering Wheels'),
(5415, 5415, 0, 'Vehicles & Parts > Vehicles'),
(5416, 5416, 0, 'Vehicles & Parts > Vehicles > Aircraft'),
(5417, 5417, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles'),
(5418, 5418, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Cars, Trucks & Vans'),
(5419, 5419, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Golf Carts'),
(5420, 5420, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Motorcycles & Scooters'),
(5421, 5421, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Off-Road and All-Terrain Vehicles'),
(5422, 5422, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Off-Road and All-Terrain Vehicles > ATVs & UTVs'),
(5423, 5423, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Off-Road and All-Terrain Vehicles > Go Karts & Dune Buggies'),
(5424, 5424, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Recreational Vehicles'),
(5425, 5425, 0, 'Vehicles & Parts > Vehicles > Motor Vehicles > Snowmobiles'),
(5426, 5426, 0, 'Vehicles & Parts > Vehicles > Watercraft'),
(5427, 5427, 0, 'Vehicles & Parts > Vehicles > Watercraft > Motor Boats'),
(5428, 5428, 0, 'Vehicles & Parts > Vehicles > Watercraft > Personal Watercraft'),
(5429, 5429, 0, 'Vehicles & Parts > Vehicles > Watercraft > Sailboats'),
(5430, 5430, 0, 'Vehicles & Parts > Vehicles > Watercraft > Yachts');

-- --------------------------------------------------------

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

CREATE TABLE `eav_attribute_set` (
  `attribute_set_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Set';

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

INSERT INTO `eav_attribute_set` (`attribute_set_id`, `entity_type_id`, `attribute_set_name`, `sort_order`) 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);

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity';

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_attribute` (
  `entity_attribute_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Attributes';

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

INSERT INTO `eav_entity_attribute` (`entity_attribute_id`, `entity_type_id`, `attribute_set_id`, `attribute_group_id`, `attribute_id`, `sort_order`) 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, 80),
(30, 2, 2, 2, 30, 90),
(31, 2, 2, 2, 31, 100),
(32, 2, 2, 2, 32, 100),
(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, 90),
(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, 19, 129, 10),
(128, 4, 4, 7, 130, 115),
(129, 4, 4, 7, 131, 31),
(130, 4, 4, 7, 132, 21),
(131, 4, 4, 7, 133, 71),
(132, 4, 4, 8, 134, 11),
(133, 4, 4, 20, 135, 1),
(134, 4, 4, 10, 136, 3),
(135, 4, 4, 7, 137, 40);

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_datetime` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_decimal` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_int` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_store` (
  `entity_store_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Store';

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_text` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_type` (
  `entity_type_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Type';

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

INSERT INTO `eav_entity_type` (`entity_type_id`, `entity_type_code`, `entity_model`, `attribute_model`, `entity_table`, `value_table_prefix`, `entity_id_field`, `is_data_sharing`, `data_sharing_key`, `default_attribute_set_id`, `increment_model`, `increment_per_store`, `increment_pad_length`, `increment_pad_char`, `additional_attribute_table`, `entity_attribute_collection`) 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);

-- --------------------------------------------------------

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

CREATE TABLE `eav_entity_varchar` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';

-- --------------------------------------------------------

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

CREATE TABLE `eav_form_element` (
  `element_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Element';

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

INSERT INTO `eav_form_element` (`element_id`, `type_id`, `fieldset_id`, `attribute_id`, `sort_order`) 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);

-- --------------------------------------------------------

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

CREATE TABLE `eav_form_fieldset` (
  `fieldset_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset';

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset Label';

-- --------------------------------------------------------

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

CREATE TABLE `eav_form_type` (
  `type_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Type';

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

INSERT INTO `eav_form_type` (`type_id`, `code`, `label`, `is_system`, `theme`, `store_id`) 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);

-- --------------------------------------------------------

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

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Type Entity';

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

INSERT INTO `eav_form_type_entity` (`type_id`, `entity_type_id`) VALUES
(1, 1),
(1, 2),
(2, 1),
(2, 2),
(3, 2),
(4, 2);

-- --------------------------------------------------------

--
-- Table structure for table `email_abandoned_cart`
--

CREATE TABLE `email_abandoned_cart` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `quote_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Quote Id',
  `store_id` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Store Id',
  `customer_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Customer ID',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'Email',
  `status` varchar(255) NOT NULL DEFAULT '' COMMENT 'Contact Status',
  `is_active` smallint(5) UNSIGNED NOT NULL DEFAULT 1 COMMENT 'Quote Active',
  `quote_updated_at` timestamp NULL DEFAULT NULL COMMENT 'Quote updated at',
  `abandoned_cart_number` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Abandoned Cart number',
  `items_count` smallint(5) UNSIGNED DEFAULT 0 COMMENT 'Quote items count',
  `items_ids` varchar(255) DEFAULT NULL COMMENT 'Quote item ids',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated at'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Abandoned Carts Table';

-- --------------------------------------------------------

--
-- Table structure for table `email_automation`
--

CREATE TABLE `email_automation` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `automation_type` varchar(255) DEFAULT NULL COMMENT 'Automation Type',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Automation Type',
  `enrolment_status` varchar(255) NOT NULL COMMENT 'Enrolment Status',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `type_id` varchar(255) DEFAULT NULL COMMENT 'Type ID',
  `program_id` varchar(255) DEFAULT NULL COMMENT 'Program ID',
  `website_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Website Id',
  `message` varchar(255) NOT NULL COMMENT 'Message',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Automation Status';

-- --------------------------------------------------------

--
-- Table structure for table `email_campaign`
--

CREATE TABLE `email_campaign` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `campaign_id` int(10) UNSIGNED NOT NULL COMMENT 'Campaign ID',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'Contact Email',
  `customer_id` int(10) UNSIGNED NOT NULL COMMENT 'Customer ID',
  `sent_at` timestamp NULL DEFAULT NULL COMMENT 'Send Date',
  `order_increment_id` varchar(50) NOT NULL COMMENT 'Order Increment ID',
  `quote_id` int(10) UNSIGNED NOT NULL COMMENT 'Sales Quote ID',
  `message` varchar(255) NOT NULL DEFAULT '' COMMENT 'Error Message',
  `checkout_method` varchar(255) NOT NULL DEFAULT '' COMMENT 'Checkout Method Used',
  `store_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `event_name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Event Name',
  `send_id` varchar(255) NOT NULL DEFAULT '' COMMENT 'Send Id',
  `send_status` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Campaign send status',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Campaigns';

-- --------------------------------------------------------

--
-- Table structure for table `email_catalog`
--

CREATE TABLE `email_catalog` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `product_id` int(10) UNSIGNED NOT NULL COMMENT 'Product Id',
  `imported` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Product imported [deprecated]',
  `modified` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Product modified [deprecated]',
  `processed` smallint(5) UNSIGNED NOT NULL COMMENT 'Product processed',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  `last_imported_at` timestamp NULL DEFAULT NULL COMMENT 'Last imported date'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Catalog';

-- --------------------------------------------------------

--
-- Table structure for table `email_contact`
--

CREATE TABLE `email_contact` (
  `email_contact_id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `is_guest` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Is Guest',
  `contact_id` varchar(15) DEFAULT NULL COMMENT 'Connector Contact ID',
  `customer_id` int(10) UNSIGNED NOT NULL COMMENT 'Customer ID',
  `website_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `store_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'Customer Email',
  `is_subscriber` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Is Subscriber',
  `subscriber_status` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Subscriber status',
  `email_imported` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Is Imported',
  `subscriber_imported` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Is Subscriber Imported',
  `suppressed` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Is Suppressed',
  `last_subscribed_at` timestamp NULL DEFAULT NULL COMMENT 'Last time user subscribed'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Contacts';

-- --------------------------------------------------------

--
-- Table structure for table `email_contact_consent`
--

CREATE TABLE `email_contact_consent` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `email_contact_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Email Contact Id',
  `consent_url` varchar(255) DEFAULT NULL COMMENT 'Contact consent url',
  `consent_datetime` datetime DEFAULT NULL COMMENT 'Contact consent datetime',
  `consent_ip` varchar(255) DEFAULT NULL COMMENT 'Contact consent ip',
  `consent_user_agent` varchar(255) DEFAULT NULL COMMENT 'Contact consent user agent'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email contact consent table.';

-- --------------------------------------------------------

--
-- Table structure for table `email_coupon_attribute`
--

CREATE TABLE `email_coupon_attribute` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `salesrule_coupon_id` int(10) UNSIGNED NOT NULL COMMENT 'Coupon ID',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Coupon expiration date'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Dotdigital coupon attributes table';

-- --------------------------------------------------------

--
-- Table structure for table `email_failed_auth`
--

CREATE TABLE `email_failed_auth` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `failures_num` int(10) UNSIGNED DEFAULT NULL COMMENT 'Number of fails',
  `first_attempt_date` datetime DEFAULT NULL COMMENT 'First attempt date',
  `last_attempt_date` datetime DEFAULT NULL COMMENT 'Last attempt date',
  `url` varchar(255) DEFAULT NULL COMMENT 'URL',
  `store_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Store Id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Failed Auth Table.';

-- --------------------------------------------------------

--
-- Table structure for table `email_importer`
--

CREATE TABLE `email_importer` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `import_type` varchar(255) NOT NULL DEFAULT '' COMMENT 'Import Type',
  `website_id` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Website Id',
  `import_status` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Import Status',
  `import_id` varchar(255) NOT NULL DEFAULT '' COMMENT 'Import Id',
  `import_data` mediumblob NOT NULL DEFAULT '' COMMENT 'Import Data',
  `import_mode` varchar(255) NOT NULL DEFAULT '' COMMENT 'Import Mode',
  `import_file` text NOT NULL DEFAULT '' COMMENT 'Import File',
  `message` varchar(255) NOT NULL DEFAULT '' COMMENT 'Error Message',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  `import_started` timestamp NULL DEFAULT NULL COMMENT 'Import Started',
  `import_finished` timestamp NULL DEFAULT NULL COMMENT 'Import Finished'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Importer';

-- --------------------------------------------------------

--
-- Table structure for table `email_order`
--

CREATE TABLE `email_order` (
  `email_order_id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'Order ID',
  `order_status` varchar(255) NOT NULL COMMENT 'Order Status',
  `quote_id` int(10) UNSIGNED NOT NULL COMMENT 'Sales Quote ID',
  `store_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `email_imported` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Is Order Imported',
  `modified` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Is Order Modified',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Transactional Order Data';

-- --------------------------------------------------------

--
-- Table structure for table `email_review`
--

CREATE TABLE `email_review` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `review_id` int(10) UNSIGNED NOT NULL COMMENT 'Review Id',
  `customer_id` int(10) UNSIGNED NOT NULL COMMENT 'Customer ID',
  `store_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Store Id',
  `review_imported` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Review Imported',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Reviews';

-- --------------------------------------------------------

--
-- Table structure for table `email_rules`
--

CREATE TABLE `email_rules` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Rule Name',
  `website_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `type` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Rule Type',
  `status` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Status',
  `combination` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Rule Condition',
  `conditions` blob NOT NULL COMMENT 'Rule Conditions',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Rules';

-- --------------------------------------------------------

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

CREATE TABLE `email_template` (
  `template_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Templates';

-- --------------------------------------------------------

--
-- Table structure for table `email_wishlist`
--

CREATE TABLE `email_wishlist` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Primary Key',
  `wishlist_id` int(10) UNSIGNED NOT NULL COMMENT 'Wishlist Id',
  `item_count` int(10) UNSIGNED NOT NULL COMMENT 'Item Count',
  `customer_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Customer ID',
  `store_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Store Id',
  `wishlist_imported` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Wishlist Imported',
  `wishlist_modified` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Wishlist Modified',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Wishlist';

-- --------------------------------------------------------

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

CREATE TABLE `flag` (
  `flag_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Flag';

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

INSERT INTO `flag` (`flag_id`, `flag_code`, `state`, `flag_data`, `last_update`) VALUES
(1, 'analytics_link_attempts_reverse_counter', 0, '24', '2020-09-16 04:50:14');

-- --------------------------------------------------------

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

CREATE TABLE `gift_message` (
  `gift_message_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Gift Message';

-- --------------------------------------------------------

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

CREATE TABLE `googleoptimizer_code` (
  `code_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Experiment code';

-- --------------------------------------------------------

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

CREATE TABLE `importexport_importdata` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'ID',
  `entity` varchar(50) NOT NULL COMMENT 'Entity',
  `behavior` varchar(10) NOT NULL DEFAULT 'append' COMMENT 'Behavior',
  `data` longtext DEFAULT NULL COMMENT 'Data'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import Data Table';

-- --------------------------------------------------------

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

CREATE TABLE `import_history` (
  `history_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import history table';

-- --------------------------------------------------------

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

CREATE TABLE `indexer_state` (
  `state_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Indexer State';

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

INSERT INTO `indexer_state` (`state_id`, `indexer_id`, `status`, `updated`, `hash_config`) VALUES
(1, 'design_config_grid', 'valid', '2020-09-16 04:50:37', 'e965d5cea8bf3590547010dea7d93ced'),
(2, 'customer_grid', 'valid', '2020-09-16 04:50:39', '4306a2fdfb7e5e573fea06e14ca82f34'),
(3, 'catalog_category_product', 'invalid', '2020-09-16 04:39:47', '1bc48cb339e06824963035e6f659f399'),
(4, 'catalog_product_category', 'invalid', '2020-09-16 04:39:47', '9f30db45b1884800c3acc95f95c59027'),
(5, 'catalogrule_rule', 'invalid', '2020-09-16 04:39:47', '3b2f79e28d9a2523522c43f7f4a61808'),
(6, 'catalog_product_attribute', 'invalid', '2020-09-16 04:39:47', '31541333320d2c11e65f9236a97ebe34'),
(7, 'cataloginventory_stock', 'invalid', '2020-09-16 04:39:47', '1d39398e36709595df0c069f693b25ae'),
(8, 'inventory', 'invalid', '2020-09-16 04:39:47', '13ba3b9638f2226e874c96d3b94922f6'),
(9, 'catalogrule_product', 'invalid', '2020-09-16 04:39:47', 'f20f99e366e9e90809c969e976d09333'),
(10, 'catalog_product_price', 'invalid', '2020-09-16 04:39:47', '4be230c3ddc3a6a187ad68754f13a745'),
(11, 'scconnector_google_remove', 'invalid', '2020-09-16 04:39:47', '2715f6993f5e53e0b74b8ca31d581f49'),
(12, 'scconnector_google_feed', 'invalid', '2020-09-16 04:39:47', '7a66f614e9697270fbfd0ff5c05230f5'),
(13, 'catalogsearch_fulltext', 'invalid', '2020-09-16 04:39:47', '20454c607a71ef56c48d88b673a5f60d');

-- --------------------------------------------------------

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

CREATE TABLE `integration` (
  `integration_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='integration';

-- --------------------------------------------------------

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

CREATE TABLE `inventory_geoname` (
  `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `inventory_reservation` (
  `reservation_id` int(10) UNSIGNED NOT NULL,
  `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `inventory_shipment_source` (
  `shipment_id` int(10) UNSIGNED NOT NULL,
  `source_code` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `inventory_source` (`source_code`, `name`, `enabled`, `description`, `latitude`, `longitude`, `country_id`, `region_id`, `region`, `city`, `street`, `postcode`, `contact_name`, `email`, `phone`, `fax`, `use_default_carrier_config`) VALUES
('default', 'Default Source', 1, 'Default Source', 0.000000, 0.000000, 'US', NULL, NULL, NULL, NULL, '00000', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

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

CREATE TABLE `inventory_source_carrier_link` (
  `link_id` int(10) UNSIGNED NOT NULL,
  `source_code` varchar(255) NOT NULL,
  `carrier_code` varchar(255) NOT NULL,
  `position` smallint(5) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `inventory_source_item` (
  `source_item_id` int(10) UNSIGNED NOT NULL,
  `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `inventory_source_stock_link`
--

CREATE TABLE `inventory_source_stock_link` (
  `link_id` int(10) UNSIGNED NOT NULL,
  `stock_id` int(10) UNSIGNED NOT NULL,
  `source_code` varchar(255) NOT NULL,
  `priority` smallint(5) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `inventory_source_stock_link`
--

INSERT INTO `inventory_source_stock_link` (`link_id`, `stock_id`, `source_code`, `priority`) VALUES
(1, 1, 'default', 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventory_stock`
--

CREATE TABLE `inventory_stock` (
  `stock_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `inventory_stock`
--

INSERT INTO `inventory_stock` (`stock_id`, `name`) VALUES
(1, 'Default Stock');

-- --------------------------------------------------------

--
-- Stand-in structure for view `inventory_stock_1`
-- (See below for the actual view)
--
CREATE TABLE `inventory_stock_1` (
`product_id` int(10) unsigned
,`website_id` smallint(5) unsigned
,`stock_id` smallint(5) unsigned
,`quantity` decimal(12,4)
,`is_salable` smallint(5) unsigned
,`sku` varchar(64)
);

-- --------------------------------------------------------

--
-- Table structure for table `inventory_stock_sales_channel`
--

CREATE TABLE `inventory_stock_sales_channel` (
  `type` varchar(64) NOT NULL,
  `code` varchar(64) NOT NULL,
  `stock_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `inventory_stock_sales_channel`
--

INSERT INTO `inventory_stock_sales_channel` (`type`, `code`, `stock_id`) VALUES
('website', 'base', 1);

-- --------------------------------------------------------

--
-- Table structure for table `klarna_core_order`
--

CREATE TABLE `klarna_core_order` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Entity Id',
  `klarna_order_id` varchar(255) DEFAULT NULL COMMENT 'Klarna Order Id',
  `session_id` varchar(255) DEFAULT NULL COMMENT 'Session Id',
  `reservation_id` varchar(255) DEFAULT NULL COMMENT 'Reservation Id',
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'Order Id',
  `is_acknowledged` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Acknowledged'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Klarna Order';

-- --------------------------------------------------------

--
-- Table structure for table `klarna_payments_quote`
--

CREATE TABLE `klarna_payments_quote` (
  `payments_quote_id` int(10) UNSIGNED NOT NULL COMMENT 'Payments Id',
  `session_id` varchar(255) DEFAULT NULL COMMENT 'Klarna Session Id',
  `client_token` text DEFAULT NULL COMMENT 'Klarna Client Token',
  `authorization_token` varchar(255) DEFAULT NULL COMMENT 'Authorization Token',
  `is_active` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Active',
  `quote_id` int(10) UNSIGNED NOT NULL COMMENT 'Quote Id',
  `payment_methods` varchar(255) DEFAULT NULL COMMENT 'Payment Method Categories',
  `payment_method_info` text DEFAULT NULL COMMENT 'Payment Method Category Info'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Klarna Payments Quote';

-- --------------------------------------------------------

--
-- Table structure for table `layout_link`
--

CREATE TABLE `layout_link` (
  `layout_link_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Link';

-- --------------------------------------------------------

--
-- Table structure for table `layout_update`
--

CREATE TABLE `layout_update` (
  `layout_update_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Updates';

-- --------------------------------------------------------

--
-- Table structure for table `magento_acknowledged_bulk`
--

CREATE TABLE `magento_acknowledged_bulk` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Internal ID',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk that was viewed by user from notification area';

-- --------------------------------------------------------

--
-- Table structure for table `magento_bulk`
--

CREATE TABLE `magento_bulk` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk entity that represents set of related asynchronous operations';

-- --------------------------------------------------------

--
-- Table structure for table `magento_operation`
--

CREATE TABLE `magento_operation` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Operation ID',
  `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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Operation entity';

-- --------------------------------------------------------

--
-- Table structure for table `media_gallery_asset`
--

CREATE TABLE `media_gallery_asset` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `path` varchar(255) DEFAULT NULL COMMENT 'Path',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `source` varchar(255) DEFAULT NULL COMMENT 'Source',
  `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',
  `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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Asset';

-- --------------------------------------------------------

--
-- Table structure for table `media_gallery_asset_keyword`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Asset Keyword';

-- --------------------------------------------------------

--
-- Table structure for table `media_gallery_keyword`
--

CREATE TABLE `media_gallery_keyword` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Keyword ID',
  `keyword` varchar(255) NOT NULL COMMENT 'Keyword'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Keyword';

-- --------------------------------------------------------

--
-- Table structure for table `msp_tfa_country_codes`
--

CREATE TABLE `msp_tfa_country_codes` (
  `msp_tfa_country_codes_id` int(10) UNSIGNED NOT NULL COMMENT 'TFA admin user ID',
  `code` text NOT NULL COMMENT 'Country code',
  `name` text NOT NULL COMMENT 'Country name',
  `dial_code` text NOT NULL COMMENT 'Prefix'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='msp_tfa_country_codes';

--
-- Dumping data for table `msp_tfa_country_codes`
--

INSERT INTO `msp_tfa_country_codes` (`msp_tfa_country_codes_id`, `code`, `name`, `dial_code`) VALUES
(1, 'IL', 'Israel', '+972'),
(2, 'AF', 'Afghanistan', '+93'),
(3, 'AL', 'Albania', '+355'),
(4, 'DZ', 'Algeria', '+213'),
(5, 'AS', 'AmericanSamoa', '+1 684'),
(6, 'AD', 'Andorra', '+376'),
(7, 'AO', 'Angola', '+244'),
(8, 'AI', 'Anguilla', '+1 264'),
(9, 'AG', 'Antigua and Barbuda', '+1268'),
(10, 'AR', 'Argentina', '+54'),
(11, 'AM', 'Armenia', '+374'),
(12, 'AW', 'Aruba', '+297'),
(13, 'AU', 'Australia', '+61'),
(14, 'AT', 'Austria', '+43'),
(15, 'AZ', 'Azerbaijan', '+994'),
(16, 'BS', 'Bahamas', '+1 242'),
(17, 'BH', 'Bahrain', '+973'),
(18, 'BD', 'Bangladesh', '+880'),
(19, 'BB', 'Barbados', '+1 246'),
(20, 'BY', 'Belarus', '+375'),
(21, 'BE', 'Belgium', '+32'),
(22, 'BZ', 'Belize', '+501'),
(23, 'BJ', 'Benin', '+229'),
(24, 'BM', 'Bermuda', '+1 441'),
(25, 'BT', 'Bhutan', '+975'),
(26, 'BA', 'Bosnia and Herzegovina', '+387'),
(27, 'BW', 'Botswana', '+267'),
(28, 'BR', 'Brazil', '+55'),
(29, 'IO', 'British Indian Ocean Territory', '+246'),
(30, 'BG', 'Bulgaria', '+359'),
(31, 'BF', 'Burkina Faso', '+226'),
(32, 'BI', 'Burundi', '+257'),
(33, 'KH', 'Cambodia', '+855'),
(34, 'CM', 'Cameroon', '+237'),
(35, 'CA', 'Canada', '+1'),
(36, 'CV', 'Cape Verde', '+238'),
(37, 'KY', 'Cayman Islands', '+ 345'),
(38, 'CF', 'Central African Republic', '+236'),
(39, 'TD', 'Chad', '+235'),
(40, 'CL', 'Chile', '+56'),
(41, 'CN', 'China', '+86'),
(42, 'CX', 'Christmas Island', '+61'),
(43, 'CO', 'Colombia', '+57'),
(44, 'KM', 'Comoros', '+269'),
(45, 'CG', 'Congo', '+242'),
(46, 'CK', 'Cook Islands', '+682'),
(47, 'CR', 'Costa Rica', '+506'),
(48, 'HR', 'Croatia', '+385'),
(49, 'CU', 'Cuba', '+53'),
(50, 'CY', 'Cyprus', '+537'),
(51, 'CZ', 'Czech Republic', '+420'),
(52, 'DK', 'Denmark', '+45'),
(53, 'DJ', 'Djibouti', '+253'),
(54, 'DM', 'Dominica', '+1 767'),
(55, 'DO', 'Dominican Republic', '+1 849'),
(56, 'EC', 'Ecuador', '+593'),
(57, 'EG', 'Egypt', '+20'),
(58, 'SV', 'El Salvador', '+503'),
(59, 'GQ', 'Equatorial Guinea', '+240'),
(60, 'ER', 'Eritrea', '+291'),
(61, 'EE', 'Estonia', '+372'),
(62, 'ET', 'Ethiopia', '+251'),
(63, 'FO', 'Faroe Islands', '+298'),
(64, 'FJ', 'Fiji', '+679'),
(65, 'FI', 'Finland', '+358'),
(66, 'FR', 'France', '+33'),
(67, 'GF', 'French Guiana', '+594'),
(68, 'PF', 'French Polynesia', '+689'),
(69, 'GA', 'Gabon', '+241'),
(70, 'GM', 'Gambia', '+220'),
(71, 'GE', 'Georgia', '+995'),
(72, 'DE', 'Germany', '+49'),
(73, 'GH', 'Ghana', '+233'),
(74, 'GI', 'Gibraltar', '+350'),
(75, 'GR', 'Greece', '+30'),
(76, 'GL', 'Greenland', '+299'),
(77, 'GD', 'Grenada', '+1 473'),
(78, 'GP', 'Guadeloupe', '+590'),
(79, 'GU', 'Guam', '+1 671'),
(80, 'GT', 'Guatemala', '+502'),
(81, 'GN', 'Guinea', '+224'),
(82, 'GW', 'Guinea-Bissau', '+245'),
(83, 'GY', 'Guyana', '+595'),
(84, 'HT', 'Haiti', '+509'),
(85, 'HN', 'Honduras', '+504'),
(86, 'HU', 'Hungary', '+36'),
(87, 'IS', 'Iceland', '+354'),
(88, 'IN', 'India', '+91'),
(89, 'ID', 'Indonesia', '+62'),
(90, 'IQ', 'Iraq', '+964'),
(91, 'IE', 'Ireland', '+353'),
(92, 'IL', 'Israel', '+972'),
(93, 'IT', 'Italy', '+39'),
(94, 'JM', 'Jamaica', '+1 876'),
(95, 'JP', 'Japan', '+81'),
(96, 'JO', 'Jordan', '+962'),
(97, 'KZ', 'Kazakhstan', '+7 7'),
(98, 'KE', 'Kenya', '+254'),
(99, 'KI', 'Kiribati', '+686'),
(100, 'KW', 'Kuwait', '+965'),
(101, 'KG', 'Kyrgyzstan', '+996'),
(102, 'LV', 'Latvia', '+371'),
(103, 'LB', 'Lebanon', '+961'),
(104, 'LS', 'Lesotho', '+266'),
(105, 'LR', 'Liberia', '+231'),
(106, 'LI', 'Liechtenstein', '+423'),
(107, 'LT', 'Lithuania', '+370'),
(108, 'LU', 'Luxembourg', '+352'),
(109, 'MG', 'Madagascar', '+261'),
(110, 'MW', 'Malawi', '+265'),
(111, 'MY', 'Malaysia', '+60'),
(112, 'MV', 'Maldives', '+960'),
(113, 'ML', 'Mali', '+223'),
(114, 'MT', 'Malta', '+356'),
(115, 'MH', 'Marshall Islands', '+692'),
(116, 'MQ', 'Martinique', '+596'),
(117, 'MR', 'Mauritania', '+222'),
(118, 'MU', 'Mauritius', '+230'),
(119, 'YT', 'Mayotte', '+262'),
(120, 'MX', 'Mexico', '+52'),
(121, 'MC', 'Monaco', '+377'),
(122, 'MN', 'Mongolia', '+976'),
(123, 'ME', 'Montenegro', '+382'),
(124, 'MS', 'Montserrat', '+1664'),
(125, 'MA', 'Morocco', '+212'),
(126, 'MM', 'Myanmar', '+95'),
(127, 'NA', 'Namibia', '+264'),
(128, 'NR', 'Nauru', '+674'),
(129, 'NP', 'Nepal', '+977'),
(130, 'NL', 'Netherlands', '+31'),
(131, 'AN', 'Netherlands Antilles', '+599'),
(132, 'NC', 'New Caledonia', '+687'),
(133, 'NZ', 'New Zealand', '+64'),
(134, 'NI', 'Nicaragua', '+505'),
(135, 'NE', 'Niger', '+227'),
(136, 'NG', 'Nigeria', '+234'),
(137, 'NU', 'Niue', '+683'),
(138, 'NF', 'Norfolk Island', '+672'),
(139, 'MP', 'Northern Mariana Islands', '+1 670'),
(140, 'NO', 'Norway', '+47'),
(141, 'OM', 'Oman', '+968'),
(142, 'PK', 'Pakistan', '+92'),
(143, 'PW', 'Palau', '+680'),
(144, 'PA', 'Panama', '+507'),
(145, 'PG', 'Papua New Guinea', '+675'),
(146, 'PY', 'Paraguay', '+595'),
(147, 'PE', 'Peru', '+51'),
(148, 'PH', 'Philippines', '+63'),
(149, 'PL', 'Poland', '+48'),
(150, 'PT', 'Portugal', '+351'),
(151, 'PR', 'Puerto Rico', '+1 939'),
(152, 'QA', 'Qatar', '+974'),
(153, 'RO', 'Romania', '+40'),
(154, 'RW', 'Rwanda', '+250'),
(155, 'WS', 'Samoa', '+685'),
(156, 'SM', 'San Marino', '+378'),
(157, 'SA', 'Saudi Arabia', '+966'),
(158, 'SN', 'Senegal', '+221'),
(159, 'RS', 'Serbia', '+381'),
(160, 'SC', 'Seychelles', '+248'),
(161, 'SL', 'Sierra Leone', '+232'),
(162, 'SG', 'Singapore', '+65'),
(163, 'SK', 'Slovakia', '+421'),
(164, 'SI', 'Slovenia', '+386'),
(165, 'SB', 'Solomon Islands', '+677'),
(166, 'ZA', 'South Africa', '+27'),
(167, 'GS', 'South Georgia and the South Sandwich Islands', '+500'),
(168, 'ES', 'Spain', '+34'),
(169, 'LK', 'Sri Lanka', '+94'),
(170, 'SD', 'Sudan', '+249'),
(171, 'SR', 'Suriname', '+597'),
(172, 'SZ', 'Swaziland', '+268'),
(173, 'SE', 'Sweden', '+46'),
(174, 'CH', 'Switzerland', '+41'),
(175, 'TJ', 'Tajikistan', '+992'),
(176, 'TH', 'Thailand', '+66'),
(177, 'TG', 'Togo', '+228'),
(178, 'TK', 'Tokelau', '+690'),
(179, 'TO', 'Tonga', '+676'),
(180, 'TT', 'Trinidad and Tobago', '+1 868'),
(181, 'TN', 'Tunisia', '+216'),
(182, 'TR', 'Turkey', '+90'),
(183, 'TM', 'Turkmenistan', '+993'),
(184, 'TC', 'Turks and Caicos Islands', '+1 649'),
(185, 'TV', 'Tuvalu', '+688'),
(186, 'UG', 'Uganda', '+256'),
(187, 'UA', 'Ukraine', '+380'),
(188, 'AE', 'United Arab Emirates', '+971'),
(189, 'GB', 'United Kingdom', '+44'),
(190, 'US', 'United States', '+1'),
(191, 'UY', 'Uruguay', '+598'),
(192, 'UZ', 'Uzbekistan', '+998'),
(193, 'VU', 'Vanuatu', '+678'),
(194, 'WF', 'Wallis and Futuna', '+681'),
(195, 'YE', 'Yemen', '+967'),
(196, 'ZM', 'Zambia', '+260'),
(197, 'ZW', 'Zimbabwe', '+263'),
(198, 'AX', 'land Islands', ''),
(199, 'BO', 'Bolivia, Plurinational State of', '+591'),
(200, 'BN', 'Brunei Darussalam', '+673'),
(201, 'CC', 'Cocos (Keeling) Islands', '+61'),
(202, 'CD', 'Congo, The Democratic Republic of the', '+243'),
(203, 'CI', 'Cote d\'Ivoire', '+225'),
(204, 'FK', 'Falkland Islands (Malvinas)', '+500'),
(205, 'GG', 'Guernsey', '+44'),
(206, 'VA', 'Holy See (Vatican City State)', '+379'),
(207, 'HK', 'Hong Kong', '+852'),
(208, 'IR', 'Iran, Islamic Republic of', '+98'),
(209, 'IM', 'Isle of Man', '+44'),
(210, 'JE', 'Jersey', '+44'),
(211, 'KP', 'Korea, Democratic People\'s Republic of', '+850'),
(212, 'KR', 'Korea, Republic of', '+82'),
(213, 'LA', 'Lao People\'s Democratic Republic', '+856'),
(214, 'LY', 'Libyan Arab Jamahiriya', '+218'),
(215, 'MO', 'Macao', '+853'),
(216, 'MK', 'Macedonia, The Former Yugoslav Republic of', '+389'),
(217, 'FM', 'Micronesia, Federated States of', '+691'),
(218, 'MD', 'Moldova, Republic of', '+373'),
(219, 'MZ', 'Mozambique', '+258'),
(220, 'PS', 'Palestinian Territory, Occupied', '+970'),
(221, 'PN', 'Pitcairn', '+872'),
(222, 'RE', 'Réunion', '+262'),
(223, 'RU', 'Russia', '+7'),
(224, 'BL', 'Saint Barthélemy', '+590'),
(225, 'SH', 'Saint Helena, Ascension and Tristan Da Cunha', '+290'),
(226, 'KN', 'Saint Kitts and Nevis', '+1 869'),
(227, 'LC', 'Saint Lucia', '+1 758'),
(228, 'MF', 'Saint Martin', '+590'),
(229, 'PM', 'Saint Pierre and Miquelon', '+508'),
(230, 'VC', 'Saint Vincent and the Grenadines', '+1 784'),
(231, 'ST', 'Sao Tome and Principe', '+239'),
(232, 'SO', 'Somalia', '+252'),
(233, 'SJ', 'Svalbard and Jan Mayen', '+47'),
(234, 'SY', 'Syrian Arab Republic', '+963'),
(235, 'TW', 'Taiwan, Province of China', '+886'),
(236, 'TZ', 'Tanzania, United Republic of', '+255'),
(237, 'TL', 'Timor-Leste', '+670'),
(238, 'VE', 'Venezuela, Bolivarian Republic of', '+58'),
(239, 'VN', 'Viet Nam', '+84'),
(240, 'VG', 'Virgin Islands, British', '+1 284'),
(241, 'VI', 'Virgin Islands, U.S.', '+1 340');

-- --------------------------------------------------------

--
-- Table structure for table `msp_tfa_trusted`
--

CREATE TABLE `msp_tfa_trusted` (
  `msp_tfa_trusted_id` int(10) UNSIGNED NOT NULL COMMENT 'Trusted device ID',
  `date_time` datetime NOT NULL COMMENT 'Date and time',
  `user_id` int(10) UNSIGNED NOT NULL COMMENT 'User ID',
  `device_name` text NOT NULL COMMENT 'Device name',
  `token` text NOT NULL COMMENT 'Token',
  `last_ip` text NOT NULL COMMENT 'Last IP'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='msp_tfa_trusted';

-- --------------------------------------------------------

--
-- Table structure for table `msp_tfa_user_config`
--

CREATE TABLE `msp_tfa_user_config` (
  `msp_tfa_user_config_id` int(10) UNSIGNED NOT NULL COMMENT 'TFA admin user ID',
  `user_id` int(10) UNSIGNED NOT NULL COMMENT 'User ID',
  `encoded_providers` text DEFAULT NULL COMMENT 'Encoded providers list',
  `encoded_config` text DEFAULT NULL COMMENT 'Encoded providers configuration',
  `default_provider` text DEFAULT NULL COMMENT 'Default provider'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='msp_tfa_user_config';

-- --------------------------------------------------------

--
-- Table structure for table `mview_state`
--

CREATE TABLE `mview_state` (
  `state_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='View State';

--
-- Dumping data for table `mview_state`
--

INSERT INTO `mview_state` (`state_id`, `view_id`, `mode`, `status`, `updated`, `version_id`) VALUES
(1, 'scconnector_google_remove', 'enabled', 'idle', '2020-09-16 04:50:09', NULL),
(2, 'scconnector_google_feed', 'enabled', 'idle', '2020-09-16 04:50:13', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_problem`
--

CREATE TABLE `newsletter_problem` (
  `problem_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Problems';

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_queue`
--

CREATE TABLE `newsletter_queue` (
  `queue_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue';

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_queue_link`
--

CREATE TABLE `newsletter_queue_link` (
  `queue_link_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Link';

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_queue_store_link`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Store Link';

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_subscriber`
--

CREATE TABLE `newsletter_subscriber` (
  `subscriber_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber';

-- --------------------------------------------------------

--
-- Table structure for table `newsletter_template`
--

CREATE TABLE `newsletter_template` (
  `template_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Template';

-- --------------------------------------------------------

--
-- Table structure for table `oauth_consumer`
--

CREATE TABLE `oauth_consumer` (
  `entity_id` int(10) UNSIGNED NOT NULL 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(32) NOT NULL COMMENT 'Secret code',
  `callback_url` text DEFAULT NULL COMMENT 'Callback URL',
  `rejected_callback_url` text NOT NULL COMMENT 'Rejected callback URL'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Consumers';

-- --------------------------------------------------------

--
-- Table structure for table `oauth_nonce`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Nonce';

-- --------------------------------------------------------

--
-- Table structure for table `oauth_token`
--

CREATE TABLE `oauth_token` (
  `entity_id` int(10) UNSIGNED NOT NULL 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(32) 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Tokens';

-- --------------------------------------------------------

--
-- Table structure for table `oauth_token_request_log`
--

CREATE TABLE `oauth_token_request_log` (
  `log_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of token request authentication failures.';

-- --------------------------------------------------------

--
-- Table structure for table `password_reset_request_event`
--

CREATE TABLE `password_reset_request_event` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Password Reset Request Event under a security control';

-- --------------------------------------------------------

--
-- Table structure for table `patch_list`
--

CREATE TABLE `patch_list` (
  `patch_id` int(11) NOT NULL COMMENT 'Patch Auto Increment',
  `patch_name` varchar(1024) NOT NULL COMMENT 'Patch Class Name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='List of data/schema patches';

--
-- Dumping data for table `patch_list`
--

INSERT INTO `patch_list` (`patch_id`, `patch_name`) 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, 'Temando\\ShippingRemover\\Setup\\Patch\\Schema\\EmptyTablesRemoval'),
(10, 'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),
(11, 'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),
(12, 'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),
(13, 'Magento\\Directory\\Setup\\Patch\\Data\\AddCountriesCaribbeanCuracaoKosovoSintMaarten'),
(14, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),
(15, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),
(16, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),
(17, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelgium'),
(18, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChina'),
(19, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForColombia'),
(20, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),
(21, 'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPoland'),
(22, 'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),
(23, 'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),
(24, 'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),
(25, 'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),
(26, 'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),
(27, 'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),
(28, 'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),
(29, 'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),
(30, 'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),
(31, 'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),
(32, 'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),
(33, 'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),
(34, 'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),
(35, 'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),
(36, 'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),
(37, 'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),
(38, 'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),
(39, 'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),
(40, 'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),
(41, 'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),
(42, 'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),
(43, 'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),
(44, 'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),
(45, 'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),
(46, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),
(47, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),
(48, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),
(49, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),
(50, 'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),
(51, 'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),
(52, 'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),
(53, 'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),
(54, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateCustomLayoutAttributes'),
(55, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),
(56, 'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),
(57, 'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),
(58, 'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(59, 'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),
(60, 'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),
(61, 'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(62, 'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),
(63, 'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(64, 'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),
(65, 'Magento\\Msrp\\Setup\\Patch\\Data\\ChangeMsrpAttributeLabel'),
(66, 'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),
(67, 'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchDeprecationNotification'),
(68, 'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),
(69, 'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),
(70, 'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeySearchable'),
(71, 'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),
(72, 'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),
(73, 'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),
(74, 'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),
(75, 'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(76, 'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),
(77, 'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),
(78, 'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),
(79, 'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),
(80, 'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),
(81, 'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),
(82, 'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),
(83, 'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),
(84, 'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),
(85, 'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),
(86, 'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),
(87, 'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),
(88, 'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),
(89, 'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),
(90, 'Magento\\Email\\Setup\\Patch\\Data\\FlagLegacyTemplates'),
(91, 'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),
(92, 'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),
(93, 'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),
(94, 'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),
(95, 'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),
(96, 'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),
(97, 'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),
(98, 'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),
(99, 'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),
(100, 'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),
(101, 'Magento\\Analytics\\Setup\\Patch\\Data\\ActivateDataCollection'),
(102, 'Magento\\InventoryLowQuantityNotification\\Setup\\Patch\\Data\\MigrateCatalogInventoryNotifyStockQuantityData'),
(103, 'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),
(104, 'Magento\\Reports\\Setup\\Patch\\Data\\ReportDisableNotification'),
(105, 'Magento\\Newsletter\\Setup\\Patch\\Data\\FlagLegacyTemplates'),
(106, 'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),
(107, 'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(108, 'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),
(109, 'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),
(110, 'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),
(111, 'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),
(112, 'Magento\\AuthorizenetAcceptjs\\Setup\\Patch\\Data\\CopyCurrentConfig'),
(113, 'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),
(114, 'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),
(115, 'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),
(116, 'Magento\\Braintree\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(117, 'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),
(118, 'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),
(119, 'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),
(120, 'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),
(121, 'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),
(122, 'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),
(123, 'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),
(124, 'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),
(125, 'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),
(126, 'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),
(127, 'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),
(128, 'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),
(129, 'Klarna\\Core\\Setup\\Patch\\Data\\UpdateKcoApiPathsInCoreConfig'),
(130, 'Klarna\\Core\\Setup\\Patch\\Data\\UpdateKlarnaApiVersionInCoreConfig'),
(131, 'Klarna\\Kp\\Setup\\Patch\\Data\\RemoveHtmlTag'),
(132, 'Klarna\\Kp\\Setup\\Patch\\Data\\ResetIsActive'),
(133, 'Temando\\ShippingRemover\\Setup\\Patch\\Data\\AttributesRemoval'),
(134, 'Temando\\ShippingRemover\\Setup\\Patch\\Data\\BookmarkCleaner'),
(135, 'Temando\\ShippingRemover\\Setup\\Patch\\Data\\ConfigRemoval');

-- --------------------------------------------------------

--
-- Table structure for table `paypal_billing_agreement`
--

CREATE TABLE `paypal_billing_agreement` (
  `agreement_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement';

-- --------------------------------------------------------

--
-- Table structure for table `paypal_billing_agreement_order`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order';

-- --------------------------------------------------------

--
-- Table structure for table `paypal_cert`
--

CREATE TABLE `paypal_cert` (
  `cert_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table';

-- --------------------------------------------------------

--
-- Table structure for table `paypal_payment_transaction`
--

CREATE TABLE `paypal_payment_transaction` (
  `transaction_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='PayPal Payflow Link Payment Transaction';

-- --------------------------------------------------------

--
-- Table structure for table `paypal_settlement_report`
--

CREATE TABLE `paypal_settlement_report` (
  `report_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Table';

-- --------------------------------------------------------

--
-- Table structure for table `paypal_settlement_report_row`
--

CREATE TABLE `paypal_settlement_report_row` (
  `row_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Row Table';

-- --------------------------------------------------------

--
-- Table structure for table `persistent_session`
--

CREATE TABLE `persistent_session` (
  `persistent_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Persistent Session';

-- --------------------------------------------------------

--
-- Table structure for table `product_alert_price`
--

CREATE TABLE `product_alert_price` (
  `alert_price_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Price';

-- --------------------------------------------------------

--
-- Table structure for table `product_alert_stock`
--

CREATE TABLE `product_alert_stock` (
  `alert_stock_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Stock';

-- --------------------------------------------------------

--
-- Table structure for table `queue`
--

CREATE TABLE `queue` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Queue ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Queue name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table storing unique queues';

--
-- Dumping data for table `queue`
--

INSERT INTO `queue` (`id`, `name`) VALUES
(9, 'async.operations.all'),
(8, 'codegenerator'),
(3, 'export'),
(5, 'inventory.mass.update'),
(6, 'inventory.reservations.cleanup'),
(7, 'inventory.reservations.update'),
(4, 'inventory.source.items.cleanup'),
(1, 'product_action_attribute.update'),
(2, 'product_action_attribute.website.update');

-- --------------------------------------------------------

--
-- Table structure for table `queue_lock`
--

CREATE TABLE `queue_lock` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Messages that were processed are inserted here to be locked.';

-- --------------------------------------------------------

--
-- Table structure for table `queue_message`
--

CREATE TABLE `queue_message` (
  `id` bigint(20) UNSIGNED NOT NULL COMMENT 'Message ID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Message topic',
  `body` longtext DEFAULT NULL COMMENT 'Message body'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Queue messages';

-- --------------------------------------------------------

--
-- Table structure for table `queue_message_status`
--

CREATE TABLE `queue_message_status` (
  `id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relation table to keep associations between queues and messages';

-- --------------------------------------------------------

--
-- Table structure for table `queue_poison_pill`
--

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';

--
-- Dumping data for table `queue_poison_pill`
--

INSERT INTO `queue_poison_pill` (`version`) VALUES
('version-5f61bddcd4e64');

-- --------------------------------------------------------

--
-- Table structure for table `quote`
--

CREATE TABLE `quote` (
  `entity_id` int(10) UNSIGNED NOT NULL 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` varchar(255) 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote';

-- --------------------------------------------------------

--
-- Table structure for table `quote_address`
--

CREATE TABLE `quote_address` (
  `address_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address';

-- --------------------------------------------------------

--
-- Table structure for table `quote_address_item`
--

CREATE TABLE `quote_address_item` (
  `address_item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address Item';

-- --------------------------------------------------------

--
-- Table structure for table `quote_id_mask`
--

CREATE TABLE `quote_id_mask` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `quote_id` int(10) UNSIGNED NOT NULL COMMENT 'Quote ID',
  `masked_id` varchar(32) DEFAULT NULL COMMENT 'Masked ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Quote ID and masked ID mapping';

-- --------------------------------------------------------

--
-- Table structure for table `quote_item`
--

CREATE TABLE `quote_item` (
  `item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item';

-- --------------------------------------------------------

--
-- Table structure for table `quote_item_option`
--

CREATE TABLE `quote_item_option` (
  `option_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item Option';

-- --------------------------------------------------------

--
-- Table structure for table `quote_payment`
--

CREATE TABLE `quote_payment` (
  `payment_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Payment';

-- --------------------------------------------------------

--
-- Table structure for table `quote_shipping_rate`
--

CREATE TABLE `quote_shipping_rate` (
  `rate_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Shipping Rate';

-- --------------------------------------------------------

--
-- Table structure for table `rating`
--

CREATE TABLE `rating` (
  `rating_id` smallint(5) UNSIGNED NOT NULL 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.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ratings';

--
-- Dumping data for table `rating`
--

INSERT INTO `rating` (`rating_id`, `entity_id`, `rating_code`, `position`, `is_active`) VALUES
(1, 1, 'Quality', 0, 1),
(2, 1, 'Value', 0, 1),
(3, 1, 'Price', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `rating_entity`
--

CREATE TABLE `rating_entity` (
  `entity_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Entity ID',
  `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating entities';

--
-- Dumping data for table `rating_entity`
--

INSERT INTO `rating_entity` (`entity_id`, `entity_code`) VALUES
(1, 'product'),
(2, 'product_review'),
(3, 'review');

-- --------------------------------------------------------

--
-- Table structure for table `rating_option`
--

CREATE TABLE `rating_option` (
  `option_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating options';

--
-- Dumping data for table `rating_option`
--

INSERT INTO `rating_option` (`option_id`, `rating_id`, `code`, `value`, `position`) 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);

-- --------------------------------------------------------

--
-- Table structure for table `rating_option_vote`
--

CREATE TABLE `rating_option_vote` (
  `vote_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating option values';

-- --------------------------------------------------------

--
-- Table structure for table `rating_option_vote_aggregated`
--

CREATE TABLE `rating_option_vote_aggregated` (
  `primary_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating vote aggregated';

-- --------------------------------------------------------

--
-- Table structure for table `rating_store`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Store';

-- --------------------------------------------------------

--
-- Table structure for table `rating_title`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Title';

-- --------------------------------------------------------

--
-- Table structure for table `release_notification_viewer_log`
--

CREATE TABLE `release_notification_viewer_log` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Release Notification Viewer Log Table';

-- --------------------------------------------------------

--
-- Table structure for table `reporting_counts`
--

CREATE TABLE `reporting_counts` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all count related events generated via the cron job';

-- --------------------------------------------------------

--
-- Table structure for table `reporting_module_status`
--

CREATE TABLE `reporting_module_status` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module Status Table';

-- --------------------------------------------------------

--
-- Table structure for table `reporting_orders`
--

CREATE TABLE `reporting_orders` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all orders';

-- --------------------------------------------------------

--
-- Table structure for table `reporting_system_updates`
--

CREATE TABLE `reporting_system_updates` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for system updates';

-- --------------------------------------------------------

--
-- Table structure for table `reporting_users`
--

CREATE TABLE `reporting_users` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for user actions';

-- --------------------------------------------------------

--
-- Table structure for table `report_compared_product_index`
--

CREATE TABLE `report_compared_product_index` (
  `index_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Compared Product Index Table';

-- --------------------------------------------------------

--
-- Table structure for table `report_event`
--

CREATE TABLE `report_event` (
  `event_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Event Table';

-- --------------------------------------------------------

--
-- Table structure for table `report_event_types`
--

CREATE TABLE `report_event_types` (
  `event_type_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Event Type Table';

--
-- Dumping data for table `report_event_types`
--

INSERT INTO `report_event_types` (`event_type_id`, `event_name`, `customer_login`) 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);

-- --------------------------------------------------------

--
-- Table structure for table `report_viewed_product_aggregated_daily`
--

CREATE TABLE `report_viewed_product_aggregated_daily` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Daily';

-- --------------------------------------------------------

--
-- Table structure for table `report_viewed_product_aggregated_monthly`
--

CREATE TABLE `report_viewed_product_aggregated_monthly` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Monthly';

-- --------------------------------------------------------

--
-- Table structure for table `report_viewed_product_aggregated_yearly`
--

CREATE TABLE `report_viewed_product_aggregated_yearly` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Yearly';

-- --------------------------------------------------------

--
-- Table structure for table `report_viewed_product_index`
--

CREATE TABLE `report_viewed_product_index` (
  `index_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Viewed Product Index Table';

-- --------------------------------------------------------

--
-- Table structure for table `review`
--

CREATE TABLE `review` (
  `review_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review base information';

-- --------------------------------------------------------

--
-- Table structure for table `review_detail`
--

CREATE TABLE `review_detail` (
  `detail_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review detail information';

-- --------------------------------------------------------

--
-- Table structure for table `review_entity`
--

CREATE TABLE `review_entity` (
  `entity_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Review entity ID',
  `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review entities';

--
-- Dumping data for table `review_entity`
--

INSERT INTO `review_entity` (`entity_id`, `entity_code`) VALUES
(1, 'product'),
(2, 'customer'),
(3, 'category');

-- --------------------------------------------------------

--
-- Table structure for table `review_entity_summary`
--

CREATE TABLE `review_entity_summary` (
  `primary_id` bigint(20) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review aggregates';

-- --------------------------------------------------------

--
-- Table structure for table `review_status`
--

CREATE TABLE `review_status` (
  `status_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Status ID',
  `status_code` varchar(32) NOT NULL COMMENT 'Status code'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review statuses';

--
-- Dumping data for table `review_status`
--

INSERT INTO `review_status` (`status_id`, `status_code`) VALUES
(1, 'Approved'),
(2, 'Pending'),
(3, 'Not Approved');

-- --------------------------------------------------------

--
-- Table structure for table `review_store`
--

CREATE TABLE `review_store` (
  `review_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Review ID',
  `store_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Store ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review Store';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule`
--

CREATE TABLE `salesrule` (
  `rule_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_coupon`
--

CREATE TABLE `salesrule_coupon` (
  `coupon_id` int(10) UNSIGNED NOT NULL 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',
  `generated_by_dotmailer` smallint(6) DEFAULT NULL COMMENT '1 = Generated by dotmailer'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_coupon_aggregated`
--

CREATE TABLE `salesrule_coupon_aggregated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_coupon_aggregated_order`
--

CREATE TABLE `salesrule_coupon_aggregated_order` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Order';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_coupon_aggregated_updated`
--

CREATE TABLE `salesrule_coupon_aggregated_updated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Aggregated Updated';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_coupon_usage`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Usage';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_customer`
--

CREATE TABLE `salesrule_customer` (
  `rule_customer_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Customer';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_customer_group`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Customer Groups Relations';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_label`
--

CREATE TABLE `salesrule_label` (
  `label_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Label';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_product_attribute`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Product Attribute';

-- --------------------------------------------------------

--
-- Table structure for table `salesrule_website`
--

CREATE TABLE `salesrule_website` (
  `rule_id` int(10) UNSIGNED NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) UNSIGNED NOT NULL COMMENT 'Website ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Websites Relations';

-- --------------------------------------------------------

--
-- Table structure for table `sales_bestsellers_aggregated_daily`
--

CREATE TABLE `sales_bestsellers_aggregated_daily` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Daily';

-- --------------------------------------------------------

--
-- Table structure for table `sales_bestsellers_aggregated_monthly`
--

CREATE TABLE `sales_bestsellers_aggregated_monthly` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Monthly';

-- --------------------------------------------------------

--
-- Table structure for table `sales_bestsellers_aggregated_yearly`
--

CREATE TABLE `sales_bestsellers_aggregated_yearly` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Yearly';

-- --------------------------------------------------------

--
-- Table structure for table `sales_creditmemo`
--

CREATE TABLE `sales_creditmemo` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo';

-- --------------------------------------------------------

--
-- Table structure for table `sales_creditmemo_comment`
--

CREATE TABLE `sales_creditmemo_comment` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Comment';

-- --------------------------------------------------------

--
-- Table structure for table `sales_creditmemo_grid`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Grid';

-- --------------------------------------------------------

--
-- Table structure for table `sales_creditmemo_item`
--

CREATE TABLE `sales_creditmemo_item` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Item';

-- --------------------------------------------------------

--
-- Table structure for table `sales_invoice`
--

CREATE TABLE `sales_invoice` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice';

-- --------------------------------------------------------

--
-- Table structure for table `sales_invoiced_aggregated`
--

CREATE TABLE `sales_invoiced_aggregated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated';

-- --------------------------------------------------------

--
-- Table structure for table `sales_invoiced_aggregated_order`
--

CREATE TABLE `sales_invoiced_aggregated_order` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated Order';

-- --------------------------------------------------------

--
-- Table structure for table `sales_invoice_comment`
--

CREATE TABLE `sales_invoice_comment` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Comment';

-- --------------------------------------------------------

--
-- Table structure for table `sales_invoice_grid`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Grid';

-- --------------------------------------------------------

--
-- Table structure for table `sales_invoice_item`
--

CREATE TABLE `sales_invoice_item` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Item';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order`
--

CREATE TABLE `sales_order` (
  `entity_id` int(10) UNSIGNED NOT NULL 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(32) 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(32) 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(32) 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_address`
--

CREATE TABLE `sales_order_address` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Address';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_aggregated_created`
--

CREATE TABLE `sales_order_aggregated_created` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Created';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_aggregated_updated`
--

CREATE TABLE `sales_order_aggregated_updated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Updated';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_grid`
--

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',
  `signifyd_guarantee_status` varchar(32) DEFAULT NULL COMMENT 'Signifyd Guarantee Disposition Status'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Grid';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_item`
--

CREATE TABLE `sales_order_item` (
  `item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Item';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_payment`
--

CREATE TABLE `sales_order_payment` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Payment';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_status`
--

CREATE TABLE `sales_order_status` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `label` varchar(128) NOT NULL COMMENT 'Label'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';

--
-- Dumping data for table `sales_order_status`
--

INSERT INTO `sales_order_status` (`status`, `label`) 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');

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_status_history`
--

CREATE TABLE `sales_order_status_history` (
  `entity_id` int(10) UNSIGNED NOT NULL 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.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Status History';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_status_label`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_status_state`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';

--
-- Dumping data for table `sales_order_status_state`
--

INSERT INTO `sales_order_status_state` (`status`, `state`, `is_default`, `visible_on_front`) 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);

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_tax`
--

CREATE TABLE `sales_order_tax` (
  `tax_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Table';

-- --------------------------------------------------------

--
-- Table structure for table `sales_order_tax_item`
--

CREATE TABLE `sales_order_tax_item` (
  `tax_item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Item';

-- --------------------------------------------------------

--
-- Table structure for table `sales_payment_transaction`
--

CREATE TABLE `sales_payment_transaction` (
  `transaction_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Payment Transaction';

-- --------------------------------------------------------

--
-- Table structure for table `sales_refunded_aggregated`
--

CREATE TABLE `sales_refunded_aggregated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated';

-- --------------------------------------------------------

--
-- Table structure for table `sales_refunded_aggregated_order`
--

CREATE TABLE `sales_refunded_aggregated_order` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated Order';

-- --------------------------------------------------------

--
-- Table structure for table `sales_sequence_meta`
--

CREATE TABLE `sales_sequence_meta` (
  `meta_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='sales_sequence_meta';

--
-- Dumping data for table `sales_sequence_meta`
--

INSERT INTO `sales_sequence_meta` (`meta_id`, `entity_type`, `store_id`, `sequence_table`) 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');

-- --------------------------------------------------------

--
-- Table structure for table `sales_sequence_profile`
--

CREATE TABLE `sales_sequence_profile` (
  `profile_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='sales_sequence_profile';

--
-- Dumping data for table `sales_sequence_profile`
--

INSERT INTO `sales_sequence_profile` (`profile_id`, `meta_id`, `prefix`, `suffix`, `start_value`, `step`, `max_value`, `warning_value`, `is_active`) 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);

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipment`
--

CREATE TABLE `sales_shipment` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment';

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipment_comment`
--

CREATE TABLE `sales_shipment_comment` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Comment';

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipment_grid`
--

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() ON UPDATE 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Grid';

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipment_item`
--

CREATE TABLE `sales_shipment_item` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Item';

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipment_track`
--

CREATE TABLE `sales_shipment_track` (
  `entity_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Track';

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipping_aggregated`
--

CREATE TABLE `sales_shipping_aggregated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated';

-- --------------------------------------------------------

--
-- Table structure for table `sales_shipping_aggregated_order`
--

CREATE TABLE `sales_shipping_aggregated_order` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated Order';

-- --------------------------------------------------------

--
-- Table structure for table `scconnector_google_feed_cl`
--

CREATE TABLE `scconnector_google_feed_cl` (
  `version_id` int(10) UNSIGNED NOT NULL COMMENT 'Version ID',
  `entity_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Entity ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='scconnector_google_feed_cl';

-- --------------------------------------------------------

--
-- Table structure for table `scconnector_google_remove_cl`
--

CREATE TABLE `scconnector_google_remove_cl` (
  `version_id` int(10) UNSIGNED NOT NULL COMMENT 'Version ID',
  `entity_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Entity ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='scconnector_google_remove_cl';

-- --------------------------------------------------------

--
-- Table structure for table `search_query`
--

CREATE TABLE `search_query` (
  `query_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Search query table';

-- --------------------------------------------------------

--
-- Table structure for table `search_synonyms`
--

CREATE TABLE `search_synonyms` (
  `group_id` bigint(20) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='table storing various synonyms groups';

-- --------------------------------------------------------

--
-- Table structure for table `sendfriend_log`
--

CREATE TABLE `sendfriend_log` (
  `log_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Send to friend function log storage table';

-- --------------------------------------------------------

--
-- Table structure for table `sequence_creditmemo_0`
--

CREATE TABLE `sequence_creditmemo_0` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_creditmemo_1`
--

CREATE TABLE `sequence_creditmemo_1` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_invoice_0`
--

CREATE TABLE `sequence_invoice_0` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_invoice_1`
--

CREATE TABLE `sequence_invoice_1` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_order_0`
--

CREATE TABLE `sequence_order_0` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_order_1`
--

CREATE TABLE `sequence_order_1` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_shipment_0`
--

CREATE TABLE `sequence_shipment_0` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `sequence_shipment_1`
--

CREATE TABLE `sequence_shipment_1` (
  `sequence_value` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `session`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Database Sessions Storage';

-- --------------------------------------------------------

--
-- Table structure for table `setup_module`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module versions registry';

--
-- Dumping data for table `setup_module`
--

INSERT INTO `setup_module` (`module`, `schema_version`, `data_version`) VALUES
('Amazon_Core', '3.4.1', '3.4.1'),
('Amazon_Login', '3.4.1', '3.4.1'),
('Amazon_Payment', '3.4.1', '3.4.1'),
('Dotdigitalgroup_Chat', '1.0.1', '1.0.1'),
('Dotdigitalgroup_Email', '4.4.0', '4.4.0'),
('Klarna_Core', '5.2.3', '5.2.3'),
('Klarna_Kp', '6.4.0', '6.4.0'),
('Klarna_Ordermanagement', '5.0.7', '5.0.7'),
('Magento_AuthorizenetAcceptjs', '1.0.0', '1.0.0'),
('Magento_GoogleShoppingAds', '3.0.1', '3.0.1'),
('Magento_PaypalReCaptcha', '2.0.0', '2.0.0'),
('MSP_ReCaptcha', '1.6.0', '1.6.0'),
('MSP_TwoFactorAuth', '3.1.0', '3.1.0'),
('Vertex_AddressValidation', '100.5.0', '100.5.0'),
('Vertex_Tax', '100.5.1', '100.5.1'),
('Yotpo_Yotpo', '3.1.0', '3.1.0');

-- --------------------------------------------------------

--
-- Table structure for table `shipping_tablerate`
--

CREATE TABLE `shipping_tablerate` (
  `pk` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shipping Tablerate';

-- --------------------------------------------------------

--
-- Table structure for table `signifyd_case`
--

CREATE TABLE `signifyd_case` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Entity_id',
  `order_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Order_id',
  `case_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Case_id',
  `guarantee_eligible` tinyint(1) DEFAULT NULL COMMENT 'Guarantee_eligible',
  `guarantee_disposition` varchar(32) DEFAULT 'PENDING' COMMENT 'Guarantee_disposition',
  `status` varchar(32) DEFAULT 'PENDING' COMMENT 'Status',
  `score` int(10) UNSIGNED DEFAULT NULL COMMENT 'Score',
  `associated_team` text DEFAULT NULL COMMENT 'Associated_team',
  `review_disposition` varchar(32) DEFAULT NULL COMMENT 'Review_disposition',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated_at'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='signifyd_case';

-- --------------------------------------------------------

--
-- Table structure for table `sitemap`
--

CREATE TABLE `sitemap` (
  `sitemap_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='XML Sitemap';

-- --------------------------------------------------------

--
-- Table structure for table `store`
--

CREATE TABLE `store` (
  `store_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores';

--
-- Dumping data for table `store`
--

INSERT INTO `store` (`store_id`, `code`, `website_id`, `group_id`, `name`, `sort_order`, `is_active`) VALUES
(0, 'admin', 0, 0, 'Admin', 0, 1),
(1, 'default', 1, 1, 'Default Store View', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `store_group`
--

CREATE TABLE `store_group` (
  `group_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Store Groups';

--
-- Dumping data for table `store_group`
--

INSERT INTO `store_group` (`group_id`, `website_id`, `name`, `root_category_id`, `default_store_id`, `code`) VALUES
(0, 0, 'Default', 0, 0, 'default'),
(1, 1, 'Main Website Store', 2, 1, 'main_website_store');

-- --------------------------------------------------------

--
-- Table structure for table `store_website`
--

CREATE TABLE `store_website` (
  `website_id` smallint(5) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Websites';

--
-- Dumping data for table `store_website`
--

INSERT INTO `store_website` (`website_id`, `code`, `name`, `sort_order`, `default_group_id`, `is_default`) VALUES
(0, 'admin', 'Admin', 0, 0, 0),
(1, 'base', 'Main Website', 0, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `tax_calculation`
--

CREATE TABLE `tax_calculation` (
  `tax_calculation_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation';

-- --------------------------------------------------------

--
-- Table structure for table `tax_calculation_rate`
--

CREATE TABLE `tax_calculation_rate` (
  `tax_calculation_rate_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate';

--
-- Dumping data for table `tax_calculation_rate`
--

INSERT INTO `tax_calculation_rate` (`tax_calculation_rate_id`, `tax_country_id`, `tax_region_id`, `tax_postcode`, `code`, `rate`, `zip_is_range`, `zip_from`, `zip_to`) 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);

-- --------------------------------------------------------

--
-- Table structure for table `tax_calculation_rate_title`
--

CREATE TABLE `tax_calculation_rate_title` (
  `tax_calculation_rate_title_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title';

-- --------------------------------------------------------

--
-- Table structure for table `tax_calculation_rule`
--

CREATE TABLE `tax_calculation_rule` (
  `tax_calculation_rule_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule';

-- --------------------------------------------------------

--
-- Table structure for table `tax_class`
--

CREATE TABLE `tax_class` (
  `class_id` smallint(6) NOT NULL COMMENT 'Class ID',
  `class_name` varchar(255) NOT NULL COMMENT 'Class Name',
  `class_type` varchar(8) NOT NULL DEFAULT 'CUSTOMER' COMMENT 'Class Type'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Class';

--
-- Dumping data for table `tax_class`
--

INSERT INTO `tax_class` (`class_id`, `class_name`, `class_type`) VALUES
(2, 'Taxable Goods', 'PRODUCT'),
(3, 'Retail Customer', 'CUSTOMER'),
(4, 'Refund Adjustments', 'PRODUCT'),
(5, 'Gift Options', 'PRODUCT'),
(6, 'Order Gift Wrapping', 'PRODUCT'),
(7, 'Item Gift Wrapping', 'PRODUCT'),
(8, 'Printed Gift Card', 'PRODUCT'),
(9, 'Reward Points', 'PRODUCT');

-- --------------------------------------------------------

--
-- Table structure for table `tax_order_aggregated_created`
--

CREATE TABLE `tax_order_aggregated_created` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation';

-- --------------------------------------------------------

--
-- Table structure for table `tax_order_aggregated_updated`
--

CREATE TABLE `tax_order_aggregated_updated` (
  `id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregated Updated';

-- --------------------------------------------------------

--
-- Table structure for table `theme`
--

CREATE TABLE `theme` (
  `theme_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Core theme';

--
-- Dumping data for table `theme`
--

INSERT INTO `theme` (`theme_id`, `parent_id`, `theme_path`, `theme_title`, `preview_image`, `is_featured`, `area`, `type`, `code`) VALUES
(1, NULL, 'Magento/blank', 'Magento Blank', 'preview_image_5f61970e4f42b.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_5f61970e7cc1d.jpeg', 0, 'frontend', 0, 'Magento/luma');

-- --------------------------------------------------------

--
-- Table structure for table `theme_file`
--

CREATE TABLE `theme_file` (
  `theme_files_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Core theme files';

-- --------------------------------------------------------

--
-- Table structure for table `translation`
--

CREATE TABLE `translation` (
  `key_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Translations';

-- --------------------------------------------------------

--
-- Table structure for table `ui_bookmark`
--

CREATE TABLE `ui_bookmark` (
  `bookmark_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bookmark';

-- --------------------------------------------------------

--
-- Table structure for table `url_rewrite`
--

CREATE TABLE `url_rewrite` (
  `url_rewrite_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Url Rewrites';

--
-- Dumping data for table `url_rewrite`
--

INSERT INTO `url_rewrite` (`url_rewrite_id`, `entity_type`, `entity_id`, `request_path`, `target_path`, `redirect_type`, `store_id`, `description`, `is_autogenerated`, `metadata`) 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);

-- --------------------------------------------------------

--
-- Table structure for table `variable`
--

CREATE TABLE `variable` (
  `variable_id` int(10) UNSIGNED NOT NULL COMMENT 'Variable ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Variable Code',
  `name` varchar(255) DEFAULT NULL COMMENT 'Variable Name'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variables';

-- --------------------------------------------------------

--
-- Table structure for table `variable_value`
--

CREATE TABLE `variable_value` (
  `value_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Value';

-- --------------------------------------------------------

--
-- Table structure for table `vault_payment_token`
--

CREATE TABLE `vault_payment_token` (
  `entity_id` int(10) UNSIGNED NOT NULL 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
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vault tokens of payment';

-- --------------------------------------------------------

--
-- Table structure for table `vault_payment_token_order_payment_link`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order payments to vault token';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_customer_code`
--

CREATE TABLE `vertex_customer_code` (
  `customer_id` int(10) UNSIGNED NOT NULL COMMENT 'Customer ID',
  `customer_code` text DEFAULT NULL COMMENT 'Customer Code for Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_customer_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_custom_option_flex_field`
--

CREATE TABLE `vertex_custom_option_flex_field` (
  `entity_id` int(10) UNSIGNED NOT NULL COMMENT 'Map Entity ID',
  `option_id` int(10) UNSIGNED NOT NULL COMMENT 'Customizable Option ID',
  `website_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `flex_field` text DEFAULT NULL COMMENT 'Flexible Field ID'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customizable Option to Flex Field Map';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_invoice_sent`
--

CREATE TABLE `vertex_invoice_sent` (
  `invoice_id` int(10) UNSIGNED NOT NULL COMMENT 'Invoice ID',
  `sent_to_vertex` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Invoice has been logged in Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_invoice_sent';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_order_invoice_status`
--

CREATE TABLE `vertex_order_invoice_status` (
  `order_id` int(10) UNSIGNED NOT NULL COMMENT 'Order ID',
  `sent_to_vertex` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Invoice has been logged in Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_order_invoice_status';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_sales_creditmemo_item_invoice_text_code`
--

CREATE TABLE `vertex_sales_creditmemo_item_invoice_text_code` (
  `item_id` int(10) UNSIGNED NOT NULL COMMENT 'Creditmemo Item ID',
  `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_creditmemo_item_invoice_text_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_sales_creditmemo_item_tax_code`
--

CREATE TABLE `vertex_sales_creditmemo_item_tax_code` (
  `item_id` int(10) UNSIGNED NOT NULL COMMENT 'Creditmemo Item ID',
  `tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_creditmemo_item_tax_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_sales_creditmemo_item_vertex_tax_code`
--

CREATE TABLE `vertex_sales_creditmemo_item_vertex_tax_code` (
  `item_id` int(10) UNSIGNED NOT NULL COMMENT 'Creditmemo Item ID',
  `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Text code from Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_creditmemo_item_vertex_tax_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_sales_order_item_invoice_text_code`
--

CREATE TABLE `vertex_sales_order_item_invoice_text_code` (
  `item_id` int(10) UNSIGNED NOT NULL COMMENT 'Order Item ID',
  `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_order_item_invoice_text_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_sales_order_item_tax_code`
--

CREATE TABLE `vertex_sales_order_item_tax_code` (
  `item_id` int(10) UNSIGNED NOT NULL COMMENT 'Order Item ID',
  `tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_order_item_tax_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_sales_order_item_vertex_tax_code`
--

CREATE TABLE `vertex_sales_order_item_vertex_tax_code` (
  `item_id` int(10) UNSIGNED NOT NULL COMMENT 'Order Item ID',
  `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Text code from Vertex'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_order_item_vertex_tax_code';

-- --------------------------------------------------------

--
-- Table structure for table `vertex_taxrequest`
--

CREATE TABLE `vertex_taxrequest` (
  `request_id` bigint(20) UNSIGNED NOT NULL,
  `request_type` varchar(255) NOT NULL COMMENT 'Request Type',
  `response_time` int(10) UNSIGNED DEFAULT NULL COMMENT 'Milliseconds taken for Vertex API call to complete',
  `quote_id` bigint(20) DEFAULT NULL,
  `order_id` bigint(20) DEFAULT NULL,
  `total_tax` varchar(255) NOT NULL COMMENT 'Total Tax Amount',
  `source_path` varchar(255) NOT NULL COMMENT 'Source path controller_module_action',
  `tax_area_id` varchar(255) NOT NULL COMMENT 'Tax Jurisdictions Id',
  `sub_total` varchar(255) NOT NULL COMMENT 'Response Subtotal Amount',
  `total` varchar(255) NOT NULL COMMENT 'Response Total Amount',
  `lookup_result` varchar(255) NOT NULL COMMENT 'Tax Area Response Lookup Result',
  `request_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Request create date',
  `request_xml` text NOT NULL COMMENT 'Request XML',
  `response_xml` text NOT NULL COMMENT 'Response XML'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of requests to Vertex';

-- --------------------------------------------------------

--
-- Table structure for table `weee_tax`
--

CREATE TABLE `weee_tax` (
  `value_id` int(11) NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Tax';

-- --------------------------------------------------------

--
-- Table structure for table `widget`
--

CREATE TABLE `widget` (
  `widget_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets';

-- --------------------------------------------------------

--
-- Table structure for table `widget_instance`
--

CREATE TABLE `widget_instance` (
  `instance_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme';

-- --------------------------------------------------------

--
-- Table structure for table `widget_instance_page`
--

CREATE TABLE `widget_instance_page` (
  `page_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page';

-- --------------------------------------------------------

--
-- Table structure for table `widget_instance_page_layout`
--

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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout updates';

-- --------------------------------------------------------

--
-- Table structure for table `wishlist`
--

CREATE TABLE `wishlist` (
  `wishlist_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table';

-- --------------------------------------------------------

--
-- Table structure for table `wishlist_item`
--

CREATE TABLE `wishlist_item` (
  `wishlist_item_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist items';

-- --------------------------------------------------------

--
-- Table structure for table `wishlist_item_option`
--

CREATE TABLE `wishlist_item_option` (
  `option_id` int(10) UNSIGNED NOT NULL 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table';

-- --------------------------------------------------------

--
-- Table structure for table `yotpo_order_status_history`
--

CREATE TABLE `yotpo_order_status_history` (
  `id` int(10) UNSIGNED NOT NULL COMMENT 'Id',
  `order_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Order Id',
  `store_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Store Id',
  `old_status` varchar(32) DEFAULT NULL COMMENT 'Old Status',
  `new_status` varchar(32) DEFAULT NULL COMMENT 'New Status',
  `created_at` datetime DEFAULT NULL COMMENT 'Created At'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='yotpo_order_status_history';

-- --------------------------------------------------------

--
-- Table structure for table `yotpo_rich_snippets`
--

CREATE TABLE `yotpo_rich_snippets` (
  `rich_snippet_id` int(11) NOT NULL COMMENT 'Id',
  `product_id` int(11) NOT NULL COMMENT 'Product Id',
  `store_id` int(11) NOT NULL COMMENT 'Store Id',
  `average_score` decimal(10,2) NOT NULL COMMENT 'Average Score',
  `reviews_count` float(10,0) NOT NULL COMMENT 'Reviews Count',
  `expiration_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Expiry Time'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='yotpo_rich_snippets';

-- --------------------------------------------------------

--
-- Table structure for table `yotpo_sync`
--

CREATE TABLE `yotpo_sync` (
  `sync_id` int(10) UNSIGNED NOT NULL COMMENT 'Id',
  `store_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Store ID',
  `entity_type` varchar(50) DEFAULT NULL COMMENT 'Entity Type',
  `entity_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'Entity ID',
  `sync_flag` smallint(6) DEFAULT 0 COMMENT 'Sync Flag',
  `sync_date` datetime NOT NULL COMMENT 'Sync Date'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='yotpo_sync';

--
-- Indexes for dumped tables
--

--
-- Indexes for table `adminnotification_inbox`
--
ALTER TABLE `adminnotification_inbox`
  ADD PRIMARY KEY (`notification_id`),
  ADD KEY `ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  ADD KEY `ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  ADD KEY `ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`);

--
-- Indexes for table `admin_analytics_usage_version_log`
--
ALTER TABLE `admin_analytics_usage_version_log`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`);

--
-- Indexes for table `admin_passwords`
--
ALTER TABLE `admin_passwords`
  ADD PRIMARY KEY (`password_id`),
  ADD KEY `ADMIN_PASSWORDS_USER_ID` (`user_id`);

--
-- Indexes for table `admin_system_messages`
--
ALTER TABLE `admin_system_messages`
  ADD PRIMARY KEY (`identity`);

--
-- Indexes for table `admin_user`
--
ALTER TABLE `admin_user`
  ADD PRIMARY KEY (`user_id`),
  ADD UNIQUE KEY `ADMIN_USER_USERNAME` (`username`);

--
-- Indexes for table `admin_user_session`
--
ALTER TABLE `admin_user_session`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
  ADD KEY `ADMIN_USER_SESSION_USER_ID` (`user_id`);

--
-- Indexes for table `adobe_stock_asset`
--
ALTER TABLE `adobe_stock_asset`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ADOBE_STOCK_ASSET_MEDIA_GALLERY_ID_MEDIA_GALLERY_ASSET_ID` (`media_gallery_id`),
  ADD KEY `ADOBE_STOCK_ASSET_ID` (`id`),
  ADD KEY `ADOBE_STOCK_ASSET_CATEGORY_ID` (`category_id`),
  ADD KEY `ADOBE_STOCK_ASSET_CREATOR_ID` (`creator_id`);

--
-- Indexes for table `adobe_stock_category`
--
ALTER TABLE `adobe_stock_category`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ADOBE_STOCK_CATEGORY_ID` (`id`);

--
-- Indexes for table `adobe_stock_creator`
--
ALTER TABLE `adobe_stock_creator`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ADOBE_STOCK_CREATOR_ID` (`id`);

--
-- Indexes for table `adobe_user_profile`
--
ALTER TABLE `adobe_user_profile`
  ADD PRIMARY KEY (`id`),
  ADD KEY `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` (`admin_user_id`),
  ADD KEY `ADOBE_USER_PROFILE_ID` (`id`);

--
-- Indexes for table `amazon_customer`
--
ALTER TABLE `amazon_customer`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `AMAZON_CUSTOMER_CUSTOMER_ID_AMAZON_ID` (`customer_id`,`amazon_id`),
  ADD UNIQUE KEY `AMAZON_CUSTOMER_CUSTOMER_ID` (`customer_id`);

--
-- Indexes for table `amazon_pending_authorization`
--
ALTER TABLE `amazon_pending_authorization`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `UNQ_E6CCA08713FB32BB136A56837009C371` (`order_id`,`payment_id`,`authorization_id`);

--
-- Indexes for table `amazon_pending_capture`
--
ALTER TABLE `amazon_pending_capture`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `AMAZON_PENDING_CAPTURE_ORDER_ID_PAYMENT_ID_CAPTURE_ID` (`order_id`,`payment_id`,`capture_id`);

--
-- Indexes for table `amazon_pending_refund`
--
ALTER TABLE `amazon_pending_refund`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `AMAZON_PENDING_REFUND_ORDER_ID_PAYMENT_ID_REFUND_ID` (`order_id`,`payment_id`,`refund_id`);

--
-- Indexes for table `amazon_quote`
--
ALTER TABLE `amazon_quote`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `AMAZON_QUOTE_QUOTE_ID` (`quote_id`);

--
-- Indexes for table `amazon_sales_order`
--
ALTER TABLE `amazon_sales_order`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `AMAZON_SALES_ORDER_ORDER_ID` (`order_id`);

--
-- Indexes for table `authorization_role`
--
ALTER TABLE `authorization_role`
  ADD PRIMARY KEY (`role_id`),
  ADD KEY `AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  ADD KEY `AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`);

--
-- Indexes for table `authorization_rule`
--
ALTER TABLE `authorization_rule`
  ADD PRIMARY KEY (`rule_id`),
  ADD KEY `AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  ADD KEY `AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`);

--
-- Indexes for table `cache`
--
ALTER TABLE `cache`
  ADD PRIMARY KEY (`id`),
  ADD KEY `CACHE_EXPIRE_TIME` (`expire_time`);

--
-- Indexes for table `cache_tag`
--
ALTER TABLE `cache_tag`
  ADD PRIMARY KEY (`tag`,`cache_id`),
  ADD KEY `CACHE_TAG_CACHE_ID` (`cache_id`);

--
-- Indexes for table `captcha_log`
--
ALTER TABLE `captcha_log`
  ADD PRIMARY KEY (`type`,`value`);

--
-- Indexes for table `cataloginventory_stock`
--
ALTER TABLE `cataloginventory_stock`
  ADD PRIMARY KEY (`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `cataloginventory_stock_item`
--
ALTER TABLE `cataloginventory_stock_item`
  ADD PRIMARY KEY (`item_id`),
  ADD UNIQUE KEY `CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`);

--
-- Indexes for table `cataloginventory_stock_status`
--
ALTER TABLE `cataloginventory_stock_status`
  ADD PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`);

--
-- Indexes for table `cataloginventory_stock_status_idx`
--
ALTER TABLE `cataloginventory_stock_status_idx`
  ADD PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `cataloginventory_stock_status_replica`
--
ALTER TABLE `cataloginventory_stock_status_replica`
  ADD PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`);

--
-- Indexes for table `cataloginventory_stock_status_tmp`
--
ALTER TABLE `cataloginventory_stock_status_tmp`
  ADD PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`),
  ADD KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalogrule`
--
ALTER TABLE `catalogrule`
  ADD PRIMARY KEY (`rule_id`),
  ADD KEY `CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`);

--
-- Indexes for table `catalogrule_customer_group`
--
ALTER TABLE `catalogrule_customer_group`
  ADD PRIMARY KEY (`rule_id`,`customer_group_id`),
  ADD KEY `CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`);

--
-- Indexes for table `catalogrule_group_website`
--
ALTER TABLE `catalogrule_group_website`
  ADD PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalogrule_group_website_replica`
--
ALTER TABLE `catalogrule_group_website_replica`
  ADD PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalogrule_product`
--
ALTER TABLE `catalogrule_product`
  ADD PRIMARY KEY (`rule_product_id`),
  ADD UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  ADD KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  ADD KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  ADD KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalogrule_product_price`
--
ALTER TABLE `catalogrule_product_price`
  ADD PRIMARY KEY (`rule_product_price_id`),
  ADD UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  ADD KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalogrule_product_price_replica`
--
ALTER TABLE `catalogrule_product_price_replica`
  ADD PRIMARY KEY (`rule_product_price_id`),
  ADD UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  ADD KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalogrule_product_replica`
--
ALTER TABLE `catalogrule_product_replica`
  ADD PRIMARY KEY (`rule_product_id`),
  ADD UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  ADD KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  ADD KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  ADD KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalogrule_website`
--
ALTER TABLE `catalogrule_website`
  ADD PRIMARY KEY (`rule_id`,`website_id`),
  ADD KEY `CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalogsearch_recommendations`
--
ALTER TABLE `catalogsearch_recommendations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` (`query_id`),
  ADD KEY `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` (`relation_id`);

--
-- Indexes for table `catalog_category_entity`
--
ALTER TABLE `catalog_category_entity`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_PATH` (`path`);

--
-- Indexes for table `catalog_category_entity_datetime`
--
ALTER TABLE `catalog_category_entity_datetime`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_category_entity_decimal`
--
ALTER TABLE `catalog_category_entity_decimal`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_category_entity_int`
--
ALTER TABLE `catalog_category_entity_int`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_category_entity_text`
--
ALTER TABLE `catalog_category_entity_text`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_category_entity_varchar`
--
ALTER TABLE `catalog_category_entity_varchar`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_category_product`
--
ALTER TABLE `catalog_category_product`
  ADD PRIMARY KEY (`entity_id`,`category_id`,`product_id`),
  ADD UNIQUE KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  ADD KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalog_category_product_index`
--
ALTER TABLE `catalog_category_product_index`
  ADD PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  ADD KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  ADD KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`);

--
-- Indexes for table `catalog_category_product_index_replica`
--
ALTER TABLE `catalog_category_product_index_replica`
  ADD PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  ADD KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  ADD KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`);

--
-- Indexes for table `catalog_category_product_index_store1`
--
ALTER TABLE `catalog_category_product_index_store1`
  ADD PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  ADD KEY `CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  ADD KEY `IDX_216E521C8AD125E066D2B0BAB4A08412` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`);

--
-- Indexes for table `catalog_category_product_index_store1_replica`
--
ALTER TABLE `catalog_category_product_index_store1_replica`
  ADD PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  ADD KEY `IDX_4B965DC45C352D6E4C9DC0FF50B1FCF5` (`product_id`,`store_id`,`category_id`,`visibility`),
  ADD KEY `IDX_47AB760CD6A893ACEA69A9C2E0112C60` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`);

--
-- Indexes for table `catalog_category_product_index_tmp`
--
ALTER TABLE `catalog_category_product_index_tmp`
  ADD PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  ADD KEY `CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`);

--
-- Indexes for table `catalog_compare_item`
--
ALTER TABLE `catalog_compare_item`
  ADD PRIMARY KEY (`catalog_compare_item_id`),
  ADD KEY `CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  ADD KEY `CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  ADD KEY `CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  ADD KEY `CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_eav_attribute`
--
ALTER TABLE `catalog_eav_attribute`
  ADD PRIMARY KEY (`attribute_id`),
  ADD KEY `CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  ADD KEY `CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`);

--
-- Indexes for table `catalog_product_bundle_option`
--
ALTER TABLE `catalog_product_bundle_option`
  ADD PRIMARY KEY (`option_id`),
  ADD KEY `CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`);

--
-- Indexes for table `catalog_product_bundle_option_value`
--
ALTER TABLE `catalog_product_bundle_option_value`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CAT_PRD_BNDL_OPT_VAL_OPT_ID_PARENT_PRD_ID_STORE_ID` (`option_id`,`parent_product_id`,`store_id`);

--
-- Indexes for table `catalog_product_bundle_price_index`
--
ALTER TABLE `catalog_product_bundle_price_index`
  ADD PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`);

--
-- Indexes for table `catalog_product_bundle_selection`
--
ALTER TABLE `catalog_product_bundle_selection`
  ADD PRIMARY KEY (`selection_id`),
  ADD KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  ADD KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalog_product_bundle_selection_price`
--
ALTER TABLE `catalog_product_bundle_selection_price`
  ADD PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalog_product_bundle_stock_index`
--
ALTER TABLE `catalog_product_bundle_stock_index`
  ADD PRIMARY KEY (`entity_id`,`website_id`,`stock_id`,`option_id`);

--
-- Indexes for table `catalog_product_entity`
--
ALTER TABLE `catalog_product_entity`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_SKU` (`sku`);

--
-- Indexes for table `catalog_product_entity_datetime`
--
ALTER TABLE `catalog_product_entity_datetime`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_entity_decimal`
--
ALTER TABLE `catalog_product_entity_decimal`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `catalog_product_entity_gallery`
--
ALTER TABLE `catalog_product_entity_gallery`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_entity_int`
--
ALTER TABLE `catalog_product_entity_int`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_entity_media_gallery`
--
ALTER TABLE `catalog_product_entity_media_gallery`
  ADD PRIMARY KEY (`value_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `catalog_product_entity_media_gallery_value`
--
ALTER TABLE `catalog_product_entity_media_gallery_value`
  ADD PRIMARY KEY (`record_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_ENTITY_ID` (`entity_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_VALUE_ID` (`value_id`),
  ADD KEY `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_VAL_ID_STORE_ID` (`entity_id`,`value_id`,`store_id`);

--
-- Indexes for table `catalog_product_entity_media_gallery_value_to_entity`
--
ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity`
  ADD UNIQUE KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_VAL_ID_ENTT_ID` (`value_id`,`entity_id`),
  ADD KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` (`entity_id`);

--
-- Indexes for table `catalog_product_entity_media_gallery_value_video`
--
ALTER TABLE `catalog_product_entity_media_gallery_value_video`
  ADD UNIQUE KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_VAL_ID_STORE_ID` (`value_id`,`store_id`),
  ADD KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_entity_text`
--
ALTER TABLE `catalog_product_entity_text`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_entity_tier_price`
--
ALTER TABLE `catalog_product_entity_tier_price`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `UNQ_E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalog_product_entity_varchar`
--
ALTER TABLE `catalog_product_entity_varchar`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_frontend_action`
--
ALTER TABLE `catalog_product_frontend_action`
  ADD PRIMARY KEY (`action_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_VISITOR_ID_PRODUCT_ID_TYPE_ID` (`visitor_id`,`product_id`,`type_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_CUSTOMER_ID_PRODUCT_ID_TYPE_ID` (`customer_id`,`product_id`,`type_id`),
  ADD KEY `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`);

--
-- Indexes for table `catalog_product_index_eav`
--
ALTER TABLE `catalog_product_index_eav`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_decimal`
--
ALTER TABLE `catalog_product_index_eav_decimal`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_decimal_idx`
--
ALTER TABLE `catalog_product_index_eav_decimal_idx`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_decimal_replica`
--
ALTER TABLE `catalog_product_index_eav_decimal_replica`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_decimal_tmp`
--
ALTER TABLE `catalog_product_index_eav_decimal_tmp`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_idx`
--
ALTER TABLE `catalog_product_index_eav_idx`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_replica`
--
ALTER TABLE `catalog_product_index_eav_replica`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_eav_tmp`
--
ALTER TABLE `catalog_product_index_eav_tmp`
  ADD PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`);

--
-- Indexes for table `catalog_product_index_price`
--
ALTER TABLE `catalog_product_index_price`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  ADD KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`);

--
-- Indexes for table `catalog_product_index_price_bundle_idx`
--
ALTER TABLE `catalog_product_index_price_bundle_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_bundle_opt_idx`
--
ALTER TABLE `catalog_product_index_price_bundle_opt_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`);

--
-- Indexes for table `catalog_product_index_price_bundle_opt_tmp`
--
ALTER TABLE `catalog_product_index_price_bundle_opt_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`);

--
-- Indexes for table `catalog_product_index_price_bundle_sel_idx`
--
ALTER TABLE `catalog_product_index_price_bundle_sel_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`);

--
-- Indexes for table `catalog_product_index_price_bundle_sel_tmp`
--
ALTER TABLE `catalog_product_index_price_bundle_sel_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`);

--
-- Indexes for table `catalog_product_index_price_bundle_tmp`
--
ALTER TABLE `catalog_product_index_price_bundle_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_cfg_opt_agr_idx`
--
ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx`
  ADD PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_cfg_opt_agr_tmp`
--
ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp`
  ADD PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_cfg_opt_idx`
--
ALTER TABLE `catalog_product_index_price_cfg_opt_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_cfg_opt_tmp`
--
ALTER TABLE `catalog_product_index_price_cfg_opt_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_downlod_idx`
--
ALTER TABLE `catalog_product_index_price_downlod_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_downlod_tmp`
--
ALTER TABLE `catalog_product_index_price_downlod_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_final_idx`
--
ALTER TABLE `catalog_product_index_price_final_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_final_tmp`
--
ALTER TABLE `catalog_product_index_price_final_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_idx`
--
ALTER TABLE `catalog_product_index_price_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`);

--
-- Indexes for table `catalog_product_index_price_opt_agr_idx`
--
ALTER TABLE `catalog_product_index_price_opt_agr_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`);

--
-- Indexes for table `catalog_product_index_price_opt_agr_tmp`
--
ALTER TABLE `catalog_product_index_price_opt_agr_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`);

--
-- Indexes for table `catalog_product_index_price_opt_idx`
--
ALTER TABLE `catalog_product_index_price_opt_idx`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_opt_tmp`
--
ALTER TABLE `catalog_product_index_price_opt_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`);

--
-- Indexes for table `catalog_product_index_price_replica`
--
ALTER TABLE `catalog_product_index_price_replica`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  ADD KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`);

--
-- Indexes for table `catalog_product_index_price_tmp`
--
ALTER TABLE `catalog_product_index_price_tmp`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_TMP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_TMP_WEBSITE_ID` (`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_PRICE_TMP_MIN_PRICE` (`min_price`);

--
-- Indexes for table `catalog_product_index_tier_price`
--
ALTER TABLE `catalog_product_index_tier_price`
  ADD PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalog_product_index_website`
--
ALTER TABLE `catalog_product_index_website`
  ADD PRIMARY KEY (`website_id`),
  ADD KEY `CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`);

--
-- Indexes for table `catalog_product_link`
--
ALTER TABLE `catalog_product_link`
  ADD PRIMARY KEY (`link_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_LINK_LINK_TYPE_ID_PRODUCT_ID_LINKED_PRODUCT_ID` (`link_type_id`,`product_id`,`linked_product_id`),
  ADD KEY `CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`),
  ADD KEY `CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`);

--
-- Indexes for table `catalog_product_link_attribute`
--
ALTER TABLE `catalog_product_link_attribute`
  ADD PRIMARY KEY (`product_link_attribute_id`),
  ADD KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`);

--
-- Indexes for table `catalog_product_link_attribute_decimal`
--
ALTER TABLE `catalog_product_link_attribute_decimal`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  ADD KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`);

--
-- Indexes for table `catalog_product_link_attribute_int`
--
ALTER TABLE `catalog_product_link_attribute_int`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  ADD KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`);

--
-- Indexes for table `catalog_product_link_attribute_varchar`
--
ALTER TABLE `catalog_product_link_attribute_varchar`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  ADD KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`);

--
-- Indexes for table `catalog_product_link_type`
--
ALTER TABLE `catalog_product_link_type`
  ADD PRIMARY KEY (`link_type_id`);

--
-- Indexes for table `catalog_product_option`
--
ALTER TABLE `catalog_product_option`
  ADD PRIMARY KEY (`option_id`),
  ADD KEY `CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `catalog_product_option_price`
--
ALTER TABLE `catalog_product_option_price`
  ADD PRIMARY KEY (`option_price_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_option_title`
--
ALTER TABLE `catalog_product_option_title`
  ADD PRIMARY KEY (`option_title_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_option_type_price`
--
ALTER TABLE `catalog_product_option_type_price`
  ADD PRIMARY KEY (`option_type_price_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_option_type_title`
--
ALTER TABLE `catalog_product_option_type_title`
  ADD PRIMARY KEY (`option_type_title_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_option_type_value`
--
ALTER TABLE `catalog_product_option_type_value`
  ADD PRIMARY KEY (`option_type_id`),
  ADD KEY `CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`);

--
-- Indexes for table `catalog_product_relation`
--
ALTER TABLE `catalog_product_relation`
  ADD PRIMARY KEY (`parent_id`,`child_id`),
  ADD KEY `CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`);

--
-- Indexes for table `catalog_product_super_attribute`
--
ALTER TABLE `catalog_product_super_attribute`
  ADD PRIMARY KEY (`product_super_attribute_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`);

--
-- Indexes for table `catalog_product_super_attribute_label`
--
ALTER TABLE `catalog_product_super_attribute_label`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`),
  ADD KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`);

--
-- Indexes for table `catalog_product_super_link`
--
ALTER TABLE `catalog_product_super_link`
  ADD PRIMARY KEY (`link_id`),
  ADD UNIQUE KEY `CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`),
  ADD KEY `CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`);

--
-- Indexes for table `catalog_product_website`
--
ALTER TABLE `catalog_product_website`
  ADD PRIMARY KEY (`product_id`,`website_id`),
  ADD KEY `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `catalog_url_rewrite_product_category`
--
ALTER TABLE `catalog_url_rewrite_product_category`
  ADD KEY `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  ADD KEY `FK_BB79E64705D7F17FE181F23144528FC8` (`url_rewrite_id`),
  ADD KEY `CATALOG_URL_REWRITE_PRODUCT_CATEGORY_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`);

--
-- Indexes for table `checkout_agreement`
--
ALTER TABLE `checkout_agreement`
  ADD PRIMARY KEY (`agreement_id`);

--
-- Indexes for table `checkout_agreement_store`
--
ALTER TABLE `checkout_agreement_store`
  ADD PRIMARY KEY (`agreement_id`,`store_id`),
  ADD KEY `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `cms_block`
--
ALTER TABLE `cms_block`
  ADD PRIMARY KEY (`block_id`);
ALTER TABLE `cms_block` ADD FULLTEXT KEY `CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`);

--
-- Indexes for table `cms_block_store`
--
ALTER TABLE `cms_block_store`
  ADD PRIMARY KEY (`block_id`,`store_id`),
  ADD KEY `CMS_BLOCK_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `cms_page`
--
ALTER TABLE `cms_page`
  ADD PRIMARY KEY (`page_id`),
  ADD KEY `CMS_PAGE_IDENTIFIER` (`identifier`);
ALTER TABLE `cms_page` ADD FULLTEXT KEY `CMS_PAGE_TITLE_META_KEYWORDS_META_DESCRIPTION_IDENTIFIER_CONTENT` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`);

--
-- Indexes for table `cms_page_store`
--
ALTER TABLE `cms_page_store`
  ADD PRIMARY KEY (`page_id`,`store_id`),
  ADD KEY `CMS_PAGE_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `core_config_data`
--
ALTER TABLE `core_config_data`
  ADD PRIMARY KEY (`config_id`),
  ADD UNIQUE KEY `CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`);

--
-- Indexes for table `cron_schedule`
--
ALTER TABLE `cron_schedule`
  ADD PRIMARY KEY (`schedule_id`),
  ADD KEY `CRON_SCHEDULE_JOB_CODE` (`job_code`),
  ADD KEY `CRON_SCHEDULE_SCHEDULED_AT_STATUS` (`scheduled_at`,`status`);

--
-- Indexes for table `customer_address_entity`
--
ALTER TABLE `customer_address_entity`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`);

--
-- Indexes for table `customer_address_entity_datetime`
--
ALTER TABLE `customer_address_entity_datetime`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_address_entity_decimal`
--
ALTER TABLE `customer_address_entity_decimal`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_address_entity_int`
--
ALTER TABLE `customer_address_entity_int`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_address_entity_text`
--
ALTER TABLE `customer_address_entity_text`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `customer_address_entity_varchar`
--
ALTER TABLE `customer_address_entity_varchar`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_eav_attribute`
--
ALTER TABLE `customer_eav_attribute`
  ADD PRIMARY KEY (`attribute_id`);

--
-- Indexes for table `customer_eav_attribute_website`
--
ALTER TABLE `customer_eav_attribute_website`
  ADD PRIMARY KEY (`attribute_id`,`website_id`),
  ADD KEY `CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `customer_entity`
--
ALTER TABLE `customer_entity`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`),
  ADD KEY `CUSTOMER_ENTITY_STORE_ID` (`store_id`),
  ADD KEY `CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`),
  ADD KEY `CUSTOMER_ENTITY_FIRSTNAME` (`firstname`),
  ADD KEY `CUSTOMER_ENTITY_LASTNAME` (`lastname`);

--
-- Indexes for table `customer_entity_datetime`
--
ALTER TABLE `customer_entity_datetime`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_entity_decimal`
--
ALTER TABLE `customer_entity_decimal`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_entity_int`
--
ALTER TABLE `customer_entity_int`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_entity_text`
--
ALTER TABLE `customer_entity_text`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `customer_entity_varchar`
--
ALTER TABLE `customer_entity_varchar`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`);

--
-- Indexes for table `customer_form_attribute`
--
ALTER TABLE `customer_form_attribute`
  ADD PRIMARY KEY (`form_code`,`attribute_id`),
  ADD KEY `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `customer_grid_flat`
--
ALTER TABLE `customer_grid_flat`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `CUSTOMER_GRID_FLAT_GROUP_ID` (`group_id`),
  ADD KEY `CUSTOMER_GRID_FLAT_CREATED_AT` (`created_at`),
  ADD KEY `CUSTOMER_GRID_FLAT_WEBSITE_ID` (`website_id`),
  ADD KEY `CUSTOMER_GRID_FLAT_CONFIRMATION` (`confirmation`),
  ADD KEY `CUSTOMER_GRID_FLAT_DOB` (`dob`),
  ADD KEY `CUSTOMER_GRID_FLAT_GENDER` (`gender`),
  ADD KEY `CUSTOMER_GRID_FLAT_BILLING_COUNTRY_ID` (`billing_country_id`);
ALTER TABLE `customer_grid_flat` ADD 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`);

--
-- Indexes for table `customer_group`
--
ALTER TABLE `customer_group`
  ADD PRIMARY KEY (`customer_group_id`);

--
-- Indexes for table `customer_log`
--
ALTER TABLE `customer_log`
  ADD PRIMARY KEY (`log_id`),
  ADD UNIQUE KEY `CUSTOMER_LOG_CUSTOMER_ID` (`customer_id`);

--
-- Indexes for table `customer_visitor`
--
ALTER TABLE `customer_visitor`
  ADD PRIMARY KEY (`visitor_id`),
  ADD KEY `CUSTOMER_VISITOR_CUSTOMER_ID` (`customer_id`),
  ADD KEY `CUSTOMER_VISITOR_LAST_VISIT_AT` (`last_visit_at`);

--
-- Indexes for table `design_change`
--
ALTER TABLE `design_change`
  ADD PRIMARY KEY (`design_change_id`),
  ADD KEY `DESIGN_CHANGE_STORE_ID` (`store_id`);

--
-- Indexes for table `design_config_grid_flat`
--
ALTER TABLE `design_config_grid_flat`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`),
  ADD KEY `DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`),
  ADD KEY `DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`);
ALTER TABLE `design_config_grid_flat` ADD FULLTEXT KEY `DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`);

--
-- Indexes for table `directory_country`
--
ALTER TABLE `directory_country`
  ADD PRIMARY KEY (`country_id`);

--
-- Indexes for table `directory_country_format`
--
ALTER TABLE `directory_country_format`
  ADD PRIMARY KEY (`country_format_id`),
  ADD UNIQUE KEY `DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`);

--
-- Indexes for table `directory_country_region`
--
ALTER TABLE `directory_country_region`
  ADD PRIMARY KEY (`region_id`),
  ADD KEY `DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`);

--
-- Indexes for table `directory_country_region_name`
--
ALTER TABLE `directory_country_region_name`
  ADD PRIMARY KEY (`locale`,`region_id`),
  ADD KEY `DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`);

--
-- Indexes for table `directory_currency_rate`
--
ALTER TABLE `directory_currency_rate`
  ADD PRIMARY KEY (`currency_from`,`currency_to`),
  ADD KEY `DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`);

--
-- Indexes for table `downloadable_link`
--
ALTER TABLE `downloadable_link`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`);

--
-- Indexes for table `downloadable_link_price`
--
ALTER TABLE `downloadable_link_price`
  ADD PRIMARY KEY (`price_id`),
  ADD KEY `DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`),
  ADD KEY `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `downloadable_link_purchased`
--
ALTER TABLE `downloadable_link_purchased`
  ADD PRIMARY KEY (`purchased_id`),
  ADD KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`),
  ADD KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`),
  ADD KEY `DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`);

--
-- Indexes for table `downloadable_link_purchased_item`
--
ALTER TABLE `downloadable_link_purchased_item`
  ADD PRIMARY KEY (`item_id`),
  ADD KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`),
  ADD KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`),
  ADD KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`);

--
-- Indexes for table `downloadable_link_title`
--
ALTER TABLE `downloadable_link_title`
  ADD PRIMARY KEY (`title_id`),
  ADD UNIQUE KEY `DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`),
  ADD KEY `DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`);

--
-- Indexes for table `downloadable_sample`
--
ALTER TABLE `downloadable_sample`
  ADD PRIMARY KEY (`sample_id`),
  ADD KEY `DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `downloadable_sample_title`
--
ALTER TABLE `downloadable_sample_title`
  ADD PRIMARY KEY (`title_id`),
  ADD UNIQUE KEY `DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`),
  ADD KEY `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_attribute`
--
ALTER TABLE `eav_attribute`
  ADD PRIMARY KEY (`attribute_id`),
  ADD UNIQUE KEY `EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`);

--
-- Indexes for table `eav_attribute_group`
--
ALTER TABLE `eav_attribute_group`
  ADD PRIMARY KEY (`attribute_group_id`),
  ADD UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_CODE` (`attribute_set_id`,`attribute_group_code`),
  ADD UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`),
  ADD KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`);

--
-- Indexes for table `eav_attribute_label`
--
ALTER TABLE `eav_attribute_label`
  ADD PRIMARY KEY (`attribute_label_id`),
  ADD KEY `EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  ADD KEY `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`);

--
-- Indexes for table `eav_attribute_option`
--
ALTER TABLE `eav_attribute_option`
  ADD PRIMARY KEY (`option_id`),
  ADD KEY `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `eav_attribute_option_swatch`
--
ALTER TABLE `eav_attribute_option_swatch`
  ADD PRIMARY KEY (`swatch_id`),
  ADD UNIQUE KEY `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_OPTION_ID` (`store_id`,`option_id`),
  ADD KEY `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` (`option_id`),
  ADD KEY `EAV_ATTRIBUTE_OPTION_SWATCH_SWATCH_ID` (`swatch_id`);

--
-- Indexes for table `eav_attribute_option_value`
--
ALTER TABLE `eav_attribute_option_value`
  ADD PRIMARY KEY (`value_id`),
  ADD KEY `EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`),
  ADD KEY `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_attribute_set`
--
ALTER TABLE `eav_attribute_set`
  ADD PRIMARY KEY (`attribute_set_id`),
  ADD UNIQUE KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`),
  ADD KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`);

--
-- Indexes for table `eav_entity`
--
ALTER TABLE `eav_entity`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  ADD KEY `EAV_ENTITY_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_entity_attribute`
--
ALTER TABLE `eav_entity_attribute`
  ADD PRIMARY KEY (`entity_attribute_id`),
  ADD UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`),
  ADD UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`),
  ADD KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  ADD KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `eav_entity_datetime`
--
ALTER TABLE `eav_entity_datetime`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `EAV_ENTITY_DATETIME_STORE_ID` (`store_id`),
  ADD KEY `EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  ADD KEY `EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`);

--
-- Indexes for table `eav_entity_decimal`
--
ALTER TABLE `eav_entity_decimal`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  ADD KEY `EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  ADD KEY `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`);

--
-- Indexes for table `eav_entity_int`
--
ALTER TABLE `eav_entity_int`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `EAV_ENTITY_INT_STORE_ID` (`store_id`),
  ADD KEY `EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  ADD KEY `EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`);

--
-- Indexes for table `eav_entity_store`
--
ALTER TABLE `eav_entity_store`
  ADD PRIMARY KEY (`entity_store_id`),
  ADD KEY `EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`),
  ADD KEY `EAV_ENTITY_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_entity_text`
--
ALTER TABLE `eav_entity_text`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`),
  ADD KEY `EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  ADD KEY `EAV_ENTITY_TEXT_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_entity_type`
--
ALTER TABLE `eav_entity_type`
  ADD PRIMARY KEY (`entity_type_id`),
  ADD KEY `EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`);

--
-- Indexes for table `eav_entity_varchar`
--
ALTER TABLE `eav_entity_varchar`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  ADD KEY `EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  ADD KEY `EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  ADD KEY `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`);

--
-- Indexes for table `eav_form_element`
--
ALTER TABLE `eav_form_element`
  ADD PRIMARY KEY (`element_id`),
  ADD UNIQUE KEY `EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`),
  ADD KEY `EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`),
  ADD KEY `EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `eav_form_fieldset`
--
ALTER TABLE `eav_form_fieldset`
  ADD PRIMARY KEY (`fieldset_id`),
  ADD UNIQUE KEY `EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`);

--
-- Indexes for table `eav_form_fieldset_label`
--
ALTER TABLE `eav_form_fieldset_label`
  ADD PRIMARY KEY (`fieldset_id`,`store_id`),
  ADD KEY `EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_form_type`
--
ALTER TABLE `eav_form_type`
  ADD PRIMARY KEY (`type_id`),
  ADD UNIQUE KEY `EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`),
  ADD KEY `EAV_FORM_TYPE_STORE_ID` (`store_id`);

--
-- Indexes for table `eav_form_type_entity`
--
ALTER TABLE `eav_form_type_entity`
  ADD PRIMARY KEY (`type_id`,`entity_type_id`),
  ADD KEY `EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`);

--
-- Indexes for table `email_abandoned_cart`
--
ALTER TABLE `email_abandoned_cart`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_ABANDONED_CART_QUOTE_ID` (`quote_id`),
  ADD KEY `EMAIL_ABANDONED_CART_STORE_ID` (`store_id`),
  ADD KEY `EMAIL_ABANDONED_CART_CUSTOMER_ID` (`customer_id`),
  ADD KEY `EMAIL_ABANDONED_CART_EMAIL` (`email`);

--
-- Indexes for table `email_automation`
--
ALTER TABLE `email_automation`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_AUTOMATION_AUTOMATION_TYPE` (`automation_type`),
  ADD KEY `EMAIL_AUTOMATION_ENROLMENT_STATUS` (`enrolment_status`),
  ADD KEY `EMAIL_AUTOMATION_TYPE_ID` (`type_id`),
  ADD KEY `EMAIL_AUTOMATION_EMAIL` (`email`),
  ADD KEY `EMAIL_AUTOMATION_PROGRAM_ID` (`program_id`),
  ADD KEY `EMAIL_AUTOMATION_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_AUTOMATION_UPDATED_AT` (`updated_at`),
  ADD KEY `EMAIL_AUTOMATION_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `email_campaign`
--
ALTER TABLE `email_campaign`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_CAMPAIGN_STORE_ID` (`store_id`),
  ADD KEY `EMAIL_CAMPAIGN_CAMPAIGN_ID` (`campaign_id`),
  ADD KEY `EMAIL_CAMPAIGN_EMAIL` (`email`),
  ADD KEY `EMAIL_CAMPAIGN_SEND_ID` (`send_id`),
  ADD KEY `EMAIL_CAMPAIGN_SEND_STATUS` (`send_status`),
  ADD KEY `EMAIL_CAMPAIGN_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_CAMPAIGN_UPDATED_AT` (`updated_at`),
  ADD KEY `EMAIL_CAMPAIGN_SENT_AT` (`sent_at`),
  ADD KEY `EMAIL_CAMPAIGN_EVENT_NAME` (`event_name`),
  ADD KEY `EMAIL_CAMPAIGN_MESSAGE` (`message`),
  ADD KEY `EMAIL_CAMPAIGN_QUOTE_ID` (`quote_id`),
  ADD KEY `EMAIL_CAMPAIGN_CUSTOMER_ID` (`customer_id`);

--
-- Indexes for table `email_catalog`
--
ALTER TABLE `email_catalog`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_CATALOG_PRODUCT_ID` (`product_id`),
  ADD KEY `EMAIL_CATALOG_PROCESSED` (`processed`),
  ADD KEY `EMAIL_CATALOG_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_CATALOG_UPDATED_AT` (`updated_at`),
  ADD KEY `EMAIL_CATALOG_LAST_IMPORTED_AT` (`last_imported_at`);

--
-- Indexes for table `email_contact`
--
ALTER TABLE `email_contact`
  ADD PRIMARY KEY (`email_contact_id`),
  ADD KEY `EMAIL_CONTACT_EMAIL_CONTACT_ID` (`email_contact_id`),
  ADD KEY `EMAIL_CONTACT_IS_GUEST` (`is_guest`),
  ADD KEY `EMAIL_CONTACT_CUSTOMER_ID` (`customer_id`),
  ADD KEY `EMAIL_CONTACT_WEBSITE_ID` (`website_id`),
  ADD KEY `EMAIL_CONTACT_IS_SUBSCRIBER` (`is_subscriber`),
  ADD KEY `EMAIL_CONTACT_SUBSCRIBER_STATUS` (`subscriber_status`),
  ADD KEY `EMAIL_CONTACT_EMAIL_IMPORTED` (`email_imported`),
  ADD KEY `EMAIL_CONTACT_SUBSCRIBER_IMPORTED` (`subscriber_imported`),
  ADD KEY `EMAIL_CONTACT_SUPPRESSED` (`suppressed`),
  ADD KEY `EMAIL_CONTACT_EMAIL` (`email`),
  ADD KEY `EMAIL_CONTACT_CONTACT_ID` (`contact_id`);

--
-- Indexes for table `email_contact_consent`
--
ALTER TABLE `email_contact_consent`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_CONTACT_CONSENT_EMAIL_CONTACT_ID` (`email_contact_id`);

--
-- Indexes for table `email_coupon_attribute`
--
ALTER TABLE `email_coupon_attribute`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_COUPON_ATTRIBUTE_COUPON_ID` (`salesrule_coupon_id`),
  ADD KEY `EMAIL_COUPON_ATTRIBUTE_EMAIL` (`email`);

--
-- Indexes for table `email_failed_auth`
--
ALTER TABLE `email_failed_auth`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_AUTH_EDC_STORE_ID` (`store_id`);

--
-- Indexes for table `email_importer`
--
ALTER TABLE `email_importer`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_IMPORTER_IMPORT_TYPE` (`import_type`),
  ADD KEY `EMAIL_IMPORTER_WEBSITE_ID` (`website_id`),
  ADD KEY `EMAIL_IMPORTER_IMPORT_STATUS` (`import_status`),
  ADD KEY `EMAIL_IMPORTER_IMPORT_MODE` (`import_mode`),
  ADD KEY `EMAIL_IMPORTER_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_IMPORTER_UPDATED_AT` (`updated_at`),
  ADD KEY `EMAIL_IMPORTER_IMPORT_ID` (`import_id`),
  ADD KEY `EMAIL_IMPORTER_IMPORT_STARTED` (`import_started`),
  ADD KEY `EMAIL_IMPORTER_IMPORT_FINISHED` (`import_finished`);

--
-- Indexes for table `email_order`
--
ALTER TABLE `email_order`
  ADD PRIMARY KEY (`email_order_id`),
  ADD KEY `EMAIL_ORDER_STORE_ID` (`store_id`),
  ADD KEY `EMAIL_ORDER_QUOTE_ID` (`quote_id`),
  ADD KEY `EMAIL_ORDER_EMAIL_IMPORTED` (`email_imported`),
  ADD KEY `EMAIL_ORDER_ORDER_STATUS` (`order_status`),
  ADD KEY `EMAIL_ORDER_MODIFIED` (`modified`),
  ADD KEY `EMAIL_ORDER_UPDATED_AT` (`updated_at`),
  ADD KEY `EMAIL_ORDER_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` (`order_id`);

--
-- Indexes for table `email_review`
--
ALTER TABLE `email_review`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_REVIEW_REVIEW_ID` (`review_id`),
  ADD KEY `EMAIL_REVIEW_CUSTOMER_ID` (`customer_id`),
  ADD KEY `EMAIL_REVIEW_STORE_ID` (`store_id`),
  ADD KEY `EMAIL_REVIEW_REVIEW_IMPORTED` (`review_imported`),
  ADD KEY `EMAIL_REVIEW_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_REVIEW_UPDATED_AT` (`updated_at`);

--
-- Indexes for table `email_rules`
--
ALTER TABLE `email_rules`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `email_template`
--
ALTER TABLE `email_template`
  ADD PRIMARY KEY (`template_id`),
  ADD UNIQUE KEY `EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`),
  ADD KEY `EMAIL_TEMPLATE_ADDED_AT` (`added_at`),
  ADD KEY `EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`);

--
-- Indexes for table `email_wishlist`
--
ALTER TABLE `email_wishlist`
  ADD PRIMARY KEY (`id`),
  ADD KEY `EMAIL_WISHLIST_WISHLIST_ID` (`wishlist_id`),
  ADD KEY `EMAIL_WISHLIST_ITEM_COUNT` (`item_count`),
  ADD KEY `EMAIL_WISHLIST_CUSTOMER_ID` (`customer_id`),
  ADD KEY `EMAIL_WISHLIST_WISHLIST_MODIFIED` (`wishlist_modified`),
  ADD KEY `EMAIL_WISHLIST_WISHLIST_IMPORTED` (`wishlist_imported`),
  ADD KEY `EMAIL_WISHLIST_CREATED_AT` (`created_at`),
  ADD KEY `EMAIL_WISHLIST_UPDATED_AT` (`updated_at`),
  ADD KEY `EMAIL_WISHLIST_STORE_ID` (`store_id`);

--
-- Indexes for table `flag`
--
ALTER TABLE `flag`
  ADD PRIMARY KEY (`flag_id`),
  ADD KEY `FLAG_LAST_UPDATE` (`last_update`);

--
-- Indexes for table `gift_message`
--
ALTER TABLE `gift_message`
  ADD PRIMARY KEY (`gift_message_id`);

--
-- Indexes for table `googleoptimizer_code`
--
ALTER TABLE `googleoptimizer_code`
  ADD PRIMARY KEY (`code_id`),
  ADD UNIQUE KEY `GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`);

--
-- Indexes for table `importexport_importdata`
--
ALTER TABLE `importexport_importdata`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `import_history`
--
ALTER TABLE `import_history`
  ADD PRIMARY KEY (`history_id`);

--
-- Indexes for table `indexer_state`
--
ALTER TABLE `indexer_state`
  ADD PRIMARY KEY (`state_id`),
  ADD KEY `INDEXER_STATE_INDEXER_ID` (`indexer_id`);

--
-- Indexes for table `integration`
--
ALTER TABLE `integration`
  ADD PRIMARY KEY (`integration_id`),
  ADD UNIQUE KEY `INTEGRATION_NAME` (`name`),
  ADD UNIQUE KEY `INTEGRATION_CONSUMER_ID` (`consumer_id`);

--
-- Indexes for table `inventory_low_stock_notification_configuration`
--
ALTER TABLE `inventory_low_stock_notification_configuration`
  ADD PRIMARY KEY (`source_code`,`sku`);

--
-- Indexes for table `inventory_reservation`
--
ALTER TABLE `inventory_reservation`
  ADD PRIMARY KEY (`reservation_id`),
  ADD KEY `INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY` (`stock_id`,`sku`,`quantity`);

--
-- Indexes for table `inventory_shipment_source`
--
ALTER TABLE `inventory_shipment_source`
  ADD PRIMARY KEY (`shipment_id`);

--
-- Indexes for table `inventory_source`
--
ALTER TABLE `inventory_source`
  ADD PRIMARY KEY (`source_code`);

--
-- Indexes for table `inventory_source_carrier_link`
--
ALTER TABLE `inventory_source_carrier_link`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`);

--
-- Indexes for table `inventory_source_item`
--
ALTER TABLE `inventory_source_item`
  ADD PRIMARY KEY (`source_item_id`),
  ADD UNIQUE KEY `INVENTORY_SOURCE_ITEM_SOURCE_CODE_SKU` (`source_code`,`sku`),
  ADD KEY `INVENTORY_SOURCE_ITEM_SKU_SOURCE_CODE_QUANTITY` (`sku`,`source_code`,`quantity`);

--
-- Indexes for table `inventory_source_stock_link`
--
ALTER TABLE `inventory_source_stock_link`
  ADD PRIMARY KEY (`link_id`),
  ADD UNIQUE KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_SOURCE_CODE` (`stock_id`,`source_code`),
  ADD KEY `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  ADD KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_PRIORITY` (`stock_id`,`priority`);

--
-- Indexes for table `inventory_stock`
--
ALTER TABLE `inventory_stock`
  ADD PRIMARY KEY (`stock_id`);

--
-- Indexes for table `inventory_stock_sales_channel`
--
ALTER TABLE `inventory_stock_sales_channel`
  ADD PRIMARY KEY (`type`,`code`),
  ADD KEY `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` (`stock_id`);

--
-- Indexes for table `klarna_core_order`
--
ALTER TABLE `klarna_core_order`
  ADD PRIMARY KEY (`id`),
  ADD KEY `KLARNA_CORE_ORDER_IS_ACKNOWLEDGED` (`is_acknowledged`),
  ADD KEY `KLARNA_CORE_ORDER_ORDER_ID` (`order_id`);

--
-- Indexes for table `klarna_payments_quote`
--
ALTER TABLE `klarna_payments_quote`
  ADD PRIMARY KEY (`payments_quote_id`),
  ADD KEY `KLARNA_PAYMENTS_QUOTE_QUOTE_ID` (`quote_id`);

--
-- Indexes for table `layout_link`
--
ALTER TABLE `layout_link`
  ADD PRIMARY KEY (`layout_link_id`),
  ADD KEY `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` (`theme_id`),
  ADD KEY `LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`),
  ADD KEY `LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`);

--
-- Indexes for table `layout_update`
--
ALTER TABLE `layout_update`
  ADD PRIMARY KEY (`layout_update_id`),
  ADD KEY `LAYOUT_UPDATE_HANDLE` (`handle`);

--
-- Indexes for table `magento_acknowledged_bulk`
--
ALTER TABLE `magento_acknowledged_bulk`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`);

--
-- Indexes for table `magento_bulk`
--
ALTER TABLE `magento_bulk`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `MAGENTO_BULK_UUID` (`uuid`),
  ADD KEY `MAGENTO_BULK_USER_ID` (`user_id`);

--
-- Indexes for table `magento_operation`
--
ALTER TABLE `magento_operation`
  ADD PRIMARY KEY (`id`),
  ADD KEY `MAGENTO_OPERATION_BULK_UUID_ERROR_CODE` (`bulk_uuid`,`error_code`);

--
-- Indexes for table `media_gallery_asset`
--
ALTER TABLE `media_gallery_asset`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `MEDIA_GALLERY_ASSET_PATH` (`path`),
  ADD KEY `MEDIA_GALLERY_ASSET_ID` (`id`);

--
-- Indexes for table `media_gallery_asset_keyword`
--
ALTER TABLE `media_gallery_asset_keyword`
  ADD PRIMARY KEY (`keyword_id`,`asset_id`),
  ADD KEY `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID` (`asset_id`),
  ADD KEY `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID` (`keyword_id`);

--
-- Indexes for table `media_gallery_keyword`
--
ALTER TABLE `media_gallery_keyword`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `MEDIA_GALLERY_KEYWORD_KEYWORD` (`keyword`),
  ADD KEY `MEDIA_GALLERY_KEYWORD_ID` (`id`);

--
-- Indexes for table `msp_tfa_country_codes`
--
ALTER TABLE `msp_tfa_country_codes`
  ADD PRIMARY KEY (`msp_tfa_country_codes_id`),
  ADD KEY `MSP_TFA_COUNTRY_CODES_CODE` (`code`(128));

--
-- Indexes for table `msp_tfa_trusted`
--
ALTER TABLE `msp_tfa_trusted`
  ADD PRIMARY KEY (`msp_tfa_trusted_id`),
  ADD KEY `MSP_TFA_TRUSTED_USER_ID_ADMIN_USER_USER_ID` (`user_id`);

--
-- Indexes for table `msp_tfa_user_config`
--
ALTER TABLE `msp_tfa_user_config`
  ADD PRIMARY KEY (`msp_tfa_user_config_id`),
  ADD KEY `MSP_TFA_USER_CONFIG_USER_ID_ADMIN_USER_USER_ID` (`user_id`);

--
-- Indexes for table `mview_state`
--
ALTER TABLE `mview_state`
  ADD PRIMARY KEY (`state_id`),
  ADD KEY `MVIEW_STATE_VIEW_ID` (`view_id`),
  ADD KEY `MVIEW_STATE_MODE` (`mode`);

--
-- Indexes for table `newsletter_problem`
--
ALTER TABLE `newsletter_problem`
  ADD PRIMARY KEY (`problem_id`),
  ADD KEY `NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`),
  ADD KEY `NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`);

--
-- Indexes for table `newsletter_queue`
--
ALTER TABLE `newsletter_queue`
  ADD PRIMARY KEY (`queue_id`),
  ADD KEY `NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`);

--
-- Indexes for table `newsletter_queue_link`
--
ALTER TABLE `newsletter_queue_link`
  ADD PRIMARY KEY (`queue_link_id`),
  ADD KEY `NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`),
  ADD KEY `NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`);

--
-- Indexes for table `newsletter_queue_store_link`
--
ALTER TABLE `newsletter_queue_store_link`
  ADD PRIMARY KEY (`queue_id`,`store_id`),
  ADD KEY `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`);

--
-- Indexes for table `newsletter_subscriber`
--
ALTER TABLE `newsletter_subscriber`
  ADD PRIMARY KEY (`subscriber_id`),
  ADD KEY `NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`),
  ADD KEY `NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`),
  ADD KEY `NEWSLETTER_SUBSCRIBER_SUBSCRIBER_EMAIL` (`subscriber_email`);

--
-- Indexes for table `newsletter_template`
--
ALTER TABLE `newsletter_template`
  ADD PRIMARY KEY (`template_id`),
  ADD KEY `NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`),
  ADD KEY `NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`),
  ADD KEY `NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`);

--
-- Indexes for table `oauth_consumer`
--
ALTER TABLE `oauth_consumer`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `OAUTH_CONSUMER_KEY` (`key`),
  ADD UNIQUE KEY `OAUTH_CONSUMER_SECRET` (`secret`),
  ADD KEY `OAUTH_CONSUMER_CREATED_AT` (`created_at`),
  ADD KEY `OAUTH_CONSUMER_UPDATED_AT` (`updated_at`);

--
-- Indexes for table `oauth_nonce`
--
ALTER TABLE `oauth_nonce`
  ADD UNIQUE KEY `OAUTH_NONCE_NONCE_CONSUMER_ID` (`nonce`,`consumer_id`),
  ADD KEY `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` (`consumer_id`),
  ADD KEY `OAUTH_NONCE_TIMESTAMP` (`timestamp`);

--
-- Indexes for table `oauth_token`
--
ALTER TABLE `oauth_token`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `OAUTH_TOKEN_TOKEN` (`token`),
  ADD KEY `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` (`admin_id`),
  ADD KEY `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  ADD KEY `OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`);

--
-- Indexes for table `oauth_token_request_log`
--
ALTER TABLE `oauth_token_request_log`
  ADD PRIMARY KEY (`log_id`),
  ADD UNIQUE KEY `OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`);

--
-- Indexes for table `password_reset_request_event`
--
ALTER TABLE `password_reset_request_event`
  ADD PRIMARY KEY (`id`),
  ADD KEY `PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`),
  ADD KEY `PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`);

--
-- Indexes for table `patch_list`
--
ALTER TABLE `patch_list`
  ADD PRIMARY KEY (`patch_id`);

--
-- Indexes for table `paypal_billing_agreement`
--
ALTER TABLE `paypal_billing_agreement`
  ADD PRIMARY KEY (`agreement_id`),
  ADD KEY `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`),
  ADD KEY `PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`);

--
-- Indexes for table `paypal_billing_agreement_order`
--
ALTER TABLE `paypal_billing_agreement_order`
  ADD PRIMARY KEY (`agreement_id`,`order_id`),
  ADD KEY `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`);

--
-- Indexes for table `paypal_cert`
--
ALTER TABLE `paypal_cert`
  ADD PRIMARY KEY (`cert_id`),
  ADD KEY `PAYPAL_CERT_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `paypal_payment_transaction`
--
ALTER TABLE `paypal_payment_transaction`
  ADD PRIMARY KEY (`transaction_id`),
  ADD UNIQUE KEY `PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`);

--
-- Indexes for table `paypal_settlement_report`
--
ALTER TABLE `paypal_settlement_report`
  ADD PRIMARY KEY (`report_id`),
  ADD UNIQUE KEY `PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`);

--
-- Indexes for table `paypal_settlement_report_row`
--
ALTER TABLE `paypal_settlement_report_row`
  ADD PRIMARY KEY (`row_id`),
  ADD KEY `PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`);

--
-- Indexes for table `persistent_session`
--
ALTER TABLE `persistent_session`
  ADD PRIMARY KEY (`persistent_id`),
  ADD UNIQUE KEY `PERSISTENT_SESSION_KEY` (`key`),
  ADD UNIQUE KEY `PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`),
  ADD KEY `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` (`website_id`),
  ADD KEY `PERSISTENT_SESSION_UPDATED_AT` (`updated_at`);

--
-- Indexes for table `product_alert_price`
--
ALTER TABLE `product_alert_price`
  ADD PRIMARY KEY (`alert_price_id`),
  ADD KEY `PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`),
  ADD KEY `PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`),
  ADD KEY `PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`),
  ADD KEY `PRODUCT_ALERT_PRICE_STORE_ID` (`store_id`);

--
-- Indexes for table `product_alert_stock`
--
ALTER TABLE `product_alert_stock`
  ADD PRIMARY KEY (`alert_stock_id`),
  ADD KEY `PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`),
  ADD KEY `PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`),
  ADD KEY `PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`),
  ADD KEY `PRODUCT_ALERT_STOCK_STORE_ID` (`store_id`);

--
-- Indexes for table `queue`
--
ALTER TABLE `queue`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `QUEUE_NAME` (`name`);

--
-- Indexes for table `queue_lock`
--
ALTER TABLE `queue_lock`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `QUEUE_LOCK_MESSAGE_CODE` (`message_code`);

--
-- Indexes for table `queue_message`
--
ALTER TABLE `queue_message`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `queue_message_status`
--
ALTER TABLE `queue_message_status`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `QUEUE_MESSAGE_STATUS_QUEUE_ID_MESSAGE_ID` (`queue_id`,`message_id`),
  ADD KEY `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` (`message_id`),
  ADD KEY `QUEUE_MESSAGE_STATUS_STATUS_UPDATED_AT` (`status`,`updated_at`);

--
-- Indexes for table `quote`
--
ALTER TABLE `quote`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`),
  ADD KEY `QUOTE_STORE_ID` (`store_id`);

--
-- Indexes for table `quote_address`
--
ALTER TABLE `quote_address`
  ADD PRIMARY KEY (`address_id`),
  ADD KEY `QUOTE_ADDRESS_QUOTE_ID` (`quote_id`);

--
-- Indexes for table `quote_address_item`
--
ALTER TABLE `quote_address_item`
  ADD PRIMARY KEY (`address_item_id`),
  ADD KEY `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`),
  ADD KEY `QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  ADD KEY `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`),
  ADD KEY `QUOTE_ADDRESS_ITEM_STORE_ID` (`store_id`);

--
-- Indexes for table `quote_id_mask`
--
ALTER TABLE `quote_id_mask`
  ADD PRIMARY KEY (`entity_id`,`quote_id`),
  ADD KEY `QUOTE_ID_MASK_QUOTE_ID` (`quote_id`),
  ADD KEY `QUOTE_ID_MASK_MASKED_ID` (`masked_id`);

--
-- Indexes for table `quote_item`
--
ALTER TABLE `quote_item`
  ADD PRIMARY KEY (`item_id`),
  ADD KEY `QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  ADD KEY `QUOTE_ITEM_PRODUCT_ID` (`product_id`),
  ADD KEY `QUOTE_ITEM_QUOTE_ID` (`quote_id`),
  ADD KEY `QUOTE_ITEM_STORE_ID` (`store_id`);

--
-- Indexes for table `quote_item_option`
--
ALTER TABLE `quote_item_option`
  ADD PRIMARY KEY (`option_id`),
  ADD KEY `QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`);

--
-- Indexes for table `quote_payment`
--
ALTER TABLE `quote_payment`
  ADD PRIMARY KEY (`payment_id`),
  ADD KEY `QUOTE_PAYMENT_QUOTE_ID` (`quote_id`);

--
-- Indexes for table `quote_shipping_rate`
--
ALTER TABLE `quote_shipping_rate`
  ADD PRIMARY KEY (`rate_id`),
  ADD KEY `QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`);

--
-- Indexes for table `rating`
--
ALTER TABLE `rating`
  ADD PRIMARY KEY (`rating_id`),
  ADD UNIQUE KEY `RATING_RATING_CODE` (`rating_code`),
  ADD KEY `RATING_ENTITY_ID` (`entity_id`);

--
-- Indexes for table `rating_entity`
--
ALTER TABLE `rating_entity`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `RATING_ENTITY_ENTITY_CODE` (`entity_code`);

--
-- Indexes for table `rating_option`
--
ALTER TABLE `rating_option`
  ADD PRIMARY KEY (`option_id`),
  ADD KEY `RATING_OPTION_RATING_ID` (`rating_id`);

--
-- Indexes for table `rating_option_vote`
--
ALTER TABLE `rating_option_vote`
  ADD PRIMARY KEY (`vote_id`),
  ADD KEY `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` (`review_id`),
  ADD KEY `RATING_OPTION_VOTE_OPTION_ID` (`option_id`);

--
-- Indexes for table `rating_option_vote_aggregated`
--
ALTER TABLE `rating_option_vote_aggregated`
  ADD PRIMARY KEY (`primary_id`),
  ADD KEY `RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`),
  ADD KEY `RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`);

--
-- Indexes for table `rating_store`
--
ALTER TABLE `rating_store`
  ADD PRIMARY KEY (`rating_id`,`store_id`),
  ADD KEY `RATING_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `rating_title`
--
ALTER TABLE `rating_title`
  ADD PRIMARY KEY (`rating_id`,`store_id`),
  ADD KEY `RATING_TITLE_STORE_ID` (`store_id`);

--
-- Indexes for table `release_notification_viewer_log`
--
ALTER TABLE `release_notification_viewer_log`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID` (`viewer_id`);

--
-- Indexes for table `reporting_counts`
--
ALTER TABLE `reporting_counts`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `reporting_module_status`
--
ALTER TABLE `reporting_module_status`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `reporting_orders`
--
ALTER TABLE `reporting_orders`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `reporting_system_updates`
--
ALTER TABLE `reporting_system_updates`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `reporting_users`
--
ALTER TABLE `reporting_users`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `report_compared_product_index`
--
ALTER TABLE `report_compared_product_index`
  ADD PRIMARY KEY (`index_id`),
  ADD UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  ADD UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  ADD KEY `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  ADD KEY `REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  ADD KEY `REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `report_event`
--
ALTER TABLE `report_event`
  ADD PRIMARY KEY (`event_id`),
  ADD KEY `REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`),
  ADD KEY `REPORT_EVENT_SUBJECT_ID` (`subject_id`),
  ADD KEY `REPORT_EVENT_OBJECT_ID` (`object_id`),
  ADD KEY `REPORT_EVENT_SUBTYPE` (`subtype`),
  ADD KEY `REPORT_EVENT_STORE_ID` (`store_id`);

--
-- Indexes for table `report_event_types`
--
ALTER TABLE `report_event_types`
  ADD PRIMARY KEY (`event_type_id`);

--
-- Indexes for table `report_viewed_product_aggregated_daily`
--
ALTER TABLE `report_viewed_product_aggregated_daily`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `report_viewed_product_aggregated_monthly`
--
ALTER TABLE `report_viewed_product_aggregated_monthly`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `report_viewed_product_aggregated_yearly`
--
ALTER TABLE `report_viewed_product_aggregated_yearly`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `report_viewed_product_index`
--
ALTER TABLE `report_viewed_product_index`
  ADD PRIMARY KEY (`index_id`),
  ADD UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  ADD UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  ADD KEY `REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  ADD KEY `REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `review`
--
ALTER TABLE `review`
  ADD PRIMARY KEY (`review_id`),
  ADD KEY `REVIEW_ENTITY_ID` (`entity_id`),
  ADD KEY `REVIEW_STATUS_ID` (`status_id`),
  ADD KEY `REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`);

--
-- Indexes for table `review_detail`
--
ALTER TABLE `review_detail`
  ADD PRIMARY KEY (`detail_id`),
  ADD KEY `REVIEW_DETAIL_REVIEW_ID` (`review_id`),
  ADD KEY `REVIEW_DETAIL_STORE_ID` (`store_id`),
  ADD KEY `REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`);

--
-- Indexes for table `review_entity`
--
ALTER TABLE `review_entity`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `review_entity_summary`
--
ALTER TABLE `review_entity_summary`
  ADD PRIMARY KEY (`primary_id`),
  ADD KEY `REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`);

--
-- Indexes for table `review_status`
--
ALTER TABLE `review_status`
  ADD PRIMARY KEY (`status_id`);

--
-- Indexes for table `review_store`
--
ALTER TABLE `review_store`
  ADD PRIMARY KEY (`review_id`,`store_id`),
  ADD KEY `REVIEW_STORE_STORE_ID` (`store_id`);

--
-- Indexes for table `salesrule`
--
ALTER TABLE `salesrule`
  ADD PRIMARY KEY (`rule_id`),
  ADD KEY `SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`);

--
-- Indexes for table `salesrule_coupon`
--
ALTER TABLE `salesrule_coupon`
  ADD PRIMARY KEY (`coupon_id`),
  ADD UNIQUE KEY `SALESRULE_COUPON_CODE` (`code`),
  ADD UNIQUE KEY `SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`),
  ADD KEY `SALESRULE_COUPON_RULE_ID` (`rule_id`);

--
-- Indexes for table `salesrule_coupon_aggregated`
--
ALTER TABLE `salesrule_coupon_aggregated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALESRULE_COUPON_AGGRED_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`),
  ADD KEY `SALESRULE_COUPON_AGGREGATED_STORE_ID` (`store_id`),
  ADD KEY `SALESRULE_COUPON_AGGREGATED_RULE_NAME` (`rule_name`);

--
-- Indexes for table `salesrule_coupon_aggregated_order`
--
ALTER TABLE `salesrule_coupon_aggregated_order`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `UNQ_1094D1FBBCBB11704A29DEF3ACC37D2B` (`period`,`store_id`,`order_status`,`coupon_code`),
  ADD KEY `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  ADD KEY `SALESRULE_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`);

--
-- Indexes for table `salesrule_coupon_aggregated_updated`
--
ALTER TABLE `salesrule_coupon_aggregated_updated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `UNQ_7196FA120A4F0F84E1B66605E87E213E` (`period`,`store_id`,`order_status`,`coupon_code`),
  ADD KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  ADD KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`);

--
-- Indexes for table `salesrule_coupon_usage`
--
ALTER TABLE `salesrule_coupon_usage`
  ADD PRIMARY KEY (`coupon_id`,`customer_id`),
  ADD KEY `SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`);

--
-- Indexes for table `salesrule_customer`
--
ALTER TABLE `salesrule_customer`
  ADD PRIMARY KEY (`rule_customer_id`),
  ADD KEY `SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`),
  ADD KEY `SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`);

--
-- Indexes for table `salesrule_customer_group`
--
ALTER TABLE `salesrule_customer_group`
  ADD PRIMARY KEY (`rule_id`,`customer_group_id`),
  ADD KEY `SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`);

--
-- Indexes for table `salesrule_label`
--
ALTER TABLE `salesrule_label`
  ADD PRIMARY KEY (`label_id`),
  ADD UNIQUE KEY `SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`),
  ADD KEY `SALESRULE_LABEL_STORE_ID` (`store_id`);

--
-- Indexes for table `salesrule_product_attribute`
--
ALTER TABLE `salesrule_product_attribute`
  ADD PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`),
  ADD KEY `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`),
  ADD KEY `SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  ADD KEY `SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `salesrule_website`
--
ALTER TABLE `salesrule_website`
  ADD PRIMARY KEY (`rule_id`,`website_id`),
  ADD KEY `SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`);

--
-- Indexes for table `sales_bestsellers_aggregated_daily`
--
ALTER TABLE `sales_bestsellers_aggregated_daily`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  ADD KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  ADD KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `sales_bestsellers_aggregated_monthly`
--
ALTER TABLE `sales_bestsellers_aggregated_monthly`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  ADD KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  ADD KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `sales_bestsellers_aggregated_yearly`
--
ALTER TABLE `sales_bestsellers_aggregated_yearly`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  ADD KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  ADD KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`);

--
-- Indexes for table `sales_creditmemo`
--
ALTER TABLE `sales_creditmemo`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_CREDITMEMO_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_CREDITMEMO_STORE_ID` (`store_id`),
  ADD KEY `SALES_CREDITMEMO_ORDER_ID` (`order_id`),
  ADD KEY `SALES_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`),
  ADD KEY `SALES_CREDITMEMO_STATE` (`state`),
  ADD KEY `SALES_CREDITMEMO_CREATED_AT` (`created_at`),
  ADD KEY `SALES_CREDITMEMO_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_CREDITMEMO_SEND_EMAIL` (`send_email`),
  ADD KEY `SALES_CREDITMEMO_EMAIL_SENT` (`email_sent`);

--
-- Indexes for table `sales_creditmemo_comment`
--
ALTER TABLE `sales_creditmemo_comment`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`),
  ADD KEY `SALES_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_creditmemo_grid`
--
ALTER TABLE `sales_creditmemo_grid`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_CREDITMEMO_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  ADD KEY `SALES_CREDITMEMO_GRID_CREATED_AT` (`created_at`),
  ADD KEY `SALES_CREDITMEMO_GRID_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`),
  ADD KEY `SALES_CREDITMEMO_GRID_STATE` (`state`),
  ADD KEY `SALES_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`),
  ADD KEY `SALES_CREDITMEMO_GRID_ORDER_STATUS` (`order_status`),
  ADD KEY `SALES_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  ADD KEY `SALES_CREDITMEMO_GRID_STORE_ID` (`store_id`),
  ADD KEY `SALES_CREDITMEMO_GRID_ORDER_BASE_GRAND_TOTAL` (`order_base_grand_total`),
  ADD KEY `SALES_CREDITMEMO_GRID_ORDER_ID` (`order_id`);
ALTER TABLE `sales_creditmemo_grid` ADD FULLTEXT KEY `FTI_32B7BA885941A8254EE84AE650ABDC86` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`);

--
-- Indexes for table `sales_creditmemo_item`
--
ALTER TABLE `sales_creditmemo_item`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_invoice`
--
ALTER TABLE `sales_invoice`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_INVOICE_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_INVOICE_STORE_ID` (`store_id`),
  ADD KEY `SALES_INVOICE_GRAND_TOTAL` (`grand_total`),
  ADD KEY `SALES_INVOICE_ORDER_ID` (`order_id`),
  ADD KEY `SALES_INVOICE_STATE` (`state`),
  ADD KEY `SALES_INVOICE_CREATED_AT` (`created_at`),
  ADD KEY `SALES_INVOICE_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_INVOICE_SEND_EMAIL` (`send_email`),
  ADD KEY `SALES_INVOICE_EMAIL_SENT` (`email_sent`);

--
-- Indexes for table `sales_invoiced_aggregated`
--
ALTER TABLE `sales_invoiced_aggregated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  ADD KEY `SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_invoiced_aggregated_order`
--
ALTER TABLE `sales_invoiced_aggregated_order`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_INVOICED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  ADD KEY `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_invoice_comment`
--
ALTER TABLE `sales_invoice_comment`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_INVOICE_COMMENT_CREATED_AT` (`created_at`),
  ADD KEY `SALES_INVOICE_COMMENT_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_invoice_grid`
--
ALTER TABLE `sales_invoice_grid`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_INVOICE_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_INVOICE_GRID_STORE_ID` (`store_id`),
  ADD KEY `SALES_INVOICE_GRID_GRAND_TOTAL` (`grand_total`),
  ADD KEY `SALES_INVOICE_GRID_ORDER_ID` (`order_id`),
  ADD KEY `SALES_INVOICE_GRID_STATE` (`state`),
  ADD KEY `SALES_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  ADD KEY `SALES_INVOICE_GRID_CREATED_AT` (`created_at`),
  ADD KEY `SALES_INVOICE_GRID_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`),
  ADD KEY `SALES_INVOICE_GRID_BILLING_NAME` (`billing_name`),
  ADD KEY `SALES_INVOICE_GRID_BASE_GRAND_TOTAL` (`base_grand_total`);
ALTER TABLE `sales_invoice_grid` ADD FULLTEXT KEY `FTI_95D9C924DD6A8734EB8B5D01D60F90DE` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`);

--
-- Indexes for table `sales_invoice_item`
--
ALTER TABLE `sales_invoice_item`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_INVOICE_ITEM_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_order`
--
ALTER TABLE `sales_order`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_ORDER_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_ORDER_STATUS` (`status`),
  ADD KEY `SALES_ORDER_STATE` (`state`),
  ADD KEY `SALES_ORDER_STORE_ID` (`store_id`),
  ADD KEY `SALES_ORDER_CREATED_AT` (`created_at`),
  ADD KEY `SALES_ORDER_CUSTOMER_ID` (`customer_id`),
  ADD KEY `SALES_ORDER_EXT_ORDER_ID` (`ext_order_id`),
  ADD KEY `SALES_ORDER_QUOTE_ID` (`quote_id`),
  ADD KEY `SALES_ORDER_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_ORDER_SEND_EMAIL` (`send_email`),
  ADD KEY `SALES_ORDER_EMAIL_SENT` (`email_sent`);

--
-- Indexes for table `sales_order_address`
--
ALTER TABLE `sales_order_address`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_ORDER_ADDRESS_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_order_aggregated_created`
--
ALTER TABLE `sales_order_aggregated_created`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  ADD KEY `SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_order_aggregated_updated`
--
ALTER TABLE `sales_order_aggregated_updated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  ADD KEY `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_order_grid`
--
ALTER TABLE `sales_order_grid`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_ORDER_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_ORDER_GRID_STATUS` (`status`),
  ADD KEY `SALES_ORDER_GRID_STORE_ID` (`store_id`),
  ADD KEY `SALES_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  ADD KEY `SALES_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`),
  ADD KEY `SALES_ORDER_GRID_GRAND_TOTAL` (`grand_total`),
  ADD KEY `SALES_ORDER_GRID_TOTAL_PAID` (`total_paid`),
  ADD KEY `SALES_ORDER_GRID_SHIPPING_NAME` (`shipping_name`),
  ADD KEY `SALES_ORDER_GRID_BILLING_NAME` (`billing_name`),
  ADD KEY `SALES_ORDER_GRID_CREATED_AT` (`created_at`),
  ADD KEY `SALES_ORDER_GRID_CUSTOMER_ID` (`customer_id`),
  ADD KEY `SALES_ORDER_GRID_UPDATED_AT` (`updated_at`);
ALTER TABLE `sales_order_grid` ADD FULLTEXT KEY `FTI_65B9E9925EC58F0C7C2E2F6379C233E7` (`increment_id`,`billing_name`,`shipping_name`,`shipping_address`,`billing_address`,`customer_name`,`customer_email`);

--
-- Indexes for table `sales_order_item`
--
ALTER TABLE `sales_order_item`
  ADD PRIMARY KEY (`item_id`),
  ADD KEY `SALES_ORDER_ITEM_ORDER_ID` (`order_id`),
  ADD KEY `SALES_ORDER_ITEM_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_order_payment`
--
ALTER TABLE `sales_order_payment`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_ORDER_PAYMENT_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_order_status`
--
ALTER TABLE `sales_order_status`
  ADD PRIMARY KEY (`status`);

--
-- Indexes for table `sales_order_status_history`
--
ALTER TABLE `sales_order_status_history`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`),
  ADD KEY `SALES_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`);

--
-- Indexes for table `sales_order_status_label`
--
ALTER TABLE `sales_order_status_label`
  ADD PRIMARY KEY (`status`,`store_id`),
  ADD KEY `SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_order_status_state`
--
ALTER TABLE `sales_order_status_state`
  ADD PRIMARY KEY (`status`,`state`);

--
-- Indexes for table `sales_order_tax`
--
ALTER TABLE `sales_order_tax`
  ADD PRIMARY KEY (`tax_id`),
  ADD KEY `SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`);

--
-- Indexes for table `sales_order_tax_item`
--
ALTER TABLE `sales_order_tax_item`
  ADD PRIMARY KEY (`tax_item_id`),
  ADD UNIQUE KEY `SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`),
  ADD KEY `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` (`associated_item_id`),
  ADD KEY `SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`);

--
-- Indexes for table `sales_payment_transaction`
--
ALTER TABLE `sales_payment_transaction`
  ADD PRIMARY KEY (`transaction_id`),
  ADD UNIQUE KEY `SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`),
  ADD KEY `SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`),
  ADD KEY `SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`);

--
-- Indexes for table `sales_refunded_aggregated`
--
ALTER TABLE `sales_refunded_aggregated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  ADD KEY `SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_refunded_aggregated_order`
--
ALTER TABLE `sales_refunded_aggregated_order`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_REFUNDED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  ADD KEY `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_sequence_meta`
--
ALTER TABLE `sales_sequence_meta`
  ADD PRIMARY KEY (`meta_id`),
  ADD UNIQUE KEY `SALES_SEQUENCE_META_ENTITY_TYPE_STORE_ID` (`entity_type`,`store_id`);

--
-- Indexes for table `sales_sequence_profile`
--
ALTER TABLE `sales_sequence_profile`
  ADD PRIMARY KEY (`profile_id`),
  ADD UNIQUE KEY `SALES_SEQUENCE_PROFILE_META_ID_PREFIX_SUFFIX` (`meta_id`,`prefix`,`suffix`);

--
-- Indexes for table `sales_shipment`
--
ALTER TABLE `sales_shipment`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_SHIPMENT_STORE_ID` (`store_id`),
  ADD KEY `SALES_SHIPMENT_TOTAL_QTY` (`total_qty`),
  ADD KEY `SALES_SHIPMENT_ORDER_ID` (`order_id`),
  ADD KEY `SALES_SHIPMENT_CREATED_AT` (`created_at`),
  ADD KEY `SALES_SHIPMENT_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_SHIPMENT_SEND_EMAIL` (`send_email`),
  ADD KEY `SALES_SHIPMENT_EMAIL_SENT` (`email_sent`);

--
-- Indexes for table `sales_shipment_comment`
--
ALTER TABLE `sales_shipment_comment`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_SHIPMENT_COMMENT_CREATED_AT` (`created_at`),
  ADD KEY `SALES_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_shipment_grid`
--
ALTER TABLE `sales_shipment_grid`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SALES_SHIPMENT_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  ADD KEY `SALES_SHIPMENT_GRID_STORE_ID` (`store_id`),
  ADD KEY `SALES_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`),
  ADD KEY `SALES_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  ADD KEY `SALES_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`),
  ADD KEY `SALES_SHIPMENT_GRID_ORDER_STATUS` (`order_status`),
  ADD KEY `SALES_SHIPMENT_GRID_CREATED_AT` (`created_at`),
  ADD KEY `SALES_SHIPMENT_GRID_UPDATED_AT` (`updated_at`),
  ADD KEY `SALES_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`),
  ADD KEY `SALES_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`),
  ADD KEY `SALES_SHIPMENT_GRID_BILLING_NAME` (`billing_name`);
ALTER TABLE `sales_shipment_grid` ADD FULLTEXT KEY `FTI_086B40C8955F167B8EA76653437879B4` (`increment_id`,`order_increment_id`,`shipping_name`,`customer_name`,`customer_email`,`billing_address`,`shipping_address`);

--
-- Indexes for table `sales_shipment_item`
--
ALTER TABLE `sales_shipment_item`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_SHIPMENT_ITEM_PARENT_ID` (`parent_id`);

--
-- Indexes for table `sales_shipment_track`
--
ALTER TABLE `sales_shipment_track`
  ADD PRIMARY KEY (`entity_id`),
  ADD KEY `SALES_SHIPMENT_TRACK_PARENT_ID` (`parent_id`),
  ADD KEY `SALES_SHIPMENT_TRACK_ORDER_ID` (`order_id`),
  ADD KEY `SALES_SHIPMENT_TRACK_CREATED_AT` (`created_at`);

--
-- Indexes for table `sales_shipping_aggregated`
--
ALTER TABLE `sales_shipping_aggregated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `SALES_SHPP_AGGRED_PERIOD_STORE_ID_ORDER_STS_SHPP_DESCRIPTION` (`period`,`store_id`,`order_status`,`shipping_description`),
  ADD KEY `SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`);

--
-- Indexes for table `sales_shipping_aggregated_order`
--
ALTER TABLE `sales_shipping_aggregated_order`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `UNQ_C05FAE47282EEA68654D0924E946761F` (`period`,`store_id`,`order_status`,`shipping_description`),
  ADD KEY `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`);

--
-- Indexes for table `scconnector_google_feed_cl`
--
ALTER TABLE `scconnector_google_feed_cl`
  ADD PRIMARY KEY (`version_id`);

--
-- Indexes for table `scconnector_google_remove_cl`
--
ALTER TABLE `scconnector_google_remove_cl`
  ADD PRIMARY KEY (`version_id`);

--
-- Indexes for table `search_query`
--
ALTER TABLE `search_query`
  ADD PRIMARY KEY (`query_id`),
  ADD UNIQUE KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID` (`query_text`,`store_id`),
  ADD KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`),
  ADD KEY `SEARCH_QUERY_STORE_ID` (`store_id`),
  ADD KEY `SEARCH_QUERY_IS_PROCESSED` (`is_processed`),
  ADD KEY `SEARCH_QUERY_STORE_ID_POPULARITY` (`store_id`,`popularity`);

--
-- Indexes for table `search_synonyms`
--
ALTER TABLE `search_synonyms`
  ADD PRIMARY KEY (`group_id`),
  ADD KEY `SEARCH_SYNONYMS_STORE_ID` (`store_id`),
  ADD KEY `SEARCH_SYNONYMS_WEBSITE_ID` (`website_id`);
ALTER TABLE `search_synonyms` ADD FULLTEXT KEY `SEARCH_SYNONYMS_SYNONYMS` (`synonyms`);

--
-- Indexes for table `sendfriend_log`
--
ALTER TABLE `sendfriend_log`
  ADD PRIMARY KEY (`log_id`),
  ADD KEY `SENDFRIEND_LOG_IP` (`ip`),
  ADD KEY `SENDFRIEND_LOG_TIME` (`time`);

--
-- Indexes for table `sequence_creditmemo_0`
--
ALTER TABLE `sequence_creditmemo_0`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_creditmemo_1`
--
ALTER TABLE `sequence_creditmemo_1`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_invoice_0`
--
ALTER TABLE `sequence_invoice_0`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_invoice_1`
--
ALTER TABLE `sequence_invoice_1`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_order_0`
--
ALTER TABLE `sequence_order_0`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_order_1`
--
ALTER TABLE `sequence_order_1`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_shipment_0`
--
ALTER TABLE `sequence_shipment_0`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `sequence_shipment_1`
--
ALTER TABLE `sequence_shipment_1`
  ADD PRIMARY KEY (`sequence_value`);

--
-- Indexes for table `session`
--
ALTER TABLE `session`
  ADD PRIMARY KEY (`session_id`);

--
-- Indexes for table `setup_module`
--
ALTER TABLE `setup_module`
  ADD PRIMARY KEY (`module`);

--
-- Indexes for table `shipping_tablerate`
--
ALTER TABLE `shipping_tablerate`
  ADD PRIMARY KEY (`pk`),
  ADD UNIQUE KEY `UNQ_D60821CDB2AFACEE1566CFC02D0D4CAA` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`);

--
-- Indexes for table `signifyd_case`
--
ALTER TABLE `signifyd_case`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `SIGNIFYD_CASE_ORDER_ID` (`order_id`),
  ADD UNIQUE KEY `SIGNIFYD_CASE_CASE_ID` (`case_id`);

--
-- Indexes for table `sitemap`
--
ALTER TABLE `sitemap`
  ADD PRIMARY KEY (`sitemap_id`),
  ADD KEY `SITEMAP_STORE_ID` (`store_id`);

--
-- Indexes for table `store`
--
ALTER TABLE `store`
  ADD PRIMARY KEY (`store_id`),
  ADD UNIQUE KEY `STORE_CODE` (`code`),
  ADD KEY `STORE_WEBSITE_ID` (`website_id`),
  ADD KEY `STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`),
  ADD KEY `STORE_GROUP_ID` (`group_id`);

--
-- Indexes for table `store_group`
--
ALTER TABLE `store_group`
  ADD PRIMARY KEY (`group_id`),
  ADD UNIQUE KEY `STORE_GROUP_CODE` (`code`),
  ADD KEY `STORE_GROUP_WEBSITE_ID` (`website_id`),
  ADD KEY `STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`);

--
-- Indexes for table `store_website`
--
ALTER TABLE `store_website`
  ADD PRIMARY KEY (`website_id`),
  ADD UNIQUE KEY `STORE_WEBSITE_CODE` (`code`),
  ADD KEY `STORE_WEBSITE_SORT_ORDER` (`sort_order`),
  ADD KEY `STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`);

--
-- Indexes for table `tax_calculation`
--
ALTER TABLE `tax_calculation`
  ADD PRIMARY KEY (`tax_calculation_id`),
  ADD KEY `TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`),
  ADD KEY `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`),
  ADD KEY `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`),
  ADD 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`);

--
-- Indexes for table `tax_calculation_rate`
--
ALTER TABLE `tax_calculation_rate`
  ADD PRIMARY KEY (`tax_calculation_rate_id`),
  ADD KEY `TAX_CALCULATION_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`),
  ADD KEY `TAX_CALCULATION_RATE_CODE` (`code`),
  ADD KEY `IDX_CA799F1E2CB843495F601E56C84A626D` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`);

--
-- Indexes for table `tax_calculation_rate_title`
--
ALTER TABLE `tax_calculation_rate_title`
  ADD PRIMARY KEY (`tax_calculation_rate_title_id`),
  ADD KEY `TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`),
  ADD KEY `TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`);

--
-- Indexes for table `tax_calculation_rule`
--
ALTER TABLE `tax_calculation_rule`
  ADD PRIMARY KEY (`tax_calculation_rule_id`),
  ADD KEY `TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`),
  ADD KEY `TAX_CALCULATION_RULE_CODE` (`code`);

--
-- Indexes for table `tax_class`
--
ALTER TABLE `tax_class`
  ADD PRIMARY KEY (`class_id`);

--
-- Indexes for table `tax_order_aggregated_created`
--
ALTER TABLE `tax_order_aggregated_created`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `TAX_ORDER_AGGRED_CREATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  ADD KEY `TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`);

--
-- Indexes for table `tax_order_aggregated_updated`
--
ALTER TABLE `tax_order_aggregated_updated`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `TAX_ORDER_AGGRED_UPDATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  ADD KEY `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`);

--
-- Indexes for table `theme`
--
ALTER TABLE `theme`
  ADD PRIMARY KEY (`theme_id`);

--
-- Indexes for table `theme_file`
--
ALTER TABLE `theme_file`
  ADD PRIMARY KEY (`theme_files_id`),
  ADD KEY `THEME_FILE_THEME_ID_THEME_THEME_ID` (`theme_id`);

--
-- Indexes for table `translation`
--
ALTER TABLE `translation`
  ADD PRIMARY KEY (`key_id`),
  ADD UNIQUE KEY `TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`);

--
-- Indexes for table `ui_bookmark`
--
ALTER TABLE `ui_bookmark`
  ADD PRIMARY KEY (`bookmark_id`),
  ADD KEY `UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`);

--
-- Indexes for table `url_rewrite`
--
ALTER TABLE `url_rewrite`
  ADD PRIMARY KEY (`url_rewrite_id`),
  ADD UNIQUE KEY `URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`),
  ADD KEY `URL_REWRITE_TARGET_PATH` (`target_path`),
  ADD KEY `URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`),
  ADD KEY `URL_REWRITE_ENTITY_ID` (`entity_id`);

--
-- Indexes for table `variable`
--
ALTER TABLE `variable`
  ADD PRIMARY KEY (`variable_id`),
  ADD UNIQUE KEY `VARIABLE_CODE` (`code`);

--
-- Indexes for table `variable_value`
--
ALTER TABLE `variable_value`
  ADD PRIMARY KEY (`value_id`),
  ADD UNIQUE KEY `VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`),
  ADD KEY `VARIABLE_VALUE_STORE_ID` (`store_id`);

--
-- Indexes for table `vault_payment_token`
--
ALTER TABLE `vault_payment_token`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`),
  ADD UNIQUE KEY `VAULT_PAYMENT_TOKEN_PAYMENT_METHOD_CODE_CSTR_ID_GATEWAY_TOKEN` (`payment_method_code`,`customer_id`,`gateway_token`),
  ADD KEY `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`);

--
-- Indexes for table `vault_payment_token_order_payment_link`
--
ALTER TABLE `vault_payment_token_order_payment_link`
  ADD PRIMARY KEY (`order_payment_id`,`payment_token_id`),
  ADD KEY `FK_4ED894655446D385894580BECA993862` (`payment_token_id`);

--
-- Indexes for table `vertex_customer_code`
--
ALTER TABLE `vertex_customer_code`
  ADD PRIMARY KEY (`customer_id`);

--
-- Indexes for table `vertex_custom_option_flex_field`
--
ALTER TABLE `vertex_custom_option_flex_field`
  ADD PRIMARY KEY (`entity_id`),
  ADD UNIQUE KEY `VERTEX_CUSTOM_OPTION_FLEX_FIELD_OPTION_ID_WEBSITE_ID` (`option_id`,`website_id`);

--
-- Indexes for table `vertex_invoice_sent`
--
ALTER TABLE `vertex_invoice_sent`
  ADD PRIMARY KEY (`invoice_id`);

--
-- Indexes for table `vertex_order_invoice_status`
--
ALTER TABLE `vertex_order_invoice_status`
  ADD PRIMARY KEY (`order_id`);

--
-- Indexes for table `vertex_sales_creditmemo_item_invoice_text_code`
--
ALTER TABLE `vertex_sales_creditmemo_item_invoice_text_code`
  ADD UNIQUE KEY `UNQ_4BC40DA748D7713ADA661D2DE1BCF161` (`item_id`,`invoice_text_code`);

--
-- Indexes for table `vertex_sales_creditmemo_item_tax_code`
--
ALTER TABLE `vertex_sales_creditmemo_item_tax_code`
  ADD UNIQUE KEY `VERTEX_SALES_CREDITMEMO_ITEM_TAX_CODE_ITEM_ID_TAX_CODE` (`item_id`,`tax_code`);

--
-- Indexes for table `vertex_sales_creditmemo_item_vertex_tax_code`
--
ALTER TABLE `vertex_sales_creditmemo_item_vertex_tax_code`
  ADD UNIQUE KEY `UNQ_31D7AADB3412BC7E7C1C98D5CC3A5D46` (`item_id`,`vertex_tax_code`);

--
-- Indexes for table `vertex_sales_order_item_invoice_text_code`
--
ALTER TABLE `vertex_sales_order_item_invoice_text_code`
  ADD UNIQUE KEY `UNQ_96F6BE3160A4185CEA4D866018EAF6DC` (`item_id`,`invoice_text_code`);

--
-- Indexes for table `vertex_sales_order_item_tax_code`
--
ALTER TABLE `vertex_sales_order_item_tax_code`
  ADD UNIQUE KEY `VERTEX_SALES_ORDER_ITEM_TAX_CODE_ITEM_ID_TAX_CODE` (`item_id`,`tax_code`);

--
-- Indexes for table `vertex_sales_order_item_vertex_tax_code`
--
ALTER TABLE `vertex_sales_order_item_vertex_tax_code`
  ADD UNIQUE KEY `VERTEX_SALES_ORDER_ITEM_VERTEX_TAX_CODE_ITEM_ID_VERTEX_TAX_CODE` (`item_id`,`vertex_tax_code`);

--
-- Indexes for table `vertex_taxrequest`
--
ALTER TABLE `vertex_taxrequest`
  ADD PRIMARY KEY (`request_id`),
  ADD UNIQUE KEY `VERTEX_TAXREQUEST_REQUEST_ID` (`request_id`),
  ADD KEY `VERTEX_TAXREQUEST_REQUEST_TYPE` (`request_type`),
  ADD KEY `VERTEX_TAXREQUEST_ORDER_ID` (`order_id`);

--
-- Indexes for table `weee_tax`
--
ALTER TABLE `weee_tax`
  ADD PRIMARY KEY (`value_id`),
  ADD KEY `WEEE_TAX_WEBSITE_ID` (`website_id`),
  ADD KEY `WEEE_TAX_ENTITY_ID` (`entity_id`),
  ADD KEY `WEEE_TAX_COUNTRY` (`country`),
  ADD KEY `WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`);

--
-- Indexes for table `widget`
--
ALTER TABLE `widget`
  ADD PRIMARY KEY (`widget_id`),
  ADD KEY `WIDGET_WIDGET_CODE` (`widget_code`);

--
-- Indexes for table `widget_instance`
--
ALTER TABLE `widget_instance`
  ADD PRIMARY KEY (`instance_id`),
  ADD KEY `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` (`theme_id`);

--
-- Indexes for table `widget_instance_page`
--
ALTER TABLE `widget_instance_page`
  ADD PRIMARY KEY (`page_id`),
  ADD KEY `WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`);

--
-- Indexes for table `widget_instance_page_layout`
--
ALTER TABLE `widget_instance_page_layout`
  ADD UNIQUE KEY `WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID_PAGE_ID` (`layout_update_id`,`page_id`),
  ADD KEY `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`);

--
-- Indexes for table `wishlist`
--
ALTER TABLE `wishlist`
  ADD PRIMARY KEY (`wishlist_id`),
  ADD UNIQUE KEY `WISHLIST_CUSTOMER_ID` (`customer_id`),
  ADD KEY `WISHLIST_SHARED` (`shared`);

--
-- Indexes for table `wishlist_item`
--
ALTER TABLE `wishlist_item`
  ADD PRIMARY KEY (`wishlist_item_id`),
  ADD KEY `WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`),
  ADD KEY `WISHLIST_ITEM_PRODUCT_ID` (`product_id`),
  ADD KEY `WISHLIST_ITEM_STORE_ID` (`store_id`);

--
-- Indexes for table `wishlist_item_option`
--
ALTER TABLE `wishlist_item_option`
  ADD PRIMARY KEY (`option_id`),
  ADD KEY `FK_A014B30B04B72DD0EAB3EECD779728D6` (`wishlist_item_id`);

--
-- Indexes for table `yotpo_order_status_history`
--
ALTER TABLE `yotpo_order_status_history`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `yotpo_rich_snippets`
--
ALTER TABLE `yotpo_rich_snippets`
  ADD PRIMARY KEY (`rich_snippet_id`);

--
-- Indexes for table `yotpo_sync`
--
ALTER TABLE `yotpo_sync`
  ADD PRIMARY KEY (`sync_id`),
  ADD UNIQUE KEY `YOTPO_SYNC_STORE_ID_ENTITY_TYPE_ENTITY_ID` (`store_id`,`entity_type`,`entity_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `adminnotification_inbox`
--
ALTER TABLE `adminnotification_inbox`
  MODIFY `notification_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Notification ID', AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `admin_analytics_usage_version_log`
--
ALTER TABLE `admin_analytics_usage_version_log`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Log ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `admin_passwords`
--
ALTER TABLE `admin_passwords`
  MODIFY `password_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Password ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `admin_user`
--
ALTER TABLE `admin_user`
  MODIFY `user_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'User ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `admin_user_session`
--
ALTER TABLE `admin_user_session`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `adobe_stock_asset`
--
ALTER TABLE `adobe_stock_asset`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `adobe_stock_category`
--
ALTER TABLE `adobe_stock_category`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `adobe_stock_creator`
--
ALTER TABLE `adobe_stock_creator`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `adobe_user_profile`
--
ALTER TABLE `adobe_user_profile`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `amazon_customer`
--
ALTER TABLE `amazon_customer`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity_id';

--
-- AUTO_INCREMENT for table `amazon_pending_authorization`
--
ALTER TABLE `amazon_pending_authorization`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity_id';

--
-- AUTO_INCREMENT for table `amazon_pending_capture`
--
ALTER TABLE `amazon_pending_capture`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity_id';

--
-- AUTO_INCREMENT for table `amazon_pending_refund`
--
ALTER TABLE `amazon_pending_refund`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity_id';

--
-- AUTO_INCREMENT for table `amazon_quote`
--
ALTER TABLE `amazon_quote`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `amazon_sales_order`
--
ALTER TABLE `amazon_sales_order`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `authorization_role`
--
ALTER TABLE `authorization_role`
  MODIFY `role_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Role ID', AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `authorization_rule`
--
ALTER TABLE `authorization_rule`
  MODIFY `rule_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rule ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cataloginventory_stock`
--
ALTER TABLE `cataloginventory_stock`
  MODIFY `stock_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Stock ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cataloginventory_stock_item`
--
ALTER TABLE `cataloginventory_stock_item`
  MODIFY `item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Item ID';

--
-- AUTO_INCREMENT for table `catalogrule`
--
ALTER TABLE `catalogrule`
  MODIFY `rule_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `catalogrule_product`
--
ALTER TABLE `catalogrule_product`
  MODIFY `rule_product_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID';

--
-- AUTO_INCREMENT for table `catalogrule_product_price`
--
ALTER TABLE `catalogrule_product_price`
  MODIFY `rule_product_price_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId';

--
-- AUTO_INCREMENT for table `catalogrule_product_price_replica`
--
ALTER TABLE `catalogrule_product_price_replica`
  MODIFY `rule_product_price_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId';

--
-- AUTO_INCREMENT for table `catalogrule_product_replica`
--
ALTER TABLE `catalogrule_product_replica`
  MODIFY `rule_product_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID';

--
-- AUTO_INCREMENT for table `catalogsearch_recommendations`
--
ALTER TABLE `catalogsearch_recommendations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `catalog_category_entity`
--
ALTER TABLE `catalog_category_entity`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `catalog_category_entity_datetime`
--
ALTER TABLE `catalog_category_entity_datetime`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_category_entity_decimal`
--
ALTER TABLE `catalog_category_entity_decimal`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_category_entity_int`
--
ALTER TABLE `catalog_category_entity_int`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `catalog_category_entity_text`
--
ALTER TABLE `catalog_category_entity_text`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_category_entity_varchar`
--
ALTER TABLE `catalog_category_entity_varchar`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `catalog_category_product`
--
ALTER TABLE `catalog_category_product`
  MODIFY `entity_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `catalog_compare_item`
--
ALTER TABLE `catalog_compare_item`
  MODIFY `catalog_compare_item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Compare Item ID';

--
-- AUTO_INCREMENT for table `catalog_product_bundle_option`
--
ALTER TABLE `catalog_product_bundle_option`
  MODIFY `option_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option ID';

--
-- AUTO_INCREMENT for table `catalog_product_bundle_option_value`
--
ALTER TABLE `catalog_product_bundle_option_value`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_bundle_selection`
--
ALTER TABLE `catalog_product_bundle_selection`
  MODIFY `selection_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Selection ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity`
--
ALTER TABLE `catalog_product_entity`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_datetime`
--
ALTER TABLE `catalog_product_entity_datetime`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_decimal`
--
ALTER TABLE `catalog_product_entity_decimal`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_gallery`
--
ALTER TABLE `catalog_product_entity_gallery`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_int`
--
ALTER TABLE `catalog_product_entity_int`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_media_gallery`
--
ALTER TABLE `catalog_product_entity_media_gallery`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_media_gallery_value`
--
ALTER TABLE `catalog_product_entity_media_gallery_value`
  MODIFY `record_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Record ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_text`
--
ALTER TABLE `catalog_product_entity_text`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_tier_price`
--
ALTER TABLE `catalog_product_entity_tier_price`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_entity_varchar`
--
ALTER TABLE `catalog_product_entity_varchar`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_frontend_action`
--
ALTER TABLE `catalog_product_frontend_action`
  MODIFY `action_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Product Action ID';

--
-- AUTO_INCREMENT for table `catalog_product_link`
--
ALTER TABLE `catalog_product_link`
  MODIFY `link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Link ID';

--
-- AUTO_INCREMENT for table `catalog_product_link_attribute`
--
ALTER TABLE `catalog_product_link_attribute`
  MODIFY `product_link_attribute_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Product Link Attribute ID', AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `catalog_product_link_attribute_decimal`
--
ALTER TABLE `catalog_product_link_attribute_decimal`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_link_attribute_int`
--
ALTER TABLE `catalog_product_link_attribute_int`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_link_attribute_varchar`
--
ALTER TABLE `catalog_product_link_attribute_varchar`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_link_type`
--
ALTER TABLE `catalog_product_link_type`
  MODIFY `link_type_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Link Type ID', AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `catalog_product_option`
--
ALTER TABLE `catalog_product_option`
  MODIFY `option_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option ID';

--
-- AUTO_INCREMENT for table `catalog_product_option_price`
--
ALTER TABLE `catalog_product_option_price`
  MODIFY `option_price_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option Price ID';

--
-- AUTO_INCREMENT for table `catalog_product_option_title`
--
ALTER TABLE `catalog_product_option_title`
  MODIFY `option_title_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option Title ID';

--
-- AUTO_INCREMENT for table `catalog_product_option_type_price`
--
ALTER TABLE `catalog_product_option_type_price`
  MODIFY `option_type_price_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option Type Price ID';

--
-- AUTO_INCREMENT for table `catalog_product_option_type_title`
--
ALTER TABLE `catalog_product_option_type_title`
  MODIFY `option_type_title_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option Type Title ID';

--
-- AUTO_INCREMENT for table `catalog_product_option_type_value`
--
ALTER TABLE `catalog_product_option_type_value`
  MODIFY `option_type_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option Type ID';

--
-- AUTO_INCREMENT for table `catalog_product_super_attribute`
--
ALTER TABLE `catalog_product_super_attribute`
  MODIFY `product_super_attribute_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Product Super Attribute ID';

--
-- AUTO_INCREMENT for table `catalog_product_super_attribute_label`
--
ALTER TABLE `catalog_product_super_attribute_label`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `catalog_product_super_link`
--
ALTER TABLE `catalog_product_super_link`
  MODIFY `link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Link ID';

--
-- AUTO_INCREMENT for table `checkout_agreement`
--
ALTER TABLE `checkout_agreement`
  MODIFY `agreement_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID';

--
-- AUTO_INCREMENT for table `cms_block`
--
ALTER TABLE `cms_block`
  MODIFY `block_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `cms_page`
--
ALTER TABLE `cms_page`
  MODIFY `page_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `core_config_data`
--
ALTER TABLE `core_config_data`
  MODIFY `config_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Config ID', AUTO_INCREMENT=36;

--
-- AUTO_INCREMENT for table `cron_schedule`
--
ALTER TABLE `cron_schedule`
  MODIFY `schedule_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Schedule ID';

--
-- AUTO_INCREMENT for table `customer_address_entity`
--
ALTER TABLE `customer_address_entity`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `customer_address_entity_datetime`
--
ALTER TABLE `customer_address_entity_datetime`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_address_entity_decimal`
--
ALTER TABLE `customer_address_entity_decimal`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_address_entity_int`
--
ALTER TABLE `customer_address_entity_int`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_address_entity_text`
--
ALTER TABLE `customer_address_entity_text`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_address_entity_varchar`
--
ALTER TABLE `customer_address_entity_varchar`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_entity`
--
ALTER TABLE `customer_entity`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `customer_entity_datetime`
--
ALTER TABLE `customer_entity_datetime`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_entity_decimal`
--
ALTER TABLE `customer_entity_decimal`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_entity_int`
--
ALTER TABLE `customer_entity_int`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_entity_text`
--
ALTER TABLE `customer_entity_text`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_entity_varchar`
--
ALTER TABLE `customer_entity_varchar`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `customer_group`
--
ALTER TABLE `customer_group`
  MODIFY `customer_group_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `customer_log`
--
ALTER TABLE `customer_log`
  MODIFY `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Log ID';

--
-- AUTO_INCREMENT for table `customer_visitor`
--
ALTER TABLE `customer_visitor`
  MODIFY `visitor_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID';

--
-- AUTO_INCREMENT for table `design_change`
--
ALTER TABLE `design_change`
  MODIFY `design_change_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Design Change ID';

--
-- AUTO_INCREMENT for table `directory_country_format`
--
ALTER TABLE `directory_country_format`
  MODIFY `country_format_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Country Format ID';

--
-- AUTO_INCREMENT for table `directory_country_region`
--
ALTER TABLE `directory_country_region`
  MODIFY `region_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Region ID', AUTO_INCREMENT=702;

--
-- AUTO_INCREMENT for table `downloadable_link`
--
ALTER TABLE `downloadable_link`
  MODIFY `link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Link ID';

--
-- AUTO_INCREMENT for table `downloadable_link_price`
--
ALTER TABLE `downloadable_link_price`
  MODIFY `price_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Price ID';

--
-- AUTO_INCREMENT for table `downloadable_link_purchased`
--
ALTER TABLE `downloadable_link_purchased`
  MODIFY `purchased_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Purchased ID';

--
-- AUTO_INCREMENT for table `downloadable_link_purchased_item`
--
ALTER TABLE `downloadable_link_purchased_item`
  MODIFY `item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Item ID';

--
-- AUTO_INCREMENT for table `downloadable_link_title`
--
ALTER TABLE `downloadable_link_title`
  MODIFY `title_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Title ID';

--
-- AUTO_INCREMENT for table `downloadable_sample`
--
ALTER TABLE `downloadable_sample`
  MODIFY `sample_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Sample ID';

--
-- AUTO_INCREMENT for table `downloadable_sample_title`
--
ALTER TABLE `downloadable_sample_title`
  MODIFY `title_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Title ID';

--
-- AUTO_INCREMENT for table `eav_attribute`
--
ALTER TABLE `eav_attribute`
  MODIFY `attribute_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID', AUTO_INCREMENT=138;

--
-- AUTO_INCREMENT for table `eav_attribute_group`
--
ALTER TABLE `eav_attribute_group`
  MODIFY `attribute_group_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Attribute Group ID', AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `eav_attribute_label`
--
ALTER TABLE `eav_attribute_label`
  MODIFY `attribute_label_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Attribute Label ID';

--
-- AUTO_INCREMENT for table `eav_attribute_option`
--
ALTER TABLE `eav_attribute_option`
  MODIFY `option_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option ID', AUTO_INCREMENT=5431;

--
-- AUTO_INCREMENT for table `eav_attribute_option_swatch`
--
ALTER TABLE `eav_attribute_option_swatch`
  MODIFY `swatch_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Swatch ID';

--
-- AUTO_INCREMENT for table `eav_attribute_option_value`
--
ALTER TABLE `eav_attribute_option_value`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Value ID', AUTO_INCREMENT=5431;

--
-- AUTO_INCREMENT for table `eav_attribute_set`
--
ALTER TABLE `eav_attribute_set`
  MODIFY `attribute_set_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Attribute Set ID', AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `eav_entity`
--
ALTER TABLE `eav_entity`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `eav_entity_attribute`
--
ALTER TABLE `eav_entity_attribute`
  MODIFY `entity_attribute_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity Attribute ID', AUTO_INCREMENT=136;

--
-- AUTO_INCREMENT for table `eav_entity_datetime`
--
ALTER TABLE `eav_entity_datetime`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `eav_entity_decimal`
--
ALTER TABLE `eav_entity_decimal`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `eav_entity_int`
--
ALTER TABLE `eav_entity_int`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `eav_entity_store`
--
ALTER TABLE `eav_entity_store`
  MODIFY `entity_store_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity Store ID';

--
-- AUTO_INCREMENT for table `eav_entity_text`
--
ALTER TABLE `eav_entity_text`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `eav_entity_type`
--
ALTER TABLE `eav_entity_type`
  MODIFY `entity_type_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity Type ID', AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `eav_entity_varchar`
--
ALTER TABLE `eav_entity_varchar`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `eav_form_element`
--
ALTER TABLE `eav_form_element`
  MODIFY `element_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Element ID', AUTO_INCREMENT=43;

--
-- AUTO_INCREMENT for table `eav_form_fieldset`
--
ALTER TABLE `eav_form_fieldset`
  MODIFY `fieldset_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Fieldset ID';

--
-- AUTO_INCREMENT for table `eav_form_type`
--
ALTER TABLE `eav_form_type`
  MODIFY `type_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Type ID', AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `email_abandoned_cart`
--
ALTER TABLE `email_abandoned_cart`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_automation`
--
ALTER TABLE `email_automation`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_campaign`
--
ALTER TABLE `email_campaign`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_catalog`
--
ALTER TABLE `email_catalog`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_contact`
--
ALTER TABLE `email_contact`
  MODIFY `email_contact_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_contact_consent`
--
ALTER TABLE `email_contact_consent`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_coupon_attribute`
--
ALTER TABLE `email_coupon_attribute`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_failed_auth`
--
ALTER TABLE `email_failed_auth`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_importer`
--
ALTER TABLE `email_importer`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_order`
--
ALTER TABLE `email_order`
  MODIFY `email_order_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_review`
--
ALTER TABLE `email_review`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_rules`
--
ALTER TABLE `email_rules`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `email_template`
--
ALTER TABLE `email_template`
  MODIFY `template_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Template ID';

--
-- AUTO_INCREMENT for table `email_wishlist`
--
ALTER TABLE `email_wishlist`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary Key';

--
-- AUTO_INCREMENT for table `flag`
--
ALTER TABLE `flag`
  MODIFY `flag_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Flag Id', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gift_message`
--
ALTER TABLE `gift_message`
  MODIFY `gift_message_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage ID';

--
-- AUTO_INCREMENT for table `googleoptimizer_code`
--
ALTER TABLE `googleoptimizer_code`
  MODIFY `code_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code ID';

--
-- AUTO_INCREMENT for table `importexport_importdata`
--
ALTER TABLE `importexport_importdata`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `import_history`
--
ALTER TABLE `import_history`
  MODIFY `history_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'History record ID';

--
-- AUTO_INCREMENT for table `indexer_state`
--
ALTER TABLE `indexer_state`
  MODIFY `state_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Indexer State ID', AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `integration`
--
ALTER TABLE `integration`
  MODIFY `integration_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Integration ID';

--
-- AUTO_INCREMENT for table `inventory_reservation`
--
ALTER TABLE `inventory_reservation`
  MODIFY `reservation_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `inventory_source_carrier_link`
--
ALTER TABLE `inventory_source_carrier_link`
  MODIFY `link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `inventory_source_item`
--
ALTER TABLE `inventory_source_item`
  MODIFY `source_item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `inventory_source_stock_link`
--
ALTER TABLE `inventory_source_stock_link`
  MODIFY `link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `inventory_stock`
--
ALTER TABLE `inventory_stock`
  MODIFY `stock_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `klarna_core_order`
--
ALTER TABLE `klarna_core_order`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity Id';

--
-- AUTO_INCREMENT for table `klarna_payments_quote`
--
ALTER TABLE `klarna_payments_quote`
  MODIFY `payments_quote_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Payments Id';

--
-- AUTO_INCREMENT for table `layout_link`
--
ALTER TABLE `layout_link`
  MODIFY `layout_link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Link ID';

--
-- AUTO_INCREMENT for table `layout_update`
--
ALTER TABLE `layout_update`
  MODIFY `layout_update_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Layout Update ID';

--
-- AUTO_INCREMENT for table `magento_acknowledged_bulk`
--
ALTER TABLE `magento_acknowledged_bulk`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Internal ID';

--
-- AUTO_INCREMENT for table `magento_bulk`
--
ALTER TABLE `magento_bulk`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Bulk Internal ID (must not be exposed)';

--
-- AUTO_INCREMENT for table `magento_operation`
--
ALTER TABLE `magento_operation`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Operation ID';

--
-- AUTO_INCREMENT for table `media_gallery_asset`
--
ALTER TABLE `media_gallery_asset`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `media_gallery_keyword`
--
ALTER TABLE `media_gallery_keyword`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Keyword ID';

--
-- AUTO_INCREMENT for table `msp_tfa_country_codes`
--
ALTER TABLE `msp_tfa_country_codes`
  MODIFY `msp_tfa_country_codes_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID', AUTO_INCREMENT=242;

--
-- AUTO_INCREMENT for table `msp_tfa_trusted`
--
ALTER TABLE `msp_tfa_trusted`
  MODIFY `msp_tfa_trusted_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Trusted device ID';

--
-- AUTO_INCREMENT for table `msp_tfa_user_config`
--
ALTER TABLE `msp_tfa_user_config`
  MODIFY `msp_tfa_user_config_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID';

--
-- AUTO_INCREMENT for table `mview_state`
--
ALTER TABLE `mview_state`
  MODIFY `state_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'View State ID', AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `newsletter_problem`
--
ALTER TABLE `newsletter_problem`
  MODIFY `problem_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Problem ID';

--
-- AUTO_INCREMENT for table `newsletter_queue`
--
ALTER TABLE `newsletter_queue`
  MODIFY `queue_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Queue ID';

--
-- AUTO_INCREMENT for table `newsletter_queue_link`
--
ALTER TABLE `newsletter_queue_link`
  MODIFY `queue_link_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Queue Link ID';

--
-- AUTO_INCREMENT for table `newsletter_subscriber`
--
ALTER TABLE `newsletter_subscriber`
  MODIFY `subscriber_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Subscriber ID';

--
-- AUTO_INCREMENT for table `newsletter_template`
--
ALTER TABLE `newsletter_template`
  MODIFY `template_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Template ID';

--
-- AUTO_INCREMENT for table `oauth_consumer`
--
ALTER TABLE `oauth_consumer`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `oauth_token`
--
ALTER TABLE `oauth_token`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `oauth_token_request_log`
--
ALTER TABLE `oauth_token_request_log`
  MODIFY `log_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Log ID';

--
-- AUTO_INCREMENT for table `password_reset_request_event`
--
ALTER TABLE `password_reset_request_event`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `patch_list`
--
ALTER TABLE `patch_list`
  MODIFY `patch_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Patch Auto Increment', AUTO_INCREMENT=136;

--
-- AUTO_INCREMENT for table `paypal_billing_agreement`
--
ALTER TABLE `paypal_billing_agreement`
  MODIFY `agreement_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID';

--
-- AUTO_INCREMENT for table `paypal_cert`
--
ALTER TABLE `paypal_cert`
  MODIFY `cert_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Cert ID';

--
-- AUTO_INCREMENT for table `paypal_payment_transaction`
--
ALTER TABLE `paypal_payment_transaction`
  MODIFY `transaction_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `paypal_settlement_report`
--
ALTER TABLE `paypal_settlement_report`
  MODIFY `report_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Report ID';

--
-- AUTO_INCREMENT for table `paypal_settlement_report_row`
--
ALTER TABLE `paypal_settlement_report_row`
  MODIFY `row_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Row ID';

--
-- AUTO_INCREMENT for table `persistent_session`
--
ALTER TABLE `persistent_session`
  MODIFY `persistent_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Session ID';

--
-- AUTO_INCREMENT for table `product_alert_price`
--
ALTER TABLE `product_alert_price`
  MODIFY `alert_price_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Product alert price ID';

--
-- AUTO_INCREMENT for table `product_alert_stock`
--
ALTER TABLE `product_alert_stock`
  MODIFY `alert_stock_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Product alert stock ID';

--
-- AUTO_INCREMENT for table `queue`
--
ALTER TABLE `queue`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Queue ID', AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `queue_lock`
--
ALTER TABLE `queue_lock`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Message ID';

--
-- AUTO_INCREMENT for table `queue_message`
--
ALTER TABLE `queue_message`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Message ID';

--
-- AUTO_INCREMENT for table `queue_message_status`
--
ALTER TABLE `queue_message_status`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Relation ID';

--
-- AUTO_INCREMENT for table `quote`
--
ALTER TABLE `quote`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `quote_address`
--
ALTER TABLE `quote_address`
  MODIFY `address_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Address ID';

--
-- AUTO_INCREMENT for table `quote_address_item`
--
ALTER TABLE `quote_address_item`
  MODIFY `address_item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Address Item ID';

--
-- AUTO_INCREMENT for table `quote_id_mask`
--
ALTER TABLE `quote_id_mask`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `quote_item`
--
ALTER TABLE `quote_item`
  MODIFY `item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Item ID';

--
-- AUTO_INCREMENT for table `quote_item_option`
--
ALTER TABLE `quote_item_option`
  MODIFY `option_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option ID';

--
-- AUTO_INCREMENT for table `quote_payment`
--
ALTER TABLE `quote_payment`
  MODIFY `payment_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Payment ID';

--
-- AUTO_INCREMENT for table `quote_shipping_rate`
--
ALTER TABLE `quote_shipping_rate`
  MODIFY `rate_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rate ID';

--
-- AUTO_INCREMENT for table `rating`
--
ALTER TABLE `rating`
  MODIFY `rating_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rating ID', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `rating_entity`
--
ALTER TABLE `rating_entity`
  MODIFY `entity_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `rating_option`
--
ALTER TABLE `rating_option`
  MODIFY `option_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rating Option ID', AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `rating_option_vote`
--
ALTER TABLE `rating_option_vote`
  MODIFY `vote_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Vote ID';

--
-- AUTO_INCREMENT for table `rating_option_vote_aggregated`
--
ALTER TABLE `rating_option_vote_aggregated`
  MODIFY `primary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Vote aggregation ID';

--
-- AUTO_INCREMENT for table `release_notification_viewer_log`
--
ALTER TABLE `release_notification_viewer_log`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Log ID';

--
-- AUTO_INCREMENT for table `reporting_counts`
--
ALTER TABLE `reporting_counts`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `reporting_module_status`
--
ALTER TABLE `reporting_module_status`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Module ID';

--
-- AUTO_INCREMENT for table `reporting_orders`
--
ALTER TABLE `reporting_orders`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `reporting_system_updates`
--
ALTER TABLE `reporting_system_updates`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `reporting_users`
--
ALTER TABLE `reporting_users`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `report_compared_product_index`
--
ALTER TABLE `report_compared_product_index`
  MODIFY `index_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Index ID';

--
-- AUTO_INCREMENT for table `report_event`
--
ALTER TABLE `report_event`
  MODIFY `event_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Event ID';

--
-- AUTO_INCREMENT for table `report_event_types`
--
ALTER TABLE `report_event_types`
  MODIFY `event_type_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Event Type ID', AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `report_viewed_product_aggregated_daily`
--
ALTER TABLE `report_viewed_product_aggregated_daily`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `report_viewed_product_aggregated_monthly`
--
ALTER TABLE `report_viewed_product_aggregated_monthly`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `report_viewed_product_aggregated_yearly`
--
ALTER TABLE `report_viewed_product_aggregated_yearly`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `report_viewed_product_index`
--
ALTER TABLE `report_viewed_product_index`
  MODIFY `index_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Index ID';

--
-- AUTO_INCREMENT for table `review`
--
ALTER TABLE `review`
  MODIFY `review_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Review ID';

--
-- AUTO_INCREMENT for table `review_detail`
--
ALTER TABLE `review_detail`
  MODIFY `detail_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Review detail ID';

--
-- AUTO_INCREMENT for table `review_entity`
--
ALTER TABLE `review_entity`
  MODIFY `entity_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Review entity ID', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `review_entity_summary`
--
ALTER TABLE `review_entity_summary`
  MODIFY `primary_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Summary review entity ID';

--
-- AUTO_INCREMENT for table `review_status`
--
ALTER TABLE `review_status`
  MODIFY `status_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Status ID', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `salesrule`
--
ALTER TABLE `salesrule`
  MODIFY `rule_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `salesrule_coupon`
--
ALTER TABLE `salesrule_coupon`
  MODIFY `coupon_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Coupon ID';

--
-- AUTO_INCREMENT for table `salesrule_coupon_aggregated`
--
ALTER TABLE `salesrule_coupon_aggregated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `salesrule_coupon_aggregated_order`
--
ALTER TABLE `salesrule_coupon_aggregated_order`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `salesrule_coupon_aggregated_updated`
--
ALTER TABLE `salesrule_coupon_aggregated_updated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `salesrule_customer`
--
ALTER TABLE `salesrule_customer`
  MODIFY `rule_customer_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rule Customer ID';

--
-- AUTO_INCREMENT for table `salesrule_label`
--
ALTER TABLE `salesrule_label`
  MODIFY `label_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Label ID';

--
-- AUTO_INCREMENT for table `sales_bestsellers_aggregated_daily`
--
ALTER TABLE `sales_bestsellers_aggregated_daily`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_bestsellers_aggregated_monthly`
--
ALTER TABLE `sales_bestsellers_aggregated_monthly`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_bestsellers_aggregated_yearly`
--
ALTER TABLE `sales_bestsellers_aggregated_yearly`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_creditmemo`
--
ALTER TABLE `sales_creditmemo`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_creditmemo_comment`
--
ALTER TABLE `sales_creditmemo_comment`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_creditmemo_item`
--
ALTER TABLE `sales_creditmemo_item`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_invoice`
--
ALTER TABLE `sales_invoice`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_invoiced_aggregated`
--
ALTER TABLE `sales_invoiced_aggregated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_invoiced_aggregated_order`
--
ALTER TABLE `sales_invoiced_aggregated_order`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_invoice_comment`
--
ALTER TABLE `sales_invoice_comment`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_invoice_item`
--
ALTER TABLE `sales_invoice_item`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_order`
--
ALTER TABLE `sales_order`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_order_address`
--
ALTER TABLE `sales_order_address`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_order_aggregated_created`
--
ALTER TABLE `sales_order_aggregated_created`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_order_aggregated_updated`
--
ALTER TABLE `sales_order_aggregated_updated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_order_item`
--
ALTER TABLE `sales_order_item`
  MODIFY `item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Item ID';

--
-- AUTO_INCREMENT for table `sales_order_payment`
--
ALTER TABLE `sales_order_payment`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_order_status_history`
--
ALTER TABLE `sales_order_status_history`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_order_tax`
--
ALTER TABLE `sales_order_tax`
  MODIFY `tax_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Tax ID';

--
-- AUTO_INCREMENT for table `sales_order_tax_item`
--
ALTER TABLE `sales_order_tax_item`
  MODIFY `tax_item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Tax Item ID';

--
-- AUTO_INCREMENT for table `sales_payment_transaction`
--
ALTER TABLE `sales_payment_transaction`
  MODIFY `transaction_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Transaction ID';

--
-- AUTO_INCREMENT for table `sales_refunded_aggregated`
--
ALTER TABLE `sales_refunded_aggregated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_refunded_aggregated_order`
--
ALTER TABLE `sales_refunded_aggregated_order`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_sequence_meta`
--
ALTER TABLE `sales_sequence_meta`
  MODIFY `meta_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `sales_sequence_profile`
--
ALTER TABLE `sales_sequence_profile`
  MODIFY `profile_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `sales_shipment`
--
ALTER TABLE `sales_shipment`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_shipment_comment`
--
ALTER TABLE `sales_shipment_comment`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_shipment_item`
--
ALTER TABLE `sales_shipment_item`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_shipment_track`
--
ALTER TABLE `sales_shipment_track`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `sales_shipping_aggregated`
--
ALTER TABLE `sales_shipping_aggregated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `sales_shipping_aggregated_order`
--
ALTER TABLE `sales_shipping_aggregated_order`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `scconnector_google_feed_cl`
--
ALTER TABLE `scconnector_google_feed_cl`
  MODIFY `version_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Version ID';

--
-- AUTO_INCREMENT for table `scconnector_google_remove_cl`
--
ALTER TABLE `scconnector_google_remove_cl`
  MODIFY `version_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Version ID';

--
-- AUTO_INCREMENT for table `search_query`
--
ALTER TABLE `search_query`
  MODIFY `query_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Query ID';

--
-- AUTO_INCREMENT for table `search_synonyms`
--
ALTER TABLE `search_synonyms`
  MODIFY `group_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Synonyms Group ID';

--
-- AUTO_INCREMENT for table `sendfriend_log`
--
ALTER TABLE `sendfriend_log`
  MODIFY `log_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Log ID';

--
-- AUTO_INCREMENT for table `sequence_creditmemo_0`
--
ALTER TABLE `sequence_creditmemo_0`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_creditmemo_1`
--
ALTER TABLE `sequence_creditmemo_1`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_invoice_0`
--
ALTER TABLE `sequence_invoice_0`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_invoice_1`
--
ALTER TABLE `sequence_invoice_1`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_order_0`
--
ALTER TABLE `sequence_order_0`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_order_1`
--
ALTER TABLE `sequence_order_1`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_shipment_0`
--
ALTER TABLE `sequence_shipment_0`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sequence_shipment_1`
--
ALTER TABLE `sequence_shipment_1`
  MODIFY `sequence_value` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shipping_tablerate`
--
ALTER TABLE `shipping_tablerate`
  MODIFY `pk` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Primary key';

--
-- AUTO_INCREMENT for table `signifyd_case`
--
ALTER TABLE `signifyd_case`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity_id';

--
-- AUTO_INCREMENT for table `sitemap`
--
ALTER TABLE `sitemap`
  MODIFY `sitemap_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Sitemap ID';

--
-- AUTO_INCREMENT for table `store`
--
ALTER TABLE `store`
  MODIFY `store_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Store ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `store_group`
--
ALTER TABLE `store_group`
  MODIFY `group_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Group ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `store_website`
--
ALTER TABLE `store_website`
  MODIFY `website_id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Website ID', AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `tax_calculation`
--
ALTER TABLE `tax_calculation`
  MODIFY `tax_calculation_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation ID';

--
-- AUTO_INCREMENT for table `tax_calculation_rate`
--
ALTER TABLE `tax_calculation_rate`
  MODIFY `tax_calculation_rate_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate ID', AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tax_calculation_rate_title`
--
ALTER TABLE `tax_calculation_rate_title`
  MODIFY `tax_calculation_rate_title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title ID';

--
-- AUTO_INCREMENT for table `tax_calculation_rule`
--
ALTER TABLE `tax_calculation_rule`
  MODIFY `tax_calculation_rule_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule ID';

--
-- AUTO_INCREMENT for table `tax_class`
--
ALTER TABLE `tax_class`
  MODIFY `class_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Class ID', AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `tax_order_aggregated_created`
--
ALTER TABLE `tax_order_aggregated_created`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `tax_order_aggregated_updated`
--
ALTER TABLE `tax_order_aggregated_updated`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';

--
-- AUTO_INCREMENT for table `theme`
--
ALTER TABLE `theme`
  MODIFY `theme_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier', AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `theme_file`
--
ALTER TABLE `theme_file`
  MODIFY `theme_files_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier';

--
-- AUTO_INCREMENT for table `translation`
--
ALTER TABLE `translation`
  MODIFY `key_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Key ID of Translation';

--
-- AUTO_INCREMENT for table `ui_bookmark`
--
ALTER TABLE `ui_bookmark`
  MODIFY `bookmark_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier';

--
-- AUTO_INCREMENT for table `url_rewrite`
--
ALTER TABLE `url_rewrite`
  MODIFY `url_rewrite_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Rewrite ID', AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `variable`
--
ALTER TABLE `variable`
  MODIFY `variable_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Variable ID';

--
-- AUTO_INCREMENT for table `variable_value`
--
ALTER TABLE `variable_value`
  MODIFY `value_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Variable Value ID';

--
-- AUTO_INCREMENT for table `vault_payment_token`
--
ALTER TABLE `vault_payment_token`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Entity ID';

--
-- AUTO_INCREMENT for table `vertex_custom_option_flex_field`
--
ALTER TABLE `vertex_custom_option_flex_field`
  MODIFY `entity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Map Entity ID';

--
-- AUTO_INCREMENT for table `vertex_taxrequest`
--
ALTER TABLE `vertex_taxrequest`
  MODIFY `request_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `weee_tax`
--
ALTER TABLE `weee_tax`
  MODIFY `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID';

--
-- AUTO_INCREMENT for table `widget`
--
ALTER TABLE `widget`
  MODIFY `widget_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Widget ID';

--
-- AUTO_INCREMENT for table `widget_instance`
--
ALTER TABLE `widget_instance`
  MODIFY `instance_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Instance ID';

--
-- AUTO_INCREMENT for table `widget_instance_page`
--
ALTER TABLE `widget_instance_page`
  MODIFY `page_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Page ID';

--
-- AUTO_INCREMENT for table `wishlist`
--
ALTER TABLE `wishlist`
  MODIFY `wishlist_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID';

--
-- AUTO_INCREMENT for table `wishlist_item`
--
ALTER TABLE `wishlist_item`
  MODIFY `wishlist_item_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID';

--
-- AUTO_INCREMENT for table `wishlist_item_option`
--
ALTER TABLE `wishlist_item_option`
  MODIFY `option_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Option ID';

--
-- AUTO_INCREMENT for table `yotpo_order_status_history`
--
ALTER TABLE `yotpo_order_status_history`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Id';

--
-- AUTO_INCREMENT for table `yotpo_rich_snippets`
--
ALTER TABLE `yotpo_rich_snippets`
  MODIFY `rich_snippet_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Id';

--
-- AUTO_INCREMENT for table `yotpo_sync`
--
ALTER TABLE `yotpo_sync`
  MODIFY `sync_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Id';

-- --------------------------------------------------------

--
-- Structure for view `inventory_stock_1`
--
DROP TABLE IF EXISTS `inventory_stock_1`;

CREATE ALGORITHM=UNDEFINED DEFINER=`khan`@`%` SQL SECURITY INVOKER 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`)) ;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `admin_passwords`
--
ALTER TABLE `admin_passwords`
  ADD CONSTRAINT `ADMIN_PASSWORDS_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `admin_user_session`
--
ALTER TABLE `admin_user_session`
  ADD CONSTRAINT `ADMIN_USER_SESSION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `adobe_stock_asset`
--
ALTER TABLE `adobe_stock_asset`
  ADD CONSTRAINT `ADOBE_STOCK_ASSET_CATEGORY_ID_ADOBE_STOCK_CATEGORY_ID` FOREIGN KEY (`category_id`) REFERENCES `adobe_stock_category` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `ADOBE_STOCK_ASSET_CREATOR_ID_ADOBE_STOCK_CREATOR_ID` FOREIGN KEY (`creator_id`) REFERENCES `adobe_stock_creator` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `ADOBE_STOCK_ASSET_MEDIA_GALLERY_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`media_gallery_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `adobe_user_profile`
--
ALTER TABLE `adobe_user_profile`
  ADD CONSTRAINT `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `amazon_customer`
--
ALTER TABLE `amazon_customer`
  ADD CONSTRAINT `AMAZON_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `amazon_quote`
--
ALTER TABLE `amazon_quote`
  ADD CONSTRAINT `AMAZON_QUOTE_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `amazon_sales_order`
--
ALTER TABLE `amazon_sales_order`
  ADD CONSTRAINT `AMAZON_SALES_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `authorization_rule`
--
ALTER TABLE `authorization_rule`
  ADD CONSTRAINT `AUTHORIZATION_RULE_ROLE_ID_AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `authorization_role` (`role_id`) ON DELETE CASCADE;

--
-- Constraints for table `cataloginventory_stock_item`
--
ALTER TABLE `cataloginventory_stock_item`
  ADD CONSTRAINT `CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalogrule_customer_group`
--
ALTER TABLE `catalogrule_customer_group`
  ADD CONSTRAINT `CATALOGRULE_CUSTOMER_GROUP_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalogrule_website`
--
ALTER TABLE `catalogrule_website`
  ADD CONSTRAINT `CATALOGRULE_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CATALOGRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalogsearch_recommendations`
--
ALTER TABLE `catalogsearch_recommendations`
  ADD CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`relation_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_category_entity_datetime`
--
ALTER TABLE `catalog_category_entity_datetime`
  ADD CONSTRAINT `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_category_entity_decimal`
--
ALTER TABLE `catalog_category_entity_decimal`
  ADD CONSTRAINT `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_category_entity_int`
--
ALTER TABLE `catalog_category_entity_int`
  ADD CONSTRAINT `CATALOG_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_category_entity_text`
--
ALTER TABLE `catalog_category_entity_text`
  ADD CONSTRAINT `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_category_entity_varchar`
--
ALTER TABLE `catalog_category_entity_varchar`
  ADD CONSTRAINT `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_category_product`
--
ALTER TABLE `catalog_category_product`
  ADD CONSTRAINT `CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_compare_item`
--
ALTER TABLE `catalog_compare_item`
  ADD CONSTRAINT `CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CATALOG_COMPARE_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CATALOG_COMPARE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `catalog_eav_attribute`
--
ALTER TABLE `catalog_eav_attribute`
  ADD CONSTRAINT `CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_bundle_option`
--
ALTER TABLE `catalog_product_bundle_option`
  ADD 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;

--
-- Constraints for table `catalog_product_bundle_option_value`
--
ALTER TABLE `catalog_product_bundle_option_value`
  ADD 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;

--
-- Constraints for table `catalog_product_bundle_price_index`
--
ALTER TABLE `catalog_product_bundle_price_index`
  ADD 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,
  ADD 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,
  ADD CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_bundle_selection`
--
ALTER TABLE `catalog_product_bundle_selection`
  ADD 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,
  ADD 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;

--
-- Constraints for table `catalog_product_bundle_selection_price`
--
ALTER TABLE `catalog_product_bundle_selection_price`
  ADD CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_entity_datetime`
--
ALTER TABLE `catalog_product_entity_datetime`
  ADD CONSTRAINT `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_entity_decimal`
--
ALTER TABLE `catalog_product_entity_decimal`
  ADD CONSTRAINT `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_entity_gallery`
--
ALTER TABLE `catalog_product_entity_gallery`
  ADD CONSTRAINT `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_entity_int`
--
ALTER TABLE `catalog_product_entity_int`
  ADD CONSTRAINT `CATALOG_PRODUCT_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_entity_media_gallery`
--
ALTER TABLE `catalog_product_entity_media_gallery`
  ADD CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_entity_media_gallery_value`
--
ALTER TABLE `catalog_product_entity_media_gallery_value`
  ADD 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,
  ADD CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_entity_media_gallery_value_to_entity`
--
ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity`
  ADD 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,
  ADD CONSTRAINT `FK_A6C6C8FAA386736921D3A7C4B50B1185` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_entity_media_gallery_value_video`
--
ALTER TABLE `catalog_product_entity_media_gallery_value_video`
  ADD CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `FK_6FDF205946906B0E653E60AA769899F8` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_entity_text`
--
ALTER TABLE `catalog_product_entity_text`
  ADD CONSTRAINT `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_entity_tier_price`
--
ALTER TABLE `catalog_product_entity_tier_price`
  ADD 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,
  ADD 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,
  ADD CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_entity_varchar`
--
ALTER TABLE `catalog_product_entity_varchar`
  ADD CONSTRAINT `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_frontend_action`
--
ALTER TABLE `catalog_product_frontend_action`
  ADD CONSTRAINT `CAT_PRD_FRONTEND_ACTION_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_index_tier_price`
--
ALTER TABLE `catalog_product_index_tier_price`
  ADD 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,
  ADD 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,
  ADD CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_index_website`
--
ALTER TABLE `catalog_product_index_website`
  ADD CONSTRAINT `CAT_PRD_IDX_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_link`
--
ALTER TABLE `catalog_product_link`
  ADD CONSTRAINT `CATALOG_PRODUCT_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD 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;

--
-- Constraints for table `catalog_product_link_attribute`
--
ALTER TABLE `catalog_product_link_attribute`
  ADD 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;

--
-- Constraints for table `catalog_product_link_attribute_decimal`
--
ALTER TABLE `catalog_product_link_attribute_decimal`
  ADD 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,
  ADD CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_link_attribute_int`
--
ALTER TABLE `catalog_product_link_attribute_int`
  ADD 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,
  ADD CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_link_attribute_varchar`
--
ALTER TABLE `catalog_product_link_attribute_varchar`
  ADD 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,
  ADD CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_option`
--
ALTER TABLE `catalog_product_option`
  ADD CONSTRAINT `CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_option_price`
--
ALTER TABLE `catalog_product_option_price`
  ADD CONSTRAINT `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_option_title`
--
ALTER TABLE `catalog_product_option_title`
  ADD CONSTRAINT `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `catalog_product_option_type_price`
--
ALTER TABLE `catalog_product_option_type_price`
  ADD CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_option_type_title`
--
ALTER TABLE `catalog_product_option_type_title`
  ADD CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_option_type_value`
--
ALTER TABLE `catalog_product_option_type_value`
  ADD 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;

--
-- Constraints for table `catalog_product_relation`
--
ALTER TABLE `catalog_product_relation`
  ADD CONSTRAINT `CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_super_attribute`
--
ALTER TABLE `catalog_product_super_attribute`
  ADD 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;

--
-- Constraints for table `catalog_product_super_attribute_label`
--
ALTER TABLE `catalog_product_super_attribute_label`
  ADD CONSTRAINT `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_product_super_link`
--
ALTER TABLE `catalog_product_super_link`
  ADD 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,
  ADD 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;

--
-- Constraints for table `catalog_product_website`
--
ALTER TABLE `catalog_product_website`
  ADD CONSTRAINT `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `catalog_url_rewrite_product_category`
--
ALTER TABLE `catalog_url_rewrite_product_category`
  ADD 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,
  ADD 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,
  ADD CONSTRAINT `FK_BB79E64705D7F17FE181F23144528FC8` FOREIGN KEY (`url_rewrite_id`) REFERENCES `url_rewrite` (`url_rewrite_id`) ON DELETE CASCADE;

--
-- Constraints for table `checkout_agreement_store`
--
ALTER TABLE `checkout_agreement_store`
  ADD CONSTRAINT `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE;

--
-- Constraints for table `cms_block_store`
--
ALTER TABLE `cms_block_store`
  ADD CONSTRAINT `CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CMS_BLOCK_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `cms_page_store`
--
ALTER TABLE `cms_page_store`
  ADD CONSTRAINT `CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CMS_PAGE_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_address_entity`
--
ALTER TABLE `customer_address_entity`
  ADD CONSTRAINT `CUSTOMER_ADDRESS_ENTITY_PARENT_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_address_entity_datetime`
--
ALTER TABLE `customer_address_entity_datetime`
  ADD CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `customer_address_entity_decimal`
--
ALTER TABLE `customer_address_entity_decimal`
  ADD CONSTRAINT `CSTR_ADDR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `customer_address_entity_int`
--
ALTER TABLE `customer_address_entity_int`
  ADD CONSTRAINT `CSTR_ADDR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `customer_address_entity_text`
--
ALTER TABLE `customer_address_entity_text`
  ADD CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `customer_address_entity_varchar`
--
ALTER TABLE `customer_address_entity_varchar`
  ADD CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `customer_eav_attribute`
--
ALTER TABLE `customer_eav_attribute`
  ADD CONSTRAINT `CUSTOMER_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_eav_attribute_website`
--
ALTER TABLE `customer_eav_attribute_website`
  ADD CONSTRAINT `CSTR_EAV_ATTR_WS_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CSTR_EAV_ATTR_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_entity`
--
ALTER TABLE `customer_entity`
  ADD CONSTRAINT `CUSTOMER_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `CUSTOMER_ENTITY_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE SET NULL;

--
-- Constraints for table `customer_entity_datetime`
--
ALTER TABLE `customer_entity_datetime`
  ADD CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_entity_decimal`
--
ALTER TABLE `customer_entity_decimal`
  ADD CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_entity_int`
--
ALTER TABLE `customer_entity_int`
  ADD CONSTRAINT `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CUSTOMER_ENTITY_INT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_entity_text`
--
ALTER TABLE `customer_entity_text`
  ADD CONSTRAINT `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CUSTOMER_ENTITY_TEXT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_entity_varchar`
--
ALTER TABLE `customer_entity_varchar`
  ADD CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `customer_form_attribute`
--
ALTER TABLE `customer_form_attribute`
  ADD CONSTRAINT `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `design_change`
--
ALTER TABLE `design_change`
  ADD CONSTRAINT `DESIGN_CHANGE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `directory_country_region_name`
--
ALTER TABLE `directory_country_region_name`
  ADD 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;

--
-- Constraints for table `downloadable_link`
--
ALTER TABLE `downloadable_link`
  ADD CONSTRAINT `DOWNLOADABLE_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `downloadable_link_price`
--
ALTER TABLE `downloadable_link_price`
  ADD CONSTRAINT `DOWNLOADABLE_LINK_PRICE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `downloadable_link_purchased`
--
ALTER TABLE `downloadable_link_purchased`
  ADD CONSTRAINT `DL_LNK_PURCHASED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL;

--
-- Constraints for table `downloadable_link_purchased_item`
--
ALTER TABLE `downloadable_link_purchased_item`
  ADD 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,
  ADD 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;

--
-- Constraints for table `downloadable_link_title`
--
ALTER TABLE `downloadable_link_title`
  ADD CONSTRAINT `DOWNLOADABLE_LINK_TITLE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `DOWNLOADABLE_LINK_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `downloadable_sample`
--
ALTER TABLE `downloadable_sample`
  ADD CONSTRAINT `DOWNLOADABLE_SAMPLE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `downloadable_sample_title`
--
ALTER TABLE `downloadable_sample_title`
  ADD CONSTRAINT `DL_SAMPLE_TTL_SAMPLE_ID_DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `downloadable_sample` (`sample_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_attribute`
--
ALTER TABLE `eav_attribute`
  ADD 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;

--
-- Constraints for table `eav_attribute_group`
--
ALTER TABLE `eav_attribute_group`
  ADD 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;

--
-- Constraints for table `eav_attribute_label`
--
ALTER TABLE `eav_attribute_label`
  ADD CONSTRAINT `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_attribute_option`
--
ALTER TABLE `eav_attribute_option`
  ADD CONSTRAINT `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_attribute_option_swatch`
--
ALTER TABLE `eav_attribute_option_swatch`
  ADD CONSTRAINT `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `eav_attribute_option_value`
--
ALTER TABLE `eav_attribute_option_value`
  ADD CONSTRAINT `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `eav_attribute_set`
--
ALTER TABLE `eav_attribute_set`
  ADD 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;

--
-- Constraints for table `eav_entity`
--
ALTER TABLE `eav_entity`
  ADD 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,
  ADD CONSTRAINT `EAV_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_entity_attribute`
--
ALTER TABLE `eav_entity_attribute`
  ADD CONSTRAINT `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `eav_entity_datetime`
--
ALTER TABLE `eav_entity_datetime`
  ADD CONSTRAINT `EAV_ENTITY_DATETIME_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `EAV_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `eav_entity_decimal`
--
ALTER TABLE `eav_entity_decimal`
  ADD CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `EAV_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_entity_int`
--
ALTER TABLE `eav_entity_int`
  ADD CONSTRAINT `EAV_ENTITY_INT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `EAV_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_entity_store`
--
ALTER TABLE `eav_entity_store`
  ADD 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,
  ADD CONSTRAINT `EAV_ENTITY_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_entity_text`
--
ALTER TABLE `eav_entity_text`
  ADD CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `EAV_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_entity_varchar`
--
ALTER TABLE `eav_entity_varchar`
  ADD CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `EAV_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_form_element`
--
ALTER TABLE `eav_form_element`
  ADD CONSTRAINT `EAV_FORM_ELEMENT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `EAV_FORM_ELEMENT_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_form_fieldset`
--
ALTER TABLE `eav_form_fieldset`
  ADD CONSTRAINT `EAV_FORM_FIELDSET_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_form_fieldset_label`
--
ALTER TABLE `eav_form_fieldset_label`
  ADD CONSTRAINT `EAV_FORM_FIELDSET_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `eav_form_type`
--
ALTER TABLE `eav_form_type`
  ADD CONSTRAINT `EAV_FORM_TYPE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `eav_form_type_entity`
--
ALTER TABLE `eav_form_type_entity`
  ADD 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,
  ADD 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;

--
-- Constraints for table `email_campaign`
--
ALTER TABLE `email_campaign`
  ADD CONSTRAINT `EMAIL_CAMPAIGN_STORE_ID_CORE/STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_catalog`
--
ALTER TABLE `email_catalog`
  ADD CONSTRAINT `EMAIL_CATALOG_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_contact`
--
ALTER TABLE `email_contact`
  ADD CONSTRAINT `EMAIL_CONTACT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_contact_consent`
--
ALTER TABLE `email_contact_consent`
  ADD CONSTRAINT `FK_17E9EA0C469163E550BC6B732AC49FDB` FOREIGN KEY (`email_contact_id`) REFERENCES `email_contact` (`email_contact_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_coupon_attribute`
--
ALTER TABLE `email_coupon_attribute`
  ADD CONSTRAINT `EMAIL_COUPON_ATTRIBUTE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`salesrule_coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_order`
--
ALTER TABLE `email_order`
  ADD CONSTRAINT `EMAIL_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `EMAIL_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_wishlist`
--
ALTER TABLE `email_wishlist`
  ADD CONSTRAINT `EMAIL_WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `EMAIL_WISHLIST_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE;

--
-- Constraints for table `googleoptimizer_code`
--
ALTER TABLE `googleoptimizer_code`
  ADD CONSTRAINT `GOOGLEOPTIMIZER_CODE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `integration`
--
ALTER TABLE `integration`
  ADD CONSTRAINT `INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `inventory_source_carrier_link`
--
ALTER TABLE `inventory_source_carrier_link`
  ADD CONSTRAINT `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE;

--
-- Constraints for table `inventory_source_item`
--
ALTER TABLE `inventory_source_item`
  ADD CONSTRAINT `INVENTORY_SOURCE_ITEM_SOURCE_CODE_INVENTORY_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE;

--
-- Constraints for table `inventory_source_stock_link`
--
ALTER TABLE `inventory_source_stock_link`
  ADD CONSTRAINT `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE;

--
-- Constraints for table `inventory_stock_sales_channel`
--
ALTER TABLE `inventory_stock_sales_channel`
  ADD CONSTRAINT `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE;

--
-- Constraints for table `layout_link`
--
ALTER TABLE `layout_link`
  ADD 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,
  ADD CONSTRAINT `LAYOUT_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE;

--
-- Constraints for table `magento_acknowledged_bulk`
--
ALTER TABLE `magento_acknowledged_bulk`
  ADD CONSTRAINT `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE;

--
-- Constraints for table `magento_operation`
--
ALTER TABLE `magento_operation`
  ADD CONSTRAINT `MAGENTO_OPERATION_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE;

--
-- Constraints for table `media_gallery_asset_keyword`
--
ALTER TABLE `media_gallery_asset_keyword`
  ADD CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`asset_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID_MEDIA_GALLERY_KEYWORD_ID` FOREIGN KEY (`keyword_id`) REFERENCES `media_gallery_keyword` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `msp_tfa_trusted`
--
ALTER TABLE `msp_tfa_trusted`
  ADD CONSTRAINT `MSP_TFA_TRUSTED_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `msp_tfa_user_config`
--
ALTER TABLE `msp_tfa_user_config`
  ADD CONSTRAINT `MSP_TFA_USER_CONFIG_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `newsletter_problem`
--
ALTER TABLE `newsletter_problem`
  ADD CONSTRAINT `NEWSLETTER_PROBLEM_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `NLTTR_PROBLEM_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE;

--
-- Constraints for table `newsletter_queue`
--
ALTER TABLE `newsletter_queue`
  ADD CONSTRAINT `NEWSLETTER_QUEUE_TEMPLATE_ID_NEWSLETTER_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `newsletter_template` (`template_id`) ON DELETE CASCADE;

--
-- Constraints for table `newsletter_queue_link`
--
ALTER TABLE `newsletter_queue_link`
  ADD CONSTRAINT `NEWSLETTER_QUEUE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `NLTTR_QUEUE_LNK_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE;

--
-- Constraints for table `newsletter_queue_store_link`
--
ALTER TABLE `newsletter_queue_store_link`
  ADD CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `newsletter_subscriber`
--
ALTER TABLE `newsletter_subscriber`
  ADD CONSTRAINT `NEWSLETTER_SUBSCRIBER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `oauth_nonce`
--
ALTER TABLE `oauth_nonce`
  ADD CONSTRAINT `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `oauth_token`
--
ALTER TABLE `oauth_token`
  ADD CONSTRAINT `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `OAUTH_TOKEN_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `paypal_billing_agreement`
--
ALTER TABLE `paypal_billing_agreement`
  ADD CONSTRAINT `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PAYPAL_BILLING_AGREEMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `paypal_billing_agreement_order`
--
ALTER TABLE `paypal_billing_agreement_order`
  ADD CONSTRAINT `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `paypal_cert`
--
ALTER TABLE `paypal_cert`
  ADD CONSTRAINT `PAYPAL_CERT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `paypal_settlement_report_row`
--
ALTER TABLE `paypal_settlement_report_row`
  ADD CONSTRAINT `FK_E183E488F593E0DE10C6EBFFEBAC9B55` FOREIGN KEY (`report_id`) REFERENCES `paypal_settlement_report` (`report_id`) ON DELETE CASCADE;

--
-- Constraints for table `persistent_session`
--
ALTER TABLE `persistent_session`
  ADD CONSTRAINT `PERSISTENT_SESSION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `product_alert_price`
--
ALTER TABLE `product_alert_price`
  ADD CONSTRAINT `PRODUCT_ALERT_PRICE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PRODUCT_ALERT_PRICE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PRODUCT_ALERT_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PRODUCT_ALERT_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `product_alert_stock`
--
ALTER TABLE `product_alert_stock`
  ADD CONSTRAINT `PRODUCT_ALERT_STOCK_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PRODUCT_ALERT_STOCK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PRODUCT_ALERT_STOCK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `PRODUCT_ALERT_STOCK_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `queue_message_status`
--
ALTER TABLE `queue_message_status`
  ADD CONSTRAINT `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` FOREIGN KEY (`message_id`) REFERENCES `queue_message` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `QUEUE_MESSAGE_STATUS_QUEUE_ID_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `queue` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `quote`
--
ALTER TABLE `quote`
  ADD CONSTRAINT `QUOTE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `quote_address`
--
ALTER TABLE `quote_address`
  ADD CONSTRAINT `QUOTE_ADDRESS_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `quote_address_item`
--
ALTER TABLE `quote_address_item`
  ADD CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`quote_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`quote_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  ADD 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;

--
-- Constraints for table `quote_id_mask`
--
ALTER TABLE `quote_id_mask`
  ADD CONSTRAINT `QUOTE_ID_MASK_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `quote_item`
--
ALTER TABLE `quote_item`
  ADD CONSTRAINT `QUOTE_ITEM_PARENT_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `QUOTE_ITEM_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `QUOTE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `quote_item_option`
--
ALTER TABLE `quote_item_option`
  ADD CONSTRAINT `QUOTE_ITEM_OPTION_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE;

--
-- Constraints for table `quote_payment`
--
ALTER TABLE `quote_payment`
  ADD CONSTRAINT `QUOTE_PAYMENT_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `quote_shipping_rate`
--
ALTER TABLE `quote_shipping_rate`
  ADD CONSTRAINT `QUOTE_SHIPPING_RATE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE;

--
-- Constraints for table `rating`
--
ALTER TABLE `rating`
  ADD CONSTRAINT `RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `rating_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `rating_option`
--
ALTER TABLE `rating_option`
  ADD CONSTRAINT `RATING_OPTION_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE;

--
-- Constraints for table `rating_option_vote`
--
ALTER TABLE `rating_option_vote`
  ADD CONSTRAINT `RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `rating_option` (`option_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE;

--
-- Constraints for table `rating_option_vote_aggregated`
--
ALTER TABLE `rating_option_vote_aggregated`
  ADD CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `rating_store`
--
ALTER TABLE `rating_store`
  ADD CONSTRAINT `RATING_STORE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `RATING_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `rating_title`
--
ALTER TABLE `rating_title`
  ADD CONSTRAINT `RATING_TITLE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `RATING_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `release_notification_viewer_log`
--
ALTER TABLE `release_notification_viewer_log`
  ADD CONSTRAINT `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`viewer_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `report_compared_product_index`
--
ALTER TABLE `report_compared_product_index`
  ADD CONSTRAINT `REPORT_CMPD_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `report_event`
--
ALTER TABLE `report_event`
  ADD 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,
  ADD CONSTRAINT `REPORT_EVENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `report_viewed_product_aggregated_daily`
--
ALTER TABLE `report_viewed_product_aggregated_daily`
  ADD 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,
  ADD CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `report_viewed_product_aggregated_monthly`
--
ALTER TABLE `report_viewed_product_aggregated_monthly`
  ADD 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,
  ADD CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `report_viewed_product_aggregated_yearly`
--
ALTER TABLE `report_viewed_product_aggregated_yearly`
  ADD 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,
  ADD CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `report_viewed_product_index`
--
ALTER TABLE `report_viewed_product_index`
  ADD CONSTRAINT `REPORT_VIEWED_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `review`
--
ALTER TABLE `review`
  ADD CONSTRAINT `REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `review_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`status_id`) ON DELETE NO ACTION;

--
-- Constraints for table `review_detail`
--
ALTER TABLE `review_detail`
  ADD CONSTRAINT `REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `REVIEW_DETAIL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `review_entity_summary`
--
ALTER TABLE `review_entity_summary`
  ADD CONSTRAINT `REVIEW_ENTITY_SUMMARY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_store`
--
ALTER TABLE `review_store`
  ADD CONSTRAINT `REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `REVIEW_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_coupon`
--
ALTER TABLE `salesrule_coupon`
  ADD CONSTRAINT `SALESRULE_COUPON_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_coupon_aggregated`
--
ALTER TABLE `salesrule_coupon_aggregated`
  ADD CONSTRAINT `SALESRULE_COUPON_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_coupon_aggregated_order`
--
ALTER TABLE `salesrule_coupon_aggregated_order`
  ADD CONSTRAINT `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_coupon_aggregated_updated`
--
ALTER TABLE `salesrule_coupon_aggregated_updated`
  ADD CONSTRAINT `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_coupon_usage`
--
ALTER TABLE `salesrule_coupon_usage`
  ADD CONSTRAINT `SALESRULE_COUPON_USAGE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_customer`
--
ALTER TABLE `salesrule_customer`
  ADD CONSTRAINT `SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALESRULE_CUSTOMER_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_customer_group`
--
ALTER TABLE `salesrule_customer_group`
  ADD 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,
  ADD CONSTRAINT `SALESRULE_CUSTOMER_GROUP_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_label`
--
ALTER TABLE `salesrule_label`
  ADD CONSTRAINT `SALESRULE_LABEL_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALESRULE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_product_attribute`
--
ALTER TABLE `salesrule_product_attribute`
  ADD CONSTRAINT `SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD 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,
  ADD CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `salesrule_website`
--
ALTER TABLE `salesrule_website`
  ADD CONSTRAINT `SALESRULE_WEBSITE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALESRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_bestsellers_aggregated_daily`
--
ALTER TABLE `sales_bestsellers_aggregated_daily`
  ADD CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_bestsellers_aggregated_monthly`
--
ALTER TABLE `sales_bestsellers_aggregated_monthly`
  ADD CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_bestsellers_aggregated_yearly`
--
ALTER TABLE `sales_bestsellers_aggregated_yearly`
  ADD CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_creditmemo`
--
ALTER TABLE `sales_creditmemo`
  ADD CONSTRAINT `SALES_CREDITMEMO_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_CREDITMEMO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_creditmemo_comment`
--
ALTER TABLE `sales_creditmemo_comment`
  ADD CONSTRAINT `SALES_CREDITMEMO_COMMENT_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_creditmemo_item`
--
ALTER TABLE `sales_creditmemo_item`
  ADD CONSTRAINT `SALES_CREDITMEMO_ITEM_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_invoice`
--
ALTER TABLE `sales_invoice`
  ADD CONSTRAINT `SALES_INVOICE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_INVOICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_invoiced_aggregated`
--
ALTER TABLE `sales_invoiced_aggregated`
  ADD CONSTRAINT `SALES_INVOICED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_invoiced_aggregated_order`
--
ALTER TABLE `sales_invoiced_aggregated_order`
  ADD CONSTRAINT `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_invoice_comment`
--
ALTER TABLE `sales_invoice_comment`
  ADD CONSTRAINT `SALES_INVOICE_COMMENT_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_invoice_item`
--
ALTER TABLE `sales_invoice_item`
  ADD CONSTRAINT `SALES_INVOICE_ITEM_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_order`
--
ALTER TABLE `sales_order`
  ADD CONSTRAINT `SALES_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `SALES_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_order_address`
--
ALTER TABLE `sales_order_address`
  ADD CONSTRAINT `SALES_ORDER_ADDRESS_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_order_aggregated_created`
--
ALTER TABLE `sales_order_aggregated_created`
  ADD CONSTRAINT `SALES_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_order_aggregated_updated`
--
ALTER TABLE `sales_order_aggregated_updated`
  ADD CONSTRAINT `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_order_item`
--
ALTER TABLE `sales_order_item`
  ADD CONSTRAINT `SALES_ORDER_ITEM_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_ORDER_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_order_payment`
--
ALTER TABLE `sales_order_payment`
  ADD CONSTRAINT `SALES_ORDER_PAYMENT_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_order_status_history`
--
ALTER TABLE `sales_order_status_history`
  ADD CONSTRAINT `SALES_ORDER_STATUS_HISTORY_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_order_status_label`
--
ALTER TABLE `sales_order_status_label`
  ADD CONSTRAINT `SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_order_status_state`
--
ALTER TABLE `sales_order_status_state`
  ADD CONSTRAINT `SALES_ORDER_STATUS_STATE_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE;

--
-- Constraints for table `sales_order_tax_item`
--
ALTER TABLE `sales_order_tax_item`
  ADD 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,
  ADD 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,
  ADD 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;

--
-- Constraints for table `sales_payment_transaction`
--
ALTER TABLE `sales_payment_transaction`
  ADD CONSTRAINT `FK_B99FF1A06402D725EBDB0F3A7ECD47A2` FOREIGN KEY (`parent_id`) REFERENCES `sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_PAYMENT_TRANSACTION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_PAYMENT_TRANSACTION_PAYMENT_ID_SALES_ORDER_PAYMENT_ENTT_ID` FOREIGN KEY (`payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_refunded_aggregated`
--
ALTER TABLE `sales_refunded_aggregated`
  ADD CONSTRAINT `SALES_REFUNDED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_refunded_aggregated_order`
--
ALTER TABLE `sales_refunded_aggregated_order`
  ADD CONSTRAINT `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_sequence_profile`
--
ALTER TABLE `sales_sequence_profile`
  ADD CONSTRAINT `SALES_SEQUENCE_PROFILE_META_ID_SALES_SEQUENCE_META_META_ID` FOREIGN KEY (`meta_id`) REFERENCES `sales_sequence_meta` (`meta_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_shipment`
--
ALTER TABLE `sales_shipment`
  ADD CONSTRAINT `SALES_SHIPMENT_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SALES_SHIPMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_shipment_comment`
--
ALTER TABLE `sales_shipment_comment`
  ADD CONSTRAINT `SALES_SHIPMENT_COMMENT_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_shipment_item`
--
ALTER TABLE `sales_shipment_item`
  ADD CONSTRAINT `SALES_SHIPMENT_ITEM_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_shipment_track`
--
ALTER TABLE `sales_shipment_track`
  ADD CONSTRAINT `SALES_SHIPMENT_TRACK_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_shipping_aggregated`
--
ALTER TABLE `sales_shipping_aggregated`
  ADD CONSTRAINT `SALES_SHIPPING_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `sales_shipping_aggregated_order`
--
ALTER TABLE `sales_shipping_aggregated_order`
  ADD CONSTRAINT `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL;

--
-- Constraints for table `search_query`
--
ALTER TABLE `search_query`
  ADD CONSTRAINT `SEARCH_QUERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `search_synonyms`
--
ALTER TABLE `search_synonyms`
  ADD CONSTRAINT `SEARCH_SYNONYMS_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `SEARCH_SYNONYMS_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `signifyd_case`
--
ALTER TABLE `signifyd_case`
  ADD CONSTRAINT `SIGNIFYD_CASE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL;

--
-- Constraints for table `sitemap`
--
ALTER TABLE `sitemap`
  ADD CONSTRAINT `SITEMAP_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `store`
--
ALTER TABLE `store`
  ADD CONSTRAINT `STORE_GROUP_ID_STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `store_group` (`group_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `STORE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `store_group`
--
ALTER TABLE `store_group`
  ADD CONSTRAINT `STORE_GROUP_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `tax_calculation`
--
ALTER TABLE `tax_calculation`
  ADD 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,
  ADD 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,
  ADD 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,
  ADD 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;

--
-- Constraints for table `tax_calculation_rate_title`
--
ALTER TABLE `tax_calculation_rate_title`
  ADD CONSTRAINT `FK_37FB965F786AD5897BB3AE90470C42AB` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `TAX_CALCULATION_RATE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `tax_order_aggregated_created`
--
ALTER TABLE `tax_order_aggregated_created`
  ADD CONSTRAINT `TAX_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `tax_order_aggregated_updated`
--
ALTER TABLE `tax_order_aggregated_updated`
  ADD CONSTRAINT `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `theme_file`
--
ALTER TABLE `theme_file`
  ADD CONSTRAINT `THEME_FILE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE;

--
-- Constraints for table `translation`
--
ALTER TABLE `translation`
  ADD CONSTRAINT `TRANSLATION_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE;

--
-- Constraints for table `ui_bookmark`
--
ALTER TABLE `ui_bookmark`
  ADD CONSTRAINT `UI_BOOKMARK_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `variable_value`
--
ALTER TABLE `variable_value`
  ADD CONSTRAINT `VARIABLE_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `VARIABLE_VALUE_VARIABLE_ID_VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `variable` (`variable_id`) ON DELETE CASCADE;

--
-- Constraints for table `vault_payment_token`
--
ALTER TABLE `vault_payment_token`
  ADD CONSTRAINT `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `vault_payment_token_order_payment_link`
--
ALTER TABLE `vault_payment_token_order_payment_link`
  ADD CONSTRAINT `FK_4ED894655446D385894580BECA993862` FOREIGN KEY (`payment_token_id`) REFERENCES `vault_payment_token` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `FK_CF37B9D854256534BE23C818F6291CA2` FOREIGN KEY (`order_payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `weee_tax`
--
ALTER TABLE `weee_tax`
  ADD CONSTRAINT `WEEE_TAX_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `directory_country` (`country_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `WEEE_TAX_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `WEEE_TAX_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE;

--
-- Constraints for table `widget_instance`
--
ALTER TABLE `widget_instance`
  ADD CONSTRAINT `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE;

--
-- Constraints for table `widget_instance_page`
--
ALTER TABLE `widget_instance_page`
  ADD CONSTRAINT `WIDGET_INSTANCE_PAGE_INSTANCE_ID_WIDGET_INSTANCE_INSTANCE_ID` FOREIGN KEY (`instance_id`) REFERENCES `widget_instance` (`instance_id`) ON DELETE CASCADE;

--
-- Constraints for table `widget_instance_page_layout`
--
ALTER TABLE `widget_instance_page_layout`
  ADD 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,
  ADD 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;

--
-- Constraints for table `wishlist`
--
ALTER TABLE `wishlist`
  ADD CONSTRAINT `WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE;

--
-- Constraints for table `wishlist_item`
--
ALTER TABLE `wishlist_item`
  ADD CONSTRAINT `WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE;

--
-- Constraints for table `wishlist_item_option`
--
ALTER TABLE `wishlist_item_option`
  ADD CONSTRAINT `FK_A014B30B04B72DD0EAB3EECD779728D6` FOREIGN KEY (`wishlist_item_id`) REFERENCES `wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE;
COMMIT;

/*!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 */;
