Preview: abante.sql
Size: 1.43 MB
/var/softaculous/abante/abante.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 utf8 */;
--
-- Database: `abantecart144`
--
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]addresses`
--
CREATE TABLE `[[dbprefix]]addresses` (
`address_id` int NOT NULL AUTO_INCREMENT,
`customer_id` int NOT NULL,
`company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`firstname` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`lastname` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`address_1` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`address_2` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`postcode` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`country_id` int NOT NULL DEFAULT '0',
`zone_id` int NOT NULL DEFAULT '0',
`ext_fields` json DEFAULT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`address_id`),
KEY `[[dbprefix]]addresses_idx` (`customer_id`,`country_id`,`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=20 ;
--
-- Dumping data for table `[[dbprefix]]addresses`
--
INSERT INTO `[[dbprefix]]addresses` VALUES
(1, 2, '', 'Juliana', 'Davis', '9778 Golden Crescent', 'Apt 10', '85804-7365', 'Humansville', 223, 3616, NULL, '[[regtime]]', '[[regtime]]'),
(2, 3, '', 'Keely', 'Mccoy', '5071 Misty Pond Farm', 'Suite #101', '63406-9081', 'Bumble Bee', 223, 3648, NULL, '[[regtime]]', '[[regtime]]'),
(3, 4, 'BelfastCo', 'Zelda', 'Weiss', '6944 Sleepy Fawn Abbey', 'Suite #31', '86014-8121', 'Lawyers', 223, 3616, NULL, '[[regtime]]', '[[regtime]]'),
(4, 5, '', 'Gloria', 'Macias', '7590 Easy Robin Hollow', '', '73477-3842', 'Sandymush', 223, 3660, NULL, '[[regtime]]', '[[regtime]]'),
(5, 6, '', 'Bernard', 'Horne', '5607 Umber Branch Via', '', '86301-9785', 'Spook City', 223, 3616, NULL, '[[regtime]]', '[[regtime]]'),
(6, 7, '', 'James', 'Curtis', '6500 Arapahoe Road', '', '80303', 'Boulder', 223, 3634, NULL, '[[regtime]]', '[[regtime]]'),
(7, 8, '', 'Bruce', 'Rosarini', '61 Cumberland ST', '', '68624-2273', 'Skokie', 223, 3650, NULL, '[[regtime]]', '[[regtime]]'),
(8, 9, '', 'Carlos', 'Compton', '31 Capital Drive', '', '63142-0892', 'Fort Misery', 223, 3648, NULL, '[[regtime]]', '[[regtime]]'),
(9, 10, '', 'Garrison', 'Baxter', 'Eddie Hoffman Highway', '', '64034-2948', 'Shell Pile', 223, 3648, NULL, '[[regtime]]', '[[regtime]]'),
(10, 11, '', 'Anthony', 'Blair', '104 Main Street', '', '29181-8284', 'Gassaway', 223, 3666, NULL, '[[regtime]]', '[[regtime]]'),
(11, 12, '', 'Allen', 'Waters', '110 Shenandoah Avenue', '', '86565-1710', 'Honohina', 223, 3616, NULL, '[[regtime]]', '[[regtime]]'),
(12, 13, '', 'Tom', 'Kipling', '100 Main Str', '', '64034-2948', 'Shell Pile', 223, 3648, NULL, '[[regtime]]', '[[regtime]]'),
(13, 14, 'Eaton Stevenson Inc', 'Yuri', 'Howard', '22555 Jensen Ave', '', '93654', 'Reedley', 223, 3624, NULL, '[[regtime]]', '[[regtime]]'),
(14, 15, 'Day and Rivera Traders', 'Regan', 'Shields', '2355 Boulevard Bastien', '', 'G2B 1B3', 'Québec', 38, 612, NULL, '[[regtime]]', '[[regtime]]'),
(15, 16, '', 'Randall', 'Richards', '500 N Nebraska Ave', '', '33603', 'Tampa', 223, 3630, NULL, '[[regtime]]', '[[regtime]]'),
(16, 16, 'Guzman and Morin Inc', 'Mallory', 'Ballard', '2430 S French Ave', '', '32771', 'Sanford', 223, 3630, NULL, '[[regtime]]', '[[regtime]]'),
(17, 17, '', 'Michelle', 'Barnett', '3180 S Redwood Rd', '', '84119', 'West Valley City', 223, 3670, NULL, '[[regtime]]', '[[regtime]]'),
(18, 18, '', 'Elmer', 'West', '1433 Armand-Frappier', '', 'J3E 3R6', 'Sainte-Julie', 38, 612, NULL, '[[regtime]]', '[[regtime]]'),
(19, 18, '', 'Elmer', 'West', '291 Central Ave', '', '10606', 'White Plains', 223, 3657, NULL, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]ant_messages`
--
CREATE TABLE `[[dbprefix]]ant_messages` (
`id` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`priority` int NOT NULL DEFAULT '0',
`placeholder` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`start_date` timestamp NULL DEFAULT NULL,
`end_date` timestamp NULL DEFAULT NULL,
`viewed_date` timestamp NULL DEFAULT NULL,
`viewed` int NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`html` longtext COLLATE utf8mb4_unicode_ci,
`url` text COLLATE utf8mb4_unicode_ci,
`language_code` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en',
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`,`language_code`),
KEY `daterange_idx` (`start_date`,`end_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]ant_messages`
--
INSERT INTO `[[dbprefix]]ant_messages` VALUES
('quick_start_offer1', 1, 'quick_start', '[[regtime]]', '2029-12-31 20:30:00', NULL, 0, 'Quick Start Wizzard modal content, Offer 1', '', '<div class="col-md-12">\n <div class="text-center">\n <a href="https://buy.avalara.com/signup?partner=abantecart&CampaignID=7010b0000013ZLp&" target="_ext_help">\n <img width="900px" src="https://marketplace.abantecart.com/extensions/marketplace/storefront/view/default/images/avatax-trial-750x400.jpg" /></a>\n </div>\n\n <div class="text-center">\n <div class="btn-group">\n <a class="btn btn-white" href="https://buy.avalara.com/signup?partner=abantecart&CampaignID=7010b0000013ZLp&" target="_ext_help">\n <i class="fa fa-arrow-right"></i> Learn More\n </a>\n </div>\n </div>\n</div>', '', '*', '[[regtime]]'),
('quick_start_offer2', 1, 'quick_start', '[[regtime]]', '2029-12-31 20:30:00', NULL, 0, 'Quick Start Wizzard modal content, Offer 2', '', '<div class="col-md-12">\n <div class="text-center">\n <h1>Accept Payments from <br/>customers with Stripe.</h1>\n <p>\n <img alt="Stripe + AbanteCart" src="https://www.abantecart.com/resources/image/18/7f/9.webp"\n class="mcnImage"\n style="max-width:600px; padding-bottom: 0; display: inline !important; vertical-align: bottom; width:570px; align:middle;">\n </p>\n </div>\n\n <div style="padding: 10px 60px 30px 60px">\n <h1>Some Stripe benefits:</h1>\n <p>\n <label><b>Stripe supports a wide range of payment methods</b></label>\n <br />\n including cards, bank debits, bank redirects, Affirm, Klarna, ACH, MobilePay and more.\n </p>\n\n <p>\n <label><b>Powerful Fraud Protection and Easy PCI Compliance</b></label>\n <br />\n Our robust tokenization technology simplifies PCI compliance requirements and our built-in fraud screening tool stops fraud in its tracks.\n </p>\n\n <p>\n <label><b>White-Glove Customer Support</b></label>\n <br />\n Get one-on-one support every step of the way. Stripe''s Customer Support teams are always on hand to ensure\n that you''re getting the most out of your integration, without any processing disruptions.\n </p>\n\n <p>\n <label><b>Competitive Processing Rates</b></label>\n <br />\n Our extensive industry expertise and rate optimization technology allow us to offer you the lowest rates.\n </p>\n </div>\n\n <div class="text-center">\n <div class="btn-group">\n <a class="btn btn-white" href="#admin#rt=extension/extensions/edit&extension=stripe" target="_blank">\n <i class="fa fa-arrow-right"></i> Learn More\n </a>\n </div>\n </div>\n</div>', '', '*', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]banners`
--
CREATE TABLE `[[dbprefix]]banners` (
`banner_id` int NOT NULL AUTO_INCREMENT,
`status` int NOT NULL DEFAULT '0',
`banner_type` int NOT NULL DEFAULT '1',
`banner_group_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`start_date` timestamp NULL DEFAULT NULL,
`end_date` timestamp NULL DEFAULT NULL,
`blank` tinyint(1) NOT NULL DEFAULT '0',
`target_url` text COLLATE utf8mb4_unicode_ci,
`sort_order` int NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=19 ;
--
-- Dumping data for table `[[dbprefix]]banners`
--
INSERT INTO `[[dbprefix]]banners` VALUES
(8, 1, 2, 'Main Page Banners', '[[regtime]]', NULL, 0, '', 1, '[[regtime]]', '[[regtime]]'),
(9, 1, 2, 'Main Page Banners', '[[regtime]]', NULL, 0, '', 2, '[[regtime]]', '[[regtime]]'),
(10, 1, 2, 'Main Page Banners', '[[regtime]]', NULL, 0, '', 3, '[[regtime]]', '[[regtime]]'),
(11, 1, 2, 'Main Page Banners', '[[regtime]]', NULL, 0, '', 4, '[[regtime]]', '[[regtime]]'),
(13, 1, 1, 'Main bottom banners', '[[regtime]]', NULL, 0, 'https://www.abantecart.com', 1, '[[regtime]]', '[[regtime]]'),
(14, 1, 1, 'Main bottom banners', '[[regtime]]', NULL, 0, 'https://www.abantecart.com', 2, '[[regtime]]', '[[regtime]]'),
(15, 1, 1, 'Main bottom banners', '[[regtime]]', NULL, 0, 'https://www.abantecart.com', 3, '[[regtime]]', '[[regtime]]'),
(16, 1, 1, 'Main bottom banners', '[[regtime]]', NULL, 0, 'https://www.abantecart.com', 4, '[[regtime]]', '[[regtime]]'),
(17, 1, 2, 'Main Page Banners', '[[regtime]]', NULL, 0, '', 5, '[[regtime]]', '[[regtime]]'),
(18, 1, 1, 'Main Page Banners', '[[regtime]]', NULL, 0, '', 6, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]banner_descriptions`
--
CREATE TABLE `[[dbprefix]]banner_descriptions` (
`banner_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`meta` text COLLATE utf8mb4_unicode_ci COMMENT 'translatable',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`banner_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]banner_descriptions`
--
INSERT INTO `[[dbprefix]]banner_descriptions` VALUES
(8, 1, 'Main Banner 1', '<p>\r\n <img alt="" class="wp1_3 slide1_bot" src="storefront/view/default/image/banner_image_1.png" width="600" height="300" /> <span class="txt1">HTML5 Responsive Storefront to look great on</span> <span class="txt2">ALL Screen Sizes</span> <span class="txt3 short">Natively responsive template implemented with bootstrap library and HTML5. Will look good on most mobile devices and tablets.</span> <span class="txt4 txt4up"><a class="btn btn-wht" href="">Try on your device!</a></span></p>\r\n', '', '[[regtime]]', '[[regtime]]'),
(9, 1, 'Main Banner 2', '<p>\r\n <img alt="" class="wp1_3 wp1_left slide2_bot" src="storefront/view/default/image/banner_image_2.png" width="600" height="300" /> <span class="txt1 blue txt_right2">Highly flexible layout on any page</span> <span class="txt2 blue txt_right2">SEO Friendly</span> <span class="txt2 blue txt_right2">Fast Loading</span> <span class="txt4 txt_right2 txt4up"><a class="btn btn-wht" href="#">Try Now!</a></span></p>\r\n', '', '[[regtime]]', '[[regtime]]'),
(10, 1, 'Main Banner 3', '<p>\r\n <img alt="" class="wp1_3 slide2_bot" src="storefront/view/default/image/banner_image_3.png" width="600" height="300" /> <span class="txt1">Feature rich with smart UI</span> <span class="txt2">Easy &amp; fun to manage</span> <span class="txt3">Feature reach shopping cart application right out of the box. Standard features allow to set up complete eCommerce site with all the tools needed to sell products online.</span> <span class="txt4"><a class="btn btn-wht" href="#">Install Now!</a></span></p>\r\n', '', '[[regtime]]', '[[regtime]]'),
(11, 1, 'Main Banner 4', '<p>\r\n <img alt="" class="wp1_3 slide3_bot" src="storefront/view/default/image/banner_image_4.png" width="600" height="300" /> <span class="txt1 blue">Stay in control</span> <span class="txt2 blue">Easy updates</span> <span class="txt3 short">Upgrade right from admin. Backward supportability in upgrades and automatic backups. Easy extension download with one step installation.</span> <span class="txt4 txt4up"><a class="btn btn-wht" href="#">Get Yours!</a></span></p>\r\n', '', '[[regtime]]', '[[regtime]]'),
(13, 1, 'banner1', '', '', '[[regtime]]', '[[regtime]]'),
(14, 1, 'banner2', '', '', '[[regtime]]', '[[regtime]]'),
(15, 1, 'banner3', '', '', '[[regtime]]', '[[regtime]]'),
(16, 1, 'banner4', '', '', '[[regtime]]', '[[regtime]]'),
(17, 1, 'Main Banner 5', '<p>\r\n <img alt="" class="wp1_3 slide2_bot" src="storefront/view/default/image/banner_image_5.png" width="600" height="300" /> <span class="txt1">Application and data security</span> <span class="txt2">Secure Solution</span> <span class="txt3">Very secure solution with up to date industry security practices and inline with PCI compliance. Customer information protection with data encryption</span> <span class="txt4"><a class="btn btn-wht" href="#">Install Now!</a></span></p>\r\n', '', '[[regtime]]', '[[regtime]]'),
(18, 1, 'fallback', '', '', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]banner_stat`
--
CREATE TABLE `[[dbprefix]]banner_stat` (
`rowid` int NOT NULL AUTO_INCREMENT,
`banner_id` int NOT NULL,
`type` int NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`store_id` int NOT NULL,
`user_info` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`rowid`),
KEY `[[dbprefix]]banner_stat_idx` (`banner_id`,`type`,`time`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]blocks`
--
CREATE TABLE `[[dbprefix]]blocks` (
`block_id` int NOT NULL AUTO_INCREMENT,
`block_txt_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`controller` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`block_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=41 ;
--
-- Dumping data for table `[[dbprefix]]blocks`
--
INSERT INTO `[[dbprefix]]blocks` VALUES
(1, 'header', 'common/header', '[[regtime]]', '[[regtime]]'),
(2, 'header_bottom', 'common/header_bottom', '[[regtime]]', '[[regtime]]'),
(3, 'column_left', 'common/column_left', '[[regtime]]', '[[regtime]]'),
(4, 'content_top', 'common/content_top', '[[regtime]]', '[[regtime]]'),
(5, 'content_bottom', 'common/content_bottom', '[[regtime]]', '[[regtime]]'),
(6, 'column_right', 'common/column_right', '[[regtime]]', '[[regtime]]'),
(7, 'footer_top', 'common/footer_top', '[[regtime]]', '[[regtime]]'),
(8, 'footer', 'common/footer', '[[regtime]]', '[[regtime]]'),
(9, 'category', 'blocks/category', '[[regtime]]', '[[regtime]]'),
(10, 'manufacturer', 'blocks/manufacturer', '[[regtime]]', '[[regtime]]'),
(11, 'content', 'blocks/content', '[[regtime]]', '[[regtime]]'),
(12, 'latest', 'blocks/latest', '[[regtime]]', '[[regtime]]'),
(13, 'language', 'blocks/language', '[[regtime]]', '[[regtime]]'),
(14, 'currency', 'blocks/currency', '[[regtime]]', '[[regtime]]'),
(15, 'cart', 'blocks/cart', '[[regtime]]', '[[regtime]]'),
(16, 'order_summary', 'blocks/order_summary', '[[regtime]]', '[[regtime]]'),
(17, 'html_block', 'blocks/html_block', '[[regtime]]', '[[regtime]]'),
(18, 'bestsellers', 'blocks/bestseller', '[[regtime]]', '[[regtime]]'),
(19, 'featured', 'blocks/featured', '[[regtime]]', '[[regtime]]'),
(20, 'listing_block', 'blocks/listing_block', '[[regtime]]', '[[regtime]]'),
(21, 'donate', 'blocks/donate', '[[regtime]]', '[[regtime]]'),
(22, 'special', 'blocks/special', '[[regtime]]', '[[regtime]]'),
(23, 'banner_block', 'blocks/banner_block', '[[regtime]]', '[[regtime]]'),
(24, 'credit_cards', 'blocks/credit_cards', '[[regtime]]', '[[regtime]]'),
(25, 'newsletter_signup', 'blocks/newsletter_signup', '[[regtime]]', '[[regtime]]'),
(26, 'search', 'blocks/search', '[[regtime]]', '[[regtime]]'),
(27, 'menu', 'blocks/menu', '[[regtime]]', '[[regtime]]'),
(28, 'breadcrumbs', 'blocks/breadcrumbs', '[[regtime]]', '[[regtime]]'),
(29, 'account', 'blocks/account', '[[regtime]]', '[[regtime]]'),
(30, 'custom_form_block', 'blocks/custom_form_block', '[[regtime]]', '[[regtime]]'),
(31, 'customer', 'blocks/customer', '[[regtime]]', '[[regtime]]'),
(32, 'fast_checkout_cart_btn', 'blocks/fast_checkout_cart_btn', '[[regtime]]', '[[regtime]]'),
(33, 'fast_checkout_summary', 'blocks/fast_checkout_summary', '[[regtime]]', '[[regtime]]'),
(34, 'viewed_products', 'blocks/viewed_products', '[[regtime]]', '[[regtime]]'),
(35, 'new_content', 'blocks/new_content', '[[regtime]]', '[[regtime]]'),
(36, 'content_search', 'blocks/content_search', '[[regtime]]', '[[regtime]]'),
(37, 'store_hours', 'blocks/store_hours', '[[regtime]]', '[[regtime]]'),
(38, 'mega_menu_header', 'blocks/mega_menu', '[[regtime]]', '[[regtime]]'),
(39, 'category_slides', 'blocks/category_slides', '[[regtime]]', '[[regtime]]'),
(40, 'category_filter', 'blocks/category_filter', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]block_descriptions`
--
CREATE TABLE `[[dbprefix]]block_descriptions` (
`block_description_id` int NOT NULL AUTO_INCREMENT,
`custom_block_id` int NOT NULL,
`language_id` int NOT NULL,
`block_wrapper` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`block_framed` tinyint(1) DEFAULT '0',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`block_description_id`,`custom_block_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=21 ;
--
-- Dumping data for table `[[dbprefix]]block_descriptions`
--
INSERT INTO `[[dbprefix]]block_descriptions` VALUES
(1, 1, 1, '0', 0, 'Social Icons', 'social_icons', '', '<div class="social_icons nav navbar"> <a class="nav-link m-3" href="https://www.facebook.com/AbanteCart" target="_blank" title="Facebook" ><i class=" fa-brands fa-facebook fa-xl" ></i></a> <a class="nav-link m-3" href="https://twitter.com/abantecart" target="_blank" title="Twitter"><i class=" fa-brands fa-x-twitter fa-xl" ></i></a> <a class="nav-link m-3" href="#" title="Linkedin" ><i class="fa-brands fa-linkedin fa-xl"></i></a> <a class="nav-link m-3" href="#" title="rss" ><i class="fa-solid fa-square-rss fa-xl"></i></a> <a class="nav-link m-3" href="#" target="_blank" title="Skype" ><i class="fa-brands fa-skype fa-xl"></i></a> <a class="nav-link m-3" href="#" target="_blank" title="Flickr"><i class="fa-brands fa-flickr fa-xl"></i></a> </div>', '[[regtime]]', '[[regtime]]'),
(2, 2, 1, 'blocks/html_block_footer.tpl', 1, 'About Us', 'About Us', '', '<p class="small lh-lg">AbanteCart is a free eCommerce solution for merchants to provide ability creating online business and sell products or services online. AbanteCart application is built and supported by experienced enthusiasts that are passionate about their work and contribution to rapidly evolving eCommerce industry. AbanteCart is more than just a shopping cart, it is rapidly growing eCommerce platform with many benefits.</p>', '[[regtime]]', '[[regtime]]'),
(3, 3, 1, 'blocks/html_block_footer.tpl', 1, 'Contact us', 'Contact Us', '', '<ul class="list-unstyled contact small"> <li class="mb-2"><i class="fa-solid fa-phone"></i></i> 123 456 7890, 123 456 7890</li> <li class="mb-2"><i class="fa-solid fa-mobile-screen"></i><a class="text-decoration-none" href="tel:123 456 7890"> 123 456 7890</a>, 123 456 78900</li> <li class="mb-2"><i class="fa-solid fa-at"></i> help at abantecart.com</li></ul>', '[[regtime]]', '[[regtime]]'),
(4, 4, 1, '0', 1, 'Testimonials', 'Testimonials', '', '<div id="testimonial_sidebar" class="carousel carousel-dark slide" data-bs-ride="carousel"> <div class="carousel-inner"> <div class="carousel-item active"> <div class="align-self-stretch small lh-lg"> " I was working with many shopping carts, free and hosted for my clients. There is always something missing. In AbanteCart I find this gap to be much less. Interface is very easy to use and support is very responsive. This is considering its is free. Go AbanteCart go!"<br /> <span class="pull-left orange">By : TopShop on reviewcentre.com</span> </div> </div> <div class="carousel-item"> <div class="align-self-stretch small lh-lg"> " Without a doubt the best cart I have used. The title says it all - AbanteCart is undoubtedly the best I have used. I''m not an expert in site setup, so something this great looking and easy to use is absolutely perfect ... "<br /> <span class="pull-left orange">By : johnstenson80 on venturebeat.com</span> </div> </div> <div class="carousel-item"> <div class="align-self-stretch small lh-lg"> " Will not regret using this cart. All good is already mentioned, I want to add my experience with support. My problems with some configuration were resolved quick. Faster than paid shopping cart we had before."<br /> <span class="pull-left orange">By : shopper23 at bestshoppingcartreviews.com</span> </div> </div> <div class="carousel-item"> <div class="align-self-stretch small lh-lg"> " Love the cart. I installed it a while back and use it since when. Some features a hidden, but fun to discover them."<br /> <span class="pull-left orange">By : Liz Wattkins at shopping-cart-reviews.com</span> </div> </div> </div> </div>', '[[regtime]]', '[[regtime]]'),
(5, 5, 1, '0', 0, 'Main Page Carousel', 'Main Page Carousel', '', '<div id="mainPageSliderIndicators" class="carousel carousel-dark slide bg-light" data-bs-ride="carousel"> <div class="carousel-indicators"> <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button> <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button> <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button> <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="3" aria-label="Slide 4"></button> </div> <div class="carousel-inner"> <div class="carousel-item banner active"> <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center"> <div class="flex-item "> <img class="my-auto w-100" src="image/Slide_600x300.jpeg"> </div> <div class="flex-item col-9 col-sm-3 m-5"> <h5>HTML5 Responsive Storefront to look great on</h5> <h5>ALL Screen Sizes</h5> <p>Natively responsive template implemented with bootstrap library and HTML5. Will look good on most mobile devices and tablets.</p> <h3><a href="#" class=""> Try on your device!</a></h3> </div> </div> </div> <div class="carousel-item banner"> <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center"> <div class="flex-item "> <img class="my-auto w-100" src="image/Slide_600x300.jpeg"> </div> <div class="flex-item col-9 col-sm-3 m-5"> <h5>Highly flexible layout on any page</h5> <h5>SEO Friendly</h5> <p>Fast Loading</p> <h3><a href="#" class=""> Try Now!</a></h3> </div> </div> </div> <div class="carousel-item banner"> <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center"> <div class="flex-item "> <img class="my-auto w-100" src="image/Slide_600x300.jpeg"> </div> <div class="flex-item col-9 col-sm-3 m-5"> <h5>Feature rich with smart UI</h5> <h5>Easy &amp; fun to manage</h5> <p>Feature reach shopping cart application right out of the box. Standard features allow to set up complete eCommerce site with all the tools needed to sell products online.</p> <h3><a href="#" class="">Install Now!</a></h3> </div> </div> </div> <div class="carousel-item banner"> <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center"> <div class="flex-item "> <img class="my-auto w-100" src="image/Slide_600x300.jpeg"> </div> <div class="flex-item col-9 col-sm-3 m-5"> <h5>Stay in control</h5> <h5>Easy updates</h5> <p>Upgrade right from admin. Backward supportability in upgrades and automatic backups. Easy extension download with one step installation.</p> <h3><a href="#" class="">Get Yours!</a></h3> </div> </div> </div> </div> <button class="carousel-control-prev" type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="visually-hidden">Previous</span> </button> <button class="carousel-control-next" type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="visually-hidden">Next</span> </button> </div>', '[[regtime]]', '[[regtime]]'),
(6, 6, 1, '0', 0, 'Main Page Promo', 'Promo', '', '<section class="d-flex flex-wrap justify-content-evenly border m-3"> <div class="d-flex flex-item align-items-center"> <div class="promo_icon fs-1 m-3"><i class="fa-solid fa-2xl fa-truck fs-1"></i></div><div class="promo_text"><h2>Free shipping</h2>All over in world over $200</div></div><div class="d-flex flex-item align-items-center"><div class="promo_icon fs-1 m-3"><i class="fa-solid fa-2xl fa-money-bill-1 fs-1"></i></div> <div class="promo_text"><h2>Easy Payment</h2>Payment Gateway support</div></div><div class="d-flex flex-item align-items-center"> <div class="promo_icon fs-1 m-3"><i class="fa-solid fa-2xl fa-clock fs-1"></i></div><div class="promo_text"><h2>24hrs Shipping</h2>For All US States</div></div><div class="d-flex flex-item align-items-center"><div class="promo_icon fs-1 m-3"><i class="fa-solid fa-2xl fa-tags fs-1"></i></div> <div class="promo_text"><h2>Large Variety</h2>50,000 Products</div></div></section>', '[[regtime]]', '[[regtime]]'),
(7, 7, 1, '0', 0, 'Main Page Banner Bottom', 'Bottom Banners', '', 'a:1:{s:17:""banner_group_name"";s:19:""Main bottom banners"";}', '[[regtime]]', '[[regtime]]'),
(8, 8, 1, 'blocks/listing_block/popular_brands_content_bottom.tpl', 0, 'Brands Scrolling List', 'Brands Scrolling List', '', 'a:1:{s:18:""listing_datasource"";s:20:""custom_manufacturers"";}', '[[regtime]]', '[[regtime]]'),
(9, 9, 1, 'blocks/html_block_footer.tpl', 0, 'Novator About Us', 'Novator About Us', 'Novator About Us', '<div class="footer-abtus text-center text-md-start">\n<h3 class="h5 text-white mb-4">\n Where art and fashion fuse. Elevate your style with Balenciaga.</h3>\n <ul class="list-inline">\n <li class="list-inline-item"><a href="#"><i class="bi bi-layers"></i> Top Brands</a></li>\n <li class="list-inline-item"><a href="#"><i class="bi bi-tag"></i> Discount</a></li>\n </ul>\n <div class="social_icons">\n <ul class="list-inline">\n <li class="list-inline-item"><a href="https://www.facebook.com/AbanteCart" target="_blank" title="Facebook" class="facebook"><i class="fa-brands fa-facebook-f"></i></a></li>\n <li class="list-inline-item"><a href="https://twitter.com/abantecart" target="_blank" title="Twitter" class="twitter"><i class="fa-brands fa-x-twitter"></i></a></li>\n <li class="list-inline-item"><a href="#" title="Linkedin" class="linkedin"><i class="fa-brands fa-linkedin-in"></i></a></li>\n </ul>\n </div>\n</div>', '[[regtime]]', '[[regtime]]'),
(10, 10, 1, '0', 0, 'Novator Footer link block main', 'Footer link block main', 'Footer link block main', '<div class="footer-main-links row">\n <div class="col-md-4">\n <h3 class="h5 text-white text-start">Product</h3>\n <ul class="list-unstyled footer-link"><li><a href="#" target="_blank">Smart</a></li><li><a href="#" target="_blank">Habits</a></li><li><a href="#" target="_blank">Tasks</a></li><li><a href="#" target="_blank">Calendar Sync</a></li><li><a href="#" target="_blank">Buffer Time</a></li><li><a href="#" target="_blank">Use Cases</a></li></ul>\n </div>\n <div class="col-md-4">\n <h3 class="h5 text-white text-start">Product</h3>\n <ul class="list-unstyled footer-link"><li><a href="#" target="_blank">Smart</a></li><li><a href="#" target="_blank">Habits</a></li><li><a href="#" target="_blank">Tasks</a></li><li><a href="#" target="_blank">Calendar Sync</a></li><li><a href="#" target="_blank">Buffer Time</a></li><li><a href="#" target="_blank">Use Cases</a></li></ul>\n </div>\n <div class="col-md-4">\n <h3 class="h5 text-white text-start">Product</h3>\n <ul class="list-unstyled footer-link"><li><a href="#" target="_blank">Smart</a></li><li><a href="#" target="_blank">Habits</a></li><li><a href="#" target="_blank">Tasks</a></li><li><a href="#" target="_blank">Calendar Sync</a></li><li><a href="#" target="_blank">Buffer Time</a></li><li><a href="#" target="_blank">Use Cases</a></li></ul>\n </div>\n </div>', '[[regtime]]', '[[regtime]]'),
(11, 11, 1, 'blocks/html_block_footer.tpl', 0, 'Novator Contact us', 'Contact us', '', '<div class="contactus-block text-center text-md-start">\n<img src="extensions/novator/storefront/view/novator/image/presets/18/7b/5.svg" alt="images" class="img-fluid h-auto" width="350" height="79"><p class="text-white">1487 Rocky Horse Carrefour<br>Arlington, TX 16819</p><h4 class="text-white"><i class="bi bi-telephone"></i> (444) 019 120 0401</h4><a href="#" class="btn btn-success d-inline-block">Live Chat</a> <a href="#" class="btn btn-outline-light d-inline-block">Help Desk</a>\n</div>', '[[regtime]]', '[[regtime]]'),
(12, 12, 1, '0', 0, 'Novator Main Page Carousel', 'Novator Main Page Carousel', '', '<section class="hero-slider-sec top-section">\n <div id="carouselExample" class="carousel slide carousel-dark">\n <div class="carousel-inner">\n <div class="carousel-item active"><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/e.png"\n class="d-none d-lg-block w-100 h-auto" alt="images" width="1920" height="750"> <img\n src="extensions/novator/storefront/view/novator/image/presets/18/7a/f.png" class="d-block d-lg-none w-100 h-auto" alt="images" width="1920"\n height="750">\n <div class="carousel-caption d-none d-lg-flex">\n <div class="container">\n <div class="row">\n <div class="col-md-5 text-start">\n <p class="h5">Feature rich with smart UI</p>\n <h1 class="my-4 h2"><span class="text-primary">Easy & Fun</span> To Manage</h1>\n <p class="mb-4">Feature reach shopping cart application right out of the box. Standard features allow\n to set up complete eCommerce site with all the tools needed to sell products online.</p><a href="#" class="btn btn-outline-dark">Install Now</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class="carousel-item"><img src="extensions/novator/storefront/view/novator/image/presets/18/7b/0.png" class="d-none d-lg-block w-100 h-auto"\n alt="images" width="1920" height="750"> <img src="extensions/novator/storefront/view/novator/image/presets/18/7b/1.png"\n class="d-block d-lg-none w-100 h-auto" alt="images" width="1920" height="750">\n <div class="carousel-caption d-none d-lg-flex">\n <div class="container">\n <div class="row">\n <div class="col-md-5 text-start">\n <h1 class="mb-4">All Screen Size</h1>\n <p class="mb-4">Natively responsive template implemented with bootstrap library and HTML5. Will look\n good on most mobile devices and tablets.</p><a href="#" class="btn btn-outline-dark">Try On Your\n Device</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class="carousel-item"><img src="extensions/novator/storefront/view/novator/image/presets/18/7b/4.png" class="d-none d-lg-block w-100 h-auto"\n alt="images" width="1920" height="750"> <img src="extensions/novator/storefront/view/novator/image/presets/18/7b/3.png"\n class="d-block d-lg-none w-100 h-auto" alt="images" width="1920" height="750">\n <div class="carousel-caption d-none d-lg-flex">\n <div class="container">\n <div class="row">\n <div class="col-md-5 text-start">\n <h1 class="mb-4 h2 slide-3-title">SEO Friendly</h1>\n <h1 class="mb-4 h2 slide-3-title">Fast Loadnig</h1>\n <p class="mb-4 text-white">Natively responsive template implemented with bootstrap library and HTML5.\n Will look good on most mobile devices and tablets.</p><a href="#" class="btn btn-outline-light">Try On\n Your Device</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div><button class="carousel-control-prev" type="button" data-bs-target="#carouselExample"\n data-bs-slide="prev"><span class="header-arrow rounded-end"><i class="bi bi-arrow-left"></i></span></button>\n <button class="carousel-control-next" type="button" data-bs-target="#carouselExample" data-bs-slide="next"><span\n class="header-arrow rounded-start"><i class="bi bi-arrow-right"></i></span></button>\n </div>\n </section>', '[[regtime]]', '[[regtime]]');
INSERT INTO `[[dbprefix]]block_descriptions` VALUES
(13, 13, 1, '0', 0, 'Novator Icon block', 'Promo', '', '<section>\n <div class="container">\n <div class="row g-4">\n <div class="col-sm-6 col-lg-3">\n <div class="icon-block-card rounded-3 p-4">\n <svg xmlns="http://www.w3.org/2000/svg" width="50" height="49" viewBox="0 0 50 49"\n fill="none">\n <g clip-path="url(#clip0_375_6590)">\n <path\n d="M46.0698 22.1421L44.8009 17.0665C45.1478 16.9928 45.4081 16.685 45.4081 16.3163V15.4979C45.4081 13.7211 43.9625 12.2756 42.1858 12.2756H36.4061V10.5876C36.4061 9.71322 35.6948 9.00195 34.8205 9.00195H5.35904C4.48469 9.00195 3.77343 9.71322 3.77343 10.5876V24.4999C3.77343 24.9236 4.11691 25.2672 4.54068 25.2672C4.96436 25.2672 5.30793 24.9237 5.30793 24.4999V10.5876C5.30793 10.5593 5.33081 10.5365 5.35904 10.5365H34.8204C34.8486 10.5365 34.8715 10.5593 34.8715 10.5876V24.5001C34.8715 24.9238 35.215 25.2674 35.6387 25.2674C36.0624 25.2674 36.406 24.9239 36.406 24.5001V23.6304H45.4565C45.4573 23.6304 45.4579 23.6306 45.4585 23.6306C45.4593 23.6306 45.46 23.6305 45.4607 23.6305C46.5743 23.6312 47.52 24.3622 47.8448 25.3695H45.4591C45.0354 25.3695 44.6919 25.713 44.6919 26.1367V27.7735C44.6919 29.099 45.7703 30.1774 47.0958 30.1774H47.9654V33.5532H45.9593C45.3003 31.6503 43.4914 30.2796 41.3672 30.2796C39.2431 30.2796 37.4341 31.6503 36.7752 33.5532H36.4058V27.7734C36.4058 27.3497 36.0623 27.0061 35.6385 27.0061C35.2149 27.0061 34.8713 27.3496 34.8713 27.7734V33.553H18.9532C18.2942 31.6501 16.4853 30.2794 14.3612 30.2794C12.237 30.2794 10.428 31.6501 9.76913 33.553H5.35904C5.33081 33.553 5.30793 33.5301 5.30793 33.5019V31.8139H8.63256C9.05624 31.8139 9.39982 31.4705 9.39982 31.0467C9.39982 30.6229 9.05634 30.2794 8.63256 30.2794H1.26725C0.843574 30.2794 0.5 30.6229 0.5 31.0467C0.5 31.4705 0.843478 31.8139 1.26725 31.8139H3.77352V33.5019C3.77352 34.3762 4.48479 35.0875 5.35913 35.0875H9.50346C9.50327 35.1045 9.50212 35.1214 9.50212 35.1386C9.50212 37.8179 11.682 39.9976 14.3612 39.9976C17.0404 39.9976 19.2202 37.8179 19.2202 35.1386C19.2202 35.1213 19.219 35.1045 19.2189 35.0875H36.5095C36.5093 35.1045 36.5082 35.1214 36.5082 35.1386C36.5082 37.8179 38.688 39.9976 41.3672 39.9976C44.0464 39.9976 46.2263 37.8179 46.2263 35.1386C46.2263 35.1213 46.2251 35.1045 46.2249 35.0875H48.7326C49.1563 35.0875 49.4999 34.744 49.4999 34.3202V26.1365C49.5 24.1161 48.0092 22.4373 46.0698 22.1421ZM36.4061 13.81H42.1858C43.1165 13.81 43.8737 14.5672 43.8737 15.4979V15.549H36.4061V13.81ZM36.4061 22.096V17.0834H43.2235L44.4766 22.096H36.4061ZM14.3612 38.4634C12.528 38.4634 11.0365 36.9721 11.0365 35.1388C11.0365 33.3055 12.528 31.8141 14.3612 31.8141C16.1944 31.8141 17.6858 33.3055 17.6858 35.1388C17.6858 36.9721 16.1944 38.4634 14.3612 38.4634ZM41.3674 38.4634C39.5342 38.4634 38.0428 36.9721 38.0428 35.1388C38.0428 33.3055 39.5342 31.8141 41.3674 31.8141C43.2006 31.8141 44.6921 33.3055 44.6921 35.1388C44.6921 36.9721 43.2006 38.4634 41.3674 38.4634ZM47.9656 28.6429H47.096C46.6166 28.6429 46.2265 28.2528 46.2265 27.7734V26.9038H47.9655V28.6429H47.9656Z"\n fill="currentcolor" />\n <path\n d="M14.363 33.5532C13.4886 33.5532 12.7773 34.2645 12.7773 35.1388C12.7773 36.0132 13.4886 36.7244 14.363 36.7244C15.2373 36.7244 15.9486 36.0132 15.9486 35.1388C15.9486 34.2645 15.2373 33.5532 14.363 33.5532Z"\n fill="currentcolor" />\n <path\n d="M41.3669 33.5532C40.4925 33.5532 39.7812 34.2645 39.7812 35.1388C39.7812 36.0132 40.4925 36.7244 41.3669 36.7244C42.2412 36.7244 42.9525 36.0132 42.9525 35.1388C42.9525 34.2645 42.2412 33.5532 41.3669 33.5532Z"\n fill="currentcolor" />\n <path\n d="M32.3651 30.2798H20.9079C20.4842 30.2798 20.1406 30.6233 20.1406 31.047C20.1406 31.4708 20.4841 31.8143 20.9079 31.8143H32.3651C32.7887 31.8143 33.1323 31.4708 33.1323 31.047C33.1323 30.6233 32.7888 30.2798 32.3651 30.2798Z"\n fill="currentcolor" />\n <path\n d="M12.7245 27.0063H2.90397C2.48029 27.0063 2.13672 27.3498 2.13672 27.7736C2.13672 28.1974 2.4802 28.5409 2.90397 28.5409H12.7245C13.1481 28.5409 13.4917 28.1974 13.4917 27.7736C13.4917 27.3498 13.1481 27.0063 12.7245 27.0063Z"\n fill="currentcolor" />\n <path\n d="M27.181 16.5918C26.8814 16.2923 26.3955 16.2923 26.096 16.5919L19.2731 23.4147L15.7238 19.8654C15.4241 19.5657 14.9383 19.5657 14.6388 19.8654C14.3392 20.165 14.3392 20.6507 14.6388 20.9504L18.7307 25.0422C18.8805 25.1921 19.0768 25.2669 19.2731 25.2669C19.4694 25.2669 19.6659 25.1921 19.8156 25.0422L27.1809 17.6769C27.4805 17.3772 27.4805 16.8915 27.181 16.5918Z"\n fill="currentcolor" />\n </g>\n <defs>\n <clipPath id="clip0_375_6590">\n <rect width="49" height="49" fill="white" transform="translate(0.5)" />\n </clipPath>\n </defs>\n </svg>\n <h2 class="feature-title mt-4 mb-3 d-block">Free Shipping</h2>\n <p class="mb-0">A commerce solution for growing digital brands</p>\n </div>\n </div>\n <div class="col-sm-6 col-lg-3">\n <div class="icon-block-card rounded-3 p-4"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="49" viewBox="0 0 50 49"\n fill="none">\n <g clip-path="url(#clip0_375_6613)">\n <path\n d="M38.3789 8.12346C38.4002 8.12501 38.4215 8.12656 38.4432 8.12656C38.48 8.12656 38.5169 8.12346 38.5529 8.11842C39.5177 8.13819 40.2899 8.92509 40.2911 9.88991C40.2911 10.3283 40.6465 10.6838 41.0849 10.6838C41.5234 10.6838 41.8788 10.3283 41.8788 9.88991C41.8769 8.31185 40.7783 6.9466 39.2371 6.60703V5.84417C39.2371 5.40575 38.8816 5.05029 38.4432 5.05029C38.0048 5.05029 37.6493 5.40575 37.6493 5.84417V6.64308C36.0197 7.07879 34.9654 8.6553 35.1851 10.3279C35.4049 12.0006 36.8307 13.2511 38.5176 13.2511C39.4972 13.2511 40.2911 14.0454 40.2911 15.0249C40.2911 16.0041 39.4972 16.7983 38.5176 16.7983C37.5381 16.7983 36.7442 16.0041 36.7442 15.0249C36.7442 14.5865 36.3888 14.231 35.9503 14.231C35.5119 14.231 35.1565 14.5865 35.1565 15.0249C35.1584 16.546 36.1802 17.8767 37.6493 18.2717V19.1416C37.6493 19.58 38.0048 19.9355 38.4432 19.9355C38.8816 19.9355 39.2371 19.58 39.2371 19.1416V18.3082C40.9136 17.9411 42.0443 16.3696 41.8594 14.6632C41.6749 12.9569 40.2341 11.6637 38.5176 11.6641C37.5652 11.6645 36.7826 10.9125 36.745 9.96085C36.7078 9.00921 37.4292 8.19789 38.3789 8.12385V8.12346Z"\n fill="currentcolor" />\n <path\n d="M38.5617 1.16895C33.6779 1.16895 29.51 4.35569 27.9486 8.62277H8.24477C7.80829 8.62277 7.454 9.01622 7.45089 9.45231L7.26328 37.3015H1.64684C1.20842 37.3015 0.832031 37.619 0.832031 38.0582V41.5923C0.84211 44.9193 3.46252 47.6526 6.7861 47.803V47.8204H31.297V47.7971C31.4955 47.8045 31.5773 47.8204 31.7029 47.8204H31.7199C35.1598 47.815 37.9457 45.0248 37.9457 41.5849V23.7165C38.1442 23.7274 38.3543 23.7332 38.5597 23.7332C44.7747 23.7332 49.8322 18.666 49.8322 12.4507C49.8322 6.23572 44.777 1.16895 38.5617 1.16895ZM7.08807 46.2327H7.08303C4.51495 46.2292 2.43141 44.1526 2.41978 41.5841V38.8893H25.4422V41.5729C25.4433 43.2296 26.105 44.8178 27.2803 45.9857C27.3637 46.0691 27.4672 46.1334 27.5544 46.2327H7.08807ZM36.358 41.5841C36.3584 44.148 34.2826 46.2276 31.7192 46.2327H31.704C29.1301 46.228 27.0427 44.1472 27.0299 41.5737V38.0582C27.0365 37.8551 26.959 37.6586 26.8152 37.5151C26.6714 37.3717 26.4748 37.2946 26.2721 37.3015H8.85103L9.03322 10.2105H27.5079C27.3672 10.9373 27.2943 11.6754 27.2904 12.4154C27.2889 13.9803 27.6153 15.5277 28.2487 16.9585H20.7503C20.3115 16.9585 19.9564 17.3139 19.9564 17.7523C19.9564 18.1908 20.3115 18.5462 20.7503 18.5462H29.11C30.7477 21.1217 33.3658 22.9172 36.358 23.518V41.5841ZM38.5617 22.1458C33.2139 22.1458 28.8782 17.8105 28.8786 12.4623C28.8786 7.1141 33.2139 2.77879 38.5621 2.77879C43.9099 2.77879 48.2452 7.11449 48.2452 12.4623C48.2394 17.8078 43.9076 22.14 38.5617 22.1458Z"\n fill="currentcolor" />\n <path\n d="M15.6542 22.2422C14.2529 22.2422 13.1133 23.3458 13.1133 24.7025C13.1133 26.0592 14.2529 27.1628 15.6542 27.1628C17.0555 27.1628 18.1956 26.0592 18.1956 24.7025C18.1956 23.3458 17.0555 22.2422 15.6542 22.2422ZM15.6542 25.5751C15.1282 25.5751 14.701 25.1836 14.701 24.7025C14.701 24.2211 15.1286 23.8299 15.6542 23.8299C16.1799 23.8299 16.6078 24.2215 16.6078 24.7025C16.6078 25.1836 16.1799 25.5751 15.6542 25.5751Z"\n fill="currentcolor" />\n <path\n d="M19.957 24.6987C19.957 25.1371 20.3121 25.4925 20.7509 25.4925H31.3349C31.7733 25.4925 32.1288 25.1371 32.1288 24.6987C32.1288 24.2602 31.7733 23.9048 31.3349 23.9048H20.7509C20.3121 23.9048 19.957 24.2602 19.957 24.6987Z"\n fill="currentcolor" />\n <path\n d="M15.6542 15.3408C14.2529 15.3408 13.1133 16.4448 13.1133 17.8015C13.1133 19.1582 14.2529 20.2618 15.6542 20.2618C17.0555 20.2618 18.1956 19.1582 18.1956 17.8015C18.1956 16.4448 17.0555 15.3408 15.6542 15.3408ZM15.6542 18.6741C15.1282 18.6741 14.701 18.2826 14.701 17.8015C14.701 17.3205 15.1286 16.9286 15.6542 16.9286C16.1799 16.9286 16.6078 17.3201 16.6078 17.8015C16.6078 18.2826 16.1799 18.6745 15.6542 18.6745V18.6741Z"\n fill="currentcolor" />\n <path\n d="M15.6542 29.1421C14.2529 29.1421 13.1133 30.2457 13.1133 31.6024C13.1133 32.9591 14.2529 34.0627 15.6542 34.0627C17.0555 34.0627 18.1956 32.9591 18.1956 31.6024C18.1956 30.2457 17.0555 29.1421 15.6542 29.1421ZM15.6542 32.475C15.1282 32.475 14.701 32.0838 14.701 31.6024C14.701 31.1214 15.1286 30.7298 15.6542 30.7298C16.1799 30.7298 16.6078 31.1214 16.6078 31.6024C16.6078 32.0835 16.1799 32.475 15.6542 32.475Z"\n fill="currentcolor" />\n <path\n d="M31.3349 30.8516H20.7509C20.3121 30.8516 19.957 31.207 19.957 31.6454C19.957 32.0839 20.3121 32.4393 20.7509 32.4393H31.3349C31.7733 32.4393 32.1288 32.0839 32.1288 31.6454C32.1288 31.207 31.7733 30.8516 31.3349 30.8516Z"\n fill="currentcolor" />\n </g>\n <defs>\n <clipPath id="clip0_375_6613">\n <rect width="49" height="49" fill="white" transform="translate(0.832031)" />\n </clipPath>\n </defs>\n </svg>\n <h2 class="feature-title mt-4 mb-3 d-block">Free Shipping</h2>\n <p class="mb-0">A commerce solution for growing digital brands</p>\n </div>\n </div>\n <div class="col-sm-6 col-lg-3">\n <div class="icon-block-card rounded-3 p-4"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="49" viewBox="0 0 50 49"\n fill="none">\n <path\n d="M2.39507 24.5033C2.39447 20.3202 3.57194 16.2215 5.79264 12.6764C8.01334 9.13141 11.1875 6.28344 14.9516 4.45865C18.7158 2.63385 22.9178 1.906 27.0764 2.35844C31.235 2.81088 35.1821 4.42531 38.4658 7.01688H35.0773C34.7838 7.01972 34.5032 7.13832 34.2967 7.34688C34.0901 7.55545 33.9742 7.83712 33.9742 8.13066C33.9742 8.42419 34.0901 8.70586 34.2967 8.91443C34.5032 9.12299 34.7838 9.24159 35.0773 9.24443H41.3778C41.6732 9.24443 41.9565 9.12708 42.1654 8.9182C42.3742 8.70932 42.4916 8.42601 42.4916 8.1306V1.82992C42.493 1.68275 42.4653 1.53675 42.4099 1.40037C42.3546 1.26399 42.2728 1.13993 42.1692 1.03536C42.0656 0.930787 41.9424 0.847776 41.8065 0.791125C41.6707 0.734474 41.525 0.705305 41.3778 0.705305C41.2306 0.705305 41.0849 0.734474 40.9491 0.791125C40.8132 0.847776 40.69 0.930787 40.5864 1.03536C40.4829 1.13993 40.401 1.26399 40.3457 1.40037C40.2904 1.53675 40.2626 1.68275 40.264 1.82992V5.60149C35.4074 1.59511 29.195 -0.388149 22.9153 0.0630496C16.6356 0.514248 10.7705 3.36528 6.53652 8.02483C2.30253 12.6844 0.0245208 18.7949 0.174974 25.089C0.325427 31.383 2.8928 37.3777 7.34459 41.8296C7.44757 41.935 7.57043 42.0189 7.70605 42.0765C7.84168 42.134 7.98738 42.1641 8.13472 42.165C8.28205 42.1658 8.42809 42.1374 8.56437 42.0814C8.70065 42.0254 8.82447 41.943 8.92866 41.8388C9.03284 41.7346 9.11531 41.6108 9.1713 41.4745C9.22729 41.3382 9.25569 41.1922 9.25484 41.0448C9.25399 40.8975 9.22392 40.7518 9.16636 40.6162C9.1088 40.4805 9.0249 40.3577 8.91953 40.2547C6.84455 38.191 5.19949 35.7363 4.07957 33.0325C2.95965 30.3288 2.3871 27.4298 2.39507 24.5033Z"\n fill="currentcolor" />\n <path\n d="M14.9353 44.5466C14.3034 44.2393 13.678 43.8973 13.0768 43.5308C12.8247 43.3769 12.5218 43.3295 12.2347 43.3989C11.9476 43.4683 11.6998 43.649 11.5459 43.9011C11.392 44.1532 11.3446 44.4561 11.414 44.7432C11.4835 45.0303 11.6641 45.278 11.9162 45.4319C12.5781 45.836 13.2665 46.2118 13.9621 46.55C14.0936 46.6139 14.2365 46.6513 14.3825 46.66C14.5284 46.6687 14.6747 46.6486 14.8129 46.6008C14.9511 46.5529 15.0786 46.4784 15.188 46.3813C15.2974 46.2842 15.3866 46.1666 15.4505 46.035C15.5144 45.9035 15.5518 45.7606 15.5605 45.6146C15.5692 45.4687 15.5491 45.3224 15.5013 45.1842C15.4534 45.046 15.3789 44.9185 15.2818 44.8091C15.1847 44.6997 15.0671 44.6105 14.9355 44.5466H14.9353Z"\n fill="currentcolor" />\n <path\n d="M44.7226 14.7893C44.7863 14.921 44.8754 15.0387 44.9847 15.136C45.0939 15.2332 45.2213 15.3079 45.3594 15.3559C45.4976 15.4039 45.6439 15.4242 45.7899 15.4157C45.9359 15.4071 46.0788 15.3699 46.2104 15.3062C46.3421 15.2424 46.4598 15.1534 46.5571 15.0441C46.6543 14.9348 46.729 14.8074 46.777 14.6693C46.825 14.5311 46.8453 14.3849 46.8368 14.2388C46.8282 14.0928 46.791 13.9499 46.7273 13.8183C46.3917 13.1249 46.0165 12.4365 45.6125 11.7718C45.5364 11.6468 45.4365 11.5381 45.3185 11.4517C45.2004 11.3653 45.0665 11.3031 44.9244 11.2685C44.6373 11.1985 44.3343 11.2455 44.0819 11.3991C43.8295 11.5526 43.6484 11.8001 43.5785 12.0872C43.5086 12.3742 43.5556 12.6773 43.7091 12.9296C44.0765 13.5339 44.4175 14.1596 44.7226 14.7893Z"\n fill="currentcolor" />\n <path\n d="M27.3149 46.6232C26.6117 46.7067 25.9004 46.7564 25.2 46.7733C24.91 46.7844 24.6357 46.9083 24.4357 47.1186C24.2357 47.3289 24.1256 47.6089 24.129 47.8991C24.1324 48.1893 24.2489 48.4668 24.4538 48.6723C24.6586 48.8779 24.9357 48.9954 25.2259 48.9997C25.2345 48.9997 25.2438 48.9997 25.2525 48.9992C26.0225 48.9812 26.804 48.9261 27.5762 48.8349C27.8693 48.8 28.1365 48.6502 28.3192 48.4183C28.5019 48.1865 28.5851 47.8916 28.5505 47.5985C28.5159 47.3054 28.3664 47.0379 28.1348 46.855C27.9031 46.672 27.6083 46.5885 27.3152 46.6228L27.3149 46.6232Z"\n fill="currentcolor" />\n <path\n d="M20.9759 46.4721C20.2831 46.3563 19.5864 46.2056 18.9056 46.0231C18.6201 45.9468 18.3161 45.9871 18.0603 46.135C17.8045 46.2828 17.618 46.5263 17.5417 46.8117C17.4654 47.0971 17.5056 47.4012 17.6535 47.657C17.8014 47.9127 18.0448 48.0993 18.3303 48.1756C19.0796 48.3757 19.8464 48.5416 20.6094 48.6688C20.7536 48.6929 20.9012 48.6883 21.0437 48.6553C21.1862 48.6224 21.3208 48.5616 21.4398 48.4767C21.5588 48.3917 21.66 48.2841 21.7374 48.16C21.8148 48.0359 21.8671 47.8978 21.8911 47.7536C21.9152 47.6093 21.9106 47.4617 21.8776 47.3192C21.8447 47.1767 21.7839 47.0421 21.699 46.9231C21.614 46.8041 21.5064 46.703 21.3823 46.6255C21.2582 46.5481 21.1201 46.4959 20.9759 46.4718V46.4721Z"\n fill="currentcolor" />\n <path\n d="M48.0789 23.9666C47.7837 23.9595 47.4976 24.0698 47.2837 24.2734C47.0698 24.477 46.9454 24.7573 46.938 25.0525C46.9201 25.7568 46.869 26.468 46.7852 27.1674C46.7503 27.4607 46.8332 27.7559 47.0159 27.9881C47.1985 28.2203 47.4658 28.3704 47.7591 28.4056C47.8035 28.4106 47.8482 28.4131 47.8929 28.4132C48.1651 28.4128 48.4277 28.3128 48.6312 28.1319C48.8347 27.9511 48.9649 27.7021 48.9973 27.4318C49.0887 26.6634 49.1453 25.8819 49.1644 25.1081C49.1681 24.9618 49.143 24.8163 49.0904 24.6798C49.0379 24.5433 48.959 24.4184 48.8582 24.3124C48.7574 24.2064 48.6367 24.1213 48.503 24.062C48.3692 24.0027 48.2252 23.9703 48.0789 23.9666Z"\n fill="currentcolor" />\n <path\n d="M44.6596 36.7062C44.4152 36.5405 44.115 36.4786 43.825 36.5339C43.5349 36.5893 43.2787 36.7574 43.1124 37.0015C42.7165 37.5839 42.2885 38.1544 41.8393 38.6965C41.7438 38.8089 41.6716 38.939 41.6268 39.0795C41.582 39.22 41.5656 39.368 41.5785 39.5148C41.5913 39.6617 41.6332 39.8046 41.7018 39.9351C41.7703 40.0657 41.864 40.1813 41.9776 40.2754C42.0912 40.3694 42.2223 40.4399 42.3633 40.4829C42.5044 40.5258 42.6526 40.5403 42.7993 40.5255C42.946 40.5108 43.0883 40.467 43.2179 40.3968C43.3476 40.3266 43.462 40.2313 43.5545 40.1165C44.0483 39.5205 44.5198 38.8934 44.9548 38.2529C45.037 38.1319 45.0945 37.996 45.1242 37.8528C45.1538 37.7096 45.1549 37.562 45.1275 37.4184C45.1001 37.2748 45.0447 37.138 44.9644 37.0158C44.8841 36.8936 44.7806 36.7884 44.6596 36.7062Z"\n fill="currentcolor" />\n <path\n d="M46.1975 18.7573C46.378 19.4354 46.5281 20.1321 46.6439 20.8281C46.6871 21.0881 46.821 21.3244 47.0219 21.4949C47.2229 21.6655 47.4777 21.7593 47.7413 21.7597C47.8027 21.7595 47.864 21.7544 47.9245 21.7444C48.0689 21.7205 48.207 21.6684 48.3312 21.591C48.4554 21.5137 48.5631 21.4126 48.6481 21.2936C48.7332 21.1747 48.7941 21.0401 48.8271 20.8976C48.8602 20.7551 48.8649 20.6075 48.8409 20.4632C48.7141 19.6975 48.5485 18.9304 48.3501 18.1841C48.2741 17.8986 48.0878 17.6551 47.8322 17.507C47.5767 17.3589 47.2727 17.3184 46.9873 17.3944C46.7019 17.4705 46.4583 17.6567 46.3102 17.9123C46.1621 18.1679 46.1217 18.4719 46.1977 18.7573H46.1975Z"\n fill="currentcolor" />\n <path\n d="M38.8439 41.6894C38.2995 42.1397 37.7291 42.5676 37.1489 42.9608C37.0278 43.0429 36.9241 43.148 36.8437 43.2701C36.7633 43.3922 36.7077 43.529 36.6801 43.6726C36.6526 43.8163 36.6535 43.9639 36.683 44.1071C36.7125 44.2504 36.7699 44.3864 36.852 44.5074C36.934 44.6285 37.0391 44.7322 37.1613 44.8126C37.2834 44.893 37.4202 44.9486 37.5638 44.9762C37.7074 45.0038 37.8551 45.0028 37.9983 44.9733C38.1415 44.9438 38.2775 44.8864 38.3986 44.8043C39.0371 44.372 39.6641 43.9016 40.2633 43.4068C40.491 43.2186 40.6347 42.9476 40.6626 42.6534C40.6906 42.3593 40.6005 42.0661 40.4123 41.8384C40.2241 41.6107 39.9531 41.467 39.659 41.4391C39.3648 41.4111 39.0716 41.5012 38.8439 41.6894Z"\n fill="currentcolor" />\n <path\n d="M47.2844 30.5821C47.003 30.4927 46.6977 30.5186 46.4354 30.6541C46.1731 30.7896 45.9752 31.0236 45.8853 31.3048C45.6721 31.9731 45.4231 32.6405 45.1451 33.2892C45.0844 33.4241 45.0511 33.5697 45.0473 33.7176C45.0434 33.8654 45.0691 34.0126 45.1227 34.1504C45.1764 34.2883 45.257 34.4141 45.3598 34.5204C45.4626 34.6268 45.5856 34.7116 45.7215 34.7699C45.8575 34.8282 46.0037 34.8588 46.1516 34.86C46.2995 34.8612 46.4462 34.8329 46.583 34.7767C46.7199 34.7206 46.8442 34.6377 46.9487 34.533C47.0532 34.4283 47.1357 34.3038 47.1916 34.1669C47.4984 33.4528 47.7724 32.7171 48.0067 31.9813C48.0513 31.842 48.0679 31.6953 48.0557 31.5496C48.0435 31.4038 48.0026 31.2619 47.9356 31.132C47.8685 31.0021 47.7764 30.8866 47.6647 30.7922C47.553 30.6979 47.4238 30.6265 47.2844 30.5821Z"\n fill="currentcolor" />\n <path\n d="M33.436 44.9884C32.7938 45.2635 32.126 45.5121 31.4511 45.7274C31.3118 45.7718 31.1826 45.8433 31.0709 45.9376C30.9591 46.032 30.8671 46.1474 30.8 46.2773C30.7329 46.4073 30.692 46.5491 30.6797 46.6949C30.6674 46.8406 30.684 46.9873 30.7284 47.1266C30.7728 47.266 30.8442 47.3952 30.9386 47.5069C31.033 47.6186 31.1484 47.7107 31.2783 47.7778C31.4083 47.8449 31.5501 47.8858 31.6959 47.8981C31.8416 47.9103 31.9883 47.8938 32.1276 47.8494C32.8699 47.6128 33.6052 47.3393 34.3127 47.0364C34.5842 46.9201 34.7985 46.7007 34.9083 46.4264C35.0181 46.1521 35.0145 45.8455 34.8981 45.5739C34.7818 45.3023 34.5624 45.088 34.2881 44.9782C34.0138 44.8684 33.7072 44.8721 33.4356 44.9884H33.436Z"\n fill="currentcolor" />\n <path\n d="M15.2525 22.2278C15.2525 20.4024 14.0522 18.9398 12.1946 18.5013C11.1742 18.2596 10.1019 18.3709 9.1528 18.8172C8.20375 19.2634 7.43397 20.0182 6.96913 20.9582C6.83897 21.2222 6.81859 21.527 6.91244 21.806C7.00629 22.085 7.20675 22.3154 7.47001 22.4471C7.73327 22.5787 8.03793 22.6008 8.31742 22.5085C8.59692 22.4162 8.82852 22.2171 8.96163 21.9545C9.19941 21.4611 9.5994 21.0642 10.0947 20.8302C10.59 20.5962 11.1506 20.5394 11.6828 20.6692C11.9977 20.7435 13.0249 21.0757 13.0249 22.2278C13.0249 23.3894 11.6833 24.2853 10.2629 25.234C8.66353 26.3015 6.85156 27.5115 6.85156 29.5149C6.85156 29.8103 6.96891 30.0936 7.17778 30.3025C7.38665 30.5113 7.66994 30.6287 7.96533 30.6287H14.1387C14.2859 30.6301 14.4318 30.6024 14.5682 30.547C14.7046 30.4917 14.8286 30.4099 14.9332 30.3063C15.0378 30.2028 15.1208 30.0795 15.1774 29.9437C15.2341 29.8078 15.2632 29.6621 15.2632 29.515C15.2632 29.3678 15.2341 29.2221 15.1774 29.0863C15.1208 28.9504 15.0378 28.8272 14.9332 28.7236C14.8286 28.6201 14.7046 28.5382 14.5682 28.4829C14.4318 28.4276 14.2859 28.3998 14.1387 28.4013H9.72624C10.1929 27.9592 10.8524 27.5187 11.4996 27.0863C13.259 25.9117 15.2525 24.5804 15.2525 22.2278Z"\n fill="currentcolor" />\n <path\n d="M25.7825 25.895C25.7825 25.5997 25.6652 25.3164 25.4563 25.1076C25.2474 24.8987 24.9641 24.7814 24.6688 24.7814H23.7638V18.8647C23.7638 18.634 23.6921 18.409 23.5588 18.2208C23.4254 18.0326 23.2369 17.8905 23.0193 17.814C22.8017 17.7375 22.5657 17.7305 22.3439 17.7938C22.1221 17.8572 21.9255 17.9879 21.7811 18.1678L16.1429 25.1985C16.0117 25.3623 15.9295 25.5598 15.9056 25.7683C15.8818 25.9768 15.9173 26.1877 16.0082 26.3769C16.099 26.5661 16.2414 26.7258 16.4189 26.8376C16.5965 26.9493 16.8021 27.0087 17.0119 27.0088H21.5364V30.1412C21.535 30.2883 21.5627 30.4343 21.6181 30.5707C21.6734 30.7071 21.7552 30.8311 21.8588 30.9357C21.9623 31.0402 22.0856 31.1233 22.2214 31.1799C22.3572 31.2366 22.5029 31.2657 22.6501 31.2657C22.7973 31.2657 22.943 31.2366 23.0788 31.1799C23.2147 31.1233 23.3379 31.0402 23.4415 30.9357C23.545 30.8311 23.6268 30.7071 23.6822 30.5707C23.7375 30.4343 23.7653 30.2883 23.7638 30.1412V27.0088H24.6688C24.9642 27.0088 25.2474 26.8915 25.4563 26.6826C25.6652 26.4737 25.7825 26.1904 25.7825 25.895ZM21.5364 24.7814H19.3333L21.5364 22.0335V24.7814Z"\n fill="currentcolor" />\n <path\n d="M31.4866 17.1465C31.3431 17.1176 31.1954 17.1172 31.0518 17.1454C30.9082 17.1737 30.7716 17.23 30.6499 17.3112C30.5281 17.3923 30.4235 17.4967 30.3422 17.6184C30.2609 17.7401 30.2044 17.8766 30.176 18.0202L27.6701 30.5496C27.6121 30.8392 27.6716 31.14 27.8354 31.3858C27.9992 31.6316 28.2539 31.8022 28.5435 31.8602C28.6157 31.8746 28.6892 31.8819 28.7628 31.8819C29.02 31.8816 29.2692 31.7923 29.4681 31.6292C29.6669 31.466 29.8032 31.239 29.8537 30.9868L32.3596 18.4573C32.3884 18.3139 32.3886 18.1663 32.3603 18.0228C32.332 17.8793 32.2757 17.7428 32.1947 17.621C32.1136 17.4993 32.0093 17.3948 31.8878 17.3133C31.7663 17.2319 31.63 17.1752 31.4866 17.1465Z"\n fill="currentcolor" />\n <path\n d="M37.2009 30.6296C37.4209 30.6294 37.6359 30.5642 37.8189 30.4422C38.0018 30.3202 38.1446 30.1468 38.2293 29.9438L42.4058 19.9202C42.4764 19.751 42.5041 19.5669 42.4865 19.3844C42.4689 19.2018 42.4065 19.0265 42.3048 18.8739C42.2031 18.7213 42.0653 18.5962 41.9036 18.5097C41.7419 18.4231 41.5613 18.3779 41.378 18.3779H35.7397C35.4462 18.3808 35.1657 18.4994 34.9591 18.7079C34.7526 18.9165 34.6367 19.1981 34.6367 19.4916C34.6367 19.7852 34.7526 20.0668 34.9591 20.2754C35.1657 20.4839 35.4462 20.6025 35.7397 20.6054H39.7074L36.1736 29.0872C36.1034 29.2564 36.0759 29.4404 36.0936 29.6228C36.1113 29.8052 36.1737 29.9804 36.2753 30.1329C36.3769 30.2854 36.5145 30.4106 36.6759 30.4973C36.8374 30.584 37.0177 30.6296 37.2009 30.63V30.6296Z"\n fill="currentcolor" />\n </svg>\n <h2 class="feature-title mt-4 mb-3 d-block">Free Shipping</h2>\n <p class="mb-0">A commerce solution for growing digital brands</p>\n </div>\n </div>\n <div class="col-sm-6 col-lg-3">\n <div class="icon-block-card rounded-3 p-4"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="49" viewBox="0 0 50 49"\n fill="none">\n <g clip-path="url(#clip0_375_6645)">\n <path\n d="M46.2339 21.2334C45.5117 21.2361 44.8109 21.478 44.2408 21.9212C43.6708 22.3645 43.2637 22.9842 43.0832 23.6834H38.0672V17.15C38.0649 16.5766 37.8594 16.0225 37.4874 15.5861C37.4784 15.5739 37.4686 15.5632 37.4588 15.5518C37.0654 15.0998 36.5189 14.809 35.9243 14.7351L38.3636 12.2958C39.0474 12.6985 39.8546 12.8381 40.6339 12.6884C41.4132 12.5386 42.1112 12.1098 42.597 11.4824C43.0829 10.8549 43.3232 10.0718 43.273 9.2798C43.2229 8.48782 42.8856 7.74131 42.3245 7.18016C41.7025 6.58572 40.8753 6.25398 40.0149 6.25398C39.1546 6.25398 38.3274 6.58572 37.7054 7.18016C37.1915 7.68969 36.8633 8.35681 36.7733 9.07486C36.6833 9.7929 36.8367 10.5204 37.2089 11.141L33.6458 14.7H25.8172V6.4174C26.587 6.21862 27.2579 5.74591 27.7042 5.08786C28.1504 4.4298 28.3413 3.63159 28.2412 2.84285C28.141 2.0541 27.7566 1.32896 27.16 0.803366C26.5634 0.277769 25.7956 -0.012207 25.0005 -0.012207C24.2054 -0.012207 23.4376 0.277769 22.8411 0.803366C22.2445 1.32896 21.8601 2.0541 21.7599 2.84285C21.6597 3.63159 21.8506 4.4298 22.2969 5.08786C22.7431 5.74591 23.414 6.21862 24.1839 6.4174V14.7H16.3553L12.7922 11.1369C13.1644 10.5163 13.3177 9.78882 13.2277 9.07077C13.1377 8.35273 12.8095 7.68561 12.2956 7.17608C11.6737 6.58163 10.8465 6.24989 9.9861 6.24989C9.12575 6.24989 8.29853 6.58163 7.67657 7.17608C7.11005 7.73579 6.76812 8.48358 6.71536 9.27821C6.6626 10.0728 6.90267 10.8593 7.39022 11.489C7.87777 12.1186 8.57904 12.548 9.36156 12.6959C10.1441 12.8438 10.9537 12.7 11.6374 12.2917L14.0768 14.7311C13.4821 14.8049 12.9357 15.0957 12.5423 15.5477C12.5325 15.5592 12.5227 15.5698 12.5137 15.582C12.1406 16.0194 11.9351 16.5751 11.9339 17.15V23.6834H6.91788C6.71911 22.9135 6.2464 22.2426 5.58835 21.7964C4.93029 21.3501 4.13208 21.1592 3.34333 21.2594C2.55459 21.3596 1.82945 21.744 1.30385 22.3406C0.778257 22.9372 0.488281 23.7049 0.488281 24.5C0.488281 25.2951 0.778257 26.0629 1.30385 26.6595C1.82945 27.2561 2.55459 27.6405 3.34333 27.7407C4.13208 27.8408 4.93029 27.6499 5.58835 27.2037C6.2464 26.7575 6.71911 26.0865 6.91788 25.3167H11.9339V31.85C11.9357 32.4449 12.1543 33.0187 12.5487 33.464C12.9432 33.9093 13.4865 34.1955 14.0768 34.269L11.6268 36.719C11.0022 36.3665 10.281 36.2239 9.56925 36.3121C8.85752 36.4003 8.19292 36.7147 7.6733 37.209C7.23571 37.6403 6.9282 38.1859 6.78586 38.7835C6.64352 39.3812 6.67209 40.0068 6.86831 40.5891C7.06453 41.1713 7.42049 41.6866 7.89557 42.0761C8.37064 42.4657 8.94568 42.7139 9.55504 42.7923C10.1644 42.8707 10.7835 42.7762 11.3417 42.5196C11.9 42.2629 12.3748 41.8545 12.712 41.341C13.0492 40.8274 13.2352 40.2294 13.2488 39.6151C13.2624 39.0009 13.1031 38.3952 12.7889 37.8672L16.3553 34.3H24.1839V42.5827C23.414 42.7814 22.7431 43.2542 22.2969 43.9122C21.8506 44.5703 21.6597 45.3685 21.7599 46.1572C21.8601 46.946 22.2445 47.6711 22.8411 48.1967C23.4376 48.7223 24.2054 49.0123 25.0005 49.0123C25.7956 49.0123 26.5634 48.7223 27.16 48.1967C27.7566 47.6711 28.141 46.946 28.2412 46.1572C28.3413 45.3685 28.1504 44.5703 27.7042 43.9122C27.2579 43.2542 26.587 42.7814 25.8172 42.5827V34.3H33.6458L37.2089 37.8631C36.9006 38.389 36.7458 38.9907 36.7623 39.6C36.7787 40.2093 36.9656 40.8018 37.3018 41.3103C37.638 41.8187 38.11 42.2227 38.6642 42.4765C39.2184 42.7302 39.8327 42.8234 40.4373 42.7456C41.0418 42.6679 41.6125 42.4221 42.0844 42.0364C42.5564 41.6506 42.9107 41.1403 43.1072 40.5633C43.3038 39.9863 43.3346 39.3658 43.1962 38.7721C43.0579 38.1785 42.7559 37.6356 42.3245 37.2049C41.8049 36.7106 41.1403 36.3962 40.4285 36.308C39.7168 36.2198 38.9956 36.3624 38.371 36.7149L35.921 34.2649C36.5112 34.1922 37.0547 33.9069 37.4497 33.4624C37.8448 33.0179 38.0643 32.4447 38.0672 31.85V25.3167H43.0832C43.2369 25.9068 43.5531 26.4419 43.9958 26.8614C44.4384 27.2808 44.9898 27.5677 45.5873 27.6895C46.1848 27.8113 46.8045 27.7632 47.376 27.5505C47.9475 27.3378 48.4479 26.9692 48.8205 26.4864C49.193 26.0036 49.4227 25.426 49.4834 24.8193C49.5442 24.2125 49.4336 23.6009 49.1642 23.0538C48.8948 22.5067 48.4775 22.0461 47.9595 21.7243C47.4415 21.4026 46.8437 21.2325 46.2339 21.2334ZM23.3672 3.2667C23.3672 2.94365 23.463 2.62787 23.6425 2.35926C23.8219 2.09066 24.077 1.88132 24.3755 1.75769C24.6739 1.63407 25.0023 1.60172 25.3192 1.66475C25.636 1.72777 25.927 1.88333 26.1555 2.11175C26.3839 2.34018 26.5394 2.63121 26.6025 2.94805C26.6655 3.26488 26.6331 3.59329 26.5095 3.89175C26.3859 4.1902 26.1766 4.44529 25.908 4.62476C25.6394 4.80424 25.3236 4.90003 25.0005 4.90003C24.5673 4.90003 24.1519 4.72795 23.8456 4.42164C23.5393 4.11533 23.3672 3.69988 23.3672 3.2667ZM3.76718 26.1334C3.44414 26.1334 3.12835 26.0376 2.85975 25.8581C2.59115 25.6786 2.3818 25.4235 2.25818 25.1251C2.13456 24.8266 2.10221 24.4982 2.16524 24.1814C2.22826 23.8645 2.38382 23.5735 2.61224 23.3451C2.84067 23.1167 3.1317 22.9611 3.44854 22.8981C3.76537 22.8351 4.09378 22.8674 4.39223 22.991C4.69069 23.1146 4.94578 23.324 5.12525 23.5926C5.30472 23.8612 5.40052 24.177 5.40052 24.5C5.40052 24.9332 5.22844 25.3487 4.92213 25.655C4.61582 25.9613 4.20037 26.1334 3.76718 26.1334ZM26.6339 45.7334C26.6339 46.0564 26.5381 46.3722 26.3586 46.6408C26.1791 46.9094 25.924 47.1187 25.6256 47.2424C25.3271 47.366 24.9987 47.3983 24.6819 47.3353C24.365 47.2723 24.074 47.1167 23.8456 46.8883C23.6172 46.6599 23.4616 46.3688 23.3986 46.052C23.3356 45.7352 23.3679 45.4068 23.4915 45.1083C23.6151 44.8099 23.8245 44.5548 24.0931 44.3753C24.3617 44.1958 24.6775 44.1 25.0005 44.1C25.4337 44.1 25.8492 44.2721 26.1555 44.5784C26.4618 44.8847 26.6339 45.3002 26.6339 45.7334ZM31.5339 30.2167V32.6667H18.4672V30.2167C18.4672 29.5669 18.2091 28.9438 17.7496 28.4843C17.2901 28.0248 16.667 27.7667 16.0172 27.7667H13.5672V18.5808L16.2385 23.5878C16.5166 24.1105 16.9318 24.5477 17.4396 24.8522C17.9473 25.1568 18.5284 25.3174 19.1205 25.3167H20.1005C20.3171 25.3167 20.5248 25.2307 20.678 25.0775C20.8311 24.9243 20.9172 24.7166 20.9172 24.5C20.9172 24.2834 20.8311 24.0757 20.678 23.9226C20.5248 23.7694 20.3171 23.6834 20.1005 23.6834H19.1205C18.8243 23.6835 18.5336 23.6032 18.2795 23.4508C18.0255 23.2985 17.8177 23.0799 17.6783 22.8185L14.2352 16.3668C14.2835 16.3507 14.3333 16.3394 14.3839 16.3334H35.6172C35.6676 16.3384 35.7174 16.3485 35.7658 16.3636L32.3211 22.8193C32.1818 23.0803 31.9741 23.2986 31.7204 23.4507C31.4667 23.6029 31.1764 23.6833 30.8805 23.6834H29.9005C29.6839 23.6834 29.4762 23.7694 29.3231 23.9226C29.1699 24.0757 29.0839 24.2834 29.0839 24.5C29.0839 24.7166 29.1699 24.9243 29.3231 25.0775C29.4762 25.2307 29.6839 25.3167 29.9005 25.3167H30.8805C31.4727 25.3176 32.0538 25.1571 32.5616 24.8525C33.0694 24.5479 33.4846 24.1107 33.7625 23.5878L36.4339 18.58V27.7667H33.9839C33.3341 27.7667 32.7109 28.0248 32.2514 28.4843C31.792 28.9438 31.5339 29.5669 31.5339 30.2167ZM38.8602 8.33003C39.0119 8.17833 39.192 8.05799 39.3902 7.9759C39.5884 7.8938 39.8008 7.85154 40.0154 7.85154C40.2299 7.85154 40.4423 7.8938 40.6405 7.9759C40.8387 8.05799 41.0188 8.17833 41.1705 8.33003C41.3222 8.48173 41.4426 8.66182 41.5247 8.86003C41.6068 9.05823 41.649 9.27067 41.649 9.4852C41.649 9.69974 41.6068 9.91218 41.5247 10.1104C41.4426 10.3086 41.3222 10.4887 41.1705 10.6404C40.8595 10.9375 40.4459 11.1033 40.0158 11.1033C39.5856 11.1033 39.172 10.9375 38.861 10.6404C38.5548 10.3341 38.3828 9.91871 38.3828 9.48561C38.3828 9.05251 38.5548 8.63714 38.861 8.33085L38.8602 8.33003ZM8.83052 10.6404C8.60204 10.412 8.44643 10.1209 8.38337 9.80409C8.32031 9.48724 8.35263 9.15881 8.47623 8.86033C8.59984 8.56185 8.80919 8.30673 9.0778 8.12723C9.34641 7.94774 9.66222 7.85193 9.98529 7.85193C10.3083 7.85193 10.6242 7.94774 10.8928 8.12723C11.1614 8.30673 11.3707 8.56185 11.4943 8.86033C11.6179 9.15881 11.6503 9.48724 11.5872 9.80409C11.5241 10.1209 11.3685 10.412 11.1401 10.6404C10.829 10.9375 10.4154 11.1033 9.98529 11.1033C9.55514 11.1033 9.14155 10.9375 8.83052 10.6404ZM13.5672 31.85V29.4H16.0172C16.2338 29.4 16.4415 29.4861 16.5947 29.6392C16.7478 29.7924 16.8339 30.0001 16.8339 30.2167V32.6667H14.3839C14.1673 32.6667 13.9595 32.5807 13.8064 32.4275C13.6532 32.2743 13.5672 32.0666 13.5672 31.85ZM11.1409 40.67C10.8298 40.9672 10.4162 41.133 9.9861 41.133C9.55596 41.133 9.14236 40.9672 8.83134 40.67C8.60286 40.4416 8.44725 40.1506 8.38419 39.8337C8.32113 39.5169 8.35344 39.1885 8.47705 38.89C8.60066 38.5915 8.81001 38.3364 9.07862 38.1569C9.34723 37.9774 9.66304 37.8816 9.9861 37.8816C10.3092 37.8816 10.625 37.9774 10.8936 38.1569C11.1622 38.3364 11.3715 38.5915 11.4952 38.89C11.6188 39.1885 11.6511 39.5169 11.588 39.8337C11.525 40.1506 11.3693 40.4416 11.1409 40.67ZM40.0149 37.8819C40.338 37.8818 40.6538 37.9776 40.9225 38.157C41.1912 38.3364 41.4006 38.5914 41.5243 38.8899C41.648 39.1883 41.6804 39.5168 41.6174 39.8336C41.5544 40.1505 41.3989 40.4416 41.1705 40.67C40.8595 40.9672 40.4459 41.133 40.0158 41.133C39.5856 41.133 39.172 40.9672 38.861 40.67C38.6326 40.4416 38.4771 40.1506 38.4141 39.8338C38.3511 39.517 38.3835 39.1887 38.5071 38.8903C38.6307 38.5919 38.84 38.3368 39.1085 38.1573C39.377 37.9778 39.6928 37.882 40.0158 37.8819H40.0149ZM35.6172 32.6667H33.1672V30.2167C33.1672 30.0001 33.2532 29.7924 33.4064 29.6392C33.5595 29.4861 33.7673 29.4 33.9839 29.4H36.4339V31.85C36.4339 32.0666 36.3478 32.2743 36.1947 32.4275C36.0415 32.5807 35.8338 32.6667 35.6172 32.6667ZM46.2339 26.1334C45.9108 26.1334 45.595 26.0376 45.3264 25.8581C45.0578 25.6786 44.8485 25.4235 44.7249 25.1251C44.6012 24.8266 44.5689 24.4982 44.6319 24.1814C44.6949 23.8645 44.8505 23.5735 45.0789 23.3451C45.3073 23.1167 45.5984 22.9611 45.9152 22.8981C46.232 22.8351 46.5605 22.8674 46.8589 22.991C47.1574 23.1146 47.4125 23.324 47.5919 23.5926C47.7714 23.8612 47.8672 24.177 47.8672 24.5C47.8672 24.9332 47.6951 25.3487 47.3888 25.655C47.0825 25.9613 46.667 26.1334 46.2339 26.1334Z"\n fill="currentcolor" />\n <path\n d="M24.9997 23.6834C24.8564 23.6833 24.7156 23.6454 24.5916 23.5737C24.4675 23.5019 24.3645 23.3988 24.2929 23.2746C24.2214 23.1504 24.1837 23.0096 24.1838 22.8663C24.1839 22.7229 24.2217 22.5822 24.2934 22.4581C24.3652 22.334 24.4683 22.231 24.5924 22.1594C24.7166 22.0877 24.8574 22.0501 25.0007 22.0501C25.144 22.0501 25.2848 22.0879 25.4089 22.1596C25.533 22.2312 25.6361 22.3343 25.7078 22.4584C25.8195 22.639 25.9971 22.769 26.203 22.8208C26.4089 22.8726 26.6269 22.8421 26.8108 22.7359C26.9946 22.6297 27.1299 22.4561 27.1879 22.2518C27.2459 22.0475 27.222 21.8287 27.1214 21.6418C26.8257 21.1446 26.3633 20.7684 25.8164 20.5801V20.4168C25.8164 20.2002 25.7303 19.9924 25.5772 19.8393C25.424 19.6861 25.2163 19.6001 24.9997 19.6001C24.7831 19.6001 24.5754 19.6861 24.4222 19.8393C24.2691 19.9924 24.183 20.2002 24.183 20.4168V20.567C23.6386 20.7588 23.1796 21.1371 22.8873 21.6348C22.595 22.1326 22.4883 22.7178 22.5861 23.2867C22.684 23.8556 22.9799 24.3715 23.4217 24.7431C23.8635 25.1146 24.4225 25.3179 24.9997 25.3168C25.143 25.3169 25.2838 25.3548 25.4078 25.4265C25.5319 25.4983 25.6349 25.6014 25.7065 25.7256C25.778 25.8498 25.8157 25.9906 25.8156 26.1339C25.8155 26.2773 25.7777 26.418 25.706 26.5421C25.6342 26.6662 25.5311 26.7692 25.407 26.8408C25.2828 26.9124 25.142 26.9501 24.9987 26.9501C24.8554 26.9501 24.7146 26.9123 24.5905 26.8406C24.4664 26.769 24.3633 26.6659 24.2917 26.5418C24.1799 26.3612 24.0023 26.2312 23.7964 26.1794C23.5905 26.1276 23.3725 26.1581 23.1886 26.2643C23.0048 26.3705 22.8695 26.5441 22.8115 26.7484C22.7535 26.9526 22.7774 27.1715 22.878 27.3584C23.1741 27.8559 23.6371 28.2321 24.1847 28.4201V28.5834C24.1847 28.8 24.2707 29.0077 24.4239 29.1609C24.577 29.3141 24.7847 29.4001 25.0013 29.4001C25.2179 29.4001 25.4257 29.3141 25.5788 29.1609C25.732 29.0077 25.818 28.8 25.818 28.5834V28.4332C26.3626 28.2414 26.8217 27.8629 27.114 27.365C27.4062 26.867 27.5128 26.2817 27.4148 25.7127C27.3167 25.1437 27.0205 24.6278 26.5784 24.2563C26.1364 23.8849 25.5771 23.6819 24.9997 23.6834Z"\n fill="currentcolor" />\n </g>\n <defs>\n <clipPath id="clip0_375_6645">\n <rect width="49" height="49" fill="white" transform="translate(0.5)" />\n </clipPath>\n </defs>\n </svg>\n <h2 class="feature-title mt-4 mb-3 d-block">Free Shipping</h2>\n <p class="mb-0">A commerce solution for growing digital brands</p>\n </div>\n </div>\n </div>\n </div>\n</section>', '[[regtime]]', '[[regtime]]'),
(14, 14, 1, '0', 0, 'Novator Featured Banner', 'Featured Banner 1', 'Featured Banner2', '<section>\n<div class="container">\n <div class="row sec-heading-block justify-content-center text-center">\n <div class="col-xl-8">\n <h2>Featured Banner</h2>\n </div>\n </div>\n <div class="row g-4">\n <div class="col-md-4">\n <div class="banner-card"><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/7.png" alt="images"\n class="img-fluid w-100 h-auto" width="100" height="100">\n <div class="banner-overlay">\n <h2 class="banner-title text-white">Hawaiian Shirts</h2><span class="banner-text text-white">Dress up in\n summer vibe</span>\n <h3 class="banner-sales text-white">UPTO 50% OFF</h3>\n <div class="banner-arrow text-white"><i class="bi bi-arrow-down"></i></div><a href="#"\n class="btn btn-outline-light">SHOP NOW</a>\n </div>\n </div>\n </div>\n <div class="col-md-4">\n <div class="banner-card"><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/8.png" alt="images"\n class="img-fluid w-100 h-auto" width="100" height="100">\n <div class="banner-overlay right text-end">\n <h2 class="banner-title text-white">Printed T-Shirt</h2><span class="banner-text text-white">New Designs\n Every Week</span>\n <h3 class="banner-sales text-white">UPTO 40% OFF</h3>\n <div class="banner-arrow text-white"><i class="bi bi-arrow-down"></i></div><a href="#"\n class="btn btn-outline-light">SHOP NOW</a>\n </div>\n </div>\n </div>\n <div class="col-md-4">\n <div class="banner-card"><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/9.png" alt="images"\n class="img-fluid w-100 h-auto" width="100" height="100">\n <div class="banner-overlay right">\n <h2 class="banner-title">Cargo Joggers</h2><span class="banner-text">Move with style & comfort</span>\n <h3 class="banner-sales">UPTO 50% OFF</h3>\n <div class="banner-arrow"><i class="bi bi-arrow-down"></i></div><a href="#" class="btn btn-outline-dark">SHOP\n NOW</a>\n </div>\n </div>\n </div>\n <div class="col-md-6">\n <div class="banner-card"><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/a.png" alt="images"\n class="img-fluid w-100 h-auto" width="100" height="100">\n <div class="banner-overlay right big">\n <h2 class="banner-title">Urban Shirts</h2><span class="banner-text">Live In Confort</span>\n <h3 class="banner-sales">FLAT 60% OFF</h3>\n <div class="banner-arrow"><i class="bi bi-arrow-down"></i></div><a href="#" class="btn btn-outline-dark">SHOP\n NOW</a>\n </div>\n </div>\n </div>\n <div class="col-md-6">\n <div class="banner-card"><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/b.png" alt="images"\n class="img-fluid w-100 h-auto" width="100" height="100">\n <div class="banner-overlay right big">\n <h2 class="banner-title">Oversized T-Shirts</h2><span class="banner-text">Street Style Icon</span>\n <h3 class="banner-sales">FLAT 60% OFF</h3>\n <div class="banner-arrow"><i class="bi bi-arrow-down"></i></div><a href="#" class="btn btn-outline-dark">SHOP\n NOW</a>\n </div>\n </div>\n </div>\n </div>\n</div>\n</section>', '[[regtime]]', '[[regtime]]'),
(15, 15, 1, '0', 0, 'Novator Making Commerce', 'Making Commerce', 'Making Commerce', '<section class="cta position-relative">\n <div class="cta-data">\n <div class="container">\n <div class="row g-4">\n <div class="col-lg-6">\n <div class="cta-content">\n <h2 class="text-white">Making Commerce<br>Better for Everyone</h2>\n <div class="cta-price text-white"><small class="me-2">Start From</small> $56</div><br><a href="#"\n class="cta-btn btn btn-warning">Try Now</a>\n </div>\n </div>\n </div>\n </div>\n </div><img src="extensions/novator/storefront/view/novator/image/presets/18/7a/c.png" alt="images" class="w-100 h-auto img-fluid d-none d-lg-block"\n width="1920" height="612"> <img src="extensions/novator/storefront/view/novator/image/presets/18/7a/d.png" alt="images"\n class="w-100 h-auto img-fluid d-block d-lg-none" width="1920" height="612">\n</section>', '[[regtime]]', '[[regtime]]'),
(16, 16, 1, '0', 0, 'Novator See Our Most Featured Product', 'See Our Most Featured Product', '', '<section class="pt-0">\n <div class="container">\n <div class="row title justify-content-center text-center">\n <div class="col-12">\n <h2>See Our Most Featured Product</h2>\n </div>\n <div class="col-12 text-center mt-4"><a href="#" class="btn btn-warning">Get Started</a></div>\n </div>\n </div>\n </section>', '[[regtime]]', '[[regtime]]'),
(17, 17, 1, 'blocks/listing_block/popular_brands_content_bottom.tpl', 1, 'Novator Brands Scrolling List', 'Brands Scrolling List', 'Brands Scrolling ListBrands Scrolling List', 'a:2:{s:18:"listing_datasource";s:33:"catalog_category_getmanufacturers";s:5:"limit";s:0:"";}', '[[regtime]]', '[[regtime]]');
INSERT INTO `[[dbprefix]]block_descriptions` VALUES
(18, 18, 1, '0', 0, 'Novator Testimonials', 'Novator Testimonials', '', '<section class="comment-section">\n <div class="container">\n <div class="row title justify-content-center sec-heading-block">\n <div class="col-xl-8">\n <h2 class="text-center">What Our Clients Say About Us</h2>\n </div>\n </div>\n <div class="comment-carousel owl-carousel owl-theme">\n <div class="item">\n <div class="card comment-card">\n <div class="row g-0 align-items-center">\n <div class="col-4"><img src="extensions/novator/storefront/view/novator/image/presets/18/7b/6.png" class="img-fluid rounded-start"\n alt="images"></div>\n <div class="col-8">\n <div class="card-body"><span>On reviewcentre.com</span>\n <h3 class="h4">Lorem ipsum it amet, consectetur adipiscing elit.</h3>\n <p class="text-muted">" I was working with many shopping carts, free and hosted for my clients. There\n is always something missing. In abantecart I find this gap to be much less. Interface is very easy\n to use and support is very responsive. This is considering its is free. Go abantecart go!"</p>\n <p class="text-primary mb-0">TopShop</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class="item">\n <div class="card comment-card">\n <div class="row g-0 align-items-center">\n <div class="col-4"><img src="extensions/novator/storefront/view/novator/image/presets/18/7b/7.png" class="img-fluid rounded-start"\n alt="images"></div>\n <div class="col-8">\n <div class="card-body"><span>On reviewcentre.com</span>\n <h3 class="h4">Lorem ipsum it amet, consectetur adipiscing elit.</h3>\n <p class="text-muted">" I was working with many shopping carts, free and hosted for my clients. There\n is always something missing. In abantecart I find this gap to be much less. Interface is very easy\n to use and support is very responsive. This is considering its is free. Go abantecart go!"</p>\n <p class="text-primary mb-0">TopShop</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class="item">\n <div class="card comment-card">\n <div class="row g-0 align-items-center">\n <div class="col-4"><img src="extensions/novator/storefront/view/novator/image/presets/18/7b/8.png" class="img-fluid rounded-start"\n alt="images"></div>\n <div class="col-8">\n <div class="card-body"><span>On reviewcentre.com</span>\n <h3 class="h4">Lorem ipsum it amet, consectetur adipiscing elit.</h3>\n <p class="text-muted">" I was working with many shopping carts, free and hosted for my clients. There\n is always something missing. In abantecart I find this gap to be much less. Interface is very easy\n to use and support is very responsive. This is considering its is free. Go abantecart go!"</p>\n <p class="text-primary mb-0">TopShop</p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </section>\n<script>\n$(document).ready(function () {\n var owl = $(''.comment-carousel'');\n owl.owlCarousel({\n loop: true,\n margin: 24,\n navText: [''<i class="bi bi-chevron-left"></i>'', ''<i class="bi bi-chevron-right"></i>''],\n nav: true,\n center: true,\n autoWidth: true,\n items: 1.8\n });\n });\n</script>', '[[regtime]]', '[[regtime]]'),
(19, 19, 1, '0', 0, 'Novator Left banner 1', 'Left banner 1', '', '<div class="left-right-banner card p-0 border-0">\n<a href="#">\n <img src="extensions/novator/storefront/view/novator/image/presets/18/7b/a.jpg" class="img-fluid">\n</a>\n</div>', '[[regtime]]', '[[regtime]]'),
(20, 20, 1, '0', 0, 'Novator Left banner 2', 'Left banner 2', '', '<div class="left-right-banner card p-0 border-0">\n<a href="#">\n<img src="extensions/novator/storefront/view/novator/image/presets/18/7b/b.jpg" class="img-fluid">\n</a>\n</div>', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]block_layouts`
--
CREATE TABLE `[[dbprefix]]block_layouts` (
`instance_id` int NOT NULL AUTO_INCREMENT,
`layout_id` int NOT NULL DEFAULT '0',
`block_id` int NOT NULL DEFAULT '0',
`custom_block_id` int NOT NULL DEFAULT '0',
`parent_instance_id` int NOT NULL DEFAULT '0',
`position` smallint NOT NULL DEFAULT '0',
`status` smallint NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`instance_id`),
UNIQUE KEY `[[dbprefix]]block_layouts_idx` (`instance_id`,`layout_id`,`block_id`,`parent_instance_id`,`custom_block_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=887 ;
--
-- Dumping data for table `[[dbprefix]]block_layouts`
--
INSERT INTO `[[dbprefix]]block_layouts` VALUES
(1, 1, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(2, 1, 15, 0, 1, 10, 1, '[[regtime]]', '[[regtime]]'),
(3, 1, 31, 0, 1, 20, 1, '[[regtime]]', '[[regtime]]'),
(4, 1, 27, 0, 1, 30, 1, '[[regtime]]', '[[regtime]]'),
(5, 1, 26, 0, 1, 40, 1, '[[regtime]]', '[[regtime]]'),
(6, 1, 13, 0, 1, 50, 1, '[[regtime]]', '[[regtime]]'),
(7, 1, 14, 0, 1, 60, 1, '[[regtime]]', '[[regtime]]'),
(8, 1, 17, 1, 1, 70, 1, '[[regtime]]', '[[regtime]]'),
(9, 1, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(10, 1, 9, 0, 9, 10, 1, '[[regtime]]', '[[regtime]]'),
(11, 1, 28, 0, 9, 20, 1, '[[regtime]]', '[[regtime]]'),
(12, 1, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(13, 1, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(14, 1, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(15, 1, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(16, 1, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(17, 1, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(18, 1, 17, 2, 17, 10, 1, '[[regtime]]', '[[regtime]]'),
(19, 1, 17, 3, 17, 20, 1, '[[regtime]]', '[[regtime]]'),
(20, 1, 17, 4, 17, 30, 1, '[[regtime]]', '[[regtime]]'),
(21, 1, 25, 0, 17, 40, 1, '[[regtime]]', '[[regtime]]'),
(22, 1, 11, 0, 17, 50, 1, '[[regtime]]', '[[regtime]]'),
(23, 1, 17, 1, 17, 60, 1, '[[regtime]]', '[[regtime]]'),
(24, 1, 24, 0, 17, 70, 1, '[[regtime]]', '[[regtime]]'),
(25, 1, 21, 0, 17, 80, 1, '[[regtime]]', '[[regtime]]'),
(26, 2, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(27, 2, 15, 0, 26, 10, 1, '[[regtime]]', '[[regtime]]'),
(28, 2, 31, 0, 26, 20, 1, '[[regtime]]', '[[regtime]]'),
(29, 2, 27, 0, 26, 30, 1, '[[regtime]]', '[[regtime]]'),
(30, 2, 26, 0, 26, 40, 1, '[[regtime]]', '[[regtime]]'),
(31, 2, 13, 0, 26, 50, 1, '[[regtime]]', '[[regtime]]'),
(32, 2, 14, 0, 26, 60, 1, '[[regtime]]', '[[regtime]]'),
(33, 2, 17, 1, 26, 70, 1, '[[regtime]]', '[[regtime]]'),
(34, 2, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(35, 2, 9, 0, 34, 10, 1, '[[regtime]]', '[[regtime]]'),
(36, 2, 17, 5, 34, 20, 1, '[[regtime]]', '[[regtime]]'),
(37, 2, 17, 6, 34, 30, 1, '[[regtime]]', '[[regtime]]'),
(38, 2, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(39, 2, 12, 0, 38, 10, 1, '[[regtime]]', '[[regtime]]'),
(40, 2, 4, 0, 0, 40, 0, '[[regtime]]', '[[regtime]]'),
(41, 2, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(42, 2, 19, 0, 41, 10, 1, '[[regtime]]', '[[regtime]]'),
(43, 2, 12, 0, 41, 20, 1, '[[regtime]]', '[[regtime]]'),
(44, 2, 18, 0, 41, 30, 1, '[[regtime]]', '[[regtime]]'),
(45, 2, 22, 0, 41, 40, 1, '[[regtime]]', '[[regtime]]'),
(46, 2, 6, 0, 0, 60, 0, '[[regtime]]', '[[regtime]]'),
(47, 2, 12, 0, 46, 10, 1, '[[regtime]]', '[[regtime]]'),
(48, 2, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(49, 2, 23, 7, 48, 10, 1, '[[regtime]]', '[[regtime]]'),
(50, 2, 20, 8, 48, 20, 1, '[[regtime]]', '[[regtime]]'),
(51, 2, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(52, 2, 17, 2, 51, 10, 1, '[[regtime]]', '[[regtime]]'),
(53, 2, 17, 3, 51, 20, 1, '[[regtime]]', '[[regtime]]'),
(54, 2, 17, 4, 51, 30, 1, '[[regtime]]', '[[regtime]]'),
(55, 2, 25, 0, 51, 40, 1, '[[regtime]]', '[[regtime]]'),
(56, 2, 11, 0, 51, 50, 1, '[[regtime]]', '[[regtime]]'),
(57, 2, 17, 1, 51, 60, 1, '[[regtime]]', '[[regtime]]'),
(58, 2, 24, 0, 51, 70, 1, '[[regtime]]', '[[regtime]]'),
(59, 2, 21, 0, 51, 80, 1, '[[regtime]]', '[[regtime]]'),
(60, 3, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(61, 3, 15, 0, 60, 10, 1, '[[regtime]]', '[[regtime]]'),
(62, 3, 31, 0, 60, 20, 1, '[[regtime]]', '[[regtime]]'),
(63, 3, 27, 0, 60, 30, 1, '[[regtime]]', '[[regtime]]'),
(64, 3, 26, 0, 60, 40, 1, '[[regtime]]', '[[regtime]]'),
(65, 3, 13, 0, 60, 50, 1, '[[regtime]]', '[[regtime]]'),
(66, 3, 14, 0, 60, 60, 1, '[[regtime]]', '[[regtime]]'),
(67, 3, 17, 1, 60, 70, 1, '[[regtime]]', '[[regtime]]'),
(68, 3, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(69, 3, 9, 0, 68, 10, 1, '[[regtime]]', '[[regtime]]'),
(70, 3, 28, 0, 68, 20, 1, '[[regtime]]', '[[regtime]]'),
(71, 3, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(72, 3, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(73, 3, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(74, 3, 6, 0, 0, 60, 0, '[[regtime]]', '[[regtime]]'),
(75, 3, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(76, 3, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(77, 3, 17, 2, 76, 10, 1, '[[regtime]]', '[[regtime]]'),
(78, 3, 17, 3, 76, 20, 1, '[[regtime]]', '[[regtime]]'),
(79, 3, 17, 4, 76, 30, 1, '[[regtime]]', '[[regtime]]'),
(80, 3, 25, 0, 76, 40, 1, '[[regtime]]', '[[regtime]]'),
(81, 3, 11, 0, 76, 50, 1, '[[regtime]]', '[[regtime]]'),
(82, 3, 17, 1, 76, 60, 1, '[[regtime]]', '[[regtime]]'),
(83, 3, 24, 0, 76, 70, 1, '[[regtime]]', '[[regtime]]'),
(84, 3, 21, 0, 76, 80, 1, '[[regtime]]', '[[regtime]]'),
(85, 4, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(86, 4, 15, 0, 85, 10, 1, '[[regtime]]', '[[regtime]]'),
(87, 4, 31, 0, 85, 20, 1, '[[regtime]]', '[[regtime]]'),
(88, 4, 27, 0, 85, 30, 1, '[[regtime]]', '[[regtime]]'),
(89, 4, 26, 0, 85, 40, 1, '[[regtime]]', '[[regtime]]'),
(90, 4, 13, 0, 85, 50, 1, '[[regtime]]', '[[regtime]]'),
(91, 4, 14, 0, 85, 60, 1, '[[regtime]]', '[[regtime]]'),
(92, 4, 17, 1, 85, 70, 1, '[[regtime]]', '[[regtime]]'),
(93, 4, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(94, 4, 9, 0, 93, 10, 1, '[[regtime]]', '[[regtime]]'),
(95, 4, 28, 0, 93, 20, 1, '[[regtime]]', '[[regtime]]'),
(96, 4, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(97, 4, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(98, 4, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(99, 4, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(100, 4, 37, 0, 99, 10, 1, '[[regtime]]', '[[regtime]]'),
(101, 4, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(102, 4, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(103, 4, 17, 2, 102, 10, 1, '[[regtime]]', '[[regtime]]'),
(104, 4, 17, 3, 102, 20, 1, '[[regtime]]', '[[regtime]]'),
(105, 4, 17, 4, 102, 30, 1, '[[regtime]]', '[[regtime]]'),
(106, 4, 25, 0, 102, 40, 1, '[[regtime]]', '[[regtime]]'),
(107, 4, 11, 0, 102, 50, 1, '[[regtime]]', '[[regtime]]'),
(108, 4, 17, 1, 102, 60, 1, '[[regtime]]', '[[regtime]]'),
(109, 4, 24, 0, 102, 70, 1, '[[regtime]]', '[[regtime]]'),
(110, 4, 21, 0, 102, 80, 1, '[[regtime]]', '[[regtime]]'),
(111, 5, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(112, 5, 15, 0, 111, 10, 1, '[[regtime]]', '[[regtime]]'),
(113, 5, 31, 0, 111, 20, 1, '[[regtime]]', '[[regtime]]'),
(114, 5, 27, 0, 111, 30, 1, '[[regtime]]', '[[regtime]]'),
(115, 5, 26, 0, 111, 40, 1, '[[regtime]]', '[[regtime]]'),
(116, 5, 13, 0, 111, 50, 1, '[[regtime]]', '[[regtime]]'),
(117, 5, 14, 0, 111, 60, 1, '[[regtime]]', '[[regtime]]'),
(118, 5, 17, 1, 111, 70, 1, '[[regtime]]', '[[regtime]]'),
(119, 5, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(120, 5, 9, 0, 119, 10, 1, '[[regtime]]', '[[regtime]]'),
(121, 5, 28, 0, 119, 20, 1, '[[regtime]]', '[[regtime]]'),
(122, 5, 3, 0, 0, 30, 1, '[[regtime]]', '[[regtime]]'),
(123, 5, 12, 0, 122, 10, 1, '[[regtime]]', '[[regtime]]'),
(124, 5, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(125, 5, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(126, 5, 6, 0, 0, 60, 0, '[[regtime]]', '[[regtime]]'),
(127, 5, 7, 0, 0, 70, 0, '[[regtime]]', '[[regtime]]'),
(128, 5, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(129, 5, 17, 2, 128, 10, 1, '[[regtime]]', '[[regtime]]'),
(130, 5, 17, 3, 128, 20, 1, '[[regtime]]', '[[regtime]]'),
(131, 5, 17, 4, 128, 30, 1, '[[regtime]]', '[[regtime]]'),
(132, 5, 25, 0, 128, 40, 1, '[[regtime]]', '[[regtime]]'),
(133, 5, 11, 0, 128, 50, 1, '[[regtime]]', '[[regtime]]'),
(134, 5, 17, 1, 128, 60, 1, '[[regtime]]', '[[regtime]]'),
(135, 5, 24, 0, 128, 70, 1, '[[regtime]]', '[[regtime]]'),
(136, 5, 21, 0, 128, 80, 1, '[[regtime]]', '[[regtime]]'),
(137, 6, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(138, 6, 15, 0, 137, 10, 1, '[[regtime]]', '[[regtime]]'),
(139, 6, 31, 0, 137, 20, 1, '[[regtime]]', '[[regtime]]'),
(140, 6, 27, 0, 137, 30, 1, '[[regtime]]', '[[regtime]]'),
(141, 6, 26, 0, 137, 40, 1, '[[regtime]]', '[[regtime]]'),
(142, 6, 13, 0, 137, 50, 1, '[[regtime]]', '[[regtime]]'),
(143, 6, 14, 0, 137, 60, 1, '[[regtime]]', '[[regtime]]'),
(144, 6, 17, 1, 137, 70, 1, '[[regtime]]', '[[regtime]]'),
(145, 6, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(146, 6, 9, 0, 145, 10, 1, '[[regtime]]', '[[regtime]]'),
(147, 6, 28, 0, 145, 20, 1, '[[regtime]]', '[[regtime]]'),
(148, 6, 3, 0, 0, 30, 1, '[[regtime]]', '[[regtime]]'),
(149, 6, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(150, 6, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(151, 6, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(152, 6, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(153, 6, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(154, 6, 17, 2, 153, 10, 1, '[[regtime]]', '[[regtime]]'),
(155, 6, 17, 3, 153, 20, 1, '[[regtime]]', '[[regtime]]'),
(156, 6, 17, 4, 153, 30, 1, '[[regtime]]', '[[regtime]]'),
(157, 6, 25, 0, 153, 40, 1, '[[regtime]]', '[[regtime]]'),
(158, 6, 11, 0, 153, 50, 1, '[[regtime]]', '[[regtime]]'),
(159, 6, 17, 1, 153, 60, 1, '[[regtime]]', '[[regtime]]'),
(160, 6, 24, 0, 153, 70, 1, '[[regtime]]', '[[regtime]]'),
(161, 6, 21, 0, 153, 80, 1, '[[regtime]]', '[[regtime]]'),
(162, 7, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(163, 7, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(164, 7, 3, 0, 0, 30, 1, '[[regtime]]', '[[regtime]]'),
(165, 7, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(166, 7, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(167, 7, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(168, 7, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(169, 7, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(170, 8, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(171, 8, 15, 0, 170, 10, 1, '[[regtime]]', '[[regtime]]'),
(172, 8, 31, 0, 170, 20, 1, '[[regtime]]', '[[regtime]]'),
(173, 8, 27, 0, 170, 30, 1, '[[regtime]]', '[[regtime]]'),
(174, 8, 26, 0, 170, 40, 1, '[[regtime]]', '[[regtime]]'),
(175, 8, 13, 0, 170, 50, 1, '[[regtime]]', '[[regtime]]'),
(176, 8, 14, 0, 170, 60, 1, '[[regtime]]', '[[regtime]]'),
(177, 8, 17, 1, 170, 70, 1, '[[regtime]]', '[[regtime]]'),
(178, 8, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(179, 8, 9, 0, 178, 10, 1, '[[regtime]]', '[[regtime]]'),
(180, 8, 28, 0, 178, 20, 1, '[[regtime]]', '[[regtime]]'),
(181, 8, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(182, 8, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(183, 8, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(184, 8, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(185, 8, 29, 0, 184, 10, 1, '[[regtime]]', '[[regtime]]'),
(186, 8, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(187, 8, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(188, 8, 17, 2, 187, 10, 1, '[[regtime]]', '[[regtime]]'),
(189, 8, 17, 3, 187, 20, 1, '[[regtime]]', '[[regtime]]'),
(190, 8, 17, 4, 187, 30, 1, '[[regtime]]', '[[regtime]]'),
(191, 8, 25, 0, 187, 40, 1, '[[regtime]]', '[[regtime]]'),
(192, 8, 11, 0, 187, 50, 1, '[[regtime]]', '[[regtime]]'),
(193, 8, 17, 1, 187, 60, 1, '[[regtime]]', '[[regtime]]'),
(194, 8, 24, 0, 187, 70, 1, '[[regtime]]', '[[regtime]]'),
(195, 8, 21, 0, 187, 80, 1, '[[regtime]]', '[[regtime]]'),
(196, 9, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(197, 9, 15, 0, 196, 10, 1, '[[regtime]]', '[[regtime]]'),
(198, 9, 31, 0, 196, 20, 1, '[[regtime]]', '[[regtime]]'),
(199, 9, 27, 0, 196, 30, 1, '[[regtime]]', '[[regtime]]'),
(200, 9, 26, 0, 196, 40, 1, '[[regtime]]', '[[regtime]]'),
(201, 9, 13, 0, 196, 50, 1, '[[regtime]]', '[[regtime]]'),
(202, 9, 14, 0, 196, 60, 1, '[[regtime]]', '[[regtime]]'),
(203, 9, 17, 1, 196, 70, 1, '[[regtime]]', '[[regtime]]'),
(204, 9, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(205, 9, 9, 0, 204, 10, 1, '[[regtime]]', '[[regtime]]'),
(206, 9, 28, 0, 204, 20, 1, '[[regtime]]', '[[regtime]]'),
(207, 9, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(208, 9, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(209, 9, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(210, 9, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(211, 9, 29, 0, 210, 10, 1, '[[regtime]]', '[[regtime]]'),
(212, 9, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(213, 9, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(214, 9, 17, 2, 213, 10, 1, '[[regtime]]', '[[regtime]]'),
(215, 9, 17, 3, 213, 20, 1, '[[regtime]]', '[[regtime]]'),
(216, 9, 17, 4, 213, 30, 1, '[[regtime]]', '[[regtime]]'),
(217, 9, 25, 0, 213, 40, 1, '[[regtime]]', '[[regtime]]'),
(218, 9, 11, 0, 213, 50, 1, '[[regtime]]', '[[regtime]]'),
(219, 9, 17, 1, 213, 60, 1, '[[regtime]]', '[[regtime]]'),
(220, 9, 24, 0, 213, 70, 1, '[[regtime]]', '[[regtime]]'),
(221, 9, 21, 0, 213, 80, 1, '[[regtime]]', '[[regtime]]'),
(222, 10, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(223, 10, 15, 0, 222, 10, 1, '[[regtime]]', '[[regtime]]'),
(224, 10, 31, 0, 222, 20, 1, '[[regtime]]', '[[regtime]]'),
(225, 10, 27, 0, 222, 30, 1, '[[regtime]]', '[[regtime]]'),
(226, 10, 26, 0, 222, 40, 1, '[[regtime]]', '[[regtime]]'),
(227, 10, 13, 0, 222, 50, 1, '[[regtime]]', '[[regtime]]'),
(228, 10, 14, 0, 222, 60, 1, '[[regtime]]', '[[regtime]]'),
(229, 10, 17, 1, 222, 70, 1, '[[regtime]]', '[[regtime]]'),
(230, 10, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(231, 10, 9, 0, 230, 10, 1, '[[regtime]]', '[[regtime]]'),
(232, 10, 28, 0, 230, 20, 1, '[[regtime]]', '[[regtime]]'),
(233, 10, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(234, 10, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(235, 10, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(236, 10, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(237, 10, 29, 0, 236, 10, 1, '[[regtime]]', '[[regtime]]'),
(238, 10, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(239, 10, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(240, 10, 17, 2, 239, 10, 1, '[[regtime]]', '[[regtime]]'),
(241, 10, 17, 3, 239, 20, 1, '[[regtime]]', '[[regtime]]'),
(242, 10, 17, 4, 239, 30, 1, '[[regtime]]', '[[regtime]]'),
(243, 10, 25, 0, 239, 40, 1, '[[regtime]]', '[[regtime]]'),
(244, 10, 11, 0, 239, 50, 1, '[[regtime]]', '[[regtime]]'),
(245, 10, 17, 1, 239, 60, 1, '[[regtime]]', '[[regtime]]'),
(246, 10, 24, 0, 239, 70, 1, '[[regtime]]', '[[regtime]]'),
(247, 10, 21, 0, 239, 80, 1, '[[regtime]]', '[[regtime]]'),
(248, 11, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(249, 11, 15, 0, 248, 10, 1, '[[regtime]]', '[[regtime]]'),
(250, 11, 31, 0, 248, 20, 1, '[[regtime]]', '[[regtime]]'),
(251, 11, 27, 0, 248, 30, 1, '[[regtime]]', '[[regtime]]'),
(252, 11, 26, 0, 248, 40, 1, '[[regtime]]', '[[regtime]]'),
(253, 11, 13, 0, 248, 50, 1, '[[regtime]]', '[[regtime]]'),
(254, 11, 14, 0, 248, 60, 1, '[[regtime]]', '[[regtime]]'),
(255, 11, 17, 1, 248, 70, 1, '[[regtime]]', '[[regtime]]'),
(256, 11, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(257, 11, 9, 0, 256, 10, 1, '[[regtime]]', '[[regtime]]'),
(258, 11, 28, 0, 256, 20, 1, '[[regtime]]', '[[regtime]]'),
(259, 11, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(260, 11, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(261, 11, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(262, 11, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(263, 11, 29, 0, 262, 10, 1, '[[regtime]]', '[[regtime]]'),
(264, 11, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(265, 11, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(266, 11, 17, 2, 265, 10, 1, '[[regtime]]', '[[regtime]]'),
(267, 11, 17, 3, 265, 20, 1, '[[regtime]]', '[[regtime]]'),
(268, 11, 17, 4, 265, 30, 1, '[[regtime]]', '[[regtime]]'),
(269, 11, 25, 0, 265, 40, 1, '[[regtime]]', '[[regtime]]'),
(270, 11, 11, 0, 265, 50, 1, '[[regtime]]', '[[regtime]]'),
(271, 11, 17, 1, 265, 60, 1, '[[regtime]]', '[[regtime]]'),
(272, 11, 24, 0, 265, 70, 1, '[[regtime]]', '[[regtime]]'),
(273, 11, 21, 0, 265, 80, 1, '[[regtime]]', '[[regtime]]'),
(274, 12, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(275, 12, 15, 0, 274, 10, 1, '[[regtime]]', '[[regtime]]'),
(276, 12, 31, 0, 274, 20, 1, '[[regtime]]', '[[regtime]]'),
(277, 12, 27, 0, 274, 30, 1, '[[regtime]]', '[[regtime]]'),
(278, 12, 26, 0, 274, 40, 1, '[[regtime]]', '[[regtime]]'),
(279, 12, 13, 0, 274, 50, 1, '[[regtime]]', '[[regtime]]'),
(280, 12, 14, 0, 274, 60, 1, '[[regtime]]', '[[regtime]]'),
(281, 12, 17, 1, 274, 70, 1, '[[regtime]]', '[[regtime]]'),
(282, 12, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(283, 12, 9, 0, 282, 10, 1, '[[regtime]]', '[[regtime]]'),
(284, 12, 28, 0, 282, 20, 1, '[[regtime]]', '[[regtime]]'),
(285, 12, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(286, 12, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(287, 12, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(288, 12, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(289, 12, 29, 0, 288, 10, 1, '[[regtime]]', '[[regtime]]'),
(290, 12, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(291, 12, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(292, 12, 17, 2, 291, 10, 1, '[[regtime]]', '[[regtime]]'),
(293, 12, 17, 3, 291, 20, 1, '[[regtime]]', '[[regtime]]'),
(294, 12, 17, 4, 291, 30, 1, '[[regtime]]', '[[regtime]]'),
(295, 12, 25, 0, 291, 40, 1, '[[regtime]]', '[[regtime]]'),
(296, 12, 11, 0, 291, 50, 1, '[[regtime]]', '[[regtime]]'),
(297, 12, 17, 1, 291, 60, 1, '[[regtime]]', '[[regtime]]'),
(298, 12, 24, 0, 291, 70, 1, '[[regtime]]', '[[regtime]]'),
(299, 12, 21, 0, 291, 80, 1, '[[regtime]]', '[[regtime]]'),
(300, 13, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(301, 13, 15, 0, 300, 10, 1, '[[regtime]]', '[[regtime]]'),
(302, 13, 31, 0, 300, 20, 1, '[[regtime]]', '[[regtime]]'),
(303, 13, 27, 0, 300, 30, 1, '[[regtime]]', '[[regtime]]'),
(304, 13, 26, 0, 300, 40, 1, '[[regtime]]', '[[regtime]]'),
(305, 13, 13, 0, 300, 50, 1, '[[regtime]]', '[[regtime]]'),
(306, 13, 14, 0, 300, 60, 1, '[[regtime]]', '[[regtime]]'),
(307, 13, 17, 1, 300, 70, 1, '[[regtime]]', '[[regtime]]'),
(308, 13, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(309, 13, 9, 0, 308, 10, 1, '[[regtime]]', '[[regtime]]'),
(310, 13, 28, 0, 308, 20, 1, '[[regtime]]', '[[regtime]]'),
(311, 13, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(312, 13, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(313, 13, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(314, 13, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(315, 13, 29, 0, 314, 10, 1, '[[regtime]]', '[[regtime]]'),
(316, 13, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(317, 13, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(318, 13, 17, 2, 317, 10, 1, '[[regtime]]', '[[regtime]]'),
(319, 13, 17, 3, 317, 20, 1, '[[regtime]]', '[[regtime]]'),
(320, 13, 17, 4, 317, 30, 1, '[[regtime]]', '[[regtime]]'),
(321, 13, 25, 0, 317, 40, 1, '[[regtime]]', '[[regtime]]'),
(322, 13, 11, 0, 317, 50, 1, '[[regtime]]', '[[regtime]]'),
(323, 13, 17, 1, 317, 60, 1, '[[regtime]]', '[[regtime]]'),
(324, 13, 24, 0, 317, 70, 1, '[[regtime]]', '[[regtime]]'),
(325, 13, 21, 0, 317, 80, 1, '[[regtime]]', '[[regtime]]'),
(326, 14, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(327, 14, 15, 0, 326, 10, 1, '[[regtime]]', '[[regtime]]'),
(328, 14, 31, 0, 326, 20, 1, '[[regtime]]', '[[regtime]]'),
(329, 14, 27, 0, 326, 30, 1, '[[regtime]]', '[[regtime]]'),
(330, 14, 26, 0, 326, 40, 1, '[[regtime]]', '[[regtime]]'),
(331, 14, 13, 0, 326, 50, 1, '[[regtime]]', '[[regtime]]'),
(332, 14, 14, 0, 326, 60, 1, '[[regtime]]', '[[regtime]]'),
(333, 14, 17, 1, 326, 70, 1, '[[regtime]]', '[[regtime]]'),
(334, 14, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(335, 14, 9, 0, 334, 10, 1, '[[regtime]]', '[[regtime]]'),
(336, 14, 28, 0, 334, 20, 1, '[[regtime]]', '[[regtime]]'),
(337, 14, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(338, 14, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(339, 14, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(340, 14, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(341, 14, 29, 0, 340, 10, 1, '[[regtime]]', '[[regtime]]'),
(342, 14, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(343, 14, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(344, 14, 17, 2, 343, 10, 1, '[[regtime]]', '[[regtime]]'),
(345, 14, 17, 3, 343, 20, 1, '[[regtime]]', '[[regtime]]'),
(346, 14, 17, 4, 343, 30, 1, '[[regtime]]', '[[regtime]]'),
(347, 14, 25, 0, 343, 40, 1, '[[regtime]]', '[[regtime]]'),
(348, 14, 11, 0, 343, 50, 1, '[[regtime]]', '[[regtime]]'),
(349, 14, 17, 1, 343, 60, 1, '[[regtime]]', '[[regtime]]'),
(350, 14, 24, 0, 343, 70, 1, '[[regtime]]', '[[regtime]]'),
(351, 14, 21, 0, 343, 80, 1, '[[regtime]]', '[[regtime]]'),
(352, 15, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(353, 15, 15, 0, 352, 10, 1, '[[regtime]]', '[[regtime]]'),
(354, 15, 31, 0, 352, 20, 1, '[[regtime]]', '[[regtime]]'),
(355, 15, 27, 0, 352, 30, 1, '[[regtime]]', '[[regtime]]'),
(356, 15, 26, 0, 352, 40, 1, '[[regtime]]', '[[regtime]]'),
(357, 15, 13, 0, 352, 50, 1, '[[regtime]]', '[[regtime]]'),
(358, 15, 14, 0, 352, 60, 1, '[[regtime]]', '[[regtime]]'),
(359, 15, 17, 1, 352, 70, 1, '[[regtime]]', '[[regtime]]'),
(360, 15, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(361, 15, 9, 0, 360, 10, 1, '[[regtime]]', '[[regtime]]'),
(362, 15, 28, 0, 360, 20, 1, '[[regtime]]', '[[regtime]]'),
(363, 15, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(364, 15, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(365, 15, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(366, 15, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(367, 15, 29, 0, 366, 10, 1, '[[regtime]]', '[[regtime]]'),
(368, 15, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(369, 15, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(370, 15, 17, 2, 369, 10, 1, '[[regtime]]', '[[regtime]]'),
(371, 15, 17, 3, 369, 20, 1, '[[regtime]]', '[[regtime]]'),
(372, 15, 17, 4, 369, 30, 1, '[[regtime]]', '[[regtime]]'),
(373, 15, 25, 0, 369, 40, 1, '[[regtime]]', '[[regtime]]'),
(374, 15, 11, 0, 369, 50, 1, '[[regtime]]', '[[regtime]]'),
(375, 15, 17, 1, 369, 60, 1, '[[regtime]]', '[[regtime]]'),
(376, 15, 24, 0, 369, 70, 1, '[[regtime]]', '[[regtime]]'),
(377, 15, 21, 0, 369, 80, 1, '[[regtime]]', '[[regtime]]'),
(378, 16, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(379, 16, 15, 0, 378, 10, 1, '[[regtime]]', '[[regtime]]'),
(380, 16, 31, 0, 378, 20, 1, '[[regtime]]', '[[regtime]]'),
(381, 16, 27, 0, 378, 30, 1, '[[regtime]]', '[[regtime]]'),
(382, 16, 26, 0, 378, 40, 1, '[[regtime]]', '[[regtime]]'),
(383, 16, 13, 0, 378, 50, 1, '[[regtime]]', '[[regtime]]'),
(384, 16, 14, 0, 378, 60, 1, '[[regtime]]', '[[regtime]]'),
(385, 16, 17, 1, 378, 70, 1, '[[regtime]]', '[[regtime]]'),
(386, 16, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(387, 16, 9, 0, 386, 10, 1, '[[regtime]]', '[[regtime]]'),
(388, 16, 28, 0, 386, 20, 1, '[[regtime]]', '[[regtime]]'),
(389, 16, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(390, 16, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(391, 16, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(392, 16, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(393, 16, 29, 0, 392, 10, 1, '[[regtime]]', '[[regtime]]'),
(394, 16, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(395, 16, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(396, 16, 17, 2, 395, 10, 1, '[[regtime]]', '[[regtime]]'),
(397, 16, 17, 3, 395, 20, 1, '[[regtime]]', '[[regtime]]'),
(398, 16, 17, 4, 395, 30, 1, '[[regtime]]', '[[regtime]]'),
(399, 16, 25, 0, 395, 40, 1, '[[regtime]]', '[[regtime]]'),
(400, 16, 11, 0, 395, 50, 1, '[[regtime]]', '[[regtime]]'),
(401, 16, 17, 1, 395, 60, 1, '[[regtime]]', '[[regtime]]'),
(402, 16, 24, 0, 395, 70, 1, '[[regtime]]', '[[regtime]]'),
(403, 16, 21, 0, 395, 80, 1, '[[regtime]]', '[[regtime]]'),
(404, 17, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(405, 17, 15, 0, 404, 10, 1, '[[regtime]]', '[[regtime]]'),
(406, 17, 31, 0, 404, 20, 1, '[[regtime]]', '[[regtime]]'),
(407, 17, 27, 0, 404, 30, 1, '[[regtime]]', '[[regtime]]'),
(408, 17, 26, 0, 404, 40, 1, '[[regtime]]', '[[regtime]]'),
(409, 17, 13, 0, 404, 50, 1, '[[regtime]]', '[[regtime]]'),
(410, 17, 14, 0, 404, 60, 1, '[[regtime]]', '[[regtime]]'),
(411, 17, 17, 1, 404, 70, 1, '[[regtime]]', '[[regtime]]'),
(412, 17, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(413, 17, 9, 0, 412, 10, 1, '[[regtime]]', '[[regtime]]'),
(414, 17, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(415, 17, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(416, 17, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(417, 17, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(418, 17, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(419, 17, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(420, 17, 11, 0, 419, 50, 1, '[[regtime]]', '[[regtime]]'),
(421, 17, 24, 0, 419, 70, 1, '[[regtime]]', '[[regtime]]'),
(422, 17, 21, 0, 419, 80, 1, '[[regtime]]', '[[regtime]]'),
(423, 18, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(424, 18, 32, 0, 423, 40, 1, '[[regtime]]', '[[regtime]]'),
(425, 18, 2, 0, 0, 20, 0, '[[regtime]]', '[[regtime]]'),
(426, 18, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(427, 18, 4, 0, 0, 40, 0, '[[regtime]]', '[[regtime]]'),
(428, 18, 5, 0, 0, 50, 0, '[[regtime]]', '[[regtime]]'),
(429, 18, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(430, 18, 33, 0, 429, 10, 1, '[[regtime]]', '[[regtime]]'),
(431, 18, 7, 0, 0, 70, 0, '[[regtime]]', '[[regtime]]'),
(432, 18, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(433, 19, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(434, 19, 2, 0, 0, 20, 0, '[[regtime]]', '[[regtime]]'),
(435, 19, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(436, 19, 4, 0, 0, 40, 0, '[[regtime]]', '[[regtime]]'),
(437, 19, 5, 0, 0, 50, 0, '[[regtime]]', '[[regtime]]'),
(438, 19, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(439, 19, 7, 0, 0, 70, 0, '[[regtime]]', '[[regtime]]'),
(440, 19, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(441, 20, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(442, 20, 15, 0, 441, 10, 1, '[[regtime]]', '[[regtime]]'),
(443, 20, 31, 0, 441, 20, 1, '[[regtime]]', '[[regtime]]'),
(444, 20, 27, 0, 441, 30, 1, '[[regtime]]', '[[regtime]]'),
(445, 20, 26, 0, 441, 40, 1, '[[regtime]]', '[[regtime]]'),
(446, 20, 13, 0, 441, 50, 1, '[[regtime]]', '[[regtime]]'),
(447, 20, 14, 0, 441, 60, 1, '[[regtime]]', '[[regtime]]'),
(448, 20, 17, 1, 441, 70, 1, '[[regtime]]', '[[regtime]]'),
(449, 20, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(450, 20, 9, 0, 449, 10, 1, '[[regtime]]', '[[regtime]]'),
(451, 20, 28, 0, 449, 20, 1, '[[regtime]]', '[[regtime]]'),
(452, 20, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(453, 20, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(454, 20, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(455, 20, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(456, 20, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(457, 20, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(458, 20, 17, 2, 457, 10, 1, '[[regtime]]', '[[regtime]]'),
(459, 20, 17, 3, 457, 20, 1, '[[regtime]]', '[[regtime]]'),
(460, 20, 17, 4, 457, 30, 1, '[[regtime]]', '[[regtime]]'),
(461, 20, 25, 0, 457, 40, 1, '[[regtime]]', '[[regtime]]'),
(462, 20, 11, 0, 457, 50, 1, '[[regtime]]', '[[regtime]]'),
(463, 20, 17, 1, 457, 60, 1, '[[regtime]]', '[[regtime]]'),
(464, 20, 24, 0, 457, 70, 1, '[[regtime]]', '[[regtime]]'),
(465, 20, 21, 0, 457, 80, 1, '[[regtime]]', '[[regtime]]'),
(466, 21, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(467, 21, 26, 0, 466, 10, 1, '[[regtime]]', '[[regtime]]'),
(468, 21, 13, 0, 466, 20, 1, '[[regtime]]', '[[regtime]]'),
(469, 21, 14, 0, 466, 30, 1, '[[regtime]]', '[[regtime]]'),
(470, 21, 15, 0, 466, 40, 1, '[[regtime]]', '[[regtime]]'),
(471, 21, 31, 0, 466, 50, 1, '[[regtime]]', '[[regtime]]'),
(472, 21, 38, 0, 466, 60, 1, '[[regtime]]', '[[regtime]]'),
(473, 21, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(474, 21, 38, 0, 473, 10, 1, '[[regtime]]', '[[regtime]]'),
(475, 21, 28, 0, 473, 20, 1, '[[regtime]]', '[[regtime]]'),
(476, 21, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(477, 21, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(478, 21, 11, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(479, 21, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(480, 21, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(481, 21, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(482, 21, 25, 0, 481, 10, 1, '[[regtime]]', '[[regtime]]'),
(483, 21, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(484, 21, 17, 9, 483, 10, 1, '[[regtime]]', '[[regtime]]'),
(485, 21, 17, 10, 483, 20, 1, '[[regtime]]', '[[regtime]]'),
(486, 21, 17, 11, 483, 30, 1, '[[regtime]]', '[[regtime]]'),
(487, 21, 11, 0, 483, 40, 1, '[[regtime]]', '[[regtime]]'),
(488, 22, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(489, 22, 26, 0, 488, 10, 1, '[[regtime]]', '[[regtime]]'),
(490, 22, 13, 0, 488, 20, 1, '[[regtime]]', '[[regtime]]'),
(491, 22, 14, 0, 488, 30, 1, '[[regtime]]', '[[regtime]]'),
(492, 22, 15, 0, 488, 40, 1, '[[regtime]]', '[[regtime]]'),
(493, 22, 31, 0, 488, 50, 1, '[[regtime]]', '[[regtime]]'),
(494, 22, 38, 0, 488, 60, 1, '[[regtime]]', '[[regtime]]'),
(495, 22, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(496, 22, 38, 0, 495, 10, 1, '[[regtime]]', '[[regtime]]'),
(497, 22, 17, 12, 495, 20, 1, '[[regtime]]', '[[regtime]]'),
(498, 22, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(499, 22, 4, 0, 0, 40, 0, '[[regtime]]', '[[regtime]]'),
(500, 22, 11, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(501, 22, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(502, 22, 17, 13, 501, 10, 1, '[[regtime]]', '[[regtime]]'),
(503, 22, 12, 0, 501, 20, 1, '[[regtime]]', '[[regtime]]'),
(504, 22, 19, 0, 501, 30, 1, '[[regtime]]', '[[regtime]]'),
(505, 22, 17, 14, 501, 40, 1, '[[regtime]]', '[[regtime]]'),
(506, 22, 18, 0, 501, 50, 1, '[[regtime]]', '[[regtime]]'),
(507, 22, 22, 0, 501, 60, 1, '[[regtime]]', '[[regtime]]'),
(508, 22, 17, 15, 501, 70, 1, '[[regtime]]', '[[regtime]]'),
(509, 22, 17, 16, 501, 80, 1, '[[regtime]]', '[[regtime]]'),
(510, 22, 20, 17, 501, 90, 1, '[[regtime]]', '[[regtime]]'),
(511, 22, 17, 18, 501, 100, 1, '[[regtime]]', '[[regtime]]'),
(512, 22, 6, 0, 0, 60, 0, '[[regtime]]', '[[regtime]]'),
(513, 22, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(514, 22, 25, 0, 513, 10, 1, '[[regtime]]', '[[regtime]]'),
(515, 22, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(516, 22, 17, 9, 515, 10, 1, '[[regtime]]', '[[regtime]]'),
(517, 22, 17, 10, 515, 20, 1, '[[regtime]]', '[[regtime]]'),
(518, 22, 17, 11, 515, 30, 1, '[[regtime]]', '[[regtime]]'),
(519, 22, 11, 0, 515, 40, 1, '[[regtime]]', '[[regtime]]'),
(520, 23, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(521, 23, 26, 0, 520, 10, 1, '[[regtime]]', '[[regtime]]'),
(522, 23, 13, 0, 520, 20, 1, '[[regtime]]', '[[regtime]]'),
(523, 23, 14, 0, 520, 30, 1, '[[regtime]]', '[[regtime]]'),
(524, 23, 15, 0, 520, 40, 1, '[[regtime]]', '[[regtime]]'),
(525, 23, 31, 0, 520, 50, 1, '[[regtime]]', '[[regtime]]'),
(526, 23, 38, 0, 520, 60, 1, '[[regtime]]', '[[regtime]]'),
(527, 23, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(528, 23, 38, 0, 527, 10, 1, '[[regtime]]', '[[regtime]]'),
(529, 23, 28, 0, 527, 20, 1, '[[regtime]]', '[[regtime]]'),
(530, 23, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(531, 23, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(532, 23, 11, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(533, 23, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(534, 23, 6, 0, 0, 60, 0, '[[regtime]]', '[[regtime]]'),
(535, 23, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(536, 23, 25, 0, 535, 10, 1, '[[regtime]]', '[[regtime]]'),
(537, 23, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(538, 23, 17, 9, 537, 10, 1, '[[regtime]]', '[[regtime]]'),
(539, 23, 17, 10, 537, 20, 1, '[[regtime]]', '[[regtime]]'),
(540, 23, 17, 11, 537, 30, 1, '[[regtime]]', '[[regtime]]'),
(541, 23, 11, 0, 537, 40, 1, '[[regtime]]', '[[regtime]]'),
(542, 24, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(543, 24, 26, 0, 542, 10, 1, '[[regtime]]', '[[regtime]]'),
(544, 24, 13, 0, 542, 20, 1, '[[regtime]]', '[[regtime]]'),
(545, 24, 14, 0, 542, 30, 1, '[[regtime]]', '[[regtime]]'),
(546, 24, 15, 0, 542, 40, 1, '[[regtime]]', '[[regtime]]'),
(547, 24, 31, 0, 542, 50, 1, '[[regtime]]', '[[regtime]]'),
(548, 24, 38, 0, 542, 60, 1, '[[regtime]]', '[[regtime]]'),
(549, 24, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(550, 24, 38, 0, 549, 10, 1, '[[regtime]]', '[[regtime]]'),
(551, 24, 28, 0, 549, 20, 1, '[[regtime]]', '[[regtime]]'),
(552, 24, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(553, 24, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(554, 24, 11, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(555, 24, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(556, 24, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(557, 24, 37, 0, 556, 10, 1, '[[regtime]]', '[[regtime]]'),
(558, 24, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(559, 24, 25, 0, 558, 10, 1, '[[regtime]]', '[[regtime]]'),
(560, 24, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(561, 24, 17, 9, 560, 10, 1, '[[regtime]]', '[[regtime]]'),
(562, 24, 17, 10, 560, 20, 1, '[[regtime]]', '[[regtime]]'),
(563, 24, 17, 11, 560, 30, 1, '[[regtime]]', '[[regtime]]'),
(564, 24, 11, 0, 560, 40, 1, '[[regtime]]', '[[regtime]]'),
(565, 25, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(566, 25, 26, 0, 565, 10, 1, '[[regtime]]', '[[regtime]]'),
(567, 25, 13, 0, 565, 20, 1, '[[regtime]]', '[[regtime]]'),
(568, 25, 14, 0, 565, 30, 1, '[[regtime]]', '[[regtime]]'),
(569, 25, 15, 0, 565, 40, 1, '[[regtime]]', '[[regtime]]'),
(570, 25, 31, 0, 565, 50, 1, '[[regtime]]', '[[regtime]]'),
(571, 25, 38, 0, 565, 60, 1, '[[regtime]]', '[[regtime]]'),
(572, 25, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(573, 25, 38, 0, 572, 10, 1, '[[regtime]]', '[[regtime]]'),
(574, 25, 28, 0, 572, 20, 1, '[[regtime]]', '[[regtime]]'),
(575, 25, 3, 0, 0, 30, 1, '[[regtime]]', '[[regtime]]'),
(576, 25, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(577, 25, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(578, 25, 34, 0, 577, 10, 1, '[[regtime]]', '[[regtime]]'),
(579, 25, 6, 0, 0, 60, 0, '[[regtime]]', '[[regtime]]'),
(580, 25, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(581, 25, 25, 0, 580, 10, 1, '[[regtime]]', '[[regtime]]'),
(582, 25, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(583, 25, 17, 9, 582, 10, 1, '[[regtime]]', '[[regtime]]'),
(584, 25, 17, 10, 582, 20, 1, '[[regtime]]', '[[regtime]]'),
(585, 25, 17, 11, 582, 30, 1, '[[regtime]]', '[[regtime]]'),
(586, 25, 11, 0, 582, 40, 1, '[[regtime]]', '[[regtime]]'),
(587, 26, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(588, 26, 26, 0, 587, 10, 1, '[[regtime]]', '[[regtime]]'),
(589, 26, 13, 0, 587, 20, 1, '[[regtime]]', '[[regtime]]'),
(590, 26, 14, 0, 587, 30, 1, '[[regtime]]', '[[regtime]]'),
(591, 26, 15, 0, 587, 40, 1, '[[regtime]]', '[[regtime]]'),
(592, 26, 31, 0, 587, 50, 1, '[[regtime]]', '[[regtime]]'),
(593, 26, 38, 0, 587, 60, 1, '[[regtime]]', '[[regtime]]'),
(594, 26, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(595, 26, 38, 0, 594, 10, 1, '[[regtime]]', '[[regtime]]'),
(596, 26, 39, 0, 594, 20, 1, '[[regtime]]', '[[regtime]]'),
(597, 26, 28, 0, 594, 30, 1, '[[regtime]]', '[[regtime]]'),
(598, 26, 3, 0, 0, 30, 1, '[[regtime]]', '[[regtime]]'),
(599, 26, 40, 0, 598, 10, 1, '[[regtime]]', '[[regtime]]'),
(600, 26, 17, 19, 598, 20, 1, '[[regtime]]', '[[regtime]]'),
(601, 26, 17, 20, 598, 30, 1, '[[regtime]]', '[[regtime]]'),
(602, 26, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(603, 26, 11, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(604, 26, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(605, 26, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(606, 26, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(607, 26, 25, 0, 606, 10, 1, '[[regtime]]', '[[regtime]]'),
(608, 26, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(609, 26, 17, 9, 608, 10, 1, '[[regtime]]', '[[regtime]]'),
(610, 26, 17, 10, 608, 20, 1, '[[regtime]]', '[[regtime]]'),
(611, 26, 17, 11, 608, 30, 1, '[[regtime]]', '[[regtime]]'),
(612, 26, 11, 0, 608, 40, 1, '[[regtime]]', '[[regtime]]'),
(613, 27, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(614, 27, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(615, 27, 3, 0, 0, 30, 1, '[[regtime]]', '[[regtime]]'),
(616, 27, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(617, 27, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(618, 27, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(619, 27, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(620, 27, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(621, 28, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(622, 28, 26, 0, 621, 10, 1, '[[regtime]]', '[[regtime]]'),
(623, 28, 13, 0, 621, 20, 1, '[[regtime]]', '[[regtime]]'),
(624, 28, 14, 0, 621, 30, 1, '[[regtime]]', '[[regtime]]'),
(625, 28, 15, 0, 621, 40, 1, '[[regtime]]', '[[regtime]]'),
(626, 28, 31, 0, 621, 50, 1, '[[regtime]]', '[[regtime]]'),
(627, 28, 38, 0, 621, 60, 1, '[[regtime]]', '[[regtime]]'),
(628, 28, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(629, 28, 38, 0, 628, 10, 1, '[[regtime]]', '[[regtime]]'),
(630, 28, 28, 0, 628, 20, 1, '[[regtime]]', '[[regtime]]'),
(631, 28, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(632, 28, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(633, 28, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(634, 28, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(635, 28, 29, 0, 634, 10, 1, '[[regtime]]', '[[regtime]]'),
(636, 28, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(637, 28, 25, 0, 636, 10, 1, '[[regtime]]', '[[regtime]]'),
(638, 28, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(639, 28, 17, 9, 638, 10, 1, '[[regtime]]', '[[regtime]]'),
(640, 28, 17, 10, 638, 20, 1, '[[regtime]]', '[[regtime]]'),
(641, 28, 17, 11, 638, 30, 1, '[[regtime]]', '[[regtime]]'),
(642, 28, 11, 0, 638, 40, 1, '[[regtime]]', '[[regtime]]'),
(643, 29, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(644, 29, 26, 0, 643, 10, 1, '[[regtime]]', '[[regtime]]'),
(645, 29, 13, 0, 643, 20, 1, '[[regtime]]', '[[regtime]]'),
(646, 29, 14, 0, 643, 30, 1, '[[regtime]]', '[[regtime]]'),
(647, 29, 15, 0, 643, 40, 1, '[[regtime]]', '[[regtime]]'),
(648, 29, 31, 0, 643, 50, 1, '[[regtime]]', '[[regtime]]'),
(649, 29, 38, 0, 643, 60, 1, '[[regtime]]', '[[regtime]]'),
(650, 29, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(651, 29, 38, 0, 650, 10, 1, '[[regtime]]', '[[regtime]]'),
(652, 29, 28, 0, 650, 20, 1, '[[regtime]]', '[[regtime]]'),
(653, 29, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(654, 29, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(655, 29, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(656, 29, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(657, 29, 29, 0, 656, 10, 1, '[[regtime]]', '[[regtime]]'),
(658, 29, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(659, 29, 25, 0, 658, 10, 1, '[[regtime]]', '[[regtime]]'),
(660, 29, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(661, 29, 17, 9, 660, 10, 1, '[[regtime]]', '[[regtime]]'),
(662, 29, 17, 10, 660, 20, 1, '[[regtime]]', '[[regtime]]'),
(663, 29, 17, 11, 660, 30, 1, '[[regtime]]', '[[regtime]]'),
(664, 29, 11, 0, 660, 40, 1, '[[regtime]]', '[[regtime]]'),
(665, 30, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(666, 30, 26, 0, 665, 10, 1, '[[regtime]]', '[[regtime]]'),
(667, 30, 13, 0, 665, 20, 1, '[[regtime]]', '[[regtime]]'),
(668, 30, 14, 0, 665, 30, 1, '[[regtime]]', '[[regtime]]'),
(669, 30, 15, 0, 665, 40, 1, '[[regtime]]', '[[regtime]]'),
(670, 30, 31, 0, 665, 50, 1, '[[regtime]]', '[[regtime]]'),
(671, 30, 38, 0, 665, 60, 1, '[[regtime]]', '[[regtime]]'),
(672, 30, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(673, 30, 38, 0, 672, 10, 1, '[[regtime]]', '[[regtime]]'),
(674, 30, 28, 0, 672, 20, 1, '[[regtime]]', '[[regtime]]'),
(675, 30, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(676, 30, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(677, 30, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(678, 30, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(679, 30, 29, 0, 678, 10, 1, '[[regtime]]', '[[regtime]]'),
(680, 30, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(681, 30, 25, 0, 680, 10, 1, '[[regtime]]', '[[regtime]]'),
(682, 30, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(683, 30, 17, 9, 682, 10, 1, '[[regtime]]', '[[regtime]]'),
(684, 30, 17, 10, 682, 20, 1, '[[regtime]]', '[[regtime]]'),
(685, 30, 17, 11, 682, 30, 1, '[[regtime]]', '[[regtime]]'),
(686, 30, 11, 0, 682, 40, 1, '[[regtime]]', '[[regtime]]'),
(687, 31, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(688, 31, 26, 0, 687, 10, 1, '[[regtime]]', '[[regtime]]'),
(689, 31, 13, 0, 687, 20, 1, '[[regtime]]', '[[regtime]]'),
(690, 31, 14, 0, 687, 30, 1, '[[regtime]]', '[[regtime]]');
INSERT INTO `[[dbprefix]]block_layouts` VALUES
(691, 31, 15, 0, 687, 40, 1, '[[regtime]]', '[[regtime]]'),
(692, 31, 31, 0, 687, 50, 1, '[[regtime]]', '[[regtime]]'),
(693, 31, 38, 0, 687, 60, 1, '[[regtime]]', '[[regtime]]'),
(694, 31, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(695, 31, 38, 0, 694, 10, 1, '[[regtime]]', '[[regtime]]'),
(696, 31, 28, 0, 694, 20, 1, '[[regtime]]', '[[regtime]]'),
(697, 31, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(698, 31, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(699, 31, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(700, 31, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(701, 31, 29, 0, 700, 10, 1, '[[regtime]]', '[[regtime]]'),
(702, 31, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(703, 31, 25, 0, 702, 10, 1, '[[regtime]]', '[[regtime]]'),
(704, 31, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(705, 31, 17, 9, 704, 10, 1, '[[regtime]]', '[[regtime]]'),
(706, 31, 17, 10, 704, 20, 1, '[[regtime]]', '[[regtime]]'),
(707, 31, 17, 11, 704, 30, 1, '[[regtime]]', '[[regtime]]'),
(708, 31, 11, 0, 704, 40, 1, '[[regtime]]', '[[regtime]]'),
(709, 32, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(710, 32, 26, 0, 709, 10, 1, '[[regtime]]', '[[regtime]]'),
(711, 32, 13, 0, 709, 20, 1, '[[regtime]]', '[[regtime]]'),
(712, 32, 14, 0, 709, 30, 1, '[[regtime]]', '[[regtime]]'),
(713, 32, 15, 0, 709, 40, 1, '[[regtime]]', '[[regtime]]'),
(714, 32, 31, 0, 709, 50, 1, '[[regtime]]', '[[regtime]]'),
(715, 32, 38, 0, 709, 60, 1, '[[regtime]]', '[[regtime]]'),
(716, 32, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(717, 32, 38, 0, 716, 10, 1, '[[regtime]]', '[[regtime]]'),
(718, 32, 28, 0, 716, 20, 1, '[[regtime]]', '[[regtime]]'),
(719, 32, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(720, 32, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(721, 32, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(722, 32, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(723, 32, 29, 0, 722, 10, 1, '[[regtime]]', '[[regtime]]'),
(724, 32, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(725, 32, 25, 0, 724, 10, 1, '[[regtime]]', '[[regtime]]'),
(726, 32, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(727, 32, 17, 9, 726, 10, 1, '[[regtime]]', '[[regtime]]'),
(728, 32, 17, 10, 726, 20, 1, '[[regtime]]', '[[regtime]]'),
(729, 32, 17, 11, 726, 30, 1, '[[regtime]]', '[[regtime]]'),
(730, 32, 11, 0, 726, 40, 1, '[[regtime]]', '[[regtime]]'),
(731, 33, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(732, 33, 26, 0, 731, 10, 1, '[[regtime]]', '[[regtime]]'),
(733, 33, 13, 0, 731, 20, 1, '[[regtime]]', '[[regtime]]'),
(734, 33, 14, 0, 731, 30, 1, '[[regtime]]', '[[regtime]]'),
(735, 33, 15, 0, 731, 40, 1, '[[regtime]]', '[[regtime]]'),
(736, 33, 31, 0, 731, 50, 1, '[[regtime]]', '[[regtime]]'),
(737, 33, 38, 0, 731, 60, 1, '[[regtime]]', '[[regtime]]'),
(738, 33, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(739, 33, 38, 0, 738, 10, 1, '[[regtime]]', '[[regtime]]'),
(740, 33, 28, 0, 738, 20, 1, '[[regtime]]', '[[regtime]]'),
(741, 33, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(742, 33, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(743, 33, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(744, 33, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(745, 33, 29, 0, 744, 10, 1, '[[regtime]]', '[[regtime]]'),
(746, 33, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(747, 33, 25, 0, 746, 10, 1, '[[regtime]]', '[[regtime]]'),
(748, 33, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(749, 33, 17, 9, 748, 10, 1, '[[regtime]]', '[[regtime]]'),
(750, 33, 17, 10, 748, 20, 1, '[[regtime]]', '[[regtime]]'),
(751, 33, 17, 11, 748, 30, 1, '[[regtime]]', '[[regtime]]'),
(752, 33, 11, 0, 748, 40, 1, '[[regtime]]', '[[regtime]]'),
(753, 34, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(754, 34, 26, 0, 753, 10, 1, '[[regtime]]', '[[regtime]]'),
(755, 34, 13, 0, 753, 20, 1, '[[regtime]]', '[[regtime]]'),
(756, 34, 14, 0, 753, 30, 1, '[[regtime]]', '[[regtime]]'),
(757, 34, 15, 0, 753, 40, 1, '[[regtime]]', '[[regtime]]'),
(758, 34, 31, 0, 753, 50, 1, '[[regtime]]', '[[regtime]]'),
(759, 34, 38, 0, 753, 60, 1, '[[regtime]]', '[[regtime]]'),
(760, 34, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(761, 34, 38, 0, 760, 10, 1, '[[regtime]]', '[[regtime]]'),
(762, 34, 28, 0, 760, 20, 1, '[[regtime]]', '[[regtime]]'),
(763, 34, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(764, 34, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(765, 34, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(766, 34, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(767, 34, 29, 0, 766, 10, 1, '[[regtime]]', '[[regtime]]'),
(768, 34, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(769, 34, 25, 0, 768, 10, 1, '[[regtime]]', '[[regtime]]'),
(770, 34, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(771, 34, 17, 9, 770, 10, 1, '[[regtime]]', '[[regtime]]'),
(772, 34, 17, 10, 770, 20, 1, '[[regtime]]', '[[regtime]]'),
(773, 34, 17, 11, 770, 30, 1, '[[regtime]]', '[[regtime]]'),
(774, 34, 11, 0, 770, 40, 1, '[[regtime]]', '[[regtime]]'),
(775, 35, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(776, 35, 26, 0, 775, 10, 1, '[[regtime]]', '[[regtime]]'),
(777, 35, 13, 0, 775, 20, 1, '[[regtime]]', '[[regtime]]'),
(778, 35, 14, 0, 775, 30, 1, '[[regtime]]', '[[regtime]]'),
(779, 35, 15, 0, 775, 40, 1, '[[regtime]]', '[[regtime]]'),
(780, 35, 31, 0, 775, 50, 1, '[[regtime]]', '[[regtime]]'),
(781, 35, 38, 0, 775, 60, 1, '[[regtime]]', '[[regtime]]'),
(782, 35, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(783, 35, 38, 0, 782, 10, 1, '[[regtime]]', '[[regtime]]'),
(784, 35, 28, 0, 782, 20, 1, '[[regtime]]', '[[regtime]]'),
(785, 35, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(786, 35, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(787, 35, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(788, 35, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(789, 35, 29, 0, 788, 10, 1, '[[regtime]]', '[[regtime]]'),
(790, 35, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(791, 35, 25, 0, 790, 10, 1, '[[regtime]]', '[[regtime]]'),
(792, 35, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(793, 35, 17, 9, 792, 10, 1, '[[regtime]]', '[[regtime]]'),
(794, 35, 17, 10, 792, 20, 1, '[[regtime]]', '[[regtime]]'),
(795, 35, 17, 11, 792, 30, 1, '[[regtime]]', '[[regtime]]'),
(796, 35, 11, 0, 792, 40, 1, '[[regtime]]', '[[regtime]]'),
(797, 36, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(798, 36, 26, 0, 797, 10, 1, '[[regtime]]', '[[regtime]]'),
(799, 36, 13, 0, 797, 20, 1, '[[regtime]]', '[[regtime]]'),
(800, 36, 14, 0, 797, 30, 1, '[[regtime]]', '[[regtime]]'),
(801, 36, 15, 0, 797, 40, 1, '[[regtime]]', '[[regtime]]'),
(802, 36, 31, 0, 797, 50, 1, '[[regtime]]', '[[regtime]]'),
(803, 36, 38, 0, 797, 60, 1, '[[regtime]]', '[[regtime]]'),
(804, 36, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(805, 36, 38, 0, 804, 10, 1, '[[regtime]]', '[[regtime]]'),
(806, 36, 28, 0, 804, 20, 1, '[[regtime]]', '[[regtime]]'),
(807, 36, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(808, 36, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(809, 36, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(810, 36, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(811, 36, 29, 0, 810, 10, 1, '[[regtime]]', '[[regtime]]'),
(812, 36, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(813, 36, 25, 0, 812, 10, 1, '[[regtime]]', '[[regtime]]'),
(814, 36, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(815, 36, 17, 9, 814, 10, 1, '[[regtime]]', '[[regtime]]'),
(816, 36, 17, 10, 814, 20, 1, '[[regtime]]', '[[regtime]]'),
(817, 36, 17, 11, 814, 30, 1, '[[regtime]]', '[[regtime]]'),
(818, 36, 11, 0, 814, 40, 1, '[[regtime]]', '[[regtime]]'),
(819, 37, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(820, 37, 26, 0, 819, 10, 1, '[[regtime]]', '[[regtime]]'),
(821, 37, 13, 0, 819, 20, 1, '[[regtime]]', '[[regtime]]'),
(822, 37, 14, 0, 819, 30, 1, '[[regtime]]', '[[regtime]]'),
(823, 37, 15, 0, 819, 40, 1, '[[regtime]]', '[[regtime]]'),
(824, 37, 31, 0, 819, 50, 1, '[[regtime]]', '[[regtime]]'),
(825, 37, 38, 0, 819, 60, 1, '[[regtime]]', '[[regtime]]'),
(826, 37, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(827, 37, 38, 0, 826, 10, 1, '[[regtime]]', '[[regtime]]'),
(828, 37, 28, 0, 826, 20, 1, '[[regtime]]', '[[regtime]]'),
(829, 37, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(830, 37, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(831, 37, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(832, 37, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(833, 37, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(834, 37, 25, 0, 833, 10, 1, '[[regtime]]', '[[regtime]]'),
(835, 37, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(836, 37, 17, 9, 835, 10, 1, '[[regtime]]', '[[regtime]]'),
(837, 37, 17, 10, 835, 20, 1, '[[regtime]]', '[[regtime]]'),
(838, 37, 17, 11, 835, 30, 1, '[[regtime]]', '[[regtime]]'),
(839, 37, 11, 0, 835, 40, 1, '[[regtime]]', '[[regtime]]'),
(840, 38, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(841, 38, 32, 0, 840, 40, 1, '[[regtime]]', '[[regtime]]'),
(842, 38, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(843, 38, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(844, 38, 4, 0, 0, 40, 0, '[[regtime]]', '[[regtime]]'),
(845, 38, 5, 0, 0, 50, 0, '[[regtime]]', '[[regtime]]'),
(846, 38, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(847, 38, 33, 0, 846, 10, 1, '[[regtime]]', '[[regtime]]'),
(848, 38, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(849, 38, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(850, 39, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(851, 39, 26, 0, 850, 10, 1, '[[regtime]]', '[[regtime]]'),
(852, 39, 13, 0, 850, 20, 1, '[[regtime]]', '[[regtime]]'),
(853, 39, 14, 0, 850, 30, 1, '[[regtime]]', '[[regtime]]'),
(854, 39, 15, 0, 850, 40, 1, '[[regtime]]', '[[regtime]]'),
(855, 39, 31, 0, 850, 50, 1, '[[regtime]]', '[[regtime]]'),
(856, 39, 38, 0, 850, 60, 1, '[[regtime]]', '[[regtime]]'),
(857, 39, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(858, 39, 38, 0, 857, 10, 1, '[[regtime]]', '[[regtime]]'),
(859, 39, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(860, 39, 4, 0, 0, 40, 0, '[[regtime]]', '[[regtime]]'),
(861, 39, 5, 0, 0, 50, 0, '[[regtime]]', '[[regtime]]'),
(862, 39, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(863, 39, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(864, 39, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(865, 40, 1, 0, 0, 10, 1, '[[regtime]]', '[[regtime]]'),
(866, 40, 26, 0, 865, 10, 1, '[[regtime]]', '[[regtime]]'),
(867, 40, 13, 0, 865, 20, 1, '[[regtime]]', '[[regtime]]'),
(868, 40, 14, 0, 865, 30, 1, '[[regtime]]', '[[regtime]]'),
(869, 40, 15, 0, 865, 40, 1, '[[regtime]]', '[[regtime]]'),
(870, 40, 31, 0, 865, 50, 1, '[[regtime]]', '[[regtime]]'),
(871, 40, 38, 0, 865, 60, 1, '[[regtime]]', '[[regtime]]'),
(872, 40, 2, 0, 0, 20, 1, '[[regtime]]', '[[regtime]]'),
(873, 40, 38, 0, 872, 10, 1, '[[regtime]]', '[[regtime]]'),
(874, 40, 28, 0, 872, 20, 1, '[[regtime]]', '[[regtime]]'),
(875, 40, 3, 0, 0, 30, 0, '[[regtime]]', '[[regtime]]'),
(876, 40, 4, 0, 0, 40, 1, '[[regtime]]', '[[regtime]]'),
(877, 40, 11, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(878, 40, 5, 0, 0, 50, 1, '[[regtime]]', '[[regtime]]'),
(879, 40, 6, 0, 0, 60, 1, '[[regtime]]', '[[regtime]]'),
(880, 40, 7, 0, 0, 70, 1, '[[regtime]]', '[[regtime]]'),
(881, 40, 25, 0, 880, 10, 1, '[[regtime]]', '[[regtime]]'),
(882, 40, 8, 0, 0, 80, 1, '[[regtime]]', '[[regtime]]'),
(883, 40, 17, 9, 882, 10, 1, '[[regtime]]', '[[regtime]]'),
(884, 40, 17, 10, 882, 20, 1, '[[regtime]]', '[[regtime]]'),
(885, 40, 17, 11, 882, 30, 1, '[[regtime]]', '[[regtime]]'),
(886, 40, 11, 0, 882, 40, 1, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]block_templates`
--
CREATE TABLE `[[dbprefix]]block_templates` (
`block_id` int NOT NULL AUTO_INCREMENT,
`parent_block_id` int NOT NULL DEFAULT '0',
`template` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`block_id`,`parent_block_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=41 ;
--
-- Dumping data for table `[[dbprefix]]block_templates`
--
INSERT INTO `[[dbprefix]]block_templates` VALUES
(9, 1, 'blocks/category_top.tpl', '[[regtime]]', '[[regtime]]'),
(9, 2, 'blocks/category_top.tpl', '[[regtime]]', '[[regtime]]'),
(9, 3, 'blocks/category.tpl', '[[regtime]]', '[[regtime]]'),
(9, 6, 'blocks/category.tpl', '[[regtime]]', '[[regtime]]'),
(9, 7, 'blocks/category_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(9, 8, 'blocks/category_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(10, 3, 'blocks/manufacturer.tpl', '[[regtime]]', '[[regtime]]'),
(10, 6, 'blocks/manufacturer.tpl', '[[regtime]]', '[[regtime]]'),
(11, 1, 'blocks/content_header.tpl', '[[regtime]]', '[[regtime]]'),
(11, 3, 'blocks/content.tpl', '[[regtime]]', '[[regtime]]'),
(11, 6, 'blocks/content.tpl', '[[regtime]]', '[[regtime]]'),
(11, 8, 'blocks/content_footer.tpl', '[[regtime]]', '[[regtime]]'),
(12, 3, 'blocks/latest.tpl', '[[regtime]]', '[[regtime]]'),
(12, 4, 'blocks/latest_home.tpl', '[[regtime]]', '[[regtime]]'),
(12, 5, 'blocks/latest_home.tpl', '[[regtime]]', '[[regtime]]'),
(12, 6, 'blocks/latest.tpl', '[[regtime]]', '[[regtime]]'),
(13, 1, 'blocks/language.tpl', '[[regtime]]', '[[regtime]]'),
(14, 1, 'blocks/currency.tpl', '[[regtime]]', '[[regtime]]'),
(15, 1, 'blocks/cart_top.tpl', '[[regtime]]', '[[regtime]]'),
(15, 6, 'blocks/cart.tpl', '[[regtime]]', '[[regtime]]'),
(16, 6, 'blocks/order_summary.tpl', '[[regtime]]', '[[regtime]]'),
(17, 1, 'blocks/html_block_header.tpl', '[[regtime]]', '[[regtime]]'),
(17, 2, 'blocks/html_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(17, 3, 'blocks/html_block.tpl', '[[regtime]]', '[[regtime]]'),
(17, 4, 'blocks/html_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(17, 5, 'blocks/html_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(17, 6, 'blocks/html_block.tpl', '[[regtime]]', '[[regtime]]'),
(17, 7, 'blocks/html_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(17, 8, 'blocks/html_block_footer.tpl', '[[regtime]]', '[[regtime]]'),
(18, 3, 'blocks/bestseller.tpl', '[[regtime]]', '[[regtime]]'),
(18, 5, 'blocks/bestseller_home.tpl', '[[regtime]]', '[[regtime]]'),
(18, 6, 'blocks/bestseller.tpl', '[[regtime]]', '[[regtime]]'),
(19, 3, 'blocks/featured.tpl', '[[regtime]]', '[[regtime]]'),
(19, 5, 'blocks/featured_home.tpl', '[[regtime]]', '[[regtime]]'),
(19, 6, 'blocks/featured.tpl', '[[regtime]]', '[[regtime]]'),
(20, 1, 'blocks/listing_block_header.tpl', '[[regtime]]', '[[regtime]]'),
(20, 2, 'blocks/listing_block_header_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(20, 3, 'blocks/listing_block_column_left.tpl', '[[regtime]]', '[[regtime]]'),
(20, 4, 'blocks/listing_block_content_top.tpl', '[[regtime]]', '[[regtime]]'),
(20, 5, 'blocks/listing_block_content_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(20, 6, 'blocks/listing_block_column_right.tpl', '[[regtime]]', '[[regtime]]'),
(20, 7, 'blocks/listing_block_footer_top.tpl', '[[regtime]]', '[[regtime]]'),
(20, 8, 'blocks/listing_block_footer.tpl', '[[regtime]]', '[[regtime]]'),
(21, 8, 'blocks/donate.tpl', '[[regtime]]', '[[regtime]]'),
(22, 3, 'blocks/special.tpl', '[[regtime]]', '[[regtime]]'),
(22, 5, 'blocks/special_home.tpl', '[[regtime]]', '[[regtime]]'),
(22, 6, 'blocks/special.tpl', '[[regtime]]', '[[regtime]]'),
(23, 1, 'blocks/banner_block_header.tpl', '[[regtime]]', '[[regtime]]'),
(23, 2, 'blocks/banner_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(23, 3, 'blocks/banner_block.tpl', '[[regtime]]', '[[regtime]]'),
(23, 4, 'blocks/banner_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(23, 5, 'blocks/banner_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(23, 6, 'blocks/banner_block.tpl', '[[regtime]]', '[[regtime]]'),
(23, 7, 'blocks/banner_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(23, 8, 'blocks/banner_block_header.tpl', '[[regtime]]', '[[regtime]]'),
(24, 8, 'blocks/credit_cards.tpl', '[[regtime]]', '[[regtime]]'),
(25, 1, 'blocks/newsletter_signup_header.tpl', '[[regtime]]', '[[regtime]]'),
(25, 2, 'blocks/newsletter_signup_header_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(25, 3, 'blocks/newsletter_signup_column_left.tpl', '[[regtime]]', '[[regtime]]'),
(25, 4, 'blocks/newsletter_signup_content_top.tpl', '[[regtime]]', '[[regtime]]'),
(25, 5, 'blocks/newsletter_signup_content_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(25, 6, 'blocks/newsletter_signup_column_right.tpl', '[[regtime]]', '[[regtime]]'),
(25, 7, 'blocks/newsletter_signup_footer_top.tpl', '[[regtime]]', '[[regtime]]'),
(25, 8, 'blocks/newsletter_signup_footer.tpl', '[[regtime]]', '[[regtime]]'),
(26, 1, 'blocks/search_top.tpl', '[[regtime]]', '[[regtime]]'),
(26, 2, 'blocks/search_top.tpl', '[[regtime]]', '[[regtime]]'),
(26, 3, 'blocks/search.tpl', '[[regtime]]', '[[regtime]]'),
(26, 6, 'blocks/search.tpl', '[[regtime]]', '[[regtime]]'),
(27, 1, 'blocks/menu_top.tpl', '[[regtime]]', '[[regtime]]'),
(27, 2, 'blocks/menu.tpl', '[[regtime]]', '[[regtime]]'),
(27, 3, 'blocks/menu.tpl', '[[regtime]]', '[[regtime]]'),
(27, 6, 'blocks/menu.tpl', '[[regtime]]', '[[regtime]]'),
(27, 8, 'blocks/menu_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(28, 2, 'blocks/breadcrumbs.tpl', '[[regtime]]', '[[regtime]]'),
(29, 3, 'blocks/account.tpl', '[[regtime]]', '[[regtime]]'),
(29, 6, 'blocks/account.tpl', '[[regtime]]', '[[regtime]]'),
(30, 1, 'blocks/custom_form_block_header.tpl', '[[regtime]]', '[[regtime]]'),
(30, 2, 'blocks/custom_form_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(30, 3, 'blocks/custom_form_block.tpl', '[[regtime]]', '[[regtime]]'),
(30, 4, 'blocks/custom_form_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(30, 5, 'blocks/custom_form_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(30, 6, 'blocks/custom_form_block.tpl', '[[regtime]]', '[[regtime]]'),
(30, 7, 'blocks/custom_form_block_content.tpl', '[[regtime]]', '[[regtime]]'),
(30, 8, 'blocks/custom_form_block_header.tpl', '[[regtime]]', '[[regtime]]'),
(31, 1, 'blocks/customer.tpl', '[[regtime]]', '[[regtime]]'),
(32, 1, 'blocks/fast_checkout_cart_btn.tpl', '[[regtime]]', '[[regtime]]'),
(33, 6, 'blocks/fast_checkout_summary.tpl', '[[regtime]]', '[[regtime]]'),
(34, 1, 'blocks/viewed_block_column_header.tpl', '[[regtime]]', '[[regtime]]'),
(34, 2, 'blocks/viewed_block_column_header_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(34, 3, 'blocks/viewed_block_column_left.tpl', '[[regtime]]', '[[regtime]]'),
(34, 4, 'blocks/viewed_block_column_content_top.tpl', '[[regtime]]', '[[regtime]]'),
(34, 5, 'blocks/viewed_block_column_footer_top.tpl', '[[regtime]]', '[[regtime]]'),
(34, 6, 'blocks/viewed_block_column_right.tpl', '[[regtime]]', '[[regtime]]'),
(34, 7, 'blocks/viewed_block_column_footer_top.tpl', '[[regtime]]', '[[regtime]]'),
(34, 8, 'blocks/viewed_block_column_footer.tpl', '[[regtime]]', '[[regtime]]'),
(35, 3, 'blocks/new_content.tpl', '[[regtime]]', '[[regtime]]'),
(35, 6, 'blocks/new_content.tpl', '[[regtime]]', '[[regtime]]'),
(36, 1, 'blocks/content_search.tpl', '[[regtime]]', '[[regtime]]'),
(36, 2, 'blocks/content_search.tpl', '[[regtime]]', '[[regtime]]'),
(36, 3, 'blocks/content_search.tpl', '[[regtime]]', '[[regtime]]'),
(36, 4, 'blocks/content_search.tpl', '[[regtime]]', '[[regtime]]'),
(36, 5, 'blocks/content_search.tpl', '[[regtime]]', '[[regtime]]'),
(36, 6, 'blocks/content_search.tpl', '[[regtime]]', '[[regtime]]'),
(37, 3, 'blocks/store_hours.tpl', '[[regtime]]', '[[regtime]]'),
(37, 6, 'blocks/store_hours.tpl', '[[regtime]]', '[[regtime]]'),
(38, 1, 'blocks/mega_menu_header.tpl', '[[regtime]]', '[[regtime]]'),
(38, 2, 'blocks/mega_menu_header_bottom.tpl', '[[regtime]]', '[[regtime]]'),
(39, 2, 'blocks/category_slides.tpl', '[[regtime]]', '[[regtime]]'),
(40, 3, 'blocks/category_filter.tpl', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]categories`
--
CREATE TABLE `[[dbprefix]]categories` (
`category_id` int NOT NULL AUTO_INCREMENT,
`parent_id` int NOT NULL DEFAULT '0',
`sort_order` int NOT NULL DEFAULT '0',
`status` int NOT NULL DEFAULT '1',
`supplier_code` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`supplier_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`category_id`),
UNIQUE KEY `[[dbprefix]]categories_supplier_idx` (`supplier_code`,`supplier_id`),
KEY `[[dbprefix]]categories_idx` (`category_id`,`parent_id`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=71 ;
--
-- Dumping data for table `[[dbprefix]]categories`
--
INSERT INTO `[[dbprefix]]categories` VALUES
(36, 0, 1, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(37, 36, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(38, 36, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(39, 36, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(40, 36, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(41, 36, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(42, 36, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(43, 0, 2, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(44, 43, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(45, 43, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(46, 43, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(47, 43, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(48, 43, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(49, 0, 3, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(50, 49, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(51, 49, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(52, 0, 98, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(53, 52, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(54, 52, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(58, 0, 4, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(59, 58, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(60, 58, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(61, 58, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(62, 58, 0, 0, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(63, 58, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(64, 0, 99, 0, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(65, 0, 100, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(66, 65, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(67, 65, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(68, 0, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(69, 68, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(70, 68, 0, 1, NULL, NULL, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]categories_to_stores`
--
CREATE TABLE `[[dbprefix]]categories_to_stores` (
`category_id` int NOT NULL,
`store_id` int NOT NULL,
PRIMARY KEY (`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]categories_to_stores`
--
INSERT INTO `[[dbprefix]]categories_to_stores` VALUES
(36, 0),
(37, 0),
(38, 0),
(39, 0),
(40, 0),
(41, 0),
(42, 0),
(43, 0),
(44, 0),
(45, 0),
(46, 0),
(47, 0),
(48, 0),
(49, 0),
(50, 0),
(51, 0),
(52, 0),
(53, 0),
(54, 0),
(58, 0),
(59, 0),
(60, 0),
(61, 0),
(62, 0),
(63, 0),
(64, 0),
(65, 0),
(66, 0),
(67, 0),
(68, 0),
(69, 0),
(70, 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]category_descriptions`
--
CREATE TABLE `[[dbprefix]]category_descriptions` (
`category_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
`meta_keywords` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`meta_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` longtext COLLATE utf8mb4_unicode_ci COMMENT 'translatable',
PRIMARY KEY (`category_id`,`language_id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]category_descriptions`
--
INSERT INTO `[[dbprefix]]category_descriptions` VALUES
(36, 1, 'Makeup', 'Makeup', '', '<p>\r\n All your makeup needs, from foundation to eye shadow in hundreds of different assortments and colors.</p>\r\n'),
(37, 1, 'Value Sets', 'value sets makeup', '', ''),
(38, 1, 'Face', '', '', ''),
(39, 1, 'Eyes', '', '', ''),
(40, 1, 'Cheeks', '', '', ''),
(41, 1, 'Lips', '', '', ''),
(42, 1, 'Nails', '', '', ''),
(43, 1, 'Skincare', '', '', '<p>\r\n Products from award-winning skin care brands</p>\r\n'),
(44, 1, 'Sun', '', '', ''),
(45, 1, 'Gift Ideas & Sets', '', '', ''),
(46, 1, 'Facial', '', '', '<p>\r\n Find face skin care solutions</p>\r\n'),
(47, 1, 'Eye Care', '', '', ''),
(48, 1, 'Hands & Nails', '', '', '<p>\r\n Keep your hands looking fresh</p>\r\n'),
(49, 1, 'Fragrance', '', '', '<p>\r\n Looking for a new scent? Check out our fragrance</p>\r\n'),
(50, 1, 'Women', '', '', '<p>\r\n Fragrance for Women</p>\r\n'),
(51, 1, 'Men', '', '', ''),
(52, 1, 'Hair Care', '', '', '<p>\r\n The widest range of premium hair products</p>\r\n'),
(53, 1, 'Shampoo', '', '', ''),
(54, 1, 'Conditioner', '', '', ''),
(58, 1, 'Men', '', '', ''),
(59, 1, 'Fragrance Sets', '', '', ''),
(60, 1, 'Skincare', '', '', ''),
(61, 1, 'Pre-Shave & Shaving', '', '', ''),
(62, 1, 'Post-Shave & Moisturizers', '', '', ''),
(63, 1, 'Body & Shower', '', '', ''),
(64, 1, 'Bath & Body', '', '', ''),
(65, 1, 'Books', '', '', 'Find the Items You&#39;d Like to read'),
(66, 1, 'Audio CD', '', '', ''),
(67, 1, 'Paperback', '', '', ''),
(68, 1, 'Apparel & accessories', '', '', ''),
(69, 1, 'Shoes', '', '', ''),
(70, 1, 'T-shirts', '', '', 'Shop men&#39;s T-shirts');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]collections`
--
CREATE TABLE `[[dbprefix]]collections` (
`id` int NOT NULL AUTO_INCREMENT,
`status` tinyint NOT NULL DEFAULT '0',
`name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL,
`description` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin,
`conditions` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin,
`store_id` int NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]collection_descriptions`
--
CREATE TABLE `[[dbprefix]]collection_descriptions` (
`id` int NOT NULL AUTO_INCREMENT,
`collection_id` int NOT NULL,
`language_id` int NOT NULL,
`title` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL,
`meta_keywords` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin,
`meta_description` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin,
PRIMARY KEY (`id`),
UNIQUE KEY `collection_language_idx` (`collection_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]contents`
--
CREATE TABLE `[[dbprefix]]contents` (
`content_id` int NOT NULL AUTO_INCREMENT,
`parent_content_id` int NOT NULL DEFAULT '0',
`sort_order` int NOT NULL DEFAULT '0',
`status` int NOT NULL DEFAULT '0',
`content_bar` int NOT NULL DEFAULT '0',
`show_title` int DEFAULT '1',
`author` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`icon_rl_id` int DEFAULT NULL,
`publish_date` timestamp NULL DEFAULT NULL,
`expire_date` timestamp NULL DEFAULT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `[[dbprefix]]contents`
--
INSERT INTO `[[dbprefix]]contents` VALUES
(1, 0, 1, 1, 0, 1, '', NULL, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(2, 0, 2, 1, 0, 1, '', NULL, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(3, 0, 3, 1, 0, 1, '', NULL, NULL, NULL, '[[regtime]]', '[[regtime]]'),
(4, 0, 4, 1, 0, 1, '', NULL, NULL, NULL, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]contents_to_stores`
--
CREATE TABLE `[[dbprefix]]contents_to_stores` (
`content_id` int NOT NULL,
`store_id` int NOT NULL,
PRIMARY KEY (`content_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]contents_to_stores`
--
INSERT INTO `[[dbprefix]]contents_to_stores` VALUES
(1, 0),
(2, 0),
(3, 0),
(4, 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]content_descriptions`
--
CREATE TABLE `[[dbprefix]]content_descriptions` (
`content_id` int NOT NULL DEFAULT '0',
`language_id` int NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
`meta_keywords` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`meta_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`content_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]content_descriptions`
--
INSERT INTO `[[dbprefix]]content_descriptions` VALUES
(1, 1, 'About Us', 'some description', '', '', 'text about your store', '[[regtime]]', '[[regtime]]'),
(2, 1, 'Privacy Policy', 'some description', '', '', 'some text about privacy policy', '[[regtime]]', '[[regtime]]'),
(3, 1, 'Return Policy', 'some description', '', '', 'some text about return policy', '[[regtime]]', '[[regtime]]'),
(4, 1, 'Shipping', 'some description', '', '', 'some text about shipping', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]content_tags`
--
CREATE TABLE `[[dbprefix]]content_tags` (
`content_id` int NOT NULL,
`tag` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`language_id` int NOT NULL,
PRIMARY KEY (`content_id`,`tag`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]countries`
--
CREATE TABLE `[[dbprefix]]countries` (
`country_id` int NOT NULL AUTO_INCREMENT,
`iso_code_2` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`iso_code_3` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`address_format` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int NOT NULL DEFAULT '1',
`sort_order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`country_id`),
KEY `[[dbprefix]]countries_idx` (`iso_code_2`,`iso_code_3`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=244 ;
--
-- Dumping data for table `[[dbprefix]]countries`
--
INSERT INTO `[[dbprefix]]countries` VALUES
(1, 'AF', 'AFG', '', 1, 0),
(2, 'AL', 'ALB', '', 1, 0),
(3, 'DZ', 'DZA', '', 1, 0),
(4, 'AS', 'ASM', '', 1, 0),
(5, 'AD', 'AND', '', 1, 0),
(6, 'AO', 'AGO', '', 1, 0),
(7, 'AI', 'AIA', '', 1, 0),
(8, 'AQ', 'ATA', '', 1, 0),
(9, 'AG', 'ATG', '', 1, 0),
(10, 'AR', 'ARG', '', 1, 0),
(11, 'AM', 'ARM', '', 1, 0),
(12, 'AW', 'ABW', '', 1, 0),
(13, 'AU', 'AUS', '', 1, 0),
(14, 'AT', 'AUT', '', 1, 0),
(15, 'AZ', 'AZE', '', 1, 0),
(16, 'BS', 'BHS', '', 1, 0),
(17, 'BH', 'BHR', '', 1, 0),
(18, 'BD', 'BGD', '', 1, 0),
(19, 'BB', 'BRB', '', 1, 0),
(20, 'BY', 'BLR', '', 1, 0),
(21, 'BE', 'BEL', '', 1, 0),
(22, 'BZ', 'BLZ', '', 1, 0),
(23, 'BJ', 'BEN', '', 1, 0),
(24, 'BM', 'BMU', '', 1, 0),
(25, 'BT', 'BTN', '', 1, 0),
(26, 'BO', 'BOL', '', 1, 0),
(27, 'BA', 'BIH', '', 1, 0),
(28, 'BW', 'BWA', '', 1, 0),
(29, 'BV', 'BVT', '', 1, 0),
(30, 'BR', 'BRA', '', 1, 0),
(31, 'IO', 'IOT', '', 1, 0),
(32, 'BN', 'BRN', '', 1, 0),
(33, 'BG', 'BGR', '', 1, 0),
(34, 'BF', 'BFA', '', 1, 0),
(35, 'BI', 'BDI', '', 1, 0),
(36, 'KH', 'KHM', '', 1, 0),
(37, 'CM', 'CMR', '', 1, 0),
(38, 'CA', 'CAN', '', 1, 0),
(39, 'CV', 'CPV', '', 1, 0),
(40, 'KY', 'CYM', '', 1, 0),
(41, 'CF', 'CAF', '', 1, 0),
(42, 'TD', 'TCD', '', 1, 0),
(43, 'CL', 'CHL', '', 1, 0),
(44, 'CN', 'CHN', '', 1, 0),
(45, 'CX', 'CXR', '', 1, 0),
(46, 'CC', 'CCK', '', 1, 0),
(47, 'CO', 'COL', '', 1, 0),
(48, 'KM', 'COM', '', 1, 0),
(49, 'CG', 'COG', '', 1, 0),
(50, 'CK', 'COK', '', 1, 0),
(51, 'CR', 'CRI', '', 1, 0),
(52, 'CI', 'CIV', '', 1, 0),
(53, 'HR', 'HRV', '', 1, 0),
(54, 'CU', 'CUB', '', 1, 0),
(55, 'CY', 'CYP', '', 1, 0),
(56, 'CZ', 'CZE', '', 1, 0),
(57, 'DK', 'DNK', '', 1, 0),
(58, 'DJ', 'DJI', '', 1, 0),
(59, 'DM', 'DMA', '', 1, 0),
(60, 'DO', 'DOM', '', 1, 0),
(61, 'TL', 'TLS', '', 1, 0),
(62, 'EC', 'ECU', '', 1, 0),
(63, 'EG', 'EGY', '', 1, 0),
(64, 'SV', 'SLV', '', 1, 0),
(65, 'GQ', 'GNQ', '', 1, 0),
(66, 'ER', 'ERI', '', 1, 0),
(67, 'EE', 'EST', '', 1, 0),
(68, 'ET', 'ETH', '', 1, 0),
(69, 'FK', 'FLK', '', 1, 0),
(70, 'FO', 'FRO', '', 1, 0),
(71, 'FJ', 'FJI', '', 1, 0),
(72, 'FI', 'FIN', '', 1, 0),
(73, 'FR', 'FRA', '', 1, 0),
(74, 'FX', 'FXX', '', 1, 0),
(75, 'GF', 'GUF', '', 1, 0),
(76, 'PF', 'PYF', '', 1, 0),
(77, 'TF', 'ATF', '', 1, 0),
(78, 'GA', 'GAB', '', 1, 0),
(79, 'GM', 'GMB', '', 1, 0),
(80, 'GE', 'GEO', '', 1, 0),
(81, 'DE', 'DEU', '', 1, 0),
(82, 'GH', 'GHA', '', 1, 0),
(83, 'GI', 'GIB', '', 1, 0),
(84, 'GR', 'GRC', '', 1, 0),
(85, 'GL', 'GRL', '', 1, 0),
(86, 'GD', 'GRD', '', 1, 0),
(87, 'GP', 'GLP', '', 1, 0),
(88, 'GU', 'GUM', '', 1, 0),
(89, 'GT', 'GTM', '', 1, 0),
(90, 'GN', 'GIN', '', 1, 0),
(91, 'GW', 'GNB', '', 1, 0),
(92, 'GY', 'GUY', '', 1, 0),
(93, 'HT', 'HTI', '', 1, 0),
(94, 'HM', 'HMD', '', 1, 0),
(95, 'HN', 'HND', '', 1, 0),
(96, 'HK', 'HKG', '', 1, 0),
(97, 'HU', 'HUN', '', 1, 0),
(98, 'IS', 'ISL', '', 1, 0),
(99, 'IN', 'IND', '', 1, 0),
(100, 'ID', 'IDN', '', 1, 0),
(101, 'IR', 'IRN', '', 1, 0),
(102, 'IQ', 'IRQ', '', 1, 0),
(103, 'IE', 'IRL', '', 1, 0),
(104, 'IL', 'ISR', '', 1, 0),
(105, 'IT', 'ITA', '', 1, 0),
(106, 'JM', 'JAM', '', 1, 0),
(107, 'JP', 'JPN', '', 1, 0),
(108, 'JO', 'JOR', '', 1, 0),
(109, 'KZ', 'KAZ', '', 1, 0),
(110, 'KE', 'KEN', '', 1, 0),
(111, 'KI', 'KIR', '', 1, 0),
(112, 'KP', 'PRK', '', 1, 0),
(113, 'KR', 'KOR', '', 1, 0),
(114, 'KW', 'KWT', '', 1, 0),
(115, 'KG', 'KGZ', '', 1, 0),
(116, 'LA', 'LAO', '', 1, 0),
(117, 'LV', 'LVA', '', 1, 0),
(118, 'LB', 'LBN', '', 1, 0),
(119, 'LS', 'LSO', '', 1, 0),
(120, 'LR', 'LBR', '', 1, 0),
(121, 'LY', 'LBY', '', 1, 0),
(122, 'LI', 'LIE', '', 1, 0),
(123, 'LT', 'LTU', '', 1, 0),
(124, 'LU', 'LUX', '', 1, 0),
(125, 'MO', 'MAC', '', 1, 0),
(126, 'MK', 'MKD', '', 1, 0),
(127, 'MG', 'MDG', '', 1, 0),
(128, 'MW', 'MWI', '', 1, 0),
(129, 'MY', 'MYS', '', 1, 0),
(130, 'MV', 'MDV', '', 1, 0),
(131, 'ML', 'MLI', '', 1, 0),
(132, 'MT', 'MLT', '', 1, 0),
(133, 'MH', 'MHL', '', 1, 0),
(134, 'MQ', 'MTQ', '', 1, 0),
(135, 'MR', 'MRT', '', 1, 0),
(136, 'MU', 'MUS', '', 1, 0),
(137, 'YT', 'MYT', '', 1, 0),
(138, 'MX', 'MEX', '', 1, 0),
(139, 'FM', 'FSM', '', 1, 0),
(140, 'MD', 'MDA', '', 1, 0),
(141, 'MC', 'MCO', '', 1, 0),
(142, 'MN', 'MNG', '', 1, 0),
(143, 'MS', 'MSR', '', 1, 0),
(144, 'MA', 'MAR', '', 1, 0),
(145, 'MZ', 'MOZ', '', 1, 0),
(146, 'MM', 'MMR', '', 1, 0),
(147, 'NA', 'NAM', '', 1, 0),
(148, 'NR', 'NRU', '', 1, 0),
(149, 'NP', 'NPL', '', 1, 0),
(150, 'NL', 'NLD', '', 1, 0),
(151, 'AN', 'ANT', '', 1, 0),
(152, 'NC', 'NCL', '', 1, 0),
(153, 'NZ', 'NZL', '', 1, 0),
(154, 'NI', 'NIC', '', 1, 0),
(155, 'NE', 'NER', '', 1, 0),
(156, 'NG', 'NGA', '', 1, 0),
(157, 'NU', 'NIU', '', 1, 0),
(158, 'NF', 'NFK', '', 1, 0),
(159, 'MP', 'MNP', '', 1, 0),
(160, 'NO', 'NOR', '', 1, 0),
(161, 'OM', 'OMN', '', 1, 0),
(162, 'PK', 'PAK', '', 1, 0),
(163, 'PW', 'PLW', '', 1, 0),
(164, 'PA', 'PAN', '', 1, 0),
(165, 'PG', 'PNG', '', 1, 0),
(166, 'PY', 'PRY', '', 1, 0),
(167, 'PE', 'PER', '', 1, 0),
(168, 'PH', 'PHL', '', 1, 0),
(169, 'PN', 'PCN', '', 1, 0),
(170, 'PL', 'POL', '', 1, 0),
(171, 'PT', 'PRT', '', 1, 0),
(172, 'PR', 'PRI', '', 1, 0),
(173, 'QA', 'QAT', '', 1, 0),
(174, 'RE', 'REU', '', 1, 0),
(175, 'RO', 'ROM', '', 1, 0),
(176, 'RU', 'RUS', '', 1, 0),
(177, 'RW', 'RWA', '', 1, 0),
(178, 'KN', 'KNA', '', 1, 0),
(179, 'LC', 'LCA', '', 1, 0),
(180, 'VC', 'VCT', '', 1, 0),
(181, 'WS', 'WSM', '', 1, 0),
(182, 'SM', 'SMR', '', 1, 0),
(183, 'ST', 'STP', '', 1, 0),
(184, 'SA', 'SAU', '', 1, 0),
(185, 'SN', 'SEN', '', 1, 0),
(186, 'SC', 'SYC', '', 1, 0),
(187, 'SL', 'SLE', '', 1, 0),
(188, 'SG', 'SGP', '', 1, 0),
(189, 'SK', 'SVK', '', 1, 0),
(190, 'SI', 'SVN', '', 1, 0),
(191, 'SB', 'SLB', '', 1, 0),
(192, 'SO', 'SOM', '', 1, 0),
(193, 'ZA', 'ZAF', '', 1, 0),
(194, 'GS', 'SGS', '', 1, 0),
(195, 'ES', 'ESP', '', 1, 0),
(196, 'LK', 'LKA', '', 1, 0),
(197, 'SH', 'SHN', '', 1, 0),
(198, 'PM', 'SPM', '', 1, 0),
(199, 'SD', 'SDN', '', 1, 0),
(200, 'SR', 'SUR', '', 1, 0),
(201, 'SJ', 'SJM', '', 1, 0),
(202, 'SZ', 'SWZ', '', 1, 0),
(203, 'SE', 'SWE', '', 1, 0),
(204, 'CH', 'CHE', '', 1, 0),
(205, 'SY', 'SYR', '', 1, 0),
(206, 'TW', 'TWN', '', 1, 0),
(207, 'TJ', 'TJK', '', 1, 0),
(208, 'TZ', 'TZA', '', 1, 0),
(209, 'TH', 'THA', '', 1, 0),
(210, 'TG', 'TGO', '', 1, 0),
(211, 'TK', 'TKL', '', 1, 0),
(212, 'TO', 'TON', '', 1, 0),
(213, 'TT', 'TTO', '', 1, 0),
(214, 'TN', 'TUN', '', 1, 0),
(215, 'TR', 'TUR', '', 1, 0),
(216, 'TM', 'TKM', '', 1, 0),
(217, 'TC', 'TCA', '', 1, 0),
(218, 'TV', 'TUV', '', 1, 0),
(219, 'UG', 'UGA', '', 1, 0),
(220, 'UA', 'UKR', '', 1, 0),
(221, 'AE', 'ARE', '', 1, 0),
(222, 'GB', 'GBR', '', 1, 0),
(223, 'US', 'USA', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city}, {zone} {postcode}\r\n{country}', 1, 0),
(224, 'UM', 'UMI', '', 1, 0),
(225, 'UY', 'URY', '', 1, 0),
(226, 'UZ', 'UZB', '', 1, 0),
(227, 'VU', 'VUT', '', 1, 0),
(228, 'VA', 'VAT', '', 1, 0),
(229, 'VE', 'VEN', '', 1, 0),
(230, 'VN', 'VNM', '', 1, 0),
(231, 'VG', 'VGB', '', 1, 0),
(232, 'VI', 'VIR', '', 1, 0),
(233, 'WF', 'WLF', '', 1, 0),
(234, 'EH', 'ESH', '', 1, 0),
(235, 'YE', 'YEM', '', 1, 0),
(236, 'ME', 'MNE', '', 1, 0),
(237, 'CW', 'CUW', '', 1, 0),
(238, 'ZM', 'ZMB', '', 1, 0),
(239, 'ZW', 'ZWE', '', 1, 0),
(240, 'GB', 'NIR', '', 1, 0),
(241, 'RS', 'SRB', '', 1, 0),
(242, 'XK', 'XXK', '', 1, 0),
(243, 'SS', 'RSS', '', 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]country_descriptions`
--
CREATE TABLE `[[dbprefix]]country_descriptions` (
`country_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
PRIMARY KEY (`country_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]country_descriptions`
--
INSERT INTO `[[dbprefix]]country_descriptions` VALUES
(1, 1, 'Afghanistan'),
(2, 1, 'Albania'),
(3, 1, 'Algeria'),
(4, 1, 'American Samoa'),
(5, 1, 'Andorra'),
(6, 1, 'Angola'),
(7, 1, 'Anguilla'),
(8, 1, 'Antarctica'),
(9, 1, 'Antigua and Barbuda'),
(10, 1, 'Argentina'),
(11, 1, 'Armenia'),
(12, 1, 'Aruba'),
(13, 1, 'Australia'),
(14, 1, 'Austria'),
(15, 1, 'Azerbaijan'),
(16, 1, 'Bahamas'),
(17, 1, 'Bahrain'),
(18, 1, 'Bangladesh'),
(19, 1, 'Barbados'),
(20, 1, 'Belarus'),
(21, 1, 'Belgium'),
(22, 1, 'Belize'),
(23, 1, 'Benin'),
(24, 1, 'Bermuda'),
(25, 1, 'Bhutan'),
(26, 1, 'Bolivia'),
(27, 1, 'Bosnia and Herzegowina'),
(28, 1, 'Botswana'),
(29, 1, 'Bouvet Island'),
(30, 1, 'Brazil'),
(31, 1, 'British Indian Ocean Territory'),
(32, 1, 'Brunei Darussalam'),
(33, 1, 'Bulgaria'),
(34, 1, 'Burkina Faso'),
(35, 1, 'Burundi'),
(36, 1, 'Cambodia'),
(37, 1, 'Cameroon'),
(38, 1, 'Canada'),
(39, 1, 'Cabo Verde'),
(40, 1, 'Cayman Islands'),
(41, 1, 'Central African Republic'),
(42, 1, 'Chad'),
(43, 1, 'Chile'),
(44, 1, 'China'),
(45, 1, 'Christmas Island'),
(46, 1, 'Cocos (Keeling) Islands'),
(47, 1, 'Colombia'),
(48, 1, 'Comoros'),
(49, 1, 'Congo'),
(50, 1, 'Cook Islands'),
(51, 1, 'Costa Rica'),
(52, 1, 'Côte d''Ivoire'),
(53, 1, 'Croatia'),
(54, 1, 'Cuba'),
(55, 1, 'Cyprus'),
(56, 1, 'Czech Republic'),
(57, 1, 'Denmark'),
(58, 1, 'Djibouti'),
(59, 1, 'Dominica'),
(60, 1, 'Dominican Republic'),
(61, 1, 'Timor-Leste'),
(62, 1, 'Ecuador'),
(63, 1, 'Egypt'),
(64, 1, 'El Salvador'),
(65, 1, 'Equatorial Guinea'),
(66, 1, 'Eritrea'),
(67, 1, 'Estonia'),
(68, 1, 'Ethiopia'),
(69, 1, 'Falkland Islands (Malvinas)'),
(70, 1, 'Faroe Islands'),
(71, 1, 'Fiji'),
(72, 1, 'Finland'),
(73, 1, 'France'),
(74, 1, 'France, Metropolitan'),
(75, 1, 'French Guiana'),
(76, 1, 'French Polynesia'),
(77, 1, 'French Southern Territories'),
(78, 1, 'Gabon'),
(79, 1, 'Gambia'),
(80, 1, 'Georgia'),
(81, 1, 'Germany'),
(82, 1, 'Ghana'),
(83, 1, 'Gibraltar'),
(84, 1, 'Greece'),
(85, 1, 'Greenland'),
(86, 1, 'Grenada'),
(87, 1, 'Guadeloupe'),
(88, 1, 'Guam'),
(89, 1, 'Guatemala'),
(90, 1, 'Guinea'),
(91, 1, 'Guinea-bissau'),
(92, 1, 'Guyana'),
(93, 1, 'Haiti'),
(94, 1, 'Heard and Mc Donald Islands'),
(95, 1, 'Honduras'),
(96, 1, 'Hong Kong'),
(97, 1, 'Hungary'),
(98, 1, 'Iceland'),
(99, 1, 'India'),
(100, 1, 'Indonesia'),
(101, 1, 'Iran (Islamic Republic of)'),
(102, 1, 'Iraq'),
(103, 1, 'Ireland'),
(104, 1, 'Israel'),
(105, 1, 'Italy'),
(106, 1, 'Jamaica'),
(107, 1, 'Japan'),
(108, 1, 'Jordan'),
(109, 1, 'Kazakhstan'),
(110, 1, 'Kenya'),
(111, 1, 'Kiribati'),
(112, 1, 'North Korea'),
(113, 1, 'Korea, Republic of'),
(114, 1, 'Kuwait'),
(115, 1, 'Kyrgyzstan'),
(116, 1, 'Lao People''s Democratic Republic'),
(117, 1, 'Latvia'),
(118, 1, 'Lebanon'),
(119, 1, 'Lesotho'),
(120, 1, 'Liberia'),
(121, 1, 'Libyan Arab Jamahiriya'),
(122, 1, 'Liechtenstein'),
(123, 1, 'Lithuania'),
(124, 1, 'Luxembourg'),
(125, 1, 'Macau'),
(126, 1, 'North Macedonia'),
(127, 1, 'Madagascar'),
(128, 1, 'Malawi'),
(129, 1, 'Malaysia'),
(130, 1, 'Maldives'),
(131, 1, 'Mali'),
(132, 1, 'Malta'),
(133, 1, 'Marshall Islands'),
(134, 1, 'Martinique'),
(135, 1, 'Mauritania'),
(136, 1, 'Mauritius'),
(137, 1, 'Mayotte'),
(138, 1, 'Mexico'),
(139, 1, 'Micronesia, Federated States of'),
(140, 1, 'Moldova, Republic of'),
(141, 1, 'Monaco'),
(142, 1, 'Mongolia'),
(143, 1, 'Montserrat'),
(144, 1, 'Morocco'),
(145, 1, 'Mozambique'),
(146, 1, 'Myanmar'),
(147, 1, 'Namibia'),
(148, 1, 'Nauru'),
(149, 1, 'Nepal'),
(150, 1, 'Netherlands'),
(151, 1, 'Netherlands Antilles'),
(152, 1, 'New Caledonia'),
(153, 1, 'New Zealand'),
(154, 1, 'Nicaragua'),
(155, 1, 'Niger'),
(156, 1, 'Nigeria'),
(157, 1, 'Niue'),
(158, 1, 'Norfolk Island'),
(159, 1, 'Northern Mariana Islands'),
(160, 1, 'Norway'),
(161, 1, 'Oman'),
(162, 1, 'Pakistan'),
(163, 1, 'Palau'),
(164, 1, 'Panama'),
(165, 1, 'Papua New Guinea'),
(166, 1, 'Paraguay'),
(167, 1, 'Peru'),
(168, 1, 'Philippines'),
(169, 1, 'Pitcairn'),
(170, 1, 'Poland'),
(171, 1, 'Portugal'),
(172, 1, 'Puerto Rico'),
(173, 1, 'Qatar'),
(174, 1, 'Reunion'),
(175, 1, 'Romania'),
(176, 1, 'Russia'),
(177, 1, 'Rwanda'),
(178, 1, 'Saint Kitts and Nevis'),
(179, 1, 'Saint Lucia'),
(180, 1, 'Saint Vincent and the Grenadines'),
(181, 1, 'Samoa'),
(182, 1, 'San Marino'),
(183, 1, 'Sao Tome and Principe'),
(184, 1, 'Saudi Arabia'),
(185, 1, 'Senegal'),
(186, 1, 'Seychelles'),
(187, 1, 'Sierra Leone'),
(188, 1, 'Singapore'),
(189, 1, 'Slovak Republic'),
(190, 1, 'Slovenia'),
(191, 1, 'Solomon Islands'),
(192, 1, 'Somalia'),
(193, 1, 'South Africa'),
(194, 1, 'South Georgia & South Sandwich Islands'),
(195, 1, 'Spain'),
(196, 1, 'Sri Lanka'),
(197, 1, 'St. Helena'),
(198, 1, 'St. Pierre and Miquelon'),
(199, 1, 'Sudan'),
(200, 1, 'Suriname'),
(201, 1, 'Svalbard and Jan Mayen Islands'),
(202, 1, 'Eswatini'),
(203, 1, 'Sweden'),
(204, 1, 'Switzerland'),
(205, 1, 'Syrian Arab Republic'),
(206, 1, 'Taiwan'),
(207, 1, 'Tajikistan'),
(208, 1, 'Tanzania, United Republic of'),
(209, 1, 'Thailand'),
(210, 1, 'Togo'),
(211, 1, 'Tokelau'),
(212, 1, 'Tonga'),
(213, 1, 'Trinidad and Tobago'),
(214, 1, 'Tunisia'),
(215, 1, 'Turkey'),
(216, 1, 'Turkmenistan'),
(217, 1, 'Turks and Caicos Islands'),
(218, 1, 'Tuvalu'),
(219, 1, 'Uganda'),
(220, 1, 'Ukraine'),
(221, 1, 'United Arab Emirates'),
(222, 1, 'United Kingdom'),
(223, 1, 'United States'),
(224, 1, 'United States Minor Outlying Islands'),
(225, 1, 'Uruguay'),
(226, 1, 'Uzbekistan'),
(227, 1, 'Vanuatu'),
(228, 1, 'Vatican City State (Holy See)'),
(229, 1, 'Venezuela'),
(230, 1, 'Viet Nam'),
(231, 1, 'Virgin Islands (British)'),
(232, 1, 'Virgin Islands (U.S.)'),
(233, 1, 'Wallis and Futuna Islands'),
(234, 1, 'Western Sahara'),
(235, 1, 'Yemen'),
(236, 1, 'Montenegro'),
(237, 1, 'Curaçao'),
(238, 1, 'Zambia'),
(239, 1, 'Zimbabwe'),
(240, 1, 'Northern Ireland'),
(241, 1, 'Serbia'),
(242, 1, 'Kosovo'),
(243, 1, 'South Sudan');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]coupons`
--
CREATE TABLE `[[dbprefix]]coupons` (
`coupon_id` int NOT NULL AUTO_INCREMENT,
`code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` char(1) COLLATE utf8mb4_unicode_ci NOT NULL,
`discount` decimal(15,4) NOT NULL,
`logged` int NOT NULL,
`shipping` int NOT NULL,
`total` decimal(15,4) NOT NULL,
`date_start` date DEFAULT NULL,
`date_end` date DEFAULT NULL,
`uses_total` int NOT NULL,
`uses_customer` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int NOT NULL,
`condition_rule` enum('OR','AND') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'OR',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`coupon_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `[[dbprefix]]coupons`
--
INSERT INTO `[[dbprefix]]coupons` VALUES
(4, '2222', 'P', '10.0000', 0, 0, '0.0000', '2021-01-01', '2022-01-01', 30, '3', 0, 'OR', '[[regtime]]', '[[regtime]]'),
(5, '3333', 'P', '0.0000', 0, 1, '100.0000', '2021-01-01', '2022-01-01', 40, '1', 0, 'OR', '[[regtime]]', '[[regtime]]'),
(6, '1111', 'F', '10.0000', 0, 0, '10.0000', '2021-01-01', '2022-01-01', 100, '2', 0, 'OR', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]coupons_categories`
--
CREATE TABLE `[[dbprefix]]coupons_categories` (
`coupon_category_id` int NOT NULL AUTO_INCREMENT,
`coupon_id` int NOT NULL,
`category_id` int NOT NULL,
PRIMARY KEY (`coupon_category_id`),
KEY `[[dbprefix]]coupons_categories_idx` (`coupon_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]coupons_products`
--
CREATE TABLE `[[dbprefix]]coupons_products` (
`coupon_product_id` int NOT NULL AUTO_INCREMENT,
`coupon_id` int NOT NULL,
`product_id` int NOT NULL,
PRIMARY KEY (`coupon_product_id`),
KEY `[[dbprefix]]coupons_products_idx` (`coupon_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `[[dbprefix]]coupons_products`
--
INSERT INTO `[[dbprefix]]coupons_products` VALUES
(10, 6, 68);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]coupon_descriptions`
--
CREATE TABLE `[[dbprefix]]coupon_descriptions` (
`coupon_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
PRIMARY KEY (`coupon_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]coupon_descriptions`
--
INSERT INTO `[[dbprefix]]coupon_descriptions` VALUES
(4, 1, 'Coupon (-10%)', '10% Discount'),
(5, 1, 'Coupon (Free Shipping)', 'Free Shipping'),
(6, 1, 'Coupon (-10.00)', 'Fixed Amount Discount');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]currencies`
--
CREATE TABLE `[[dbprefix]]currencies` (
`currency_id` int NOT NULL AUTO_INCREMENT,
`title` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`code` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`symbol_left` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL,
`symbol_right` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL,
`decimal_place` char(1) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` decimal(15,8) NOT NULL,
`status` int NOT NULL,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`currency_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `[[dbprefix]]currencies`
--
INSERT INTO `[[dbprefix]]currencies` VALUES
(1, 'US Dollar', 'USD', '$', '', '2', '1.00000000', 1, '2011-06-20 15:30:00'),
(2, 'Euro', 'EUR', '', '€', '2', '0.93850000', 1, '2011-06-20 15:30:00'),
(3, 'Pound Sterling', 'GBP', '£', '', '2', '0.79330000', 1, '2011-06-20 15:30:00');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]customers`
--
CREATE TABLE `[[dbprefix]]customers` (
`customer_id` int NOT NULL AUTO_INCREMENT,
`store_id` int NOT NULL DEFAULT '0',
`firstname` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`lastname` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`loginname` varchar(96) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(96) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`telephone` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`fax` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sms` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'mobile phone number',
`salt` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`password` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`cart` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`wishlist` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`newsletter` int NOT NULL DEFAULT '0',
`address_id` int NOT NULL DEFAULT '0',
`status` int NOT NULL,
`approved` int NOT NULL DEFAULT '0',
`customer_group_id` int NOT NULL,
`ip` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`data` text COLLATE utf8mb4_unicode_ci,
`ext_fields` json DEFAULT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`last_login` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`customer_id`),
UNIQUE KEY `customers_loginname` (`loginname`),
KEY `[[dbprefix]]customers_idx` (`store_id`,`address_id`,`customer_group_id`),
FULLTEXT KEY `[[dbprefix]]customers_name_idx` (`firstname`,`lastname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=19 ;
--
-- Dumping data for table `[[dbprefix]]customers`
--
INSERT INTO `[[dbprefix]]customers` VALUES
(2, 0, 'Juliana', 'Davis', 'julidavis@abantecart.com', 'julidavis@abantecart.com', '(602) 141-7191', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 1, 1, 1, 1, '109.104.166.98', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(3, 0, 'Keely', 'Mccoy', 'keelymccoy@abantecart.com', 'keelymccoy@abantecart.com', '(602) 916-1822', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 2, 1, 1, 1, '109.104.166.98', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(4, 0, 'Zelda', 'Weiss', 'zeldaweiss@abantecart.com', 'zeldaweiss@abantecart.com', '(539) 838-9210', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 3, 1, 1, 1, '109.104.166.138', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(5, 0, 'Gloria', 'Macias', 'gloriamacias@abantecart.com', 'gloriamacias@abantecart.com', '(573) 500-2105', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 4, 1, 1, 1, '109.104.166.98', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(6, 0, 'Bernard', 'Horne', 'bernardhorne@abantecart.com', 'bernardhorne@abantecart.com', '(573) 500-2105', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 5, 1, 1, 1, '109.104.166.138', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(7, 0, 'James', 'Curtis', 'jamescurtis@abantecart.com', 'jamescurtis@abantecart.com', '(602) 916-1822', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 6, 1, 1, 1, '109.104.166.138', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(8, 0, 'Bruce', 'Rosarini', 'brucerosarini@abantecart.com', 'brucerosarini@abantecart.com', '(539) 838-9210', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 7, 1, 1, 1, '109.104.166.98', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(9, 0, 'Carlos', 'Compton', 'carloscmpton@abantecart.com', 'carloscmpton@abantecart.com', '(928) 205-0511', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 8, 1, 1, 1, '109.104.166.98', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(10, 0, 'Garrison', 'Baxter', 'garrisonbaxter@abantecart.com', 'garrisonbaxter@abantecart.com', '(803) 189-5001', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 9, 1, 1, 1, '109.104.166.138', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(11, 0, 'Anthony', 'Blair', 'anthonyblair@abantecart.com', 'anthonyblair@abantecart.com', '(402) 456-6398', '', '', '', '6b006ba67f3c172e146991a2ad46d865', 'a:0:{}', NULL, 0, 10, 1, 1, 1, '171.98.12.12', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(12, 0, 'Allen', 'Waters', 'allenwaters', 'allenwaters@abantecart.com', '(417) 280-7406', '', '', 'vkmQqxNw', 'e9aa1fed0f5c85e84ef9c9e8860c2732326e790b', 'a:0:{}', NULL, 0, 11, 1, 1, 1, '77.111.246.147', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(13, 0, 'Brock', 'Wheeler', 'michael', 'cotan@abantecart.com', '12893654499', '', '', 'QqHpW6DV', '189212083ca9de5f584e624b7a7c256af90fdcfb', 'a:0:{}', 'a:2:{i:108;i:1552911485;i:111;i:1552911579;}', 1, 12, 1, 1, 1, '77.111.246.167', NULL, NULL, '[[regtime]]', '[[regtime]]', NULL),
(14, 0, 'Yuri', 'Howard', 'howard566', 'howardinc@abantecart.com', '16943733146', '', '', '1IVINJ6A', '9980a6c101c48ba14277e5fcc7277fed31a8eb34', 'a:0:{}', NULL, 1, 13, 1, 1, 1, '77.111.247.7', 'N;', NULL, '[[regtime]]', '[[regtime]]', NULL),
(15, 0, 'Regan', 'Shields', 'RiaGardner', 'ricuvif@abantecart.com', '+1 (267) 125-5153', '', '', 'QaPiKdCR', '30a96d6489cc8089d2f66f1b3407334cfd5a5490', 'a:0:{}', NULL, 1, 14, 1, 1, 1, '23.129.64.106', 'N;', NULL, '[[regtime]]', '[[regtime]]', NULL),
(16, 0, 'Randall', 'Richards', 'randallri', 'randallri@abantecart.com', '17887737896', '', '', 'KGtkpKGm', '0664a4c600337892f120b53b81de10646e68ee91', 'a:1:{s:7:"store_0";a:1:{i:96;a:2:{s:3:"qty";i:2;s:7:"options";a:0:{}}}}', NULL, 0, 15, 1, 1, 1, '77.111.247.7', 'N;', NULL, '[[regtime]]', '[[regtime]]', NULL),
(17, 0, 'Michelle', 'Barnett', 'mbarnett', 'mbarnett@abantecart.com', '1 469 537-8505', '', '', 'XlUAn9uJ', 'f47de9ec3628658a74e781634caf9a76b1153ee6', NULL, NULL, 0, 17, 1, 1, 1, '', 'N;', NULL, '[[regtime]]', '[[regtime]]', NULL),
(18, 0, 'Elmer', 'West', 'X6QDsfu', 'elmer@abantecart.com', ' 1 (128) 392-8036', '', '', 'qkN3jME3', 'c05a1acf9a9c189533b8ce63db274a61e91e622b', 'a:1:{s:7:"store_0";a:103:{s:36:"115:5cba4f750e02abb06a5be0f06e274666";a:2:{s:3:"qty";i:1;s:7:"options";a:2:{i:342;s:3:"743";i:404;s:5:"gfddf";}}s:36:"115:2dc647c8b17b4ccecaa5d92effd9eeaf";a:2:{s:3:"qty";i:1;s:7:"options";a:2:{i:342;s:3:"744";i:404;s:3:"111";}}s:36:"115:28180855290c8c9c44737b328b571ee9";a:2:{s:3:"qty";i:4;s:7:"options";a:2:{i:342;s:3:"745";i:404;s:9:"456765787";}}i:131;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:165;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:164;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:162;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:163;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:161;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:139;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:160;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:138;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:36:"156:2b07b4d10632c7bff4bec4a101046faf";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:399;s:3:"874";}}s:36:"155:32c2e9da9b2f2345237b87451d60b84f";a:2:{s:3:"qty";i:3;s:7:"options";a:1:{i:398;s:3:"872";}}s:36:"157:6aa8e2c1dfc6e034560f3800d4917829";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:400;s:3:"876";}}s:36:"158:28e3af117692f4201fce21ecf6f8f53e";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:401;s:3:"878";}}s:36:"159:f270abbebd3fa32849aff306271123bd";a:2:{s:3:"qty";i:3;s:7:"options";a:1:{i:402;s:3:"881";}}s:36:"125:7235a986e40dfd6fb4368d6a51082723";a:2:{s:3:"qty";i:2;s:7:"options";a:1:{i:391;s:3:"859";}}s:36:"151:34ce24453dc79bf18967dc5f8c97c9be";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:394;s:3:"864";}}s:36:"152:d809b4aa4e2031d806f660abb4cb76ee";a:2:{s:3:"qty";i:3;s:7:"options";a:1:{i:395;s:3:"866";}}i:153;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:150;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:36:"145:d7e2147856134d399fef21f5974a6744";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:385;s:3:"847";}}s:36:"146:9d00b12a8a9ac34b003d9709f9f464c8";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:386;s:3:"849";}}s:36:"147:9c9d41ffab356d49888814b4f2b1f0cb";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:387;s:3:"851";}}s:36:"148:3e5982fcb6350355bfd7f527c9abbf4e";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:388;s:3:"853";}}s:36:"142:7898ea06f08354d9c870e3d345befef7";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:382;s:3:"841";}}s:36:"134:a9223e83409daad197efa7c3d8ad2ee4";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:373;s:3:"824";}}s:35:"53:ee705d4ae7846adb2c3e17d441a1009f";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:318;s:3:"652";}}s:35:"53:b1a0e11451071a263d5a530074cc3395";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:318;s:3:"653";}}i:52;a:2:{s:3:"qty";i:2;s:7:"options";a:0:{}}i:51;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:75;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:74;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:73;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:70;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:71;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:72;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:35:"69:eeeca3bfc8100dde326e86957e9a6530";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:317;s:3:"650";}}s:35:"63:65aa2de1a315740513d57700a595f6d2";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:316;s:3:"647";}}s:35:"63:f0ee771e76731e5a0413b4f15a14db41";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:316;s:3:"648";}}s:35:"63:545f48ecb97d7a1628419cf271302198";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:316;s:3:"649";}}s:35:"64:4a6352b281fa824da3c09c488b9da5a3";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:314;s:3:"642";}}s:35:"64:9f00c3e9cebe257a0d8aeac09dc4b5dd";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:314;s:3:"643";}}i:67;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:35:"61:eba0f047e459bb4a3056b25508e12b9f";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:308;s:3:"625";}}s:35:"61:858452a6f2d2951133d15d1c13277acb";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:308;s:3:"626";}}i:62;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:35:"60:5f8b507b181a05057d93220c99c1cf26";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:307;s:3:"622";}}i:93;a:2:{s:3:"qty";i:2;s:7:"options";a:0:{}}s:35:"59:440e65f322af942e2214c72e03177c2b";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:305;s:3:"615";}}s:35:"59:620a58973de6c7c5954c4ed2d88a0228";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:305;s:3:"616";}}s:35:"57:ae3056fceb4dfd9d0296b09777d3f229";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:304;s:3:"612";}}s:35:"57:370ad88f62136118f7ac72feacabfae1";a:2:{s:3:"qty";i:2;s:7:"options";a:1:{i:304;s:3:"613";}}s:35:"56:dada7bc1947940f2c55366451914de9a";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:319;s:3:"654";}}s:35:"55:5f15b4a30882c43681dba854ace7334e";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:306;s:3:"618";}}s:35:"55:e8db34041472435dcc7f2a7d608a09ac";a:2:{s:3:"qty";i:4;s:7:"options";a:1:{i:306;s:3:"619";}}s:36:"120:fa80aa5a6a63e55338799d7f2ada7e12";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:349;s:3:"773";}}s:36:"105:0d06b1d274719b783849b8fefbaf4786";a:2:{s:3:"qty";i:1;s:7:"options";a:2:{i:335;a:2:{i:0;s:3:"721";i:1;s:3:"722";}i:337;s:3:"723";}}s:36:"105:75cbcc99bfb333369498a06b77a02682";a:2:{s:3:"qty";i:1;s:7:"options";a:3:{i:335;a:2:{i:0;s:3:"720";i:1;s:3:"722";}i:337;s:3:"724";i:336;s:3:"yes";}}s:36:"106:6496c6289f0eaf2ff7bdb209576b4d46";a:2:{s:3:"qty";i:1;s:7:"options";a:2:{i:338;s:3:"731";i:339;s:3:"yes";}}s:36:"109:3e6f80443cbce01f9ae3e21da5f0ab14";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:340;s:3:"yes";}}s:36:"110:da0d1fb831ac71d6b13f1e60a75bf992";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:341;s:3:"738";}}i:113;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:114;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:36:"117:85a002586a2ea99ca83b9f6b7352a3ca";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:346;s:3:"756";}}s:36:"117:c392653d989af6c2fb05fa89d0ad4da9";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:346;s:3:"758";}}s:36:"117:2dfbe5bb56eaed33caefedd299af3dbf";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:346;s:3:"759";}}s:36:"116:d00a62f8ad226fbfdfbb2e2455d6eb83";a:2:{s:3:"qty";i:1;s:7:"options";a:2:{i:344;a:1:{i:0;s:3:"748";}i:345;s:3:"754";}}s:36:"116:f5346da9d272626f5fdb5d376f8a8eb3";a:2:{s:3:"qty";i:10;s:7:"options";a:2:{i:344;a:1:{i:0;s:3:"751";}i:345;s:3:"752";}}s:35:"78:2f6b2458b37e05cdff085ad39dcb080c";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:320;s:3:"660";}}i:79;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:76;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:86;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:88;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:87;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:35:"90:13993f688a965eb6fac5df1f1bd03309";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:326;s:3:"676";}}s:35:"89:a45ab41d0bddba8ea847d7b3f42c19d0";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:324;s:3:"672";}}i:92;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:94;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:91;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:95;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:96;a:2:{s:3:"qty";i:2;s:7:"options";a:0:{}}s:35:"99:728efcff89e7bc9a7cab157a7b6b46f5";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:327;s:3:"678";}}i:103;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:97;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:98;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:36:"104:e74c6dd4ec8eacd20e2e54a1544b48df";a:2:{s:3:"qty";i:1;s:7:"options";a:2:{i:331;s:3:"713";i:332;s:1:"1";}}s:36:"102:c1d1ba48cdfdc495ed98f22b80419edb";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:330;s:3:"690";}}s:36:"101:77ddff2eb7368bc15959e015aeb4ee93";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:329;s:3:"687";}}i:77;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:36:"119:26a4a29af72e9fa902217e00730cfec7";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:348;s:3:"769";}}i:50;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:65;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:66;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:68;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}i:58;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:36:"123:2b2351e536ad293222b586fbf65d778f";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:353;s:3:"781";}}s:36:"122:e072997ce78a3aea542fef3375d40e20";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:352;s:3:"778";}}s:35:"80:d8601ba52a1351d969c41c14fd8dd827";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:321;s:3:"663";}}i:82;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}s:35:"84:3e0d468e2ae6d6615ed68b4e0e9ece75";a:2:{s:3:"qty";i:1;s:7:"options";a:1:{i:322;s:3:"666";}}i:83;a:2:{s:3:"qty";i:1;s:7:"options";a:0:{}}}}', NULL, 0, 18, 1, 1, 1, '77.111.246.40', 'N;', NULL, '[[regtime]]', '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]customer_groups`
--
CREATE TABLE `[[dbprefix]]customer_groups` (
`customer_group_id` int NOT NULL AUTO_INCREMENT,
`name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`tax_exempt` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`customer_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `[[dbprefix]]customer_groups`
--
INSERT INTO `[[dbprefix]]customer_groups` VALUES
(1, 'Default', 0),
(2, 'Wholesalers', 1),
(3, 'Newsletter Subscribers', 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]customer_notifications`
--
CREATE TABLE `[[dbprefix]]customer_notifications` (
`customer_id` int NOT NULL,
`sendpoint` varchar(255) NOT NULL,
`protocol` varchar(30) NOT NULL,
`status` int NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`customer_id`,`sendpoint`,`protocol`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]customer_sessions`
--
CREATE TABLE `[[dbprefix]]customer_sessions` (
`customer_id` int NOT NULL AUTO_INCREMENT,
`session_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ip` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`last_active` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`customer_id`,`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]customer_transactions`
--
CREATE TABLE `[[dbprefix]]customer_transactions` (
`customer_transaction_id` int NOT NULL AUTO_INCREMENT,
`customer_id` int NOT NULL DEFAULT '0',
`order_id` int NOT NULL DEFAULT '0',
`created_by` int NOT NULL COMMENT 'user_id for admin, customer_id for storefront section',
`section` smallint NOT NULL DEFAULT '0' COMMENT '1 - admin, 0 - customer',
`credit` decimal(15,4) DEFAULT '0.0000',
`debit` decimal(15,4) DEFAULT '0.0000',
`transaction_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'text type of transaction',
`comment` text COLLATE utf8mb4_unicode_ci COMMENT 'comment for internal use',
`description` text COLLATE utf8mb4_unicode_ci COMMENT 'text for customer',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`customer_transaction_id`),
KEY `[[dbprefix]]customer_transactions_idx` (`customer_id`,`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]custom_blocks`
--
CREATE TABLE `[[dbprefix]]custom_blocks` (
`custom_block_id` int NOT NULL AUTO_INCREMENT,
`block_id` int NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`custom_block_id`,`block_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=21 ;
--
-- Dumping data for table `[[dbprefix]]custom_blocks`
--
INSERT INTO `[[dbprefix]]custom_blocks` VALUES
(1, 17, '[[regtime]]', '[[regtime]]'),
(2, 17, '[[regtime]]', '[[regtime]]'),
(3, 17, '[[regtime]]', '[[regtime]]'),
(4, 17, '[[regtime]]', '[[regtime]]'),
(5, 17, '[[regtime]]', '[[regtime]]'),
(6, 17, '[[regtime]]', '[[regtime]]'),
(7, 23, '[[regtime]]', '[[regtime]]'),
(8, 20, '[[regtime]]', '[[regtime]]'),
(9, 17, '[[regtime]]', '[[regtime]]'),
(10, 17, '[[regtime]]', '[[regtime]]'),
(11, 17, '[[regtime]]', '[[regtime]]'),
(12, 17, '[[regtime]]', '[[regtime]]'),
(13, 17, '[[regtime]]', '[[regtime]]'),
(14, 17, '[[regtime]]', '[[regtime]]'),
(15, 17, '[[regtime]]', '[[regtime]]'),
(16, 17, '[[regtime]]', '[[regtime]]'),
(17, 20, '[[regtime]]', '[[regtime]]'),
(18, 17, '[[regtime]]', '[[regtime]]'),
(19, 17, '[[regtime]]', '[[regtime]]'),
(20, 17, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]custom_lists`
--
CREATE TABLE `[[dbprefix]]custom_lists` (
`rowid` int NOT NULL AUTO_INCREMENT,
`custom_block_id` int NOT NULL,
`data_type` varchar(70) COLLATE utf8mb4_unicode_ci NOT NULL,
`id` int NOT NULL,
`store_id` int DEFAULT NULL,
`sort_order` int NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`rowid`),
KEY `[[dbprefix]]custom_block_id_list_idx` (`custom_block_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `[[dbprefix]]custom_lists`
--
INSERT INTO `[[dbprefix]]custom_lists` VALUES
(1, 12, 'manufacturer_id', 12, 0, 0, '[[regtime]]', '[[regtime]]'),
(2, 12, 'manufacturer_id', 14, 0, 0, '[[regtime]]', '[[regtime]]'),
(3, 12, 'manufacturer_id', 13, 0, 0, '[[regtime]]', '[[regtime]]'),
(4, 12, 'manufacturer_id', 18, 0, 0, '[[regtime]]', '[[regtime]]'),
(5, 12, 'manufacturer_id', 19, 0, 0, '[[regtime]]', '[[regtime]]'),
(6, 12, 'manufacturer_id', 20, 0, 0, '[[regtime]]', '[[regtime]]'),
(7, 12, 'manufacturer_id', 15, 0, 0, '[[regtime]]', '[[regtime]]'),
(8, 12, 'manufacturer_id', 11, 0, 0, '[[regtime]]', '[[regtime]]'),
(9, 12, 'manufacturer_id', 17, 0, 0, '[[regtime]]', '[[regtime]]'),
(10, 12, 'manufacturer_id', 16, 0, 0, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]datasets`
--
CREATE TABLE `[[dbprefix]]datasets` (
`dataset_id` int NOT NULL AUTO_INCREMENT,
`dataset_name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`dataset_key` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT '',
PRIMARY KEY (`dataset_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `[[dbprefix]]datasets`
--
INSERT INTO `[[dbprefix]]datasets` VALUES
(1, 'menu', 'storefront'),
(2, 'menu', 'admin'),
(3, 'menu', 'storefront_description'),
(4, 'install_upgrade_history', 'admin'),
(5, 'file_uploads', 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]dataset_column_properties`
--
CREATE TABLE `[[dbprefix]]dataset_column_properties` (
`rowid` int NOT NULL AUTO_INCREMENT,
`dataset_column_id` int NOT NULL,
`dataset_column_property_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`dataset_column_property_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`rowid`),
KEY `dataset_column_properties_idx` (`dataset_column_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]dataset_definition`
--
CREATE TABLE `[[dbprefix]]dataset_definition` (
`dataset_id` int NOT NULL,
`dataset_column_id` int NOT NULL AUTO_INCREMENT,
`dataset_column_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`dataset_column_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`dataset_column_sort_order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`dataset_column_id`),
KEY `dataset_definition_idx` (`dataset_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=41 ;
--
-- Dumping data for table `[[dbprefix]]dataset_definition`
--
INSERT INTO `[[dbprefix]]dataset_definition` VALUES
(1, 1, 'item_id', 'varchar', 1),
(1, 2, 'item_icon', 'varchar', 2),
(1, 3, 'item_url', 'varchar', 3),
(1, 4, 'parent_id', 'varchar', 4),
(1, 5, 'sort_order', 'integer', 5),
(1, 6, 'item_type', 'varchar', 6),
(1, 7, 'item_icon_rl_id', 'integer', 7),
(1, 8, 'settings', 'text', 8),
(2, 10, 'item_id', 'varchar', 1),
(2, 11, 'item_text', 'varchar', 2),
(2, 12, 'item_url', 'varchar', 3),
(2, 13, 'parent_id', 'varchar', 4),
(2, 14, 'sort_order', 'integer', 5),
(2, 15, 'item_type', 'varchar', 6),
(3, 16, 'item_id', 'varchar', 1),
(3, 17, 'item_text', 'varchar', 2),
(3, 18, 'language_id', 'integer', 3),
(4, 20, 'date_added', 'timestamp', 1),
(4, 21, 'name', 'varchar', 2),
(4, 22, 'version', 'varchar', 3),
(4, 23, 'backup_file', 'varchar', 4),
(4, 24, 'backup_date', 'timestamp', 5),
(4, 25, 'type', 'varchar', 6),
(4, 26, 'user', 'varchar', 7),
(5, 30, 'date_added', 'timestamp', 1),
(5, 31, 'name', 'varchar', 2),
(5, 32, 'type', 'varchar', 3),
(5, 33, 'section', 'varchar', 4),
(5, 34, 'section_id', 'integer', 5),
(5, 35, 'path', 'varchar', 6),
(2, 40, 'item_icon_rl_id', 'varchar', 7);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]dataset_properties`
--
CREATE TABLE `[[dbprefix]]dataset_properties` (
`rowid` int NOT NULL AUTO_INCREMENT,
`dataset_id` int NOT NULL,
`dataset_property_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`dataset_property_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`rowid`),
KEY `dataset_property_idx` (`dataset_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `[[dbprefix]]dataset_properties`
--
INSERT INTO `[[dbprefix]]dataset_properties` VALUES
(1, 1, 'controller', 'design/menu'),
(2, 4, 'controller', 'tool/install_upgrade_history'),
(3, 5, 'controller', 'tool/files');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]dataset_values`
--
CREATE TABLE `[[dbprefix]]dataset_values` (
`dataset_column_id` int NOT NULL,
`value_integer` int DEFAULT NULL,
`value_float` float DEFAULT NULL,
`value_varchar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value_text` text COLLATE utf8mb4_unicode_ci,
`value_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`value_boolean` tinyint(1) DEFAULT NULL,
`value_sort_order` int NOT NULL AUTO_INCREMENT,
`row_id` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`value_sort_order`),
KEY `dataset_values_idx` (`value_integer`,`value_float`,`value_varchar`,`value_boolean`,`row_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=766 ;
--
-- Dumping data for table `[[dbprefix]]dataset_values`
--
INSERT INTO `[[dbprefix]]dataset_values` VALUES
(1, NULL, NULL, 'home', NULL, '[[regtime]]', NULL, 1, 1),
(1, NULL, NULL, 'login', NULL, '[[regtime]]', NULL, 2, 2),
(1, NULL, NULL, 'logout', NULL, '[[regtime]]', NULL, 3, 3),
(1, NULL, NULL, 'account', NULL, '[[regtime]]', NULL, 4, 4),
(1, NULL, NULL, 'cart', NULL, '[[regtime]]', NULL, 5, 5),
(1, NULL, NULL, 'checkout', NULL, '[[regtime]]', NULL, 6, 6),
(1, NULL, NULL, 'specials', NULL, '[[regtime]]', NULL, 7, 7),
(1, NULL, NULL, 'order', NULL, '[[regtime]]', NULL, 8, 8),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 9, 1),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 10, 2),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 11, 3),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 12, 4),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 13, 5),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 14, 6),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 15, 7),
(2, NULL, NULL, '', NULL, '[[regtime]]', NULL, 16, 8),
(3, NULL, NULL, 'index/home', NULL, '[[regtime]]', NULL, 17, 1),
(3, NULL, NULL, 'account/login', NULL, '[[regtime]]', NULL, 18, 2),
(3, NULL, NULL, 'account/logout', NULL, '[[regtime]]', NULL, 19, 3),
(3, NULL, NULL, 'account/account', NULL, '[[regtime]]', NULL, 20, 4),
(3, NULL, NULL, 'checkout/cart', NULL, '[[regtime]]', NULL, 21, 5),
(3, NULL, NULL, 'checkout/fast_checkout', NULL, '[[regtime]]', NULL, 22, 6),
(3, NULL, NULL, 'product/special', NULL, '[[regtime]]', NULL, 23, 7),
(3, NULL, NULL, 'account/order_details', NULL, '[[regtime]]', NULL, 24, 8),
(4, NULL, NULL, '', NULL, '[[regtime]]', NULL, 25, 1),
(4, NULL, NULL, 'account', NULL, '[[regtime]]', NULL, 26, 2),
(4, NULL, NULL, 'account', NULL, '[[regtime]]', NULL, 27, 3),
(4, NULL, NULL, '', NULL, '[[regtime]]', NULL, 28, 4),
(4, NULL, NULL, '', NULL, '[[regtime]]', NULL, 29, 5),
(4, NULL, NULL, '', NULL, '[[regtime]]', NULL, 30, 6),
(4, NULL, NULL, '', NULL, '[[regtime]]', NULL, 31, 7),
(4, NULL, NULL, 'account', NULL, '[[regtime]]', NULL, 32, 8),
(5, 10, NULL, NULL, NULL, '[[regtime]]', NULL, 33, 1),
(5, 11, NULL, NULL, NULL, '[[regtime]]', NULL, 34, 2),
(5, 12, NULL, NULL, NULL, '[[regtime]]', NULL, 35, 3),
(5, 20, NULL, NULL, NULL, '[[regtime]]', NULL, 36, 4),
(5, 30, NULL, NULL, NULL, '[[regtime]]', NULL, 37, 5),
(5, 50, NULL, NULL, NULL, '[[regtime]]', NULL, 38, 6),
(5, 60, NULL, NULL, NULL, '[[regtime]]', NULL, 39, 7),
(5, 13, NULL, NULL, NULL, '[[regtime]]', NULL, 40, 8),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 41, 1),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 42, 2),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 43, 3),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 44, 4),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 45, 5),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 46, 6),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 47, 7),
(6, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 48, 8),
(7, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 49, 1),
(7, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 50, 2),
(7, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 51, 3),
(7, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 52, 4),
(7, 250, NULL, NULL, NULL, '[[regtime]]', NULL, 53, 5),
(7, 282, NULL, NULL, NULL, '[[regtime]]', NULL, 54, 6),
(7, 244, NULL, NULL, NULL, '[[regtime]]', NULL, 55, 7),
(7, 266, NULL, NULL, NULL, '[[regtime]]', NULL, 56, 8),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 57, 1),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 58, 2),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 59, 3),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 60, 4),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 61, 5),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 62, 6),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 63, 7),
(8, NULL, NULL, NULL, 'a:3:{s:6:"status";s:1:"1";s:16:"include_children";s:1:"0";s:6:"target";s:5:"_self";}', '[[regtime]]', NULL, 64, 8),
(10, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 65, 1),
(10, NULL, NULL, 'sale', NULL, '[[regtime]]', NULL, 66, 2),
(10, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 67, 3),
(10, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 68, 4),
(10, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 69, 5),
(10, NULL, NULL, 'reports', NULL, '[[regtime]]', NULL, 70, 6),
(10, NULL, NULL, 'help', NULL, '[[regtime]]', NULL, 71, 7),
(11, NULL, NULL, 'text_catalog', NULL, '[[regtime]]', NULL, 72, 1),
(11, NULL, NULL, 'text_sale', NULL, '[[regtime]]', NULL, 73, 2),
(11, NULL, NULL, 'text_design', NULL, '[[regtime]]', NULL, 74, 3),
(11, NULL, NULL, 'text_extension', NULL, '[[regtime]]', NULL, 75, 4),
(11, NULL, NULL, 'text_system', NULL, '[[regtime]]', NULL, 76, 5),
(11, NULL, NULL, 'text_reports', NULL, '[[regtime]]', NULL, 77, 6),
(11, NULL, NULL, 'text_help', NULL, '[[regtime]]', NULL, 78, 7),
(12, NULL, NULL, 'catalog/category', NULL, '[[regtime]]', NULL, 79, 1),
(12, NULL, NULL, 'sale/order', NULL, '[[regtime]]', NULL, 80, 2),
(12, NULL, NULL, 'design/template', NULL, '[[regtime]]', NULL, 81, 3),
(12, NULL, NULL, 'extension/extensions/extensions', NULL, '[[regtime]]', NULL, 82, 4),
(12, NULL, NULL, 'setting/setting', NULL, '[[regtime]]', NULL, 83, 5),
(12, NULL, NULL, 'report/sale/orders', NULL, '[[regtime]]', NULL, 84, 6),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 85, 7),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 86, 1),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 87, 2),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 88, 3),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 89, 4),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 90, 5),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 91, 6),
(13, NULL, NULL, '', NULL, '[[regtime]]', NULL, 92, 7),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 93, 1),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 94, 2),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 95, 3),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 96, 4),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 97, 5),
(14, 6, NULL, NULL, NULL, '[[regtime]]', NULL, 98, 6),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 99, 7),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 100, 1),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 101, 2),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 102, 3),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 103, 4),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 104, 5),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 105, 6),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 106, 7),
(40, NULL, NULL, '200', NULL, '[[regtime]]', NULL, 107, 1),
(40, NULL, NULL, '201', NULL, '[[regtime]]', NULL, 108, 2),
(40, NULL, NULL, '202', NULL, '[[regtime]]', NULL, 109, 3),
(40, NULL, NULL, '203', NULL, '[[regtime]]', NULL, 110, 4),
(40, NULL, NULL, '204', NULL, '[[regtime]]', NULL, 111, 5),
(40, NULL, NULL, '205', NULL, '[[regtime]]', NULL, 112, 6),
(40, NULL, NULL, '206', NULL, '[[regtime]]', NULL, 113, 7),
(10, NULL, NULL, 'category', NULL, '[[regtime]]', NULL, 114, 11),
(10, NULL, NULL, 'product', NULL, '[[regtime]]', NULL, 115, 12),
(10, NULL, NULL, 'manufacturer', NULL, '[[regtime]]', NULL, 116, 13),
(10, NULL, NULL, 'download', NULL, '[[regtime]]', NULL, 117, 14),
(10, NULL, NULL, 'review', NULL, '[[regtime]]', NULL, 118, 15),
(10, NULL, NULL, 'attributes', NULL, '[[regtime]]', NULL, 119, 16),
(10, NULL, NULL, 'collections', NULL, '[[regtime]]', NULL, 120, 17),
(10, NULL, NULL, 'rl_manager', NULL, '[[regtime]]', NULL, 121, 220),
(11, NULL, NULL, 'text_category', NULL, '[[regtime]]', NULL, 122, 11),
(11, NULL, NULL, 'text_product', NULL, '[[regtime]]', NULL, 123, 12),
(11, NULL, NULL, 'text_manufacturer', NULL, '[[regtime]]', NULL, 124, 13),
(11, NULL, NULL, 'text_download', NULL, '[[regtime]]', NULL, 125, 14),
(11, NULL, NULL, 'text_review', NULL, '[[regtime]]', NULL, 126, 15),
(11, NULL, NULL, 'text_attribute', NULL, '[[regtime]]', NULL, 127, 16),
(11, NULL, NULL, 'text_collection', NULL, '[[regtime]]', NULL, 128, 17),
(11, NULL, NULL, 'text_rl_manager', NULL, '[[regtime]]', NULL, 129, 220),
(12, NULL, NULL, 'catalog/category', NULL, '[[regtime]]', NULL, 130, 11),
(12, NULL, NULL, 'catalog/product', NULL, '[[regtime]]', NULL, 131, 12),
(12, NULL, NULL, 'catalog/manufacturer', NULL, '[[regtime]]', NULL, 132, 13),
(12, NULL, NULL, 'catalog/download', NULL, '[[regtime]]', NULL, 133, 14),
(12, NULL, NULL, 'catalog/review', NULL, '[[regtime]]', NULL, 134, 15),
(12, NULL, NULL, 'catalog/attribute', NULL, '[[regtime]]', NULL, 135, 16),
(12, NULL, NULL, 'catalog/collections', NULL, '[[regtime]]', NULL, 136, 17),
(12, NULL, NULL, 'tool/rl_manager', NULL, '[[regtime]]', NULL, 137, 220),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 138, 11),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 139, 12),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 140, 13),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 141, 14),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 142, 15),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 143, 16),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 144, 17),
(13, NULL, NULL, 'catalog', NULL, '[[regtime]]', NULL, 145, 220),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 146, 11),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 147, 12),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 148, 13),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 149, 14),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 150, 15),
(14, 6, NULL, NULL, NULL, '[[regtime]]', NULL, 151, 16),
(14, 8, NULL, NULL, NULL, '[[regtime]]', NULL, 152, 17),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 153, 220),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 154, 11),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 155, 12),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 156, 13),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 157, 14),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 158, 15),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 159, 16),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 160, 17),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 161, 220),
(40, NULL, NULL, '207', NULL, '[[regtime]]', NULL, 162, 11),
(40, NULL, NULL, '208', NULL, '[[regtime]]', NULL, 163, 12),
(40, NULL, NULL, '209', NULL, '[[regtime]]', NULL, 164, 13),
(40, NULL, NULL, '210', NULL, '[[regtime]]', NULL, 165, 14),
(40, NULL, NULL, '211', NULL, '[[regtime]]', NULL, 166, 15),
(40, NULL, NULL, '212', NULL, '[[regtime]]', NULL, 167, 16),
(40, NULL, NULL, '279', NULL, '[[regtime]]', NULL, 168, 17),
(40, NULL, NULL, '277', NULL, '[[regtime]]', NULL, 169, 220),
(10, NULL, NULL, 'extensions', NULL, '[[regtime]]', NULL, 170, 31),
(10, NULL, NULL, 'shipping', NULL, '[[regtime]]', NULL, 171, 32),
(10, NULL, NULL, 'payment', NULL, '[[regtime]]', NULL, 172, 33),
(10, NULL, NULL, 'templates', NULL, '[[regtime]]', NULL, 173, 34),
(10, NULL, NULL, 'languages', NULL, '[[regtime]]', NULL, 174, 35),
(10, NULL, NULL, 'taxes', NULL, '[[regtime]]', NULL, 175, 36),
(10, NULL, NULL, 'total', NULL, '[[regtime]]', NULL, 176, 37),
(10, NULL, NULL, 'add_extension', NULL, '[[regtime]]', NULL, 177, 38),
(10, NULL, NULL, 'extensions_stores', NULL, '[[regtime]]', NULL, 178, 39),
(11, NULL, NULL, 'text_extensions', NULL, '[[regtime]]', NULL, 179, 31),
(11, NULL, NULL, 'text_shipping', NULL, '[[regtime]]', NULL, 180, 32),
(11, NULL, NULL, 'text_payment', NULL, '[[regtime]]', NULL, 181, 33),
(11, NULL, NULL, 'text_templates', NULL, '[[regtime]]', NULL, 182, 34),
(11, NULL, NULL, 'text_language', NULL, '[[regtime]]', NULL, 183, 35),
(11, NULL, NULL, 'text_taxes', NULL, '[[regtime]]', NULL, 184, 36),
(11, NULL, NULL, 'text_total', NULL, '[[regtime]]', NULL, 185, 37),
(11, NULL, NULL, 'text_add_extension', NULL, '[[regtime]]', NULL, 186, 38),
(11, NULL, NULL, 'text_extensions_store', NULL, '[[regtime]]', NULL, 187, 39),
(12, NULL, NULL, 'extension/extensions/extensions', NULL, '[[regtime]]', NULL, 188, 31),
(12, NULL, NULL, 'extension/extensions/shipping', NULL, '[[regtime]]', NULL, 189, 32),
(12, NULL, NULL, 'extension/extensions/payment', NULL, '[[regtime]]', NULL, 190, 33),
(12, NULL, NULL, 'extension/extensions/template', NULL, '[[regtime]]', NULL, 191, 34),
(12, NULL, NULL, 'extension/extensions/language', NULL, '[[regtime]]', NULL, 192, 35),
(12, NULL, NULL, 'extension/extensions/tax', NULL, '[[regtime]]', NULL, 193, 36),
(12, NULL, NULL, 'extension/total', NULL, '[[regtime]]', NULL, 194, 37),
(12, NULL, NULL, 'tool/package_installer', NULL, '[[regtime]]', NULL, 195, 38),
(12, NULL, NULL, 'extension/extensions_store', NULL, '[[regtime]]', NULL, 196, 39),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 197, 31),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 198, 32),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 199, 33),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 200, 34),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 201, 35),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 202, 36),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 203, 37),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 204, 38),
(13, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 205, 39),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 206, 31),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 207, 32),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 208, 33),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 209, 34),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 210, 35),
(14, 6, NULL, NULL, NULL, '[[regtime]]', NULL, 211, 36),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 212, 37),
(14, 8, NULL, NULL, NULL, '[[regtime]]', NULL, 213, 38),
(14, 9, NULL, NULL, NULL, '[[regtime]]', NULL, 214, 39),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 215, 31),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 216, 32),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 217, 33),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 218, 34),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 219, 35),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 220, 36),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 221, 37),
(40, NULL, NULL, '213', NULL, '[[regtime]]', NULL, 222, 31),
(40, NULL, NULL, '214', NULL, '[[regtime]]', NULL, 223, 32),
(40, NULL, NULL, '260', NULL, '[[regtime]]', NULL, 224, 33),
(40, NULL, NULL, '216', NULL, '[[regtime]]', NULL, 225, 34),
(40, NULL, NULL, '217', NULL, '[[regtime]]', NULL, 226, 35),
(40, NULL, NULL, '215', NULL, '[[regtime]]', NULL, 227, 36),
(40, NULL, NULL, '218', NULL, '[[regtime]]', NULL, 228, 37),
(40, NULL, NULL, '219', NULL, '[[regtime]]', NULL, 229, 38),
(40, NULL, NULL, '220', NULL, '[[regtime]]', NULL, 230, 39),
(10, NULL, NULL, 'order', NULL, '[[regtime]]', NULL, 231, 51),
(10, NULL, NULL, 'customer', NULL, '[[regtime]]', NULL, 232, 52),
(10, NULL, NULL, 'customer_group', NULL, '[[regtime]]', NULL, 233, 53),
(10, NULL, NULL, 'coupon', NULL, '[[regtime]]', NULL, 234, 54),
(10, NULL, NULL, 'contact', NULL, '[[regtime]]', NULL, 235, 55),
(11, NULL, NULL, 'text_order', NULL, '[[regtime]]', NULL, 236, 51),
(11, NULL, NULL, 'text_customer', NULL, '[[regtime]]', NULL, 237, 52),
(11, NULL, NULL, 'text_customer_group', NULL, '[[regtime]]', NULL, 238, 53),
(11, NULL, NULL, 'text_coupon', NULL, '[[regtime]]', NULL, 239, 54),
(11, NULL, NULL, 'text_contact', NULL, '[[regtime]]', NULL, 240, 55),
(12, NULL, NULL, 'sale/order', NULL, '[[regtime]]', NULL, 241, 51),
(12, NULL, NULL, 'sale/customer', NULL, '[[regtime]]', NULL, 242, 52),
(12, NULL, NULL, 'sale/customer_group', NULL, '[[regtime]]', NULL, 243, 53),
(12, NULL, NULL, 'sale/coupon', NULL, '[[regtime]]', NULL, 244, 54),
(12, NULL, NULL, 'sale/contact', NULL, '[[regtime]]', NULL, 245, 55),
(13, NULL, NULL, 'sale', NULL, '[[regtime]]', NULL, 246, 51),
(13, NULL, NULL, 'sale', NULL, '[[regtime]]', NULL, 247, 52),
(13, NULL, NULL, 'sale', NULL, '[[regtime]]', NULL, 248, 53),
(13, NULL, NULL, 'sale', NULL, '[[regtime]]', NULL, 249, 54),
(13, NULL, NULL, 'sale', NULL, '[[regtime]]', NULL, 250, 55),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 251, 51),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 252, 52),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 253, 53),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 254, 54),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 255, 55),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 256, 51),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 257, 52),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 258, 53),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 259, 54),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 260, 55),
(40, NULL, NULL, '221', NULL, '[[regtime]]', NULL, 261, 51),
(40, NULL, NULL, '222', NULL, '[[regtime]]', NULL, 262, 52),
(40, NULL, NULL, '223', NULL, '[[regtime]]', NULL, 263, 53),
(40, NULL, NULL, '224', NULL, '[[regtime]]', NULL, 264, 54),
(40, NULL, NULL, '225', NULL, '[[regtime]]', NULL, 265, 55),
(10, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 266, 71),
(10, NULL, NULL, 'users', NULL, '[[regtime]]', NULL, 267, 72),
(10, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 268, 73),
(10, NULL, NULL, 'data', NULL, '[[regtime]]', NULL, 269, 74),
(10, NULL, NULL, 'updater', NULL, '[[regtime]]', NULL, 270, 77),
(10, NULL, NULL, 'cache', NULL, '[[regtime]]', NULL, 271, 78),
(10, NULL, NULL, 'messages', NULL, '[[regtime]]', NULL, 272, 79),
(10, NULL, NULL, 'logs', NULL, '[[regtime]]', NULL, 273, 80),
(11, NULL, NULL, 'text_setting', NULL, '[[regtime]]', NULL, 274, 71),
(11, NULL, NULL, 'text_users', NULL, '[[regtime]]', NULL, 275, 72),
(11, NULL, NULL, 'text_localisation', NULL, '[[regtime]]', NULL, 276, 73),
(11, NULL, NULL, 'text_data', NULL, '[[regtime]]', NULL, 277, 74),
(11, NULL, NULL, 'text_updater', NULL, '[[regtime]]', NULL, 278, 77),
(11, NULL, NULL, 'text_cache', NULL, '[[regtime]]', NULL, 279, 78),
(11, NULL, NULL, 'text_messages', NULL, '[[regtime]]', NULL, 280, 79),
(11, NULL, NULL, 'text_logs', NULL, '[[regtime]]', NULL, 281, 80),
(12, NULL, NULL, 'setting/setting', NULL, '[[regtime]]', NULL, 282, 71),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 283, 72),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 284, 73),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 285, 74),
(12, NULL, NULL, 'tool/updater', NULL, '[[regtime]]', NULL, 286, 77),
(12, NULL, NULL, 'tool/cache', NULL, '[[regtime]]', NULL, 287, 78),
(12, NULL, NULL, 'tool/message_manager', NULL, '[[regtime]]', NULL, 288, 79),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 289, 80),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 290, 71),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 291, 72),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 292, 73),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 293, 74),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 294, 77),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 295, 78),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 296, 79),
(13, NULL, NULL, 'system', NULL, '[[regtime]]', NULL, 297, 80),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 298, 71),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 299, 72),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 300, 73),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 301, 74),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 302, 77),
(14, 8, NULL, NULL, NULL, '[[regtime]]', NULL, 303, 78),
(14, 9, NULL, NULL, NULL, '[[regtime]]', NULL, 304, 79),
(14, 10, NULL, NULL, NULL, '[[regtime]]', NULL, 305, 80),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 306, 71),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 307, 72),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 308, 73),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 309, 74),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 310, 77),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 311, 78),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 312, 79),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 313, 80),
(40, NULL, NULL, '226', NULL, '[[regtime]]', NULL, 314, 71),
(40, NULL, NULL, '227', NULL, '[[regtime]]', NULL, 315, 72),
(40, NULL, NULL, '228', NULL, '[[regtime]]', NULL, 316, 73),
(40, NULL, NULL, '229', NULL, '[[regtime]]', NULL, 317, 74),
(40, NULL, NULL, '230', NULL, '[[regtime]]', NULL, 318, 77),
(40, NULL, NULL, '231', NULL, '[[regtime]]', NULL, 319, 78),
(40, NULL, NULL, '232', NULL, '[[regtime]]', NULL, 320, 79),
(40, NULL, NULL, '233', NULL, '[[regtime]]', NULL, 321, 80),
(10, NULL, NULL, 'report_sale', NULL, '[[regtime]]', NULL, 322, 91),
(10, NULL, NULL, 'report_customer', NULL, '[[regtime]]', NULL, 323, 92),
(10, NULL, NULL, 'report_product', NULL, '[[regtime]]', NULL, 324, 93),
(10, NULL, NULL, 'report_analytics', NULL, '[[regtime]]', NULL, 325, 221),
(10, NULL, NULL, 'banner_manager_stat', NULL, '[[regtime]]', NULL, 326, 94),
(11, NULL, NULL, 'text_report_sale', NULL, '[[regtime]]', NULL, 327, 91),
(11, NULL, NULL, 'text_customer', NULL, '[[regtime]]', NULL, 328, 92),
(11, NULL, NULL, 'text_product', NULL, '[[regtime]]', NULL, 329, 93),
(11, NULL, NULL, 'text_analytics', NULL, '[[regtime]]', NULL, 330, 221),
(11, NULL, NULL, 'banner_manager_name_stat', NULL, '[[regtime]]', NULL, 331, 94),
(12, NULL, NULL, 'report/sale/orders', NULL, '[[regtime]]', NULL, 332, 91),
(12, NULL, NULL, 'report/customer/online', NULL, '[[regtime]]', NULL, 333, 92),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 334, 93),
(12, NULL, NULL, '', NULL, '[[regtime]]', NULL, 335, 221),
(12, NULL, NULL, 'extension/banner_manager_stat', NULL, '[[regtime]]', NULL, 336, 94),
(13, NULL, NULL, 'reports', NULL, '[[regtime]]', NULL, 337, 91),
(13, NULL, NULL, 'reports', NULL, '[[regtime]]', NULL, 338, 92),
(13, NULL, NULL, 'reports', NULL, '[[regtime]]', NULL, 339, 93),
(13, NULL, NULL, 'reports', NULL, '[[regtime]]', NULL, 340, 221),
(13, NULL, NULL, 'reports', NULL, '[[regtime]]', NULL, 341, 94),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 342, 91),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 343, 92),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 344, 93),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 345, 221),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 346, 94),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 347, 91),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 348, 92),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 349, 93),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 350, 221),
(15, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 351, 94),
(40, NULL, NULL, '234', NULL, '[[regtime]]', NULL, 352, 91),
(40, NULL, NULL, '222', NULL, '[[regtime]]', NULL, 353, 92),
(40, NULL, NULL, '208', NULL, '[[regtime]]', NULL, 354, 93),
(40, NULL, NULL, '234', NULL, '[[regtime]]', NULL, 355, 221),
(40, NULL, NULL, '237', NULL, '[[regtime]]', NULL, 356, 94),
(10, NULL, NULL, 'abantecart', NULL, '[[regtime]]', NULL, 357, 111),
(10, NULL, NULL, 'documentation', NULL, '[[regtime]]', NULL, 358, 112),
(10, NULL, NULL, 'support', NULL, '[[regtime]]', NULL, 359, 113),
(10, NULL, NULL, 'marketplace', NULL, '[[regtime]]', NULL, 360, 114),
(11, NULL, NULL, 'text_abantecart', NULL, '[[regtime]]', NULL, 361, 111),
(11, NULL, NULL, 'text_documentation', NULL, '[[regtime]]', NULL, 362, 112),
(11, NULL, NULL, 'text_support', NULL, '[[regtime]]', NULL, 363, 113),
(11, NULL, NULL, 'text_extensions_store', NULL, '[[regtime]]', NULL, 364, 114),
(12, NULL, NULL, 'window.open(''https://www.abantecart.com'');', NULL, '[[regtime]]', NULL, 365, 111),
(12, NULL, NULL, 'window.open(''https://docs.abantecart.com'');', NULL, '[[regtime]]', NULL, 366, 112),
(12, NULL, NULL, 'window.open(''https://forum.abantecart.com'');', NULL, '[[regtime]]', NULL, 367, 113),
(12, NULL, NULL, 'window.open(''https://marketplace.abantecart.com'');', NULL, '[[regtime]]', NULL, 368, 114),
(13, NULL, NULL, 'help', NULL, '[[regtime]]', NULL, 369, 111),
(13, NULL, NULL, 'help', NULL, '[[regtime]]', NULL, 370, 112),
(13, NULL, NULL, 'help', NULL, '[[regtime]]', NULL, 371, 113),
(13, NULL, NULL, 'help', NULL, '[[regtime]]', NULL, 372, 114),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 373, 111),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 374, 112),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 375, 113),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 376, 114),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 377, 111),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 378, 112),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 379, 113),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 380, 114),
(40, NULL, NULL, '238', NULL, '[[regtime]]', NULL, 381, 111),
(40, NULL, NULL, '239', NULL, '[[regtime]]', NULL, 382, 112),
(40, NULL, NULL, '240', NULL, '[[regtime]]', NULL, 383, 113),
(40, NULL, NULL, '203', NULL, '[[regtime]]', NULL, 384, 114),
(10, NULL, NULL, 'template', NULL, '[[regtime]]', NULL, 385, 131),
(10, NULL, NULL, 'layout', NULL, '[[regtime]]', NULL, 386, 132),
(10, NULL, NULL, 'blocks', NULL, '[[regtime]]', NULL, 387, 133),
(10, NULL, NULL, 'menu', NULL, '[[regtime]]', NULL, 388, 134),
(10, NULL, NULL, 'content', NULL, '[[regtime]]', NULL, 389, 135),
(10, NULL, NULL, 'banner_manager', NULL, '[[regtime]]', NULL, 390, 136),
(10, NULL, NULL, 'forms_manager', NULL, '[[regtime]]', NULL, 391, 200),
(10, NULL, NULL, 'email_templates', NULL, '[[regtime]]', NULL, 392, 137),
(11, NULL, NULL, 'text_templates', NULL, '[[regtime]]', NULL, 393, 131),
(11, NULL, NULL, 'text_layout', NULL, '[[regtime]]', NULL, 394, 132),
(11, NULL, NULL, 'text_blocks', NULL, '[[regtime]]', NULL, 395, 133),
(11, NULL, NULL, 'text_menu', NULL, '[[regtime]]', NULL, 396, 134),
(11, NULL, NULL, 'text_content', NULL, '[[regtime]]', NULL, 397, 135),
(11, NULL, NULL, 'banner_manager_name', NULL, '[[regtime]]', NULL, 398, 136),
(11, NULL, NULL, 'forms_manager_name', NULL, '[[regtime]]', NULL, 399, 200),
(11, NULL, NULL, 'email_templates', NULL, '[[regtime]]', NULL, 400, 137),
(12, NULL, NULL, 'design/template', NULL, '[[regtime]]', NULL, 401, 131),
(12, NULL, NULL, 'design/layout', NULL, '[[regtime]]', NULL, 402, 132),
(12, NULL, NULL, 'design/blocks', NULL, '[[regtime]]', NULL, 403, 133),
(12, NULL, NULL, 'design/menu', NULL, '[[regtime]]', NULL, 404, 134),
(12, NULL, NULL, 'design/content', NULL, '[[regtime]]', NULL, 405, 135),
(12, NULL, NULL, 'extension/banner_manager', NULL, '[[regtime]]', NULL, 406, 136),
(12, NULL, NULL, 'design/email_templates', NULL, '[[regtime]]', NULL, 407, 137),
(12, NULL, NULL, 'tool/forms_manager', NULL, '[[regtime]]', NULL, 408, 200),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 409, 131),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 410, 132),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 411, 133),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 412, 134),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 413, 135),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 414, 136),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 415, 137),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 416, 200),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 417, 131),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 418, 132),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 419, 133),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 420, 134),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 421, 135),
(14, 6, NULL, NULL, NULL, '[[regtime]]', NULL, 422, 136),
(14, 8, NULL, NULL, NULL, '[[regtime]]', NULL, 423, 137),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 424, 200),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 425, 131),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 426, 132),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 427, 133),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 428, 134),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 429, 135),
(15, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 430, 136),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 431, 137),
(15, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 432, 200),
(40, NULL, NULL, '241', NULL, '[[regtime]]', NULL, 433, 131),
(40, NULL, NULL, '242', NULL, '[[regtime]]', NULL, 434, 132),
(40, NULL, NULL, '243', NULL, '[[regtime]]', NULL, 435, 133),
(40, NULL, NULL, '244', NULL, '[[regtime]]', NULL, 436, 134),
(40, NULL, NULL, '245', NULL, '[[regtime]]', NULL, 437, 135),
(40, NULL, NULL, '246', NULL, '[[regtime]]', NULL, 438, 136),
(40, NULL, NULL, '280', NULL, '[[regtime]]', NULL, 439, 137),
(40, NULL, NULL, '248', NULL, '[[regtime]]', NULL, 440, 200),
(10, NULL, NULL, 'all_settings', NULL, '[[regtime]]', NULL, 441, 191),
(10, NULL, NULL, 'settings_details', NULL, '[[regtime]]', NULL, 442, 192),
(10, NULL, NULL, 'settings_general', NULL, '[[regtime]]', NULL, 443, 193),
(10, NULL, NULL, 'settings_checkout', NULL, '[[regtime]]', NULL, 444, 194),
(10, NULL, NULL, 'settings_appearance', NULL, '[[regtime]]', NULL, 445, 195),
(10, NULL, NULL, 'settings_mail', NULL, '[[regtime]]', NULL, 446, 196),
(10, NULL, NULL, 'settings_im', NULL, '[[regtime]]', NULL, 447, 219),
(10, NULL, NULL, 'settings_api', NULL, '[[regtime]]', NULL, 448, 197),
(10, NULL, NULL, 'settings_system', NULL, '[[regtime]]', NULL, 449, 198),
(10, NULL, NULL, 'settings_newstore', NULL, '[[regtime]]', NULL, 450, 199),
(11, NULL, NULL, 'text_all_settings', NULL, '[[regtime]]', NULL, 451, 191),
(11, NULL, NULL, 'text_settings_details', NULL, '[[regtime]]', NULL, 452, 192),
(11, NULL, NULL, 'text_settings_general', NULL, '[[regtime]]', NULL, 453, 193),
(11, NULL, NULL, 'text_settings_checkout', NULL, '[[regtime]]', NULL, 454, 194),
(11, NULL, NULL, 'text_settings_appearance', NULL, '[[regtime]]', NULL, 455, 195),
(11, NULL, NULL, 'text_settings_mail', NULL, '[[regtime]]', NULL, 456, 196),
(11, NULL, NULL, 'text_settings_im', NULL, '[[regtime]]', NULL, 457, 219),
(11, NULL, NULL, 'text_settings_api', NULL, '[[regtime]]', NULL, 458, 197),
(11, NULL, NULL, 'text_settings_system', NULL, '[[regtime]]', NULL, 459, 198),
(11, NULL, NULL, 'text_settings_newstore', NULL, '[[regtime]]', NULL, 460, 199),
(12, NULL, NULL, 'setting/setting/all', NULL, '[[regtime]]', NULL, 461, 191),
(12, NULL, NULL, 'setting/setting/details', NULL, '[[regtime]]', NULL, 462, 192),
(12, NULL, NULL, 'setting/setting/general', NULL, '[[regtime]]', NULL, 463, 193),
(12, NULL, NULL, 'setting/setting/checkout', NULL, '[[regtime]]', NULL, 464, 194),
(12, NULL, NULL, 'setting/setting/appearance', NULL, '[[regtime]]', NULL, 465, 195),
(12, NULL, NULL, 'setting/setting/mail', NULL, '[[regtime]]', NULL, 466, 196),
(12, NULL, NULL, 'setting/setting/im', NULL, '[[regtime]]', NULL, 467, 219),
(12, NULL, NULL, 'setting/setting/api', NULL, '[[regtime]]', NULL, 468, 197),
(12, NULL, NULL, 'setting/setting/system', NULL, '[[regtime]]', NULL, 469, 198),
(12, NULL, NULL, 'setting/store/insert', NULL, '[[regtime]]', NULL, 470, 199),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 471, 191),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 472, 192),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 473, 193),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 474, 194),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 475, 195),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 476, 196),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 477, 219),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 478, 197),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 479, 198),
(13, NULL, NULL, 'setting', NULL, '[[regtime]]', NULL, 480, 199),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 481, 191),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 482, 192),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 483, 193),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 484, 194),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 485, 195),
(14, 6, NULL, NULL, NULL, '[[regtime]]', NULL, 486, 196),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 487, 219),
(14, 8, NULL, NULL, NULL, '[[regtime]]', NULL, 488, 197),
(14, 9, NULL, NULL, NULL, '[[regtime]]', NULL, 489, 198),
(14, 10, NULL, NULL, NULL, '[[regtime]]', NULL, 490, 199),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 491, 191),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 492, 192),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 493, 193),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 494, 194),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 495, 195),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 496, 196),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 497, 219),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 498, 197),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 499, 198),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 500, 199),
(40, NULL, NULL, '247', NULL, '[[regtime]]', NULL, 501, 191),
(40, NULL, NULL, '248', NULL, '[[regtime]]', NULL, 502, 192),
(40, NULL, NULL, '249', NULL, '[[regtime]]', NULL, 503, 193),
(40, NULL, NULL, '250', NULL, '[[regtime]]', NULL, 504, 194),
(40, NULL, NULL, '251', NULL, '[[regtime]]', NULL, 505, 195),
(40, NULL, NULL, '252', NULL, '[[regtime]]', NULL, 506, 196),
(40, NULL, NULL, '276', NULL, '[[regtime]]', NULL, 507, 219),
(40, NULL, NULL, '253', NULL, '[[regtime]]', NULL, 508, 197),
(40, NULL, NULL, '254', NULL, '[[regtime]]', NULL, 509, 198),
(40, NULL, NULL, '255', NULL, '[[regtime]]', NULL, 510, 199),
(10, NULL, NULL, 'user', NULL, '[[regtime]]', NULL, 511, 151),
(10, NULL, NULL, 'permission', NULL, '[[regtime]]', NULL, 512, 152),
(11, NULL, NULL, 'text_user', NULL, '[[regtime]]', NULL, 513, 151),
(11, NULL, NULL, 'text_user_group', NULL, '[[regtime]]', NULL, 514, 152),
(12, NULL, NULL, 'user/user', NULL, '[[regtime]]', NULL, 515, 151),
(12, NULL, NULL, 'user/user_permission', NULL, '[[regtime]]', NULL, 516, 152),
(13, NULL, NULL, 'users', NULL, '[[regtime]]', NULL, 517, 151),
(13, NULL, NULL, 'users', NULL, '[[regtime]]', NULL, 518, 152),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 519, 151),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 520, 152),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 521, 151),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 522, 152),
(40, NULL, NULL, '256', NULL, '[[regtime]]', NULL, 523, 151),
(40, NULL, NULL, '257', NULL, '[[regtime]]', NULL, 524, 152),
(10, NULL, NULL, 'language', NULL, '[[regtime]]', NULL, 525, 171),
(10, NULL, NULL, 'language_definitions', NULL, '[[regtime]]', NULL, 526, 172),
(10, NULL, NULL, 'currency', NULL, '[[regtime]]', NULL, 527, 173),
(10, NULL, NULL, 'stockstatus', NULL, '[[regtime]]', NULL, 528, 174),
(10, NULL, NULL, 'orderstatus', NULL, '[[regtime]]', NULL, 529, 175),
(10, NULL, NULL, 'country', NULL, '[[regtime]]', NULL, 530, 176),
(10, NULL, NULL, 'zone', NULL, '[[regtime]]', NULL, 531, 177),
(10, NULL, NULL, 'location', NULL, '[[regtime]]', NULL, 532, 178),
(10, NULL, NULL, 'taxclass', NULL, '[[regtime]]', NULL, 533, 179),
(10, NULL, NULL, 'lengthclass', NULL, '[[regtime]]', NULL, 534, 180),
(10, NULL, NULL, 'weightclass', NULL, '[[regtime]]', NULL, 535, 181),
(11, NULL, NULL, 'text_language', NULL, '[[regtime]]', NULL, 536, 171),
(11, NULL, NULL, 'text_language_definitions', NULL, '[[regtime]]', NULL, 537, 172),
(11, NULL, NULL, 'text_currency', NULL, '[[regtime]]', NULL, 538, 173),
(11, NULL, NULL, 'text_stock_status', NULL, '[[regtime]]', NULL, 539, 174),
(11, NULL, NULL, 'text_order_status', NULL, '[[regtime]]', NULL, 540, 175),
(11, NULL, NULL, 'text_country', NULL, '[[regtime]]', NULL, 541, 176),
(11, NULL, NULL, 'text_zone', NULL, '[[regtime]]', NULL, 542, 177),
(11, NULL, NULL, 'text_location', NULL, '[[regtime]]', NULL, 543, 178),
(11, NULL, NULL, 'text_tax_class', NULL, '[[regtime]]', NULL, 544, 179),
(11, NULL, NULL, 'text_length_class', NULL, '[[regtime]]', NULL, 545, 180),
(11, NULL, NULL, 'text_weight_class', NULL, '[[regtime]]', NULL, 546, 181),
(12, NULL, NULL, 'localisation/language', NULL, '[[regtime]]', NULL, 547, 171),
(12, NULL, NULL, 'localisation/language_definitions', NULL, '[[regtime]]', NULL, 548, 172),
(12, NULL, NULL, 'localisation/currency', NULL, '[[regtime]]', NULL, 549, 173),
(12, NULL, NULL, 'localisation/stock_status', NULL, '[[regtime]]', NULL, 550, 174),
(12, NULL, NULL, 'localisation/order_status', NULL, '[[regtime]]', NULL, 551, 175),
(12, NULL, NULL, 'localisation/country', NULL, '[[regtime]]', NULL, 552, 176),
(12, NULL, NULL, 'localisation/zone', NULL, '[[regtime]]', NULL, 553, 177),
(12, NULL, NULL, 'localisation/location', NULL, '[[regtime]]', NULL, 554, 178),
(12, NULL, NULL, 'localisation/tax_class', NULL, '[[regtime]]', NULL, 555, 179),
(12, NULL, NULL, 'localisation/length_class', NULL, '[[regtime]]', NULL, 556, 180),
(12, NULL, NULL, 'localisation/weight_class', NULL, '[[regtime]]', NULL, 557, 181),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 558, 171),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 559, 172),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 560, 173),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 561, 174),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 562, 175),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 563, 176),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 564, 177),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 565, 178),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 566, 179),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 567, 180),
(13, NULL, NULL, 'localisation', NULL, '[[regtime]]', NULL, 568, 181),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 569, 171),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 570, 172),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 571, 173),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 572, 174),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 573, 175),
(14, 6, NULL, NULL, NULL, '[[regtime]]', NULL, 574, 176),
(14, 7, NULL, NULL, NULL, '[[regtime]]', NULL, 575, 177),
(14, 8, NULL, NULL, NULL, '[[regtime]]', NULL, 576, 178),
(14, 9, NULL, NULL, NULL, '[[regtime]]', NULL, 577, 179),
(14, 10, NULL, NULL, NULL, '[[regtime]]', NULL, 578, 180),
(14, 11, NULL, NULL, NULL, '[[regtime]]', NULL, 579, 181),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 580, 171),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 581, 172),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 582, 173),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 583, 174),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 584, 175),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 585, 176),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 586, 177),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 587, 178),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 588, 179),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 589, 180),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 590, 181),
(40, NULL, NULL, '258', NULL, '[[regtime]]', NULL, 591, 171),
(40, NULL, NULL, '259', NULL, '[[regtime]]', NULL, 592, 172),
(40, NULL, NULL, '260', NULL, '[[regtime]]', NULL, 593, 173),
(40, NULL, NULL, '261', NULL, '[[regtime]]', NULL, 594, 174),
(40, NULL, NULL, '262', NULL, '[[regtime]]', NULL, 595, 175),
(40, NULL, NULL, '263', NULL, '[[regtime]]', NULL, 596, 176),
(40, NULL, NULL, '264', NULL, '[[regtime]]', NULL, 597, 177),
(40, NULL, NULL, '265', NULL, '[[regtime]]', NULL, 598, 178),
(40, NULL, NULL, '266', NULL, '[[regtime]]', NULL, 599, 179),
(40, NULL, NULL, '267', NULL, '[[regtime]]', NULL, 600, 180),
(40, NULL, NULL, '268', NULL, '[[regtime]]', NULL, 601, 181),
(10, NULL, NULL, 'backup', NULL, '[[regtime]]', NULL, 602, 183),
(10, NULL, NULL, 'migrate', NULL, '[[regtime]]', NULL, 603, 184),
(10, NULL, NULL, 'datasets', NULL, '[[regtime]]', NULL, 604, 185),
(10, NULL, NULL, 'import_export', NULL, '[[regtime]]', NULL, 605, 182),
(10, NULL, NULL, 'file_uploads', NULL, '[[regtime]]', NULL, 606, 188),
(11, NULL, NULL, 'text_backup', NULL, '[[regtime]]', NULL, 607, 183),
(11, NULL, NULL, 'text_migrate', NULL, '[[regtime]]', NULL, 608, 184),
(11, NULL, NULL, 'text_datasets_manager', NULL, '[[regtime]]', NULL, 609, 185),
(11, NULL, NULL, 'text_import_export', NULL, '[[regtime]]', NULL, 610, 182),
(11, NULL, NULL, 'text_file_uploads', NULL, '[[regtime]]', NULL, 611, 188),
(12, NULL, NULL, 'tool/backup', NULL, '[[regtime]]', NULL, 612, 183),
(12, NULL, NULL, 'tool/migration/step_one', NULL, '[[regtime]]', NULL, 613, 184),
(12, NULL, NULL, 'tool/datasets_manager', NULL, '[[regtime]]', NULL, 614, 185),
(12, NULL, NULL, 'tool/import_export', NULL, '[[regtime]]', NULL, 615, 182),
(12, NULL, NULL, 'tool/files', NULL, '[[regtime]]', NULL, 616, 188),
(13, NULL, NULL, 'data', NULL, '[[regtime]]', NULL, 617, 183),
(13, NULL, NULL, 'data', NULL, '[[regtime]]', NULL, 618, 184),
(13, NULL, NULL, 'data', NULL, '[[regtime]]', NULL, 619, 185),
(13, NULL, NULL, 'data', NULL, '[[regtime]]', NULL, 620, 182),
(13, NULL, NULL, 'data', NULL, '[[regtime]]', NULL, 621, 188),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 622, 183),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 623, 184),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 624, 185),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 625, 182),
(14, 5, NULL, NULL, NULL, '[[regtime]]', NULL, 626, 188),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 627, 183),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 628, 184),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 629, 185),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 630, 182),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 631, 188),
(40, NULL, NULL, '269', NULL, '[[regtime]]', NULL, 632, 183),
(40, NULL, NULL, '270', NULL, '[[regtime]]', NULL, 633, 184),
(40, NULL, NULL, '271', NULL, '[[regtime]]', NULL, 634, 185),
(40, NULL, NULL, '272', NULL, '[[regtime]]', NULL, 635, 182),
(40, NULL, NULL, '273', NULL, '[[regtime]]', NULL, 636, 188),
(10, NULL, NULL, 'installlog', NULL, '[[regtime]]', NULL, 637, 186),
(10, NULL, NULL, 'error_log', NULL, '[[regtime]]', NULL, 638, 187),
(10, NULL, NULL, 'task', NULL, '[[regtime]]', NULL, 639, 189),
(11, NULL, NULL, 'text_install_upgrade_history', NULL, '[[regtime]]', NULL, 640, 186),
(11, NULL, NULL, 'text_error_log', NULL, '[[regtime]]', NULL, 641, 187),
(11, NULL, NULL, 'text_tasks', NULL, '[[regtime]]', NULL, 642, 189),
(12, NULL, NULL, 'tool/install_upgrade_history', NULL, '[[regtime]]', NULL, 643, 186),
(12, NULL, NULL, 'tool/error_log', NULL, '[[regtime]]', NULL, 644, 187),
(12, NULL, NULL, 'tool/task', NULL, '[[regtime]]', NULL, 645, 189),
(13, NULL, NULL, 'logs', NULL, '[[regtime]]', NULL, 646, 186),
(13, NULL, NULL, 'logs', NULL, '[[regtime]]', NULL, 647, 187),
(13, NULL, NULL, 'logs', NULL, '[[regtime]]', NULL, 648, 189),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 649, 186),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 650, 187),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 651, 189),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 652, 186),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 653, 187),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 654, 189),
(40, NULL, NULL, '274', NULL, '[[regtime]]', NULL, 655, 186),
(40, NULL, NULL, '275', NULL, '[[regtime]]', NULL, 656, 187),
(40, NULL, NULL, '254', NULL, '[[regtime]]', NULL, 657, 189),
(10, NULL, NULL, 'report_sale_orders', NULL, '[[regtime]]', NULL, 658, 210),
(10, NULL, NULL, 'report_sale_tax', NULL, '[[regtime]]', NULL, 659, 211),
(10, NULL, NULL, 'report_sale_shipping', NULL, '[[regtime]]', NULL, 660, 212),
(10, NULL, NULL, 'report_sale_coupon', NULL, '[[regtime]]', NULL, 661, 213),
(11, NULL, NULL, 'text_order', NULL, '[[regtime]]', NULL, 662, 210),
(11, NULL, NULL, 'text_tax', NULL, '[[regtime]]', NULL, 663, 211),
(11, NULL, NULL, 'text_shipping', NULL, '[[regtime]]', NULL, 664, 212),
(11, NULL, NULL, 'text_discount', NULL, '[[regtime]]', NULL, 665, 213),
(12, NULL, NULL, 'report/sale/orders', NULL, '[[regtime]]', NULL, 666, 210),
(12, NULL, NULL, 'report/sale/taxes', NULL, '[[regtime]]', NULL, 667, 211),
(12, NULL, NULL, 'report/sale/shipping', NULL, '[[regtime]]', NULL, 668, 212),
(12, NULL, NULL, 'report/sale/coupons', NULL, '[[regtime]]', NULL, 669, 213),
(13, NULL, NULL, 'report_sale', NULL, '[[regtime]]', NULL, 670, 210),
(13, NULL, NULL, 'report_sale', NULL, '[[regtime]]', NULL, 671, 211),
(13, NULL, NULL, 'report_sale', NULL, '[[regtime]]', NULL, 672, 212),
(13, NULL, NULL, 'report_sale', NULL, '[[regtime]]', NULL, 673, 213),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 674, 210),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 675, 211),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 676, 212),
(14, 4, NULL, NULL, NULL, '[[regtime]]', NULL, 677, 213),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 678, 210),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 679, 211),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 680, 212),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 681, 213),
(40, NULL, NULL, '221', NULL, '[[regtime]]', NULL, 682, 210),
(40, NULL, NULL, '266', NULL, '[[regtime]]', NULL, 683, 211),
(40, NULL, NULL, '214', NULL, '[[regtime]]', NULL, 684, 212),
(40, NULL, NULL, '224', NULL, '[[regtime]]', NULL, 685, 213),
(10, NULL, NULL, 'report_customer_online', NULL, '[[regtime]]', NULL, 686, 214);
INSERT INTO `[[dbprefix]]dataset_values` VALUES
(10, NULL, NULL, 'report_customer_order', NULL, '[[regtime]]', NULL, 687, 215),
(10, NULL, NULL, 'report_customer_transactions', NULL, '[[regtime]]', NULL, 688, 216),
(11, NULL, NULL, 'text_online', NULL, '[[regtime]]', NULL, 689, 214),
(11, NULL, NULL, 'text_order', NULL, '[[regtime]]', NULL, 690, 215),
(11, NULL, NULL, 'text_balance_history', NULL, '[[regtime]]', NULL, 691, 216),
(12, NULL, NULL, 'report/customer/online', NULL, '[[regtime]]', NULL, 692, 214),
(12, NULL, NULL, 'report/customer/orders', NULL, '[[regtime]]', NULL, 693, 215),
(12, NULL, NULL, 'report/customer/transactions', NULL, '[[regtime]]', NULL, 694, 216),
(13, NULL, NULL, 'report_customer', NULL, '[[regtime]]', NULL, 695, 214),
(13, NULL, NULL, 'report_customer', NULL, '[[regtime]]', NULL, 696, 215),
(13, NULL, NULL, 'report_customer', NULL, '[[regtime]]', NULL, 697, 216),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 698, 214),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 699, 215),
(14, 3, NULL, NULL, NULL, '[[regtime]]', NULL, 700, 216),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 701, 214),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 702, 215),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 703, 216),
(40, NULL, NULL, '222', NULL, '[[regtime]]', NULL, 704, 214),
(40, NULL, NULL, '221', NULL, '[[regtime]]', NULL, 705, 215),
(40, NULL, NULL, '260', NULL, '[[regtime]]', NULL, 706, 216),
(10, NULL, NULL, 'report_product_viewed', NULL, '[[regtime]]', NULL, 707, 217),
(10, NULL, NULL, 'report_product_purchased', NULL, '[[regtime]]', NULL, 708, 218),
(11, NULL, NULL, 'text_report_viewed', NULL, '[[regtime]]', NULL, 709, 217),
(11, NULL, NULL, 'text_report_purchased', NULL, '[[regtime]]', NULL, 710, 218),
(12, NULL, NULL, 'report/viewed', NULL, '[[regtime]]', NULL, 711, 217),
(12, NULL, NULL, 'report/purchased', NULL, '[[regtime]]', NULL, 712, 218),
(13, NULL, NULL, 'report_product', NULL, '[[regtime]]', NULL, 713, 217),
(13, NULL, NULL, 'report_product', NULL, '[[regtime]]', NULL, 714, 218),
(14, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 715, 217),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 716, 218),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 717, 217),
(15, NULL, NULL, 'core', NULL, '[[regtime]]', NULL, 718, 218),
(40, NULL, NULL, '235', NULL, '[[regtime]]', NULL, 719, 217),
(40, NULL, NULL, '236', NULL, '[[regtime]]', NULL, 720, 218),
(16, NULL, NULL, 'home', NULL, '[[regtime]]', NULL, 721, 1),
(16, NULL, NULL, 'login', NULL, '[[regtime]]', NULL, 722, 2),
(16, NULL, NULL, 'logout', NULL, '[[regtime]]', NULL, 723, 3),
(16, NULL, NULL, 'account', NULL, '[[regtime]]', NULL, 724, 4),
(16, NULL, NULL, 'cart', NULL, '[[regtime]]', NULL, 725, 5),
(16, NULL, NULL, 'checkout', NULL, '[[regtime]]', NULL, 726, 6),
(16, NULL, NULL, 'specials', NULL, '[[regtime]]', NULL, 727, 14),
(16, NULL, NULL, 'order', NULL, '[[regtime]]', NULL, 728, 15),
(17, NULL, NULL, 'Home', NULL, '[[regtime]]', NULL, 729, 1),
(17, NULL, NULL, 'Login', NULL, '[[regtime]]', NULL, 730, 2),
(17, NULL, NULL, 'Logout', NULL, '[[regtime]]', NULL, 731, 3),
(17, NULL, NULL, 'Account', NULL, '[[regtime]]', NULL, 732, 4),
(17, NULL, NULL, 'Cart', NULL, '[[regtime]]', NULL, 733, 5),
(17, NULL, NULL, 'Checkout', NULL, '[[regtime]]', NULL, 734, 6),
(17, NULL, NULL, 'Specials', NULL, '[[regtime]]', NULL, 735, 14),
(17, NULL, NULL, 'Check Your Order', NULL, '[[regtime]]', NULL, 736, 15),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 737, 1),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 738, 2),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 739, 3),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 740, 4),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 741, 5),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 742, 6),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 743, 14),
(18, 1, NULL, NULL, NULL, '[[regtime]]', NULL, 744, 15),
(20, NULL, NULL, NULL, NULL, '[[regtime]]', NULL, 745, 1),
(21, NULL, NULL, 'AbanteCart', NULL, '[[regtime]]', NULL, 746, 1),
(22, NULL, NULL, '1.4.4', NULL, '[[regtime]]', NULL, 747, 1),
(23, NULL, NULL, '', NULL, '[[regtime]]', NULL, 748, 1),
(24, NULL, NULL, '', NULL, '[[regtime]]', NULL, 749, 1),
(25, NULL, NULL, 'install', NULL, '[[regtime]]', NULL, 750, 1),
(26, NULL, NULL, 'admin', NULL, '[[regtime]]', NULL, 751, 1),
(20, NULL, NULL, NULL, NULL, '[[regtime_yest]]', NULL, 752, 2),
(21, NULL, NULL, 'novator', NULL, '[[regtime]]', NULL, 753, 2),
(22, NULL, NULL, '', NULL, '[[regtime]]', NULL, 754, 2),
(23, NULL, NULL, '', NULL, '[[regtime]]', NULL, 755, 2),
(24, NULL, NULL, NULL, NULL, '0000-00-00 00:00:00', NULL, 756, 2),
(25, NULL, NULL, 'install', NULL, '[[regtime]]', NULL, 757, 2),
(26, NULL, NULL, 'install', NULL, '[[regtime]]', NULL, 758, 2),
(10, NULL, NULL, 'page_builder', NULL, '[[regtime]]', NULL, 759, 222),
(13, NULL, NULL, 'design', NULL, '[[regtime]]', NULL, 760, 222),
(11, NULL, NULL, 'page_builder_name', NULL, '[[regtime]]', NULL, 761, 222),
(12, NULL, NULL, 'design/page_builder', NULL, '[[regtime]]', NULL, 762, 222),
(40, NULL, NULL, '100263', NULL, '[[regtime]]', NULL, 763, 222),
(15, NULL, NULL, 'extension', NULL, '[[regtime]]', NULL, 764, 222),
(14, 2, NULL, NULL, NULL, '[[regtime]]', NULL, 765, 222);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]downloads`
--
CREATE TABLE `[[dbprefix]]downloads` (
`download_id` int NOT NULL AUTO_INCREMENT,
`filename` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`mask` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`max_downloads` int DEFAULT NULL,
`expire_days` int DEFAULT NULL,
`sort_order` int NOT NULL,
`activate` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`activate_order_status_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`shared` int NOT NULL DEFAULT '0',
`status` int NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`download_id`),
KEY `[[dbprefix]]downloads_idx` (`activate_order_status_id`,`shared`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `[[dbprefix]]downloads`
--
INSERT INTO `[[dbprefix]]downloads` VALUES
(1, '100196', 'audio-cd.mp3', 50, NULL, 2, 'order_status', 'a:1:{i:0;s:1:"5";}', 0, 1, '[[regtime]]', '[[regtime]]'),
(2, '100197', 'sample.mp3', NULL, NULL, 1, 'before_order', 'a:1:{i:0;s:0:"";}', 0, 1, '[[regtime]]', '[[regtime]]'),
(5, 'download/18/79/f.pdf', 'size-fit-guide-print.pdf', NULL, NULL, 0, 'before_order', 'a:1:{i:0;s:0:"";}', 1, 1, '[[regtime]]', '[[regtime]]'),
(6, '100261', 'file-sample_150kB.pdf', NULL, NULL, 0, 'immediately', '0', 0, 1, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]download_attribute_values`
--
CREATE TABLE `[[dbprefix]]download_attribute_values` (
`download_attribute_id` int NOT NULL AUTO_INCREMENT,
`attribute_id` int NOT NULL,
`download_id` int NOT NULL,
`attribute_value_ids` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`download_attribute_id`),
KEY `[[dbprefix]]download_attribute_values_idx` (`attribute_id`,`download_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]download_descriptions`
--
CREATE TABLE `[[dbprefix]]download_descriptions` (
`download_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
PRIMARY KEY (`download_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]download_descriptions`
--
INSERT INTO `[[dbprefix]]download_descriptions` VALUES
(1, 1, 'Audio CD1'),
(2, 1, 'audio sample mp3'),
(5, 1, 'Find your fit'),
(6, 1, 'Sample PDF');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]email_templates`
--
CREATE TABLE `[[dbprefix]]email_templates` (
`id` int NOT NULL AUTO_INCREMENT,
`status` tinyint(1) NOT NULL,
`text_id` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`language_id` int NOT NULL,
`headers` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`subject` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL COMMENT 'translatable',
`html_body` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL COMMENT 'translatable',
`text_body` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL COMMENT 'translatable',
`allowed_placeholders` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`date_deleted` timestamp NULL DEFAULT NULL,
`store_id` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `email_templates_text_id_idx` (`text_id`,`language_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=26 ;
--
-- Dumping data for table `[[dbprefix]]email_templates`
--
INSERT INTO `[[dbprefix]]email_templates` VALUES
(1, 1, 'storefront_reset_password_link', 1, '', '{{store_name}} - Password reset', 'A password reset was requested from {{store_name}}<br />\r\nTo reset your password click link below:<br />\r\n<a href="{{ reset_link }}">{{ reset_link }}</a >\r\n<br /><br />\r\n{{{ text_project_label }}}', 'A password reset was requested from {{store_name}} \r\nTo reset your password click link below:\r\n{{ reset_link }}\r\n\r\n\r\n{{{ text_project_label }}}', 'store_name, reset_link, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(2, 1, 'storefront_welcome_email_activated', 1, '', 'Welcome, {{store_name}}', '<html>\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n </head>\r\n <body>\r\n <table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/ logo_uri}}\r\n {{^ logo_uri}}\r\n {{# logo_html}}\r\n {{logo_html}}\r\n {{/ logo_html}}\r\n {{/ logo_uri}}\r\n </a>\r\n </td>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>Welcome and thank you for registering at {{ store_name }}</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Your account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:<br/>\r\n<a href="{{ login_url }}">{{ login_url }}</a><br/>\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Thank you.<br/>\r\n {{ store_name }}\r\n<br/><br/>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n </table>\r\n </body>\r\n</html>', 'Welcome and thank you for registering at {{ store_name }}\r\n\r\nYour account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:\r\n{{ login_url }}\r\n\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n\r\nThank you.\r\n{{ store_name }}\r\n{{{ text_project_label }}}', 'store_name, login_url, store_url, logo_html, logo_uri, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(3, 1, 'storefront_welcome_email_approval', 1, '', 'Welcome, {{store_name}}', '<html>\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n </head>\r\n <body>\r\n <table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{#logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/logo_uri}}\r\n {{^logo_uri}}\r\n {{#logo_html}}\r\n {{logo_html}}\r\n {{/logo_html}}\r\n {{/logo_uri}}\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>Welcome and thank you for registering at {{ store_name }}</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Your account must be approved before you can login. Once approved you can log in by using your email address and password by visiting our website or at the following URL:<br/>\r\n<a href="{{ login_url }}">{{ login_url }}</a><br/>\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Thank you.<br/>\r\n {{ store_name }}\r\n<br/><br/>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n </table>\r\n </body>\r\n</html>', 'Welcome and thank you for registering at {{ store_name }}\r\n\r\nYour account must be approved before you can login. Once approved you can log in by using your email address and password by visiting our website or at the following URL:\r\n{{ login_url }}\r\n\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n\r\nThank you.\r\n{{ store_name }}\r\n{{{ text_project_label }}}', 'store_name, login_url, store_url, logo_html, logo_uri, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(4, 1, 'storefront_send_activate_link', 1, '', '{{store_name}} - Thank you for registering', '<html>\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n </head>\r\n <body>\r\n <table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{#logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/logo_uri}}\r\n {{^logo_uri}}\r\n {{#logo_html}}\r\n {{logo_html}}\r\n {{/logo_html}}\r\n {{/logo_uri}}\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>Welcome and thank you for registering at {{ store_name }}</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Before we can activate your account one last step must be taken to complete your registration.<br/>\r\nYou must complete this last step to become a registered member. Please click the following link to activate your account:<br/>\r\n{{{ activate_url }}}<br/>\r\n\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Thank you.<br/>\r\n {{ store_name }}\r\n<br/>\r\n<br/>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n </table>\r\n </body>\r\n</html>', 'Welcome and thank you for registering at {{ store_name }}!\r\n\r\nBefore we can activate your account one last step must be taken to complete your registration.\r\nYou must complete this last step to become a registered member. Please click the following link to activate your account\r\n{{ activate_url }}\r\n\r\nThank you,\r\n{{ store_name }}\r\n\r\n{{{ text_project_label }}}', 'store_name, activate_url, logo_uri, logo_html, store_url, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(5, 1, 'storefront_reset_password_notify', 1, '', '{{store_name}} - Password reset', 'Your password was successfully reset on {{store_name}}\r\n<br/>\r\n{{{ text_project_label }}}', 'Your password was successfully reset on {{store_name}}\r\n\r\n{{{ text_project_label }}}', 'store_name, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(6, 1, 'storefront_send_login_name', 1, '', '{{store_name}} - Login name reminder', 'Login name reminder was requested from {{store_name}} <br/>\r\n<br/>\r\nYour login name is: {{ login_name }}\r\n\r\n<br/>\r\n{{store_name}} \r\n<br/>\r\n<br/>\r\n{{{ text_project_label }}}', 'Login name reminder was requested from {{store_name}} \r\n\r\nYour login name is: {{ login_name }}\r\n\r\n{{store_name}} \r\n\r\n{{{ text_project_label }}}', 'store_name, login_name, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(7, 1, 'storefront_order_confirm', 1, '', '{{store_name}} - Order {{ order_id }}', '<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n <title> {{store_name}} - Order {{ order_id }} </title>\r\n</head>\r\n<body>\r\n<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/ logo_uri}}\r\n {{^ logo_uri}}\r\n {{# logo_html}}\r\n {{logo_html}}\r\n {{/ logo_html}}\r\n {{/ logo_uri}}\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left">Thank you for your interest in {{store_name}} products. Your order has been received and will be processed after payment is confirmed.</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color:#FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">Order Details</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left">Order ID: <span\r\n style="color: #069; font-weight: bold;">{{ order_id }}</span><br/>\r\n Date Ordered: {{ date_added }}<br>\r\n Payment Method: <strong>{{ payment_method }}</strong><br/>\r\n Shipping Method: <strong>{{ shipping_method }}</strong><br/>\r\n <br/>\r\n Email: <strong>{{ customer_email }}</strong><br/>\r\n Telephone: <strong>{{ customer_telephone }}</strong><br/>\r\n {{# customer_mobile_phone }}\r\n Telephone: <strong>{{ customer_mobile_phone }}</strong><br/>\r\n {{/ customer_mobile_phone }}\r\n {{# customer_fax }}\r\n Fax: <strong>{{ customer_fax }}</strong><br/>\r\n {{/ customer_fax }}\r\n IP Address:<strong>{{ customer_ip }}</strong>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table style="width: 100%; font-family: Verdana,sans-serif; font-size: 11px; color: #FFFFFF;">\r\n <tr style="background-color: #CCCCCC; text-transform: uppercase;">\r\n <th style="text-align: left; padding: 0.3em;">Shipping Address</th>\r\n <th style="text-align: left; padding: 0.3em;">Payment Address</th>\r\n </tr>\r\n <tr>\r\n <td style="padding: 0.3em; background-color: #EEEEEE; color: #000;">\r\n{{# shipping_data }}\r\n{{ firstname }} {{lastname}} <br/>\r\n{{# company }}\r\n{{{ company }}} <br/> \r\n{{/ company }}\r\n{{# address_1 }}\r\n{{{ address_1 }}} <br/> \r\n{{/ address_1 }}\r\n{{# address_2 }}\r\n{{{ address_2 }}} <br/> \r\n{{/ address_2 }}\r\n{{{ city }}} {{{ postcode }}} <br/> \r\n{{# zone }}\r\n{{{ zone }}} <br/> \r\n{{/ zone }}\r\n{{{ country }}}\r\n{{/ shipping_data }}\r\n</td>\r\n<td style="padding: 0.3em; background-color: #EEEEEE; color: #000;">\r\n{{# payment_data }}\r\n{{ firstname }} {{lastname}} <br/>\r\n{{# company }}\r\n{{{ company }}} <br/> \r\n{{/ company }}\r\n{{# address_1 }}\r\n{{{ address_1 }}} <br/> \r\n{{/ address_1 }}\r\n{{# address_2 }}\r\n{{{ address_2 }}} <br/> \r\n{{/ address_2 }}\r\n{{{ city }}} {{{ postcode }}} <br/> \r\n{{# zone }}\r\n{{{ zone }}} <br/> \r\n{{/ zone }}\r\n{{{ country }}}\r\n{{/ payment_data }}\r\n</td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left">\r\n <table style="width: 100%; font-family: Verdana,sans-serif; font-size: 11px; color: #000000;">\r\n <tr style="background-color: #CCCCCC;">\r\n <th style="width: 40%; padding: 0.3em; color: #FFFFFF;">Product</th>\r\n <th class="align_left" style="color: #FFFFFF;">Model</th>\r\n<th class="align_right"\r\n style="width: 10%; padding: 0.3em; color: #FFFFFF;">Price</th>\r\n <th class="align_right"\r\n style="width: 15%; padding: 0.3em; color: #FFFFFF;">Quantity</th>\r\n <th class="align_right"\r\n style="width: 20%; padding: 0.3em; color: #FFFFFF;">Total</th>\r\n </tr>\r\n {{# products }}\r\n <tr style="background-color: #EEEEEE; text-align: center;">\r\n <td class="align_left" style="text-align: left;">{{ name }}\r\n {{# option }}\r\n <br/>\r\n &nbsp;&nbsp;- {{ name}} {{ value }} \r\n {{/ option }}\r\n <td class="align_left"> {{ model }} </td>\r\n <td class="align_right"> {{ price }} </td>\r\n <td class="align_right"> {{ quantity }} </td>\r\n <td class="align_right"> {{ total }}</td>\r\n </tr>\r\n {{/ products }}\r\n {{# totals }}\r\n <tr style="text-align: right;">\r\n <td colspan="3">&nbsp;</td>\r\n <td style="background-color: #EEEEEE; font-weight: bold; padding: 0.3em;">{{ title }} </td>\r\n <td style="background-color: #EEEEEE; padding: 0.3em;"> {{ text }}</td>\r\n </tr>\r\n {{/ totals }}\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color: #FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;"></td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n {{# comment }}\r\n <tr>\r\n<td class="align_left"\r\n style="background-color: #069; color: #FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">The comments for your order are:</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"> {{{ comment }}} </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n {{/ comment }}\r\n {{# invoice }}\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color: #FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">To view your order click on the link below:</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"><a href="{{ invoice }}"> {{ invoice }}</a></td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n{{/ invoice }}\r\n <tr>\r\n <td class="align_center"\r\n style="font-size: 10px; border-top: 1px solid #069; text-decoration: none; color: #374953;">\r\n <a href="{{ store_url }}"\r\n style="color: #069; font-weight: bold; text-decoration: none;">{{ store_name }}</a>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n</table>\r\n</body>\r\n</html>\r\n', 'Thank you for your interest in {{store_name}} products. Your order has been received and will be processed after payment is confirmed.\r\n\r\nOrder Details\r\n\r\nOrder ID: {{ order_id }}\r\nDate Ordered: {{ date_added }}\r\nPayment Method: {{ payment_method }}\r\nShipping Method: {{ shipping_method }}\r\n\r\nEmail: {{ customer_email }}\r\nTelephone: {{ customer_telephone }}\r\n{{# customer_mobile_phone }}\r\nTelephone: {{ customer_mobile_phone }}\r\n{{/ customer_mobile_phone }}\r\n{{# customer_fax }}\r\nFax: {{ customer_fax }}\r\n{{/ customer_fax }}\r\nIP Address: {{ customer_ip }}\r\n\r\n{{# shipping_data }}\r\nShipping Address:\r\n{{{ firstname }}} {{{lastname}}}\r\n{{{ company }}} \r\n{{{ address_1 }}} \r\n{{{ address_2 }}}\r\n{{{ city }}} {{{ postcode }}}\r\n{{{ zone }}}\r\n{{{ country }}}\r\n{{/ shipping_data }}\r\n\r\n{{# payment_data }}\r\nPayment Address:\r\n{{{ firstname }}} {{{lastname}}}\r\n{{{ company }}} \r\n{{{ address_1 }}} \r\n{{{ address_2 }}}\r\n{{{ city }}} {{{ postcode }}}\r\n{{{ zone }}}\r\n{{{ country }}}\r\n{{/ payment_data }}\r\n\r\n\r\nProduct Model Price Quantity Total\r\n{{# products }}\r\n \r\n{{ name }} {{ model }} {{ price }} {{ quantity }} {{ total }}\r\n {{# option }}\r\n - {{ name}} {{ value }} \r\n {{/ option }}\r\n\r\n\r\n{{/ products }}\r\n{{# totals }}\r\n {{ title }} {{ text }}\r\n{{/ totals }}\r\n\r\n\r\n{{# comment }}\r\n The comments for your order are:\r\n {{{ comment }}} \r\n{{/ comment }}\r\n\r\n{{# invoice }}\r\nTo view your order click on the link below:\r\n{{ invoice }}\r\n{{/ invoice }}\r\n\r\n{{ store_name }}\r\n{{ text_project_label }}', 'store_name, order_id, store_url, logo_uri, logo_html, date_added, payment_method, shipping_method, customer_email, customer_telephone, customer_mobile_phone, customer_fax, customer_ip, shipping_data, payment_data, products, totals, comment, invoice, text_project_label, ', '[[regtime]]', '[[regtime]]', NULL, 0),
(8, 1, 'storefront_order_confirm_admin_notify', 1, '', '{{store_name}} - Order {{ order_id }}', '<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n <title> {{store_name}} - Order {{ order_id }} </title>\r\n</head>\r\n<body>\r\n<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/ logo_uri}}\r\n {{^ logo_uri}}\r\n {{# logo_html}}\r\n {{logo_html}}\r\n {{/ logo_html}}\r\n {{/ logo_uri}}\r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left">You have received an order.</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color:#FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">Order Details</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left">Order ID: <span\r\n style="color: #069; font-weight: bold;">{{ order_id }}</span><br/>\r\n Date Ordered: {{ date_added }}<br>\r\n Payment Method: <strong>{{ payment_method }}</strong><br/>\r\n Shipping Method: <strong>{{ shipping_method }}</strong><br/>\r\n <br/>\r\n Email: <strong>{{ customer_email }}</strong><br/>\r\n Telephone: <strong>{{ customer_telephone }}</strong><br/>\r\n {{# customer_mobile_phone }}\r\n Telephone: <strong>{{ customer_mobile_phone }}</strong><br/>\r\n {{/ customer_mobile_phone }}\r\n {{# customer_fax }}\r\n Fax: <strong>{{ customer_fax }}</strong><br/>\r\n {{/ customer_fax }}\r\n IP Address:<strong>{{ customer_ip }}</strong>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table style="width: 100%; font-family: Verdana,sans-serif; font-size: 11px; color: #FFFFFF;">\r\n <tr style="background-color: #CCCCCC; text-transform: uppercase;">\r\n <th style="text-align: left; padding: 0.3em;">Shipping Address</th>\r\n <th style="text-align: left; padding: 0.3em;">Payment Address</th>\r\n </tr>\r\n <tr>\r\n <td style="padding: 0.3em; background-color: #EEEEEE; color: #000;">\r\n{{# shipping_data }}\r\n{{ firstname }} {{lastname}} <br/>\r\n{{# company }}\r\n{{{ company }}} <br/> \r\n{{/ company }}\r\n{{# address_1 }}\r\n{{{ address_1 }}} <br/> \r\n{{/ address_1 }}\r\n{{# address_2 }}\r\n{{{ address_2 }}} <br/> \r\n{{/ address_2 }}\r\n{{{ city }}} {{{ postcode }}} <br/> \r\n{{# zone }}\r\n{{{ zone }}} <br/> \r\n{{/ zone }}\r\n{{{ country }}}\r\n{{/ shipping_data }}\r\n</td>\r\n <td style="padding: 0.3em; background-color: #EEEEEE; color: #000;">\r\n{{# payment_data }}\r\n{{ firstname }} {{lastname}} <br/>\r\n{{# company }}\r\n{{{ company }}} <br/> \r\n{{/ company }}\r\n{{# address_1 }}\r\n{{{ address_1 }}} <br/> \r\n{{/ address_1 }}\r\n{{# address_2 }}\r\n{{{ address_2 }}} <br/> \r\n{{/ address_2 }}\r\n{{{ city }}} {{{ postcode }}} <br/> \r\n{{# zone }}\r\n{{{ zone }}} <br/> \r\n{{/ zone }}\r\n{{{ country }}}\r\n{{/ payment_data }}\r\n</td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n<td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left">\r\n <table style="width: 100%; font-family: Verdana,sans-serif; font-size: 11px; color: #000000;">\r\n <tr style="background-color: #CCCCCC;">\r\n <th style="width: 40%; padding: 0.3em; color: #FFFFFF;">Product</th>\r\n <th class="align_left" style="color: #FFFFFF;">Model</th>\r\n <th class="align_right"\r\n style="width: 10%; padding: 0.3em; color: #FFFFFF;">Price</th>\r\n <th class="align_right"\r\n style="width: 15%; padding: 0.3em; color: #FFFFFF;">Quantity</th>\r\n <th class="align_right"\r\n style="width: 20%; padding: 0.3em; color: #FFFFFF;">Total</th>\r\n </tr>\r\n {{# products }}\r\n <tr style="background-color: #EEEEEE; text-align: center;">\r\n <td class="align_left" style="text-align: left;">{{ name }}\r\n {{# option }}\r\n <br/>\r\n &nbsp;&nbsp;- {{ name}} {{ value }} \r\n {{/ option }}\r\n <td class="align_left"> {{ model }} </td>\r\n <td class="align_right"> {{ price }} </td>\r\n <td class="align_right"> {{ quantity }} </td>\r\n <td class="align_right"> {{ total }}</td>\r\n </tr>\r\n {{/ products }}\r\n {{# totals }}\r\n <tr style="text-align: right;">\r\n <td colspan="3">&nbsp;</td>\r\n <td style="background-color: #EEEEEE; font-weight: bold; padding: 0.3em;">{{ title }} </td>\r\n <td style="background-color: #EEEEEE; padding: 0.3em;"> {{ text }}</td>\r\n </tr>\r\n {{/ totals }}\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color: #FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;"></td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n {{# comment }}\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color: #FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">The comments for your order are:</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"> {{{ comment }}} </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n {{/ comment }}\r\n {{# invoice }}\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color: #FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">To view your order click on the link below:</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n<td class="align_left"><a href="{{ invoice }}"> {{ invoice }}</a></td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n{{/ invoice }}\r\n <tr>\r\n <td class="align_center"\r\n style="font-size: 10px; border-top: 1px solid #069; text-decoration: none; color: #374953;">\r\n <a href="{{ store_url }}"\r\n style="color: #069; font-weight: bold; text-decoration: none;">{{ store_name }}</a>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n</table>\r\n</body>\r\n</html>\r\n', 'You have received an order.\r\n\r\nOrder Details\r\n\r\nOrder ID: {{ order_id }}\r\nDate Ordered: {{ date_added }}\r\nPayment Method: {{ payment_method }}\r\nShipping Method: {{ shipping_method }}\r\n\r\nEmail: {{ customer_email }}\r\nTelephone: {{ customer_telephone }}\r\n{{# customer_mobile_phone }}\r\nTelephone: {{ customer_mobile_phone }}\r\n{{/ customer_mobile_phone }}\r\n{{# customer_fax }}\r\nFax: {{ customer_fax }}\r\n{{/ customer_fax }}\r\nIP Address: {{ customer_ip }}\r\n\r\n{{# shipping_data }}\r\nShipping Address:\r\n{{{ firstname }}} {{{lastname}}}\r\n{{{ company }}}\r\n{{{ address_1 }}} \r\n{{{ address_2 }}}\r\n{{{ city }}} {{{ postcode }}}\r\n{{{ zone }}}\r\n{{{ country }}}\r\n{{/ shipping_data }}\r\n\r\n{{# payment_data }}\r\nPayment Address:\r\n{{{ firstname }}} {{{lastname}}} \r\n{{{ company }}}\r\n{{{ address_1 }}}\r\n{{{ address_2 }}}\r\n{{{ city }}} {{{ postcode }}}\r\n{{{ zone }}}\r\n{{{ country }}}\r\n{{/ payment_data }}\r\n\r\n\r\nProduct Model Price Quantity Total\r\n{{# products }}\r\n \r\n{{ name }} {{ model }} {{ price }} {{ quantity }} {{ total }}\r\n {{# option }}\r\n - {{ name}} {{ value }} \r\n {{/ option }}\r\n\r\n\r\n{{/ products }}\r\n{{# totals }}\r\n {{ title }} {{ text }}\r\n{{/ totals }}\r\n\r\n\r\n{{# comment }}\r\n The comments for your order are:\r\n {{{ comment }}} \r\n{{/ comment }}\r\n\r\n{{# invoice }}\r\nTo view your order click on the link below:\r\n{{ invoice }}\r\n{{/ invoice }}\r\n\r\n{{ store_name }}\r\n{{ text_project_label }}', 'store_name, order_id, store_url, logo_uri, logo_html, date_added, payment_method, shipping_method, customer_email, customer_telephone, customer_mobile_phone, customer_fax, customer_ip, shipping_data, payment_data, products, totals, comment, invoice, text_project_label, order_total', '[[regtime]]', '[[regtime]]', NULL, 0),
(11, 1, 'admin_order_status_notify', 1, '', '{{ store_name }} - Order Update {{ order_id }}', 'Order: {{ order_id }} <br/>\r\nDate added: {{ order_date_added }} <br/>\r\nOrder status: {{ order_status }} <br/>\r\nInvoice: {{ invoice }}<br/>\r\n<br/>\r\n\r\nComment:<br/>\r\n{{{ comment }}}<br/>\r\n\r\n<br/>\r\n\r\nPlease reply to this email if you have any questions.\r\n', 'Order: {{ order_id }} \r\nDate added: {{ order_date_added }} \r\nOrder status: {{ order_status }} \r\nInvoice: {{ invoice }}\r\n\r\nComment:\r\n{{{ comment }}}\r\n\r\nPlease reply to this email if you have any questions.\r\n', 'store_name, order_id, order_date_added, order_status, invoice, comment', '[[regtime]]', '[[regtime]]', NULL, 0),
(12, 1, 'admin_new_transaction_notify', 1, '', 'New transaction has been posted to your {{store_name}} account', 'New transaction has been posted to your {{ store_name }} account in the amount of {{ amount }}. For more details, login to {{ store_name }} account', 'New transaction has been posted to your {{ store_name }} account in the amount of {{ amount }}. For more details, login to {{ store_name }} account', 'store_name, amount, transactions_url', '[[regtime]]', '[[regtime]]', NULL, 0),
(13, 1, 'admin_approval_email', 1, '', '{{ store_name}} - Your Account has been activated!', '<a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/ logo_uri}}\r\n {{^ logo_uri}}\r\n {{# logo_html}}\r\n {{logo_html}}\r\n {{/ logo_html}}\r\n {{/ logo_uri}}\r\n </a>\r\n\r\nWelcome and thank you for registering at {{ store_name }} <br/>\r\nYour account has now been created and you can log in by using your email address and password by visiting our website or at the following URL: <br/>\r\n{{ store_url }}<br/>\r\n<br/>\r\n\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.<br/>\r\n<br/>\r\nThank you,<br/>\r\n {{ store_name}} <br/>\r\n\r\n{{ text_project_label }}', 'Welcome and thank you for registering at {{ store_name }} \r\nYour account has now been created and you can log in by using your email address and password by visiting our website or at the following URL: \r\n{{ store_url }}\r\n\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n\r\nThank you,\r\n {{ store_name}} \r\n\r\n{{text_project_label}}', 'store_name, store_url, text_project_label, logo_uri, logo_html', '[[regtime]]', '[[regtime]]', NULL, 0),
(14, 1, 'storefront_password_reset_notify', 1, '', '{{store_name}} Notification', 'Your password has been updated! If you did not do any changes, please contact site owner<br/>', 'Your password has been updated! If you did not do any changes, please contact site owner', 'store_name, loginname, customer_id, firstname, lastname', '[[regtime]]', '[[regtime]]', NULL, 0),
(15, 1, 'storefront_customer_account_update', 1, '', '{{store_name}} Account update notification', 'Your account has been updated! If you did not do any changes, please contact site owner ', ' Your account has been updated! If you did not do any changes, please contact site owner ', 'store_name, firstname, lastname, telephone, fax, email, loginname, customer_id, old_loginname, old_email', '[[regtime]]', '[[regtime]]', NULL, 0),
(16, 1, 'storefront_contact_us_mail', 1, '', 'Enquiry from {{ first_name }}', '<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n <title>{{ title }}</title>\r\n</head>\r\n<body>\r\n<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri }}\r\n <img src="{{ logo_uri }}" alt="{{ store_name }}" style="border: none;">\r\n {{/ logo_uri }}\r\n {{# logo_html }}\r\n {{ logo_html }}\r\n {{/ logo_html }} \r\n </a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r<td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"\r\n style="background-color: #069; color:#FFF; font-size: 12px; font-weight: bold; padding: 0.5em 1em;">{{ entry_enquiry }}</td>\r\n </tr>\r\n <tr>\r\n <td class="align_left"\r\n style=" font-size: 12px; padding: 0.5em 1em;">{{{ enquiry }}}</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table style="width: 100%; font-family: Verdana,sans-serif; font-size: 11px; color: #FFFFFF;">\r\n {{# tpl_form_fields }}\r\n <tr>\r\n <td style="padding: 0.3em; background-color: #EEEEEE; color: #000;">{{ name }}</td>\r\n <td style="padding: 0.3em; background-color: #EEEEEE; color: #000;">{{ value }}</td>\r\n </tr>\r\n {{/ tpl_form_fields }}\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td class="align_center"\r\n style="font-size: 10px; border-top: 1px solid #069; text-decoration: none; color: #374953;">\r\n <a href="{{ store_url }}"\r\n style="color: #069; font-weight: bold; text-decoration: none;">{{ store_name }}</a><br>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n</table>\r\n</body>\r\n</html>\r\n', '{{ store_name }}\r\n\r\n{{ entry_enquiry }}\r\n{{{ enquiry }}}\r\n\r\n\r\n{{# tpl_form_fields }}\r\n{{ name }} {{ value }}\r\n{{/ tpl_form_fields }}\r\n\r\n{{{ text_project_label }}}', 'first_name, title, store_url, store_name, logo_uri, logo_html, entry_enquiry, enquiry, tpl_form_fields, form_fields, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(17, 1, 'storefront_contact_us_mail_admin_notify', 1, '', 'New enquiry from customer', ' You have got new enquiry from customer ({{first_name}}, {{email}})!', ' You have got new enquiry from customer ({{first_name}}, {{email}})! ', 'first_name, email', '[[regtime]]', '[[regtime]]', NULL, 0),
(18, 1, 'storefront_new_customer_admin_notify', 1, '', ' New Customer {{ firstname }} {{ lastname }} has been registered!', ' New Customer {{ firstname }} {{ lastname }} has been registered!', ' New Customer {{ firstname }} {{ lastname }} has been registered!', 'firstname, lastname', '[[regtime]]', '[[regtime]]', NULL, 0),
(19, 1, 'storefront_new_subscriber_admin_notify', 1, '', ' New Subscriber {{ firstname }} {{ lastname }} has been registered!', ' New Subscriber {{ firstname }} {{ lastname }} has been registered!', ' New Subscriber {{ firstname }} {{ lastname }} has been registered!', 'firstname, lastname', '[[regtime]]', '[[regtime]]', NULL, 0),
(21, 1, 'storefront_product_out_of_stock_admin_notify', 1, '', 'Product with ID #{{ product_id }} is out of Stock. ', ' Product with ID #{{ product_id }} is out of Stock. \r\n<br/><br/>\r\n{{{ text_project_label }}}', ' Product with ID #{{ product_id }} is out of Stock. \r\n\r\n{{{ text_project_label }}}', 'product_id, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(22, 1, 'storefront_product_review_admin_notify', 1, '', ' New product review has been added.', ' New product review has been added. See details {{ product_url }}\r\n<br/><br/>\r\n{{{ text_project_label }}}', ' New product review has been added. See details {{ product_url }}\r\n\r\n{{{ text_project_label }}}', 'product_url, product_id, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(23, 1, 'storefront_welcome_email_approved', 1, '', 'Welcome, {{store_name}} ', '<html>\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n </head>\r\n <body>\r\n <table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/ logo_uri}}\r\n {{^ logo_uri}}\r\n {{# logo_html}}\r\n {{logo_html}}\r\n {{/ logo_html}}\r\n {{/ logo_uri}}\r\n </a>\r\n </td>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>Welcome and thank you for registering at {{ store_name }}</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Your account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:<br/>\r\n<a href="{{ login_url }}">{{ login_url }}</a><br/>\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Thank you.<br/>\r\n {{ store_name }}\r\n<br/><br/>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n </table>\r\n </body>\r\n</html>', 'Welcome and thank you for registering at {{ store_name }}\r\n\r\nYour account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:\r\n{{ login_url }}\r\n\r\nOnce you logging in, you will be able to access, your wishlist, order history, printing invoices and editing your account information.\r\n\r\nThank you.\r\n{{ store_name }}\r\n{{{ text_project_label }}}', 'store_name, login_url, store_url, logo_html, logo_uri, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0),
(24, 1, 'fast_checkout_welcome_email_guest_registration', 1, '', 'Welcome, {{store_name}}', '<html>\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n </head>\r\n <body>\r\n <table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 600px;">\r\n <tr>\r\n <td class="align_left">\r\n <a href="{{ store_url }}" title="{{ store_name }}">\r\n {{# logo_uri}}\r\n <img src="{{ logo_uri }}" alt="{{store_name}}" style="border: none;">\r\n {{/ logo_uri}}\r\n {{^ logo_uri}}\r\n {{# logo_html}}\r\n {{logo_html}}\r\n {{/ logo_html}}\r\n {{/ logo_uri}}\r\n </a>\r\n </td>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>Welcome and thank you for registering at {{ store_name }}</td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Your account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:<br/>\r\n<a href="{{ login_url }}">{{ login_url }}</a><br/>\r\n<br/>\r\nYour Login Name: {{login}} <br/>\r\nYour Password: {{password}} <br/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n Thank you.<br/>\r\n {{ store_name }}\r\n<br/><br/>\r\n{{{ text_project_label }}}\r\n </td>\r\n </tr>\r\n </table>\r\n </body>\r\n</html>', 'Welcome and thank you for registering at {{ store_name }}\r\n\r\nYour account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:\r\n{{ login_url }}\r\n\r\nYour Login Name: {{login}}\r\nYour Password: {{password}}\r\n\r\n\r\nThank you.\r\n{{ store_name }}\r\n{{{ text_project_label }}}', 'store_name, login_url, store_url, logo_html, logo_uri, text_project_label, login, password', '[[regtime]]', '[[regtime]]', NULL, 0),
(25, 1, 'admin_reset_password_link', 1, '', '{{store_name}} - Password reset', 'A password reset was requested from {{store_name}}<br />\r\nTo reset your password click link below:<br />\r\n<a href="{{ reset_link }}">{{ reset_link }}</a >\r\n<br /><br />\r\n{{{ text_project_label }}}', 'A password reset was requested from {{store_name}} \r\nTo reset your password click link below:\r\n{{ reset_link }}\r\n\r\n\r\n{{{ text_project_label }}}', 'store_name, reset_link, text_project_label', '[[regtime]]', '[[regtime]]', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]encryption_keys`
--
CREATE TABLE `[[dbprefix]]encryption_keys` (
`key_id` int NOT NULL AUTO_INCREMENT,
`key_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`status` int NOT NULL,
`comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`key_id`),
UNIQUE KEY `encryption_keys_key_name` (`key_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]extensions`
--
CREATE TABLE `[[dbprefix]]extensions` (
`extension_id` int NOT NULL AUTO_INCREMENT,
`type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`key` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`category` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` smallint NOT NULL,
`priority` smallint NOT NULL DEFAULT '0',
`version` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`license_key` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_installed` timestamp NULL DEFAULT NULL,
`support_expiration` datetime DEFAULT NULL,
`mp_product_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`extension_id`),
UNIQUE KEY `extension_key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=24 ;
--
-- Dumping data for table `[[dbprefix]]extensions`
--
INSERT INTO `[[dbprefix]]extensions` VALUES
(1, 'total', 'coupon', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(2, 'total', 'shipping', 'shipping', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(3, 'total', 'low_order_fee', '', 0, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(4, 'total', 'handling', '', 0, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(5, 'total', 'sub_total', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(6, 'total', 'tax', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(7, 'total', 'total', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(8, 'total', 'balance', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(9, 'block', 'cart', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(10, 'block', 'category', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(11, 'block', 'content', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(12, 'block', 'manufacturer', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(13, 'block', 'bestseller', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(14, 'block', 'latest', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(15, 'block', 'featured', '', 1, 1, '', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(16, 'extensions', 'banner_manager', 'extensions', 1, 1, '1.4.4', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(17, 'extensions', 'forms_manager', 'extensions', 1, 1, '1.4.4', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(18, 'template', 'novator', 'template', 1, 0, '1.4.4', NULL, '[[regtime_yest]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(19, 'extensions', 'page_builder', 'tools', 1, 10000, '1.4.4', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(20, 'payment', 'paypal_commerce', 'payment', 0, 100, '1.4.4', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(21, 'payment', 'default_cod', 'payment', 1, 1, '1.4.4', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(22, 'shipping', 'default_flat_rate_shipping', 'shipping', 1, 1, '1.4.4', NULL, '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]'),
(23, 'shipping', 'default_local_delivery', 'shipping', 1, 10, '1.4.4', '', '[[regtime]]', NULL, '', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]extension_dependencies`
--
CREATE TABLE `[[dbprefix]]extension_dependencies` (
`extension_id` int NOT NULL,
`extension_parent_id` int NOT NULL,
PRIMARY KEY (`extension_id`,`extension_parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]fields`
--
CREATE TABLE `[[dbprefix]]fields` (
`field_id` int NOT NULL AUTO_INCREMENT,
`form_id` int NOT NULL DEFAULT '0',
`group_id` int DEFAULT NULL,
`field_name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
`element_type` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'I',
`sort_order` int NOT NULL,
`attributes` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
`required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'N',
`status` smallint NOT NULL DEFAULT '0',
`regexp_pattern` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`resource_id` int DEFAULT NULL,
`locked` int NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`field_id`),
KEY `field_id` (`field_id`,`form_id`,`status`),
KEY `[[dbprefix]]field_group_fk` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=63 ;
--
-- Dumping data for table `[[dbprefix]]fields`
--
INSERT INTO `[[dbprefix]]fields` VALUES
(11, 2, NULL, 'first_name', 'I', 1, 'autocomplete="given-name"', '', '1', 1, '/^.{3,100}$/u', 17, 1, '[[regtime]]', '[[regtime]]'),
(12, 2, NULL, 'email', 'E', 2, 'minlength="1" maxlength="96" autocomplete="email"', '', '1', 1, '', 19, 1, '[[regtime]]', '[[regtime]]'),
(13, 2, NULL, 'enquiry', 'T', 3, 'cols="50" rows="8" autocomplete="off"', '', '1', 1, '/^.{3,1000}$/su', NULL, 1, '[[regtime]]', '[[regtime]]'),
(14, 2, NULL, 'captcha', 'K', 4, 'autocomplete="off"', '', '1', 1, '', NULL, 0, '[[regtime]]', '[[regtime]]'),
(19, 4, NULL, 'country_id', 'O', 1, 'autocomplete="country"', '', '1', 1, '/^[1-9]\\d*$/', 10, 1, '[[regtime]]', '[[regtime]]'),
(20, 4, NULL, 'zone_id', 'Z', 2, 'autocomplete="address-level1"', '', '1', 1, '/^[1-9]\\d*$/', 11, 1, '[[regtime]]', '[[regtime]]'),
(21, 4, NULL, 'company', 'I', 3, 'autocomplete="organization"', '', '0', 1, '/^.{0,255}$/u', 13, 1, '[[regtime]]', '[[regtime]]'),
(22, 4, NULL, 'address_1', 'I', 4, 'minlength="3" maxlength="128" autocomplete="address-line1"', '', '1', 1, '/^.{3,128}$/u', 14, 1, '[[regtime]]', '[[regtime]]'),
(23, 4, NULL, 'address_2', 'I', 5, 'minlength="0" maxlength="128" autocomplete="address-line2"', '', '0', 1, '/^.{0,128}$/u', 15, 1, '[[regtime]]', '[[regtime]]'),
(24, 4, NULL, 'city', 'I', 6, 'maxlength="128" autocomplete="address-level2"', '', '1', 1, '/^.{1,128}$/u', 16, 1, '[[regtime]]', '[[regtime]]'),
(25, 4, NULL, 'postcode', 'I', 7, 'autocomplete="postal-code"', '', '1', 1, '/^[A-Za-z0-9\\- ]+$/', 12, 1, '[[regtime]]', '[[regtime]]'),
(26, 4, NULL, 'firstname', 'I', 8, 'minlength="1" maxlength="32" autocomplete="given-name"', '', '1', 1, '/^.{1,32}$/u', 17, 1, '[[regtime]]', '[[regtime]]'),
(27, 4, NULL, 'lastname', 'I', 9, 'minlength="1" maxlength="32" autocomplete="family-name"', '', '1', 1, '/^.{1,32}$/u', 18, 1, '[[regtime]]', '[[regtime]]'),
(29, 4, NULL, 'default', 'C', 11, '', '', '0', 1, '', 0, 1, '[[regtime]]', '[[regtime]]'),
(30, 4, NULL, 'vat_id', 'I', 10, 'autocomplete="off"', '', '0', 0, '/^.{8,14}$/u', 0, 0, '[[regtime]]', '[[regtime]]'),
(31, 5, NULL, 'country_id', 'O', 1, 'data-pair-with="zone_id" autocomplete="country"', '', '1', 1, '/^[1-9]\\d*$/', 10, 1, '[[regtime]]', '[[regtime]]'),
(32, 5, NULL, 'zone_id', 'Z', 2, 'data-pair-with="country_id" autocomplete="address-level1"', '', '1', 1, '/^[1-9]\\d*$/', 11, 1, '[[regtime]]', '[[regtime]]'),
(33, 5, NULL, 'company', 'I', 3, 'autocomplete="organization"', '', '0', 1, '/^.{0,255}$/u', 13, 1, '[[regtime]]', '[[regtime]]'),
(34, 5, NULL, 'address_1', 'I', 4, 'minlength="3" maxlength="128" autocomplete="address-line1"', '', '1', 1, '/^.{3,128}$/u', 14, 1, '[[regtime]]', '[[regtime]]'),
(35, 5, NULL, 'address_2', 'I', 5, 'minlength="0" maxlength="128" autocomplete="address-line2"', '', '0', 1, '/^.{0,128}$/u', 15, 1, '[[regtime]]', '[[regtime]]'),
(36, 5, NULL, 'city', 'I', 6, 'maxlength="128" data-pair-with="postcode" autocomplete="address-level2"', '', '1', 1, '/^.{1,128}$/u', 16, 1, '[[regtime]]', '[[regtime]]'),
(37, 5, NULL, 'postcode', 'I', 7, 'data-pair-with="city" autocomplete="postal-code"', '', '1', 1, '/^[A-Za-z0-9\\- ]+$/', 12, 1, '[[regtime]]', '[[regtime]]'),
(38, 5, NULL, 'firstname', 'I', 8, 'minlength="1" maxlength="32" data-pair-with="lastname" autocomplete="given-name"', '', '1', 1, '/^.{1,32}$/u', 17, 1, '[[regtime]]', '[[regtime]]'),
(39, 5, NULL, 'lastname', 'I', 9, 'minlength="1" maxlength="32" data-pair-with="firstname" autocomplete="family-name"', '', '1', 1, '/^.{1,32}$/u', 18, 1, '[[regtime]]', '[[regtime]]'),
(40, 5, NULL, 'vat_id', 'I', 10, 'autocomplete="off"', '', '0', 0, '/^.{8,14}$/u', 0, 0, '[[regtime]]', '[[regtime]]'),
(41, 5, NULL, 'email', 'E', 15, 'minlength="1" maxlength="96" autocomplete="email"', '', '1', 1, '', 19, 1, '[[regtime]]', '[[regtime]]'),
(42, 5, NULL, 'telephone', 'F', 16, 'maxlength="32" autocomplete="tel"', '', '0', 1, '/^[+\\- 0-9\\(\\)]+$/', 20, 1, '[[regtime]]', '[[regtime]]'),
(43, 6, NULL, 'loginname', 'I', 1, 'minlength="5" maxlength="64" autocomplete="username"', '', '1', 1, '/^[A-Za-z0-9._]{5,64}$/i', 21, 1, '[[regtime]]', '[[regtime]]'),
(44, 6, NULL, 'firstname', 'I', 2, 'minlength="1" maxlength="32" data-pair-with="lastname" autocomplete="given-name"', '', '1', 1, '/^.{1,32}$/u', 17, 1, '[[regtime]]', '[[regtime]]'),
(45, 6, NULL, 'lastname', 'I', 3, 'minlength="1" maxlength="32" data-pair-with="firstname" autocomplete="family-name"', '', '1', 1, '/^.{1,32}$/u', 18, 1, '[[regtime]]', '[[regtime]]'),
(46, 6, NULL, 'email', 'E', 4, 'minlength="1" maxlength="96" autocomplete="email"', '', '1', 1, '', 19, 1, '[[regtime]]', '[[regtime]]'),
(47, 6, NULL, 'telephone', 'F', 5, 'maxlength="32" autocomplete="tel"', '', '0', 1, '/^[+\\- 0-9\\(\\)]+$/', 20, 1, '[[regtime]]', '[[regtime]]'),
(49, 7, 1, 'firstname', 'I', 1, 'minlength="1" maxlength="32" data-pair-with="lastname" autocomplete="given-name"', '', '1', 1, '/^.{1,32}$/u', 17, 1, '[[regtime]]', '[[regtime]]'),
(50, 7, 1, 'lastname', 'I', 2, 'minlength="1" maxlength="32" data-pair-with="firstname" autocomplete="family-name"', '', '1', 1, '/^.{1,32}$/u', 18, 1, '[[regtime]]', '[[regtime]]'),
(51, 7, 1, 'email', 'E', 3, 'minlength="1" maxlength="96" autocomplete="email"', '', '1', 1, '', 19, 1, '[[regtime]]', '[[regtime]]'),
(52, 7, 1, 'telephone', 'F', 4, 'maxlength="32" autocomplete="tel"', '', '0', 1, '/^[+\\- 0-9\\(\\)]+$/', 20, 1, '[[regtime]]', '[[regtime]]'),
(53, 7, 2, 'country_id', 'O', 10, 'autocomplete="country"', '', '1', 1, '/^[1-9]\\d*$/', 10, 1, '[[regtime]]', '[[regtime]]'),
(54, 7, 2, 'zone_id', 'Z', 11, 'autocomplete="address-level1"', '', '1', 1, '/^[1-9]\\d*$/', 11, 1, '[[regtime]]', '[[regtime]]'),
(55, 7, 2, 'address_1', 'I', 13, 'minlength="3" maxlength="128" autocomplete="address-line1"', '', '1', 1, '/^.{3,128}$/u', 14, 1, '[[regtime]]', '[[regtime]]'),
(56, 7, 2, 'address_2', 'I', 14, 'minlength="0" maxlength="128" autocomplete="address-line2"', '', '0', 1, '/^.{0,128}$/u', 15, 1, '[[regtime]]', '[[regtime]]'),
(57, 7, 2, 'city', 'I', 15, 'maxlength="128" autocomplete="address-level2"', '', '1', 1, '/^.{1,128}$/u', 16, 1, '[[regtime]]', '[[regtime]]'),
(58, 7, 2, 'postcode', 'I', 16, 'autocomplete="postal-code"', '', '1', 1, '/^[A-Za-z0-9\\- ]+$/', 12, 1, '[[regtime]]', '[[regtime]]'),
(59, 7, 2, 'company', 'I', 12, 'autocomplete="organization"', '', '0', 1, '/^.{0,255}$/u', 13, 1, '[[regtime]]', '[[regtime]]'),
(60, 7, 3, 'loginname', 'I', 20, 'minlength="5" maxlength="64" autocomplete="username"', '', '1', 1, '/^[A-Za-z0-9._]{5,64}$/i', 21, 1, '[[regtime]]', '[[regtime]]'),
(61, 7, 4, 'newsletter', 'C', 30, '', '', '0', 1, '', 0, 1, '[[regtime]]', '[[regtime]]'),
(62, 7, 2, 'vat_id', 'I', 28, 'autocomplete="off"', '', '0', 0, '/^.{8,14}$/u', 0, 0, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]fields_history`
--
CREATE TABLE `[[dbprefix]]fields_history` (
`hist_id` int NOT NULL AUTO_INCREMENT,
`table_name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
`record_id` int NOT NULL,
`field` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`version` int NOT NULL DEFAULT '1',
`language_id` int NOT NULL,
`text` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`hist_id`),
KEY `[[dbprefix]]fields_history_idx` (`table_name`,`record_id`,`field`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `[[dbprefix]]fields_history`
--
INSERT INTO `[[dbprefix]]fields_history` VALUES
(1, 'block_descriptions', 11, 'content', 1, 1, '<div class="contactus-block text-center text-md-start">\n<img src="extensions/novator/storefront/view/novator/image/presets/18/7b/5.svg" alt="images" class="img-fluid h-auto" width="350" height="79"><p class="text-white">1487 Rocky Horse Carrefour<br>Arlington, TX 16819</p><h4 class="text-white"><i class="bi bi-telephone"></i> (444) 019 120 0401</h4><a href="#" class="btn btn-success d-inline-block">Live Chat</a> <a href="#" class="btn btn-outline-light d-inline-block">Help Desk</a>\n</div>', '[[regtime]]'),
(2, 'block_descriptions', 11, 'content', 2, 1, '<div class="contactus-block text-center text-md-start">\n<img src="extensions/novator/storefront/view/novator/image/presets/18/7b/5.svg" alt="images" class="img-fluid h-auto" width="350" height="79"><p class="text-white">1487 Rocky Horse Carrefour<br>Arlington, TX 16819</p><h4 class="text-white"><i class="bi bi-telephone"></i> (444) 019 120 0401</h4><a href="#" class="btn btn-success">Live Chat</a> <a href="#" class="btn btn-outline-light d-inline-block">Help Desk</a>\n</div>', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]field_descriptions`
--
CREATE TABLE `[[dbprefix]]field_descriptions` (
`field_id` int NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
`language_id` int NOT NULL,
`error_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
PRIMARY KEY (`field_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]field_descriptions`
--
INSERT INTO `[[dbprefix]]field_descriptions` VALUES
(11, 'First name:', '', 1, 'Name must be between 3 and 32 characters!'),
(12, 'Email:', '', 1, 'E-Mail Address does not appear to be valid!'),
(13, 'Enquiry:', '', 1, 'Enquiry must be between 10 and 3000 characters!'),
(14, 'Enter the code in the box below:', '', 1, 'Human verification has failed! Please try agan.'),
(19, 'Country', '', 1, 'Please select a country!'),
(20, 'Zone', '', 1, 'Please select a region/state!'),
(21, 'Company', '', 1, 'Company Name must be less than 255 characters!'),
(22, 'Address Line 1', '', 1, 'Address Line 1 must be between 3 and 128 characters!'),
(23, 'Address Line 2', '', 1, 'Address Line 2 must be less than 128 characters!'),
(24, 'City', '', 1, 'City must be between 3 and 128 characters!'),
(25, 'Zip/Post Code', '', 1, 'Zip/Post Code must be less than 11 characters!'),
(26, 'First Name', '', 1, 'First Name must be between 1 and 32 characters!'),
(27, 'Last Name', '', 1, 'Last Name must be between 1 and 32 characters!'),
(29, 'Default Address', '', 1, ''),
(30, 'VAT ID', '', 1, 'VAT ID Code must be between 8 and 14 characters!'),
(31, 'Country', '', 1, 'Please select a country!'),
(32, 'Region/State', '', 1, 'Please select a region/state!'),
(33, 'Company', '', 1, 'Company Name must be less than 255 characters!'),
(34, 'Address Line 1', '', 1, 'Address Line 1 must be between 3 and 128 characters!'),
(35, 'Address Line 2', '', 1, 'Address Line 2 must be less than 128 characters!'),
(36, 'City', '', 1, 'City must be between 3 and 128 characters!'),
(37, 'Zip/Post Code', '', 1, 'Zip/Post Code must be less than 11 characters!'),
(38, 'First Name', '', 1, 'First Name must be between 1 and 32 characters!'),
(39, 'Last Name', '', 1, 'Last Name must be between 1 and 32 characters!'),
(40, 'VAT ID', '', 1, 'VAT ID Code must be between 8 and 14 characters!'),
(41, 'Email', '', 1, 'Your email is not provided or invalid!'),
(42, 'Phone Number', '', 1, 'Your contact phone number is not provided or invalid.'),
(43, 'Login Name', '', 1, 'Login Name must be between 5 and 65 characters!'),
(44, 'First Name', '', 1, 'First Name must be between 1 and 32 characters!'),
(45, 'Last Name', '', 1, 'Last Name must be between 1 and 32 characters!'),
(46, 'Email', '', 1, 'Your email is not provided or invalid!'),
(47, 'Phone Number', '', 1, 'Your contact phone number is not provided or invalid.'),
(49, 'First Name', '', 1, 'First Name must be between 1 and 32 characters!'),
(50, 'Last Name', '', 1, 'Last Name must be between 1 and 32 characters!'),
(51, 'Email', '', 1, 'Your email is not provided or invalid!'),
(52, 'Phone Number', '', 1, 'Your contact phone number is not provided or invalid.'),
(53, 'Country', '', 1, 'Please select a country!'),
(54, 'Region/State', '', 1, 'Please select a region/state!'),
(55, 'Address Line 1', '', 1, 'Address Line 1 must be between 3 and 128 characters!'),
(56, 'Address Line 2', '', 1, 'Address Line 2 must be less than 128 characters!'),
(57, 'City', '', 1, 'City must be between 3 and 128 characters!'),
(58, 'Zip/Post Code', '', 1, 'Zip/Post Code must be less than 11 characters!'),
(59, 'Company', '', 1, 'Company Name must be less than 255 characters!'),
(60, 'Login Name', '', 1, 'Login Name must be alphanumeric only and between 5 and 64 characters!'),
(61, 'Subscribe', '', 1, ''),
(62, 'VAT ID', '', 1, 'VAT ID Code must be between 8 and 14 characters!');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]field_groups`
--
CREATE TABLE `[[dbprefix]]field_groups` (
`group_id` int NOT NULL AUTO_INCREMENT,
`group_txt_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `[[dbprefix]]field_groups`
--
INSERT INTO `[[dbprefix]]field_groups` VALUES
(1, 'details'),
(2, 'address'),
(3, 'login'),
(4, 'newsletter');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]field_group_descriptions`
--
CREATE TABLE `[[dbprefix]]field_group_descriptions` (
`group_id` int NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
`language_id` int NOT NULL,
PRIMARY KEY (`group_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]field_group_descriptions`
--
INSERT INTO `[[dbprefix]]field_group_descriptions` VALUES
(1, 'Your Personal Details', '', 1),
(2, 'Your Address', '', 1),
(3, 'Login Details', '', 1),
(4, 'Newsletter', '', 1);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]field_group_to_form`
--
CREATE TABLE `[[dbprefix]]field_group_to_form` (
`group_id` int DEFAULT NULL,
`form_id` int DEFAULT NULL,
`sort_order` int DEFAULT NULL,
KEY `[[dbprefix]]field_group_to_form_fk` (`form_id`),
KEY `[[dbprefix]]field_group_to_group_fk` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `[[dbprefix]]field_group_to_form`
--
INSERT INTO `[[dbprefix]]field_group_to_form` VALUES
(1, 7, 1),
(2, 7, 2),
(3, 7, 3),
(4, 7, 4);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]field_values`
--
CREATE TABLE `[[dbprefix]]field_values` (
`value_id` int NOT NULL AUTO_INCREMENT,
`field_id` int NOT NULL DEFAULT '0',
`value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`language_id` int NOT NULL,
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `[[dbprefix]]field_values`
--
INSERT INTO `[[dbprefix]]field_values` VALUES
(4, 29, 'a:1:{i:0;a:2:{s:4:"name";s:1:"1";s:10:"sort_order";N;}}', 1),
(6, 61, 'a:1:{i:0;a:2:{s:4:"name";s:1:"1";s:10:"sort_order";N;}}', 1),
(7, 30, 'a:1:{i:0;a:2:{s:4:"name";s:0:"";s:10:"sort_order";N;}}', 1);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]forms`
--
CREATE TABLE `[[dbprefix]]forms` (
`form_id` int NOT NULL AUTO_INCREMENT,
`form_name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`controller` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`success_page` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`status` smallint NOT NULL DEFAULT '0',
`locked` int NOT NULL DEFAULT '0',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`form_id`),
UNIQUE KEY `form_name` (`form_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `[[dbprefix]]forms`
--
INSERT INTO `[[dbprefix]]forms` VALUES
(2, 'ContactUsFrm', 'content/contact', 'content/contact/success', 1, 1, '[[regtime]]', '[[regtime]]'),
(4, 'AddressFrm', '', '', 1, 1, '[[regtime]]', '[[regtime]]'),
(5, 'GuestCheckoutFrm', '', '', 1, 1, '[[regtime]]', '[[regtime]]'),
(6, 'CustomerFrm', '', '', 1, 1, '[[regtime]]', '[[regtime]]'),
(7, 'RegisterCustomerFrm', 'account/create', 'account/create', 1, 1, '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]form_descriptions`
--
CREATE TABLE `[[dbprefix]]form_descriptions` (
`form_id` int NOT NULL DEFAULT '0',
`language_id` int NOT NULL,
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'translatable',
PRIMARY KEY (`form_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]form_descriptions`
--
INSERT INTO `[[dbprefix]]form_descriptions` VALUES
(2, 1, 'Contact Us Form'),
(4, 1, 'Customer Address Form'),
(5, 1, 'Guest Address and Details Form'),
(6, 1, 'Customer Details Form'),
(7, 1, 'Customer Registration Form');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes`
--
CREATE TABLE `[[dbprefix]]global_attributes` (
`attribute_id` int NOT NULL AUTO_INCREMENT,
`attribute_parent_id` int DEFAULT NULL,
`attribute_group_id` int DEFAULT NULL,
`attribute_type_id` int NOT NULL,
`element_type` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'I',
`sort_order` int NOT NULL DEFAULT '0',
`required` smallint NOT NULL DEFAULT '0',
`settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` smallint NOT NULL DEFAULT '0',
`regexp_pattern` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`attribute_id`),
KEY `[[dbprefix]]global_attributes_idx` (`attribute_parent_id`,`attribute_group_id`,`attribute_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ;
--
-- Dumping data for table `[[dbprefix]]global_attributes`
--
INSERT INTO `[[dbprefix]]global_attributes` VALUES
(1, NULL, NULL, 1, 'S', 1, 1, '', 1, NULL),
(2, NULL, NULL, 1, 'C', 0, 0, '', 1, NULL),
(5, NULL, NULL, 1, 'G', 1, 1, '', 1, NULL),
(6, NULL, NULL, 1, 'S', 0, 0, 'a:4:{s:10:"extensions";s:0:"";s:8:"min_size";s:0:"";s:8:"max_size";s:0:"";s:9:"directory";s:0:"";}', 1, ''),
(7, 6, NULL, 1, 'S', 0, 0, 'a:4:{s:10:"extensions";s:0:"";s:8:"min_size";s:0:"";s:8:"max_size";s:0:"";s:9:"directory";s:0:"";}', 1, ''),
(8, 6, NULL, 1, 'S', 0, 0, 'a:4:{s:10:"extensions";s:0:"";s:8:"min_size";s:0:"";s:8:"max_size";s:0:"";s:9:"directory";s:0:"";}', 1, '');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_descriptions`
--
CREATE TABLE `[[dbprefix]]global_attributes_descriptions` (
`attribute_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`placeholder` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'translatable',
`error_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
PRIMARY KEY (`attribute_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]global_attributes_descriptions`
--
INSERT INTO `[[dbprefix]]global_attributes_descriptions` VALUES
(1, 1, 'Size', '', ''),
(2, 1, 'Gift Wrapping', '', ''),
(5, 1, 'Fragrance Type', '', ''),
(6, 1, 'Color&Size', '', ''),
(7, 1, 'UK Size', '', ''),
(8, 1, 'Color', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_groups`
--
CREATE TABLE `[[dbprefix]]global_attributes_groups` (
`attribute_group_id` int NOT NULL AUTO_INCREMENT,
`sort_order` int NOT NULL DEFAULT '0',
`status` smallint NOT NULL DEFAULT '0',
PRIMARY KEY (`attribute_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_groups_descriptions`
--
CREATE TABLE `[[dbprefix]]global_attributes_groups_descriptions` (
`attribute_group_id` int NOT NULL,
`language_id` int NOT NULL,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
PRIMARY KEY (`attribute_group_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_types`
--
CREATE TABLE `[[dbprefix]]global_attributes_types` (
`attribute_type_id` int NOT NULL AUTO_INCREMENT,
`type_key` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`controller` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`sort_order` int NOT NULL DEFAULT '0',
`status` smallint NOT NULL DEFAULT '0',
PRIMARY KEY (`attribute_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `[[dbprefix]]global_attributes_types`
--
INSERT INTO `[[dbprefix]]global_attributes_types` VALUES
(1, 'product_option', 'responses/catalog/attribute/getProductOptionSubform', 1, 1),
(2, 'download_attribute', 'responses/catalog/attribute/getDownloadAttributeSubform', 2, 1);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_type_descriptions`
--
CREATE TABLE `[[dbprefix]]global_attributes_type_descriptions` (
`attribute_type_id` int NOT NULL,
`language_id` int NOT NULL,
`type_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`attribute_type_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]global_attributes_type_descriptions`
--
INSERT INTO `[[dbprefix]]global_attributes_type_descriptions` VALUES
(1, 1, 'Product Option', '[[regtime]]', '[[regtime]]'),
(2, 1, 'Download Attribute', '[[regtime]]', '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_values`
--
CREATE TABLE `[[dbprefix]]global_attributes_values` (
`attribute_value_id` int NOT NULL AUTO_INCREMENT,
`attribute_id` int NOT NULL,
`price_modifier` float DEFAULT '0',
`price_prefix` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sort_order` int NOT NULL DEFAULT '0',
`txt_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`attribute_value_id`),
UNIQUE KEY `ga_value_txt_id_idx` (`txt_id`),
KEY `[[dbprefix]]global_attributes_values_idx` (`attribute_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=99 ;
--
-- Dumping data for table `[[dbprefix]]global_attributes_values`
--
INSERT INTO `[[dbprefix]]global_attributes_values` VALUES
(32, 2, 0, NULL, 0, NULL),
(43, 1, 0, NULL, 0, NULL),
(44, 1, 0, NULL, 0, NULL),
(45, 1, 0, NULL, 0, NULL),
(46, 1, 0, NULL, 0, NULL),
(47, 1, 0, NULL, 0, NULL),
(48, 1, 0, NULL, 0, NULL),
(49, 1, 0, NULL, 0, NULL),
(50, 1, 0, NULL, 0, NULL),
(51, 1, 0, NULL, 0, NULL),
(52, 1, 0, NULL, 0, NULL),
(53, 1, 0, NULL, 0, NULL),
(75, 5, 0, NULL, 0, NULL),
(76, 5, 0, NULL, 0, NULL),
(77, 5, 0, NULL, 0, NULL),
(78, 6, 0, NULL, 0, NULL),
(79, 7, 0, NULL, 0, NULL),
(80, 7, 0, NULL, 0, NULL),
(81, 7, 0, NULL, 0, NULL),
(82, 7, 0, NULL, 0, NULL),
(83, 7, 0, NULL, 0, NULL),
(84, 7, 0, NULL, 0, NULL),
(85, 7, 0, NULL, 0, NULL),
(86, 7, 0, NULL, 0, NULL),
(87, 7, 0, NULL, 0, NULL),
(88, 8, 0, NULL, 0, NULL),
(89, 8, 0, NULL, 0, NULL),
(90, 8, 0, NULL, 0, NULL),
(91, 8, 0, NULL, 0, NULL),
(92, 8, 0, NULL, 0, NULL),
(93, 7, 0, NULL, 0, NULL),
(94, 7, 0, NULL, 0, NULL),
(95, 7, 0, NULL, 0, NULL),
(96, 7, 0, NULL, 0, NULL),
(97, 7, 0, NULL, 0, NULL),
(98, 8, 0, NULL, 0, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]global_attributes_value_descriptions`
--
CREATE TABLE `[[dbprefix]]global_attributes_value_descriptions` (
`attribute_value_id` int NOT NULL,
`attribute_id` int NOT NULL,
`language_id` int NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
PRIMARY KEY (`attribute_value_id`,`attribute_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `[[dbprefix]]global_attributes_value_descriptions`
--
INSERT INTO `[[dbprefix]]global_attributes_value_descriptions` VALUES
(32, 2, 1, ''),
(42, 1, 1, '1.7 oz'),
(43, 1, 1, '3.4 oz'),
(44, 1, 1, '100ml'),
(45, 1, 1, '8.45 oz'),
(46, 1, 1, '15.2 oz'),
(47, 1, 1, '33.8 oz'),
(48, 1, 1, '1.5 oz'),
(49, 1, 1, '2.5 oz'),
(50, 1, 1, '30ml'),
(51, 1, 1, '50ml'),
(52, 1, 1, '75ml'),
(53, 1, 1, '1 oz'),
(75, 5, 1, 'Eau de Parfum'),
(76, 5, 1, 'Eau de Toilette'),
(77, 5, 1, 'Eau de Cologne'),
(78, 6, 1, ''),
(79, 7, 1, 'UK 3'),
(80, 7, 1, 'UK 3.5'),
(81, 7, 1, 'UK 4'),
(82, 7, 1, 'UK 4.5'),
(83, 7, 1, 'UK 5'),
(84, 7, 1, 'UK 5.5'),
(85, 7, 1, 'UK 6'),
(86, 7, 1, 'UK 7'),
(87, 7, 1, 'UK 8'),
(88, 8, 1, 'Red'),
(89, 8, 1, 'White'),
(90, 8, 1, 'Black'),
(91, 8, 1, 'Blue'),
(92, 8, 1, 'Green'),
(93, 7, 1, 'XXL'),
(94, 7, 1, 'XL'),
(95, 7, 1, 'S'),
(96, 7, 1, 'L'),
(97, 7, 1, 'M'),
(98, 8, 1, 'Yellow');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]languages`
--
CREATE TABLE `[[dbprefix]]languages` (
`language_id` int NOT NULL AUTO_INCREMENT,
`name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`code` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL,
`locale` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`directory` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`filename` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sort_order` int NOT NULL DEFAULT '0',
`status` int NOT NULL,
PRIMARY KEY (`language_id`),
UNIQUE KEY `[[dbprefix]]languages_idx` (`language_id`,`code`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `[[dbprefix]]languages`
--
INSERT INTO `[[dbprefix]]languages` VALUES
(1, 'English', 'en', 'en_US.UTF-8,en_US,en-gb,english', '', 'english', 'english', 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]language_definitions`
--
CREATE TABLE `[[dbprefix]]language_definitions` (
`language_definition_id` int NOT NULL AUTO_INCREMENT,
`language_id` int NOT NULL,
`section` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0-SF, 1-ADMIN',
`block` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL,
`language_key` varchar(170) COLLATE utf8mb4_unicode_ci NOT NULL,
`language_value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'translatable',
`date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`language_definition_id`,`language_id`,`section`,`block`,`language_key`),
KEY `[[dbprefix]]lang_definition_idx` (`language_value`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4963 ;
--
-- Dumping data for table `[[dbprefix]]language_definitions`
--
INSERT INTO `[[dbprefix]]language_definitions` VALUES
(1, 1, 1, 'english', 'code', 'en', '[[regtime]]', '[[regtime]]'),
(2, 1, 1, 'english', 'direction', 'ltr', '[[regtime]]', '[[regtime]]'),
(3, 1, 1, 'english', 'date_format_short', 'm/d/Y', '[[regtime]]', '[[regtime]]'),
(4, 1, 1, 'english', 'date_format_long', 'l dS F Y', '[[regtime]]', '[[regtime]]'),
(5, 1, 1, 'english', 'time_format', 'h:i:s A', '[[regtime]]', '[[regtime]]'),
(6, 1, 1, 'english', 'time_format_short', 'H:i', '[[regtime]]', '[[regtime]]'),
(7, 1, 1, 'english', 'decimal_point', '.', '[[regtime]]', '[[regtime]]'),
(8, 1, 1, 'english', 'thousand_point', ',', '[[regtime]]', '[[regtime]]'),
(9, 1, 1, 'english', 'text_yes', 'Yes', '[[regtime]]', '[[regtime]]'),
(10, 1, 1, 'english', 'text_no', 'No', '[[regtime]]', '[[regtime]]'),
(11, 1, 1, 'english', 'text_plus', '+', '[[regtime]]', '[[regtime]]'),
(12, 1, 1, 'english', 'text_minus', '-', '[[regtime]]', '[[regtime]]'),
(13, 1, 1, 'english', 'text_enabled', 'Enabled', '[[regtime]]', '[[regtime]]'),
(14, 1, 1, 'english', 'text_disabled', 'Disabled', '[[regtime]]', '[[regtime]]'),
(15, 1, 1, 'english', 'text_none', ' --- None --- ', '[[regtime]]', '[[regtime]]'),
(16, 1, 1, 'english', 'text_select', ' --- Please Select --- ', '[[regtime]]', '[[regtime]]'),
(17, 1, 1, 'english', 'text_select_all', 'Select All', '[[regtime]]', '[[regtime]]'),
(18, 1, 1, 'english', 'text_unselect_all', 'Unselect All', '[[regtime]]', '[[regtime]]'),
(19, 1, 1, 'english', 'text_all_zones', 'All Zones', '[[regtime]]', '[[regtime]]'),
(20, 1, 1, 'english', 'text_default', '(Default)', '[[regtime]]', '[[regtime]]'),
(21, 1, 1, 'english', 'text_close', 'Close', '[[regtime]]', '[[regtime]]'),
(22, 1, 1, 'english', 'text_pagination', 'Showing {start} to {end} of {total} ({pages} Pages)', '[[regtime]]', '[[regtime]]'),
(23, 1, 1, 'english', 'text_per_page', 'Per Page', '[[regtime]]', '[[regtime]]'),
(24, 1, 1, 'english', 'text_no_results', 'No result found.', '[[regtime]]', '[[regtime]]'),
(25, 1, 1, 'english', 'text_separator', ' > ', '[[regtime]]', '[[regtime]]'),
(26, 1, 1, 'english', 'text_edit', 'Edit ', '[[regtime]]', '[[regtime]]'),
(27, 1, 1, 'english', 'text_view', 'View', '[[regtime]]', '[[regtime]]'),
(28, 1, 1, 'english', 'text_home', 'Home', '[[regtime]]', '[[regtime]]'),
(29, 1, 1, 'english', 'button_insert', 'Insert', '[[regtime]]', '[[regtime]]'),
(30, 1, 1, 'english', 'button_delete', 'Delete', '[[regtime]]', '[[regtime]]'),
(31, 1, 1, 'english', 'button_save', 'Save', '[[regtime]]', '[[regtime]]'),
(32, 1, 1, 'english', 'button_save_and_close', 'Save & Close', '[[regtime]]', '[[regtime]]'),
(33, 1, 1, 'english', 'button_cancel', 'Cancel', '[[regtime]]', '[[regtime]]'),
(34, 1, 1, 'english', 'button_reset', 'Reset', '[[regtime]]', '[[regtime]]'),
(35, 1, 1, 'english', 'button_reload', 'Reload', '[[regtime]]', '[[regtime]]'),
(36, 1, 1, 'english', 'button_clear', 'Clear Log', '[[regtime]]', '[[regtime]]'),
(37, 1, 1, 'english', 'button_close', 'Close', '[[regtime]]', '[[regtime]]'),
(38, 1, 1, 'english', 'button_upgrade', 'Upgrade', '[[regtime]]', '[[regtime]]'),
(39, 1, 1, 'english', 'button_filter', 'Filter', '[[regtime]]', '[[regtime]]'),
(40, 1, 1, 'english', 'button_send', 'Send', '[[regtime]]', '[[regtime]]'),
(41, 1, 1, 'english', 'button_edit', 'Edit', '[[regtime]]', '[[regtime]]'),
(42, 1, 1, 'english', 'button_copy', 'Copy', '[[regtime]]', '[[regtime]]'),
(43, 1, 1, 'english', 'button_agree', 'Agree', '[[regtime]]', '[[regtime]]'),
(44, 1, 1, 'english', 'button_back', 'Back', '[[regtime]]', '[[regtime]]'),
(45, 1, 1, 'english', 'button_continue', 'Continue', '[[regtime]]', '[[regtime]]'),
(46, 1, 1, 'english', 'button_remove', 'Remove', '[[regtime]]', '[[regtime]]'),
(47, 1, 1, 'english', 'button_backup', 'Backup', '[[regtime]]', '[[regtime]]'),
(48, 1, 1, 'english', 'button_restore', 'Restore', '[[regtime]]', '[[regtime]]'),
(49, 1, 1, 'english', 'button_invoice', 'Print Invoice', '[[regtime]]', '[[regtime]]'),
(50, 1, 1, 'english', 'button_invoices', 'Print Invoices', '[[regtime]]', '[[regtime]]'),
(51, 1, 1, 'english', 'button_add_option', 'Add Option', '[[regtime]]', '[[regtime]]'),
(52, 1, 1, 'english', 'button_add_option_value', 'Add Option Value', '[[regtime]]', '[[regtime]]'),
(53, 1, 1, 'english', 'button_add_discount', 'Add Discount', '[[regtime]]', '[[regtime]]'),
(54, 1, 1, 'english', 'button_add_special', 'Add Special', '[[regtime]]', '[[regtime]]'),
(55, 1, 1, 'english', 'button_add_image', 'Add Image', '[[regtime]]', '[[regtime]]'),
(56, 1, 1, 'english', 'button_add_location_zone', 'Add Location Zone', '[[regtime]]', '[[regtime]]'),
(57, 1, 1, 'english', 'button_add_rate', 'Add Tax Rate', '[[regtime]]', '[[regtime]]'),
(58, 1, 1, 'english', 'button_add_history', 'Add Order History', '[[regtime]]', '[[regtime]]'),
(59, 1, 1, 'english', 'button_actas', 'Act on behalf of', '[[regtime]]', '[[regtime]]'),
(60, 1, 1, 'english', 'button_message', 'Contact this customer', '[[regtime]]', '[[regtime]]'),
(61, 1, 1, 'english', 'button_approve', 'Approve', '[[regtime]]', '[[regtime]]'),
(62, 1, 1, 'english', 'button_generate', 'Generate', '[[regtime]]', '[[regtime]]'),
(63, 1, 1, 'english', 'tab_admin', 'Admin', '[[regtime]]', '[[regtime]]'),
(64, 1, 1, 'english', 'tab_data', 'Data', '[[regtime]]', '[[regtime]]'),
(65, 1, 1, 'english', 'text_quantity_discount', 'Quantity Discounts', '[[regtime]]', '[[regtime]]'),
(66, 1, 1, 'english', 'tab_details', 'Store Details', '[[regtime]]', '[[regtime]]'),
(67, 1, 1, 'english', 'tab_checkout', 'Checkout', '[[regtime]]', '[[regtime]]'),
(68, 1, 1, 'english', 'tab_appearance', 'Appearance', '[[regtime]]', '[[regtime]]'),
(69, 1, 1, 'english', 'tab_im', 'IM', '[[regtime]]', '[[regtime]]'),
(70, 1, 1, 'english', 'tab_api', 'API', '[[regtime]]', '[[regtime]]'),
(71, 1, 1, 'english', 'tab_general', 'General', '[[regtime]]', '[[regtime]]'),
(72, 1, 1, 'english', 'tab_image', 'Additional Images', '[[regtime]]', '[[regtime]]'),
(73, 1, 1, 'english', 'tab_option', 'Options', '[[regtime]]', '[[regtime]]'),
(74, 1, 1, 'english', 'tab_system', 'System', '[[regtime]]', '[[regtime]]'),
(75, 1, 1, 'english', 'tab_store', 'Store', '[[regtime]]', '[[regtime]]'),
(76, 1, 1, 'english', 'tab_special', 'Specials', '[[regtime]]', '[[regtime]]'),
(77, 1, 1, 'english', 'tab_local', 'Local', '[[regtime]]', '[[regtime]]'),
(78, 1, 1, 'english', 'tab_mail', 'Mail', '[[regtime]]', '[[regtime]]'),
(79, 1, 1, 'english', 'tab_order', 'Order Details', '[[regtime]]', '[[regtime]]'),
(80, 1, 1, 'english', 'tab_history', 'Order History', '[[regtime]]', '[[regtime]]'),
(81, 1, 1, 'english', 'tab_product', 'Products', '[[regtime]]', '[[regtime]]'),
(82, 1, 1, 'english', 'tab_shipping', 'Shipping Address', '[[regtime]]', '[[regtime]]'),
(83, 1, 1, 'english', 'tab_payment', 'Payment Address', '[[regtime]]', '[[regtime]]'),
(84, 1, 1, 'english', 'entry_discount', 'Discount', '[[regtime]]', '[[regtime]]'),
(85, 1, 1, 'english', 'entry_special', 'Special', '[[regtime]]', '[[regtime]]'),
(86, 1, 1, 'english', 'error_upload_1', 'Warning: The uploaded file exceeds the upload_max_filesize directive in php.ini!', '[[regtime]]', '[[regtime]]'),
(87, 1, 1, 'english', 'error_upload_2', 'Warning: The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form!', '[[regtime]]', '[[regtime]]'),
(88, 1, 1, 'english', 'error_upload_3', 'Warning: The uploaded file was only partially uploaded!', '[[regtime]]', '[[regtime]]'),
(89, 1, 1, 'english', 'error_upload_4', 'Warning: No file was uploaded!', '[[regtime]]', '[[regtime]]'),
(90, 1, 1, 'english', 'error_upload_6', 'Warning: Missing a temporary folder!', '[[regtime]]', '[[regtime]]'),
(91, 1, 1, 'english', 'error_upload_7', 'Warning: Failed to write file to disk!', '[[regtime]]', '[[regtime]]'),
(92, 1, 1, 'english', 'error_upload_8', 'Warning: File upload stopped by extension!', '[[regtime]]', '[[regtime]]'),
(93, 1, 1, 'english', 'error_upload_999', 'Warning: No error code available!', '[[regtime]]', '[[regtime]]'),
(94, 1, 1, 'english', 'text_choose_action', 'choose action..', '[[regtime]]', '[[regtime]]'),
(95, 1, 1, 'english', 'text_delete', 'Delete', '[[regtime]]', '[[regtime]]'),
(96, 1, 1, 'english', 'text_delete_selected', 'delete selected', '[[regtime]]', '[[regtime]]'),
(97, 1, 1, 'english', 'text_save_selected', 'Save Selected', '[[regtime]]', '[[regtime]]'),
(98, 1, 1, 'english', 'text_save_all', 'save all', '[[regtime]]', '[[regtime]]'),
(99, 1, 1, 'english', 'text_select_status', '- Select Status -', '[[regtime]]', '[[regtime]]'),
(100, 1, 1, 'english', 'text_all_orders', 'All Orders', '[[regtime]]', '[[regtime]]'),
(101, 1, 1, 'english', 'text_confirm_password', 'confirm password', '[[regtime]]', '[[regtime]]'),
(102, 1, 1, 'english', 'text_insert', 'Insert ', '[[regtime]]', '[[regtime]]'),
(103, 1, 1, 'english', 'text_select_items', 'Please Select Items', '[[regtime]]', '[[regtime]]'),
(104, 1, 1, 'english', 'button_go', 'GO', '[[regtime]]', '[[regtime]]'),
(105, 1, 1, 'english', 'search_everywhere', 'Search Entire Site', '[[regtime]]', '[[regtime]]'),
(106, 1, 1, 'english', 'column_action', 'Action', '[[regtime]]', '[[regtime]]'),
(107, 1, 1, 'english', 'error_permission_access', 'Warning: You do not have permission to access %s!', '[[regtime]]', '[[regtime]]'),
(108, 1, 1, 'english', 'error_permission_modify', 'Warning: You do not have permission to modify %s!', '[[regtime]]', '[[regtime]]'),
(109, 1, 1, 'english', 'text_add', 'Add', '[[regtime]]', '[[regtime]]'),
(110, 1, 1, 'english', 'text_add_block', 'Add Block', '[[regtime]]', '[[regtime]]'),
(111, 1, 1, 'english', 'text_resource_library', 'Resource Library', '[[regtime]]', '[[regtime]]'),
(112, 1, 1, 'english', 'text_add_media', 'Add Media', '[[regtime]]', '[[regtime]]'),
(113, 1, 1, 'english', 'confirm_unmap_title', 'Confirm resource(s) Unlink', '[[regtime]]', '[[regtime]]'),
(114, 1, 1, 'english', 'text_confirm_unmap', 'Are you sure you want to unlink resource(s)?', '[[regtime]]', '[[regtime]]'),
(115, 1, 1, 'english', 'confirm_del_title', 'Confirm resource(s) Delete', '[[regtime]]', '[[regtime]]'),
(116, 1, 1, 'english', 'text_confirm_del', 'Are you sure you want to delete resource(s)?', '[[regtime]]', '[[regtime]]'),
(117, 1, 1, 'english', 'text_type_image', 'Images', '[[regtime]]', '[[regtime]]'),
(118, 1, 1, 'english', 'text_type_audio', 'Audio', '[[regtime]]', '[[regtime]]'),
(119, 1, 1, 'english', 'text_type_video', 'Video', '[[regtime]]', '[[regtime]]'),
(120, 1, 1, 'english', 'text_type_pdf', 'PDF Document', '[[regtime]]', '[[regtime]]'),
(121, 1, 1, 'english', 'text_type_archive', 'Archive', '[[regtime]]', '[[regtime]]'),
(122, 1, 1, 'english', 'text_type_download', 'Download File', '[[regtime]]', '[[regtime]]'),
(123, 1, 1, 'english', 'button_unmap', 'Unlink', '[[regtime]]', '[[regtime]]'),
(124, 1, 1, 'english', 'button_select_resource', 'select', '[[regtime]]', '[[regtime]]'),
(125, 1, 1, 'english', 'text_click_to_change', 'Click image to change it', '[[regtime]]', '[[regtime]]'),
(126, 1, 1, 'english', 'text_select_from_list', 'Select from the list', '[[regtime]]', '[[regtime]]'),
(127, 1, 1, 'english', 'text_count_selected', 'Count of selected items:', '[[regtime]]', '[[regtime]]'),
(128, 1, 1, 'english', 'text_delete_confirm', 'Please, confirm delete', '[[regtime]]', '[[regtime]]'),
(129, 1, 1, 'english', 'text_save_edit', 'Add/Edit', '[[regtime]]', '[[regtime]]'),
(130, 1, 1, 'english', 'text_apply', 'Apply', '[[regtime]]', '[[regtime]]'),
(131, 1, 1, 'english', 'text_on_top', 'back on top', '[[regtime]]', '[[regtime]]'),
(132, 1, 1, 'english', 'text_all', 'All', '[[regtime]]', '[[regtime]]'),
(133, 1, 1, 'english', 'text_all_stores', 'All Stores', '[[regtime]]', '[[regtime]]'),
(134, 1, 1, 'english', 'text_create_new_block', ' Create New Block ', '[[regtime]]', '[[regtime]]'),
(135, 1, 1, 'english', 'button_unlink', 'Unlink', '[[regtime]]', '[[regtime]]'),
(136, 1, 1, 'english', 'text_confirm_unlink', 'Are you sure you want to unlink resource?', '[[regtime]]', '[[regtime]]'),
(137, 1, 1, 'english', 'confirm_unlink_title', 'Confirm resource Unlink', '[[regtime]]', '[[regtime]]'),
(138, 1, 1, 'english', 'text_select_store', 'Select a different store', '[[regtime]]', '[[regtime]]'),
(139, 1, 1, 'english', 'text_click_browse_file', 'Click to browse file', '[[regtime]]', '[[regtime]]'),
(140, 1, 1, 'english', 'text_browse', 'Browse', '[[regtime]]', '[[regtime]]'),
(141, 1, 1, 'english', 'text_or', 'or', '[[regtime]]', '[[regtime]]'),
(142, 1, 1, 'english', 'error_seo_keyword', 'SEO keyword <a target="_blank" href="%s">"%s"</a> is already exists!', '[[regtime]]', '[[regtime]]'),
(143, 1, 1, 'english', 'column_update_date', 'Update Date', '[[regtime]]', '[[regtime]]'),
(144, 1, 1, 'english', 'text_automatic', 'Automatic', '[[regtime]]', '[[regtime]]'),
(145, 1, 1, 'english', 'text_sort_order', 'Sort Order', '[[regtime]]', '[[regtime]]'),
(146, 1, 1, 'english', 'text_select_copy_layout', 'Select to copy layout from', '[[regtime]]', '[[regtime]]'),
(147, 1, 1, 'english', 'text_apply_layout', 'Apply Now', '[[regtime]]', '[[regtime]]'),
(148, 1, 1, 'english', 'text_new_download', 'New Download', '[[regtime]]', '[[regtime]]'),
(149, 1, 1, 'english', 'text_free', 'Free', '[[regtime]]', '[[regtime]]'),
(150, 1, 1, 'english', 'text_sure', 'Are you sure?', '[[regtime]]', '[[regtime]]'),
(151, 1, 1, 'english', 'button_add', 'Add', '[[regtime]]', '[[regtime]]'),
(152, 1, 1, 'english', 'text_please_confirm', 'Please Confirm', '[[regtime]]', '[[regtime]]'),
(153, 1, 1, 'english', 'button_confirm', 'Confirm', '[[regtime]]', '[[regtime]]'),
(154, 1, 1, 'english', 'button_download', 'Download', '[[regtime]]', '[[regtime]]'),
(155, 1, 1, 'english', 'recent_customers', 'Recently Registered Customers', '[[regtime]]', '[[regtime]]'),
(156, 1, 1, 'english', 'new_orders', 'New Orders', '[[regtime]]', '[[regtime]]'),
(157, 1, 1, 'english', 'text_saved', 'Saved Successfully', '[[regtime]]', '[[regtime]]'),
(158, 1, 1, 'english', 'text_processing', 'Processing ...', '[[regtime]]', '[[regtime]]'),
(159, 1, 1, 'english', 'text_next', 'Next', '[[regtime]]', '[[regtime]]'),
(160, 1, 1, 'english', 'text_previous', 'Previous', '[[regtime]]', '[[regtime]]'),
(161, 1, 1, 'english', 'text_on', 'ON', '[[regtime]]', '[[regtime]]'),
(162, 1, 1, 'english', 'text_off', 'OFF', '[[regtime]]', '[[regtime]]'),
(163, 1, 1, 'english', 'text_external_help', 'External Help', '[[regtime]]', '[[regtime]]'),
(164, 1, 1, 'english', 'text_select_from_lookup', 'Start typing (name, model, sku, etc.) to look up and select result', '[[regtime]]', '[[regtime]]'),
(165, 1, 1, 'english', 'text_continue_typing', 'Continue typing ...', '[[regtime]]', '[[regtime]]'),
(166, 1, 1, 'english', 'text_looking_for', 'Looking for', '[[regtime]]', '[[regtime]]'),
(167, 1, 1, 'english', 'button_manage_extensions', 'Manage Extensions', '[[regtime]]', '[[regtime]]'),
(168, 1, 1, 'english', 'text_abc_notification', 'Software Updates & Notifications', '[[regtime]]', '[[regtime]]'),
(169, 1, 1, 'english', 'text_not_applicable', 'NA', '[[regtime]]', '[[regtime]]'),
(170, 1, 1, 'english', 'text_share_embed_code', 'Get Embed Code', '[[regtime]]', '[[regtime]]'),
(171, 1, 1, 'english', 'text_copy_embed_code', 'Сopy and paste this into your HTML-code where you''d like to sell', '[[regtime]]', '[[regtime]]'),
(172, 1, 1, 'english', 'text_copy_embed_url', 'Сopy and paste this URL into your another site where you''d like to sell', '[[regtime]]', '[[regtime]]'),
(173, 1, 1, 'english', 'button_retry', 'Retry', '[[regtime]]', '[[regtime]]'),
(174, 1, 1, 'english', 'text_system_error', 'System error has been encountered. Check system <a target="_blank" href="%s">messages</a> or <a target="_blank" href="%s">error log</a>', '[[regtime]]', '[[regtime]]'),
(175, 1, 1, 'english', 'text_system_warning', 'System warning has been reported. Check system <a target="_blank" href="%s">messages</a>', '[[regtime]]', '[[regtime]]'),
(176, 1, 1, 'english', 'text_system_notice', 'System notice has been reported. Check system <a target="_blank" href="%s">messages</a>', '[[regtime]]', '[[regtime]]'),
(177, 1, 1, 'english', 'text_set_related', 'Set Related', '[[regtime]]', '[[regtime]]'),
(178, 1, 1, 'english', 'tab_text', 'HTML/Text', '[[regtime]]', '[[regtime]]'),
(179, 1, 1, 'english', 'tab_visual', 'Visual', '[[regtime]]', '[[regtime]]'),
(180, 1, 1, 'english', 'button_add_media', 'Add Media', '[[regtime]]', '[[regtime]]'),
(181, 1, 1, 'english', 'button_field_history', 'View Field History', '[[regtime]]', '[[regtime]]'),
(182, 1, 1, 'english', 'text_view_more', 'View More', '[[regtime]]', '[[regtime]]'),
(183, 1, 1, 'english', 'text_admin', 'Control Panel', '[[regtime]]', '[[regtime]]'),
(184, 1, 1, 'english', 'text_storefront', 'Storefront', '[[regtime]]', '[[regtime]]'),
(185, 1, 1, 'english', 'text_texteditor_extended_mode', '<a class="texteditor_ext_mode" href="%s" ><i class="fa fa-external-link"></i> Edit in Extended Mode</a>', '[[regtime]]', '[[regtime]]'),
(186, 1, 1, 'english', 'text_quick_view', 'Quick View', '[[regtime]]', '[[regtime]]'),
(187, 1, 1, 'english', 'text_more_current', 'Full page edit', '[[regtime]]', '[[regtime]]'),
(188, 1, 1, 'english', 'text_more_new', 'New tab edit', '[[regtime]]', '[[regtime]]'),
(189, 1, 1, 'english', 'text_back_to_list', 'Back to listing', '[[regtime]]', '[[regtime]]'),
(190, 1, 1, 'english', 'text_help_link', '<a href="https://www.abantecart.com/contact-us" target="_abantecart">Need help?</a>', '[[regtime]]', '[[regtime]]'),
(191, 1, 1, 'english', 'text_subtract_order', 'Subtract Order', '[[regtime]]', '[[regtime]]'),
(192, 1, 1, 'english', 'button_preview', 'Preview', '[[regtime]]', '[[regtime]]'),
(193, 1, 1, 'english', 'warning_extensions_with_layouts', ' Following extensions <br> %s <br> includes pages or layouts that are not present in the selected template. To include features from these extensions you will need to reinstall extensions after you enable new template. If reinstallation does not help, contact original developers of the above extensions for help. ', '[[regtime]]', '[[regtime]]'),
(194, 1, 1, 'english', 'column_sku', 'SKU', '[[regtime]]', '[[regtime]]'),
(195, 1, 1, 'english', 'entry_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(196, 1, 1, 'english', 'text_data_history', 'Data Change History', '[[regtime]]', '[[regtime]]'),
(197, 1, 1, 'english', 'text_design', 'Design', '[[regtime]]', '[[regtime]]'),
(198, 1, 1, 'english', 'text_select_brand', '-Select Brand-', '[[regtime]]', '[[regtime]]'),
(199, 1, 1, 'english', 'text_advanced_settings', 'Advanced', '[[regtime]]', '[[regtime]]'),
(200, 1, 1, 'banner_manager_banner_manager', 'banner_manager_name', 'Banner Manager', '[[regtime]]', '[[regtime]]'),
(201, 1, 1, 'banner_manager_banner_manager', 'banner_manager_note', 'To manage banners follow menu <b>Design -> Banner Mannger</b> after extension is enabled <br>\n To see banner statistic follow <b>Reports -> Banner Statistic</b> after extension is enabled and banners created', '[[regtime]]', '[[regtime]]'),
(202, 1, 1, 'banner_manager_banner_manager', 'banner_manager_list', 'Banner List', '[[regtime]]', '[[regtime]]'),
(203, 1, 1, 'banner_manager_banner_manager', 'banner_manager_name_stat', 'Banner Statistic', '[[regtime]]', '[[regtime]]'),
(204, 1, 1, 'banner_manager_banner_manager', 'column_banner_id', ' Id ', '[[regtime]]', '[[regtime]]'),
(205, 1, 1, 'banner_manager_banner_manager', 'column_banner_name', ' Name ', '[[regtime]]', '[[regtime]]'),
(206, 1, 1, 'banner_manager_banner_manager', 'column_banner_group', ' Group ', '[[regtime]]', '[[regtime]]'),
(207, 1, 1, 'banner_manager_banner_manager', 'column_banner_type', ' Type ', '[[regtime]]', '[[regtime]]'),
(208, 1, 1, 'banner_manager_banner_manager', 'column_status', ' Status ', '[[regtime]]', '[[regtime]]'),
(209, 1, 1, 'banner_manager_banner_manager', 'column_update_date', ' Update Date ', '[[regtime]]', '[[regtime]]'),
(210, 1, 1, 'banner_manager_banner_manager', 'column_clicked', ' Clicks ', '[[regtime]]', '[[regtime]]'),
(211, 1, 1, 'banner_manager_banner_manager', 'column_viewed', ' Viewed ', '[[regtime]]', '[[regtime]]'),
(212, 1, 1, 'banner_manager_banner_manager', 'column_percent', ' Conversion ', '[[regtime]]', '[[regtime]]'),
(213, 1, 1, 'banner_manager_banner_manager', 'text_create', ' Create New Banner ', '[[regtime]]', '[[regtime]]'),
(214, 1, 1, 'banner_manager_banner_manager', 'text_graphic_banner', ' Graphic Banner ', '[[regtime]]', '[[regtime]]'),
(215, 1, 1, 'banner_manager_banner_manager', 'text_text_banner', ' Text Banner ', '[[regtime]]', '[[regtime]]'),
(216, 1, 1, 'banner_manager_banner_manager', 'entry_banner_name', ' Name: ', '[[regtime]]', '[[regtime]]'),
(217, 1, 1, 'banner_manager_banner_manager', 'entry_banner_status', ' Status: ', '[[regtime]]', '[[regtime]]'),
(218, 1, 1, 'banner_manager_banner_manager', 'entry_banner_group_name', ' Banner Group Name: ', '[[regtime]]', '[[regtime]]'),
(219, 1, 1, 'banner_manager_banner_manager', 'entry_banner_description', ' Description: ', '[[regtime]]', '[[regtime]]'),
(220, 1, 1, 'banner_manager_banner_manager', 'entry_banner_html', ' Banner HTML-code: ', '[[regtime]]', '[[regtime]]'),
(221, 1, 1, 'banner_manager_banner_manager', 'entry_banner_meta', ' Meta information: <span class="help">SEO keywords etc</span> ', '[[regtime]]', '[[regtime]]'),
(222, 1, 1, 'banner_manager_banner_manager', 'entry_banner_url', ' URL: ', '[[regtime]]', '[[regtime]]'),
(223, 1, 1, 'banner_manager_banner_manager', 'entry_banner_blank', ' Open in New Window: ', '[[regtime]]', '[[regtime]]'),
(224, 1, 1, 'banner_manager_banner_manager', 'entry_banner_sort_order', ' Sort Order in Group: ', '[[regtime]]', '[[regtime]]'),
(225, 1, 1, 'banner_manager_banner_manager', 'entry_banner_date_start', ' Date Start: ', '[[regtime]]', '[[regtime]]'),
(226, 1, 1, 'banner_manager_banner_manager', 'entry_banner_date_end', ' Date End: ', '[[regtime]]', '[[regtime]]'),
(227, 1, 1, 'banner_manager_banner_manager', 'text_add_new_group', ' -- Add New Group -- ', '[[regtime]]', '[[regtime]]'),
(228, 1, 1, 'banner_manager_banner_manager', 'text_put_new_group', ' Put New Group Name Here ', '[[regtime]]', '[[regtime]]'),
(229, 1, 1, 'banner_manager_banner_manager', 'error_empty', ' Error: Please Fill All Required Fields of Form. ', '[[regtime]]', '[[regtime]]'),
(230, 1, 1, 'banner_manager_banner_manager', 'text_banner_success', ' Success : You have modified banner. ', '[[regtime]]', '[[regtime]]'),
(231, 1, 1, 'banner_manager_banner_manager', 'text_view_stat', ' View Statistic ', '[[regtime]]', '[[regtime]]'),
(232, 1, 1, 'banner_manager_banner_manager', 'text_banner_block', ' Banner Block ', '[[regtime]]', '[[regtime]]'),
(233, 1, 1, 'banner_manager_banner_manager', 'text_create_block', ' Create Banner Block ', '[[regtime]]', '[[regtime]]'),
(234, 1, 1, 'banner_manager_banner_manager', 'text_banner', ' Banner ', '[[regtime]]', '[[regtime]]'),
(235, 1, 1, 'banner_manager_banner_manager', 'entry_banners_selected', ' Selected banners: ', '[[regtime]]', '[[regtime]]'),
(236, 1, 1, 'banner_manager_banner_manager', 'text_select_banners', ' Select banners ', '[[regtime]]', '[[regtime]]'),
(237, 1, 1, 'banner_manager_banner_manager', 'text_hours', ' hours ', '[[regtime]]', '[[regtime]]'),
(238, 1, 1, 'banner_manager_banner_manager', 'text_weeks', ' week days ', '[[regtime]]', '[[regtime]]'),
(239, 1, 1, 'banner_manager_banner_manager', 'text_days', ' days ', '[[regtime]]', '[[regtime]]'),
(240, 1, 1, 'banner_manager_banner_manager', 'text_months', ' months ', '[[regtime]]', '[[regtime]]'),
(241, 1, 1, 'banner_manager_banner_manager', 'text_count', ' count ', '[[regtime]]', '[[regtime]]'),
(242, 1, 1, 'banner_manager_banner_manager', 'text_banners', ' Banners ', '[[regtime]]', '[[regtime]]'),
(243, 1, 1, 'banner_manager_banner_manager', 'text_delete_statistic', ' Delete Statistic ', '[[regtime]]', '[[regtime]]'),
(244, 1, 1, 'banner_manager_banner_manager', 'text_delete_success', ' Statistic have been successfully deleted! ', '[[regtime]]', '[[regtime]]'),
(245, 1, 1, 'forms_manager_forms_manager', 'forms_manager_name', 'Forms Manager', '[[regtime]]', '[[regtime]]'),
(246, 1, 1, 'forms_manager_forms_manager', 'forms_manager_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(247, 1, 1, 'forms_manager_forms_manager', 'forms_manager_note', ' To manage forms, please enable extension and follow Design-><a href="#admin#rt=tool/forms_manager">Forms Manager</a>', '[[regtime]]', '[[regtime]]'),
(248, 1, 1, 'forms_manager_forms_manager', 'custom_forms_block', 'Custom Forms Block', '[[regtime]]', '[[regtime]]'),
(249, 1, 1, 'forms_manager_forms_manager', 'entry_form_name', 'Form Name<br/><span class="help">Latin letters, underscore, minus only</span>', '[[regtime]]', '[[regtime]]'),
(250, 1, 1, 'forms_manager_forms_manager', 'entry_controller_path', 'Processing Controller', '[[regtime]]', '[[regtime]]'),
(251, 1, 1, 'forms_manager_forms_manager', 'entry_success_page', ' Success page<br/><span class="help">Leave it empty if you want to redirect to the same page as controller</span>', '[[regtime]]', '[[regtime]]'),
(252, 1, 1, 'forms_manager_forms_manager', 'entry_form_description', 'Description', '[[regtime]]', '[[regtime]]'),
(253, 1, 1, 'forms_manager_forms_manager', 'text_default_email', 'Default Email', '[[regtime]]', '[[regtime]]'),
(254, 1, 1, 'forms_manager_forms_manager', 'text_contactus_page', 'Contact Us Page', '[[regtime]]', '[[regtime]]'),
(255, 1, 1, 'forms_manager_forms_manager', 'text_form', 'Form', '[[regtime]]', '[[regtime]]'),
(256, 1, 1, 'forms_manager_forms_manager', 'column_name', 'Name', '[[regtime]]', '[[regtime]]'),
(257, 1, 1, 'forms_manager_forms_manager', 'column_field_name', 'Field Name', '[[regtime]]', '[[regtime]]'),
(258, 1, 1, 'forms_manager_forms_manager', 'column_description', 'Description', '[[regtime]]', '[[regtime]]'),
(259, 1, 1, 'forms_manager_forms_manager', 'column_status', 'Status', '[[regtime]]', '[[regtime]]'),
(260, 1, 1, 'forms_manager_forms_manager', 'filter_exact_match', 'The exact phrase', '[[regtime]]', '[[regtime]]'),
(261, 1, 1, 'forms_manager_forms_manager', 'filter_any_word', 'Any of these words', '[[regtime]]', '[[regtime]]'),
(262, 1, 1, 'forms_manager_forms_manager', 'filter_all_words', 'All of these words', '[[regtime]]', '[[regtime]]'),
(263, 1, 1, 'forms_manager_forms_manager', 'text_clone', 'Clone', '[[regtime]]', '[[regtime]]'),
(264, 1, 1, 'forms_manager_forms_manager', 'filter_form', 'Search for form', '[[regtime]]', '[[regtime]]'),
(265, 1, 1, 'forms_manager_forms_manager', 'text_add_new_field', '-- Add new field --', '[[regtime]]', '[[regtime]]'),
(266, 1, 1, 'forms_manager_forms_manager', 'button_add_field', 'Add Field', '[[regtime]]', '[[regtime]]'),
(267, 1, 1, 'forms_manager_forms_manager', 'button_reset', 'Reset', '[[regtime]]', '[[regtime]]'),
(268, 1, 1, 'forms_manager_forms_manager', 'text_field_type', 'Field type:', '[[regtime]]', '[[regtime]]'),
(269, 1, 1, 'forms_manager_forms_manager', 'button_remove_field', 'Remove field', '[[regtime]]', '[[regtime]]'),
(270, 1, 1, 'forms_manager_forms_manager', 'entry_field', 'Field', '[[regtime]]', '[[regtime]]'),
(271, 1, 1, 'forms_manager_forms_manager', 'entry_field_name', 'Field Name', '[[regtime]]', '[[regtime]]'),
(272, 1, 1, 'forms_manager_forms_manager', 'entry_sort_order', 'Sort order within a group', '[[regtime]]', '[[regtime]]'),
(273, 1, 1, 'forms_manager_forms_manager', 'entry_required', 'Required', '[[regtime]]', '[[regtime]]'),
(274, 1, 1, 'forms_manager_forms_manager', 'entry_edit_fields', 'Edit Fields', '[[regtime]]', '[[regtime]]'),
(275, 1, 1, 'forms_manager_forms_manager', 'entry_field_value', 'Field value', '[[regtime]]', '[[regtime]]'),
(276, 1, 1, 'forms_manager_forms_manager', 'error_required', 'This field is required!', '[[regtime]]', '[[regtime]]'),
(277, 1, 1, 'forms_manager_forms_manager', 'error_duplicate_form_name', 'There is already Form with such a Name attribute.', '[[regtime]]', '[[regtime]]'),
(278, 1, 1, 'forms_manager_forms_manager', 'error_duplicate_field_name', 'There is already Field with such a Name in the current Form.', '[[regtime]]', '[[regtime]]'),
(279, 1, 1, 'forms_manager_forms_manager', 'text_field_removed', 'The field has been successfully removed.', '[[regtime]]', '[[regtime]]'),
(280, 1, 1, 'forms_manager_forms_manager', 'text_success_form', 'The form has been successfully updated.', '[[regtime]]', '[[regtime]]'),
(281, 1, 1, 'forms_manager_forms_manager', 'text_success_field', 'The field has been successfully updated.', '[[regtime]]', '[[regtime]]'),
(282, 1, 1, 'forms_manager_forms_manager', 'text_success_added_form', 'The new Form has been successfully added.', '[[regtime]]', '[[regtime]]'),
(283, 1, 1, 'forms_manager_forms_manager', 'text_success_added_field', 'The new field has been successfully added.', '[[regtime]]', '[[regtime]]'),
(284, 1, 1, 'forms_manager_forms_manager', 'text_add_field', 'Add a new field', '[[regtime]]', '[[regtime]]'),
(285, 1, 1, 'forms_manager_forms_manager', 'entry_field_description', 'Display name', '[[regtime]]', '[[regtime]]'),
(286, 1, 1, 'forms_manager_forms_manager', 'entry_add_new_form', 'Add New Form', '[[regtime]]', '[[regtime]]'),
(287, 1, 1, 'forms_manager_forms_manager', 'text_create_block', 'Create Form Block', '[[regtime]]', '[[regtime]]'),
(288, 1, 1, 'forms_manager_forms_manager', 'entry_no_set_values', 'You can''t set values for this field type.', '[[regtime]]', '[[regtime]]'),
(289, 1, 1, 'forms_manager_forms_manager', 'text_field_values', 'Field Values', '[[regtime]]', '[[regtime]]'),
(290, 1, 1, 'forms_manager_forms_manager', 'note_create_form_block', ' NOTE: To see this form shown on storefront, create form block at Design-><a href="%s">Blocks</a> and add it to appropriate page at Design-><a href="%s">Layouts</a> page.', '[[regtime]]', '[[regtime]]'),
(291, 1, 1, 'forms_manager_forms_manager', 'note_edit_layout', ' NOTE: To see this block shown on storefront, add it to appropriate page at Design-><a href="%s">Layouts</a>. To create new form go to Design-><a href="%s">Form Manager</a> page.', '[[regtime]]', '[[regtime]]'),
(292, 1, 1, 'forms_manager_forms_manager', 'text_select_field_type', '--- Please select ---', '[[regtime]]', '[[regtime]]'),
(293, 1, 1, 'forms_manager_forms_manager', 'entry_field_note', 'Field internal note', '[[regtime]]', '[[regtime]]'),
(294, 1, 1, 'forms_manager_forms_manager', 'forms_manager_default_sender_name', 'Default Sender:', '[[regtime]]', '[[regtime]]'),
(295, 1, 1, 'forms_manager_forms_manager', 'forms_manager_default_sender_email', 'Default Sender Email:', '[[regtime]]', '[[regtime]]'),
(296, 1, 1, 'forms_manager_forms_manager', 'entry_field_placeholder', 'Placeholder:', '[[regtime]]', '[[regtime]]'),
(297, 1, 1, 'forms_manager_forms_manager', 'entry_regexp_pattern', 'Regular Expression Pattern:', '[[regtime]]', '[[regtime]]'),
(298, 1, 1, 'forms_manager_forms_manager', 'entry_html_attributes', ' html-attributes:<br /><span class="help">You can add your custom html-attributes for option element. Example: data-some-attribute="some value"</span>', '[[regtime]]', '[[regtime]]'),
(299, 1, 1, 'forms_manager_forms_manager', 'entry_error_text', 'Error Message about invalid Value:', '[[regtime]]', '[[regtime]]'),
(300, 1, 1, 'forms_manager_forms_manager', 'entry_form', 'Form', '[[regtime]]', '[[regtime]]'),
(301, 1, 1, 'forms_manager_forms_manager', 'error_fill_required', 'Please fill all required fields of form!', '[[regtime]]', '[[regtime]]'),
(302, 1, 1, 'forms_manager_forms_manager', 'error_form_name', 'Name of form cannot be empty!', '[[regtime]]', '[[regtime]]'),
(303, 1, 1, 'forms_manager_forms_manager', 'error_form_description', 'Description of form cannot be empty!', '[[regtime]]', '[[regtime]]'),
(304, 1, 1, 'forms_manager_forms_manager', 'error_field_name_exists', 'Field With Name %s already present in the Form!', '[[regtime]]', '[[regtime]]'),
(305, 1, 1, 'forms_manager_forms_manager', 'error_regexp_pattern', 'Regex pattern is invalid!', '[[regtime]]', '[[regtime]]'),
(306, 1, 1, 'forms_manager_forms_manager', 'forms_manager_error_empty_sender', ' Warning! Please set the default sender name and default sender email in <a href="#admin#rt=extension/extensions/edit&extension=forms_manager" target="_blank">forms manager settings</a>', '[[regtime]]', '[[regtime]]'),
(307, 1, 1, 'forms_manager_forms_manager', 'text_groups', 'Groups', '[[regtime]]', '[[regtime]]'),
(308, 1, 1, 'forms_manager_forms_manager', 'text_fields', 'Fields', '[[regtime]]', '[[regtime]]'),
(309, 1, 1, 'forms_manager_forms_manager', 'text_assign_fields_to_groups', 'Assign Fields to Groups', '[[regtime]]', '[[regtime]]'),
(310, 1, 1, 'forms_manager_forms_manager', 'text_add_new_group', 'Add New Field Group', '[[regtime]]', '[[regtime]]'),
(311, 1, 1, 'forms_manager_forms_manager', 'text_no_group', 'No field groups available', '[[regtime]]', '[[regtime]]'),
(312, 1, 1, 'forms_manager_forms_manager', 'text_no_fields', 'No fields available', '[[regtime]]', '[[regtime]]'),
(313, 1, 1, 'forms_manager_forms_manager', 'text_action', 'Action', '[[regtime]]', '[[regtime]]'),
(314, 1, 1, 'forms_manager_forms_manager', 'entry_group_name', 'Group Name', '[[regtime]]', '[[regtime]]'),
(315, 1, 1, 'forms_manager_forms_manager', 'entry_group', 'Group', '[[regtime]]', '[[regtime]]'),
(316, 1, 1, 'forms_manager_forms_manager', 'entry_group_description', 'Group Description', '[[regtime]]', '[[regtime]]'),
(317, 1, 1, 'forms_manager_forms_manager', 'button_save', 'Save', '[[regtime]]', '[[regtime]]'),
(318, 1, 1, 'forms_manager_forms_manager', 'button_cancel', 'Cancel', '[[regtime]]', '[[regtime]]'),
(319, 1, 1, 'forms_manager_forms_manager', 'error_group_name_required', 'Group name is required!', '[[regtime]]', '[[regtime]]'),
(320, 1, 1, 'forms_manager_forms_manager', 'error_unknown', 'An unknown error occurred', '[[regtime]]', '[[regtime]]'),
(321, 1, 1, 'forms_manager_forms_manager', 'text_success_fields_assigned', 'The fields have been successfully assigned to groups.', '[[regtime]]', '[[regtime]]'),
(322, 1, 1, 'forms_manager_forms_manager', 'text_success_added_group', 'The group has been successfully added.', '[[regtime]]', '[[regtime]]'),
(323, 1, 1, 'forms_manager_forms_manager', 'column_text_id', 'Text ID', '[[regtime]]', '[[regtime]]'),
(324, 1, 1, 'forms_manager_forms_manager', 'error_group_has_fields', 'Cannot remove a group. One or more fields are assigned to this group.', '[[regtime]]', '[[regtime]]'),
(325, 1, 1, 'forms_manager_forms_manager', 'text_edit_field_values', 'Edit Field Values', '[[regtime]]', '[[regtime]]'),
(326, 1, 1, '2checkout_2checkout', '2checkout_name', '2Checkout', '[[regtime]]', '[[regtime]]'),
(327, 1, 1, '2checkout_2checkout', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(328, 1, 1, '2checkout_2checkout', 'text_success', 'Success: You have modified 2Checkout account details!', '[[regtime]]', '[[regtime]]'),
(329, 1, 1, '2checkout_2checkout', '2checkout_note', 'With this extension you can use 2Checkout payment system to accept payments from your customers.<br>\n<b>Sign up free today! Use promo code ABANTECART2CO for a waiver of your application service fee (a savings of $10.99) and start selling online today! </b> Visit <a href="https://www.2checkout.com/signup/">www.2checkout.com</a>, complete the application, and then enter the code into the promo code field to take advantage of this special offer today!\n<br> Once register login to get account credentials to configure this extension\n<br>Don''t forget to setup INS URL and Redirect URL here <a href="https://secure.2checkout.com/cpanel/webhooks_api.php">https://secure.2checkout.com/cpanel/webhooks_api.php</a>.\n<br><br>Your INS URL is <h4>#storefront#rt=extension/2checkout/callback</h4>\n<br><br>Also setup the Redirect URL and choose Return method "Header redirect".\n<br><br>Your Redirect URL is <h4>#storefront#rt=checkout/success</h4>\n ', '[[regtime]]', '[[regtime]]'),
(330, 1, 1, '2checkout_2checkout', '2checkout_account', '2Checkout Merchant Code:', '[[regtime]]', '[[regtime]]'),
(331, 1, 1, '2checkout_2checkout', '2checkout_secret', 'Secret Key:<br /><span class="help">The secret word to confirm transactions with (must be the same as defined on the merchant account configuration page.</span>', '[[regtime]]', '[[regtime]]'),
(332, 1, 1, '2checkout_2checkout', '2checkout_test', 'Test Mode:', '[[regtime]]', '[[regtime]]'),
(333, 1, 1, '2checkout_2checkout', '2checkout_test_1', 'Yes', '[[regtime]]', '[[regtime]]'),
(334, 1, 1, '2checkout_2checkout', '2checkout_test_0', 'No', '[[regtime]]', '[[regtime]]'),
(335, 1, 1, '2checkout_2checkout', '2checkout_order_status_id', 'Order Status:', '[[regtime]]', '[[regtime]]'),
(336, 1, 1, '2checkout_2checkout', '2checkout_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(337, 1, 1, '2checkout_2checkout', '2checkout_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(338, 1, 1, '2checkout_2checkout', 'error_permission', 'Warning: You do not have permission to modify payment 2Checkout!', '[[regtime]]', '[[regtime]]'),
(339, 1, 1, '2checkout_2checkout', 'error_account', 'Merchant Code Required!', '[[regtime]]', '[[regtime]]'),
(340, 1, 1, '2checkout_2checkout', 'error_secret', 'Secret Key Required!', '[[regtime]]', '[[regtime]]'),
(341, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_name', 'Avatax integration', '[[regtime]]', '[[regtime]]'),
(342, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_note', 'If you have standard tax enabled, it will function together with Avatax and you might need to disable standard taxes. Check System -> Localization -> <a target="_blank" href="#admin#rt=localisation/tax_class">Tax Class</a><br>Also don''t forget to enable extension <a href="#admin#rt=total/avatax_integration_total">Avatax Integration Total</a><br>Important! Avatax Integration Total calculation order in extension totals must be after subtotal. Subtotal calculation should precede this extension total calculation. Check this in extensions total settings.', '[[regtime]]', '[[regtime]]'),
(343, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_account_number', 'Account Number:<br /><span class="help">Account number provided by Avalara</span>', '[[regtime]]', '[[regtime]]'),
(344, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_license_key', 'License Key:<br /><span class="help">License key provided by Avalara</span>', '[[regtime]]', '[[regtime]]'),
(345, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_test_mode', 'Test mode:', '[[regtime]]', '[[regtime]]'),
(346, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_tax_name', 'Tax Name:<br /><span class="help">Tax name to be shown to the customer in the totals section</span>', '[[regtime]]', '[[regtime]]'),
(347, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_company_code', 'Company Code:<br /><span class="help">Company code to be used with Avalara</span>', '[[regtime]]', '[[regtime]]'),
(348, 1, 1, 'avatax_integration_avatax_integration', 'error_turn_extension_on', 'Error! Please check if the extension is turned ON.', '[[regtime]]', '[[regtime]]'),
(349, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_default_taxcode', 'Product Default TaxCode', '[[regtime]]', '[[regtime]]'),
(350, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_shipping_taxcode', 'Shipping Methods Default TaxCodes', '[[regtime]]', '[[regtime]]'),
(351, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_text_shipping_method', 'Shipping Method', '[[regtime]]', '[[regtime]]'),
(352, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_text_shipping_taxcode', 'Freight Tax Code', '[[regtime]]', '[[regtime]]'),
(353, 1, 1, 'avatax_integration_avatax_integration', 'text_test', 'Test connection', '[[regtime]]', '[[regtime]]'),
(354, 1, 1, 'avatax_integration_avatax_integration', 'text_connection_success', 'Connection is successful and API Credentials are configured correctly.', '[[regtime]]', '[[regtime]]'),
(355, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_test_connection', 'Test connection:', '[[regtime]]', '[[regtime]]'),
(356, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_address_validation', 'Address Validation:<br /><span class="help">Address validation will be performed at customer checkout step</span>', '[[regtime]]', '[[regtime]]'),
(357, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_address_validate_button_title', 'Title for Address Validation Button:', '[[regtime]]', '[[regtime]]'),
(358, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_commit_documents', 'Commit documents on Avatax Service:<br /><span class="help">If enable tax document will be committed at specified order status</span>', '[[regtime]]', '[[regtime]]'),
(359, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_return_documents', 'Return documents on Avatax Service:<br /><span class="help">Return will be recorded at specified order status</span>', '[[regtime]]', '[[regtime]]'),
(360, 1, 1, 'avatax_integration_avatax_integration', 'button_add_tax_code', 'Save', '[[regtime]]', '[[regtime]]'),
(361, 1, 1, 'avatax_integration_avatax_integration', 'button_delete_tax_code', 'Clear TaxCode', '[[regtime]]', '[[regtime]]'),
(362, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_taxcode_name', 'Product TaxCode:', '[[regtime]]', '[[regtime]]'),
(363, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_button_find_taxcode', 'Find Tax Code', '[[regtime]]', '[[regtime]]'),
(364, 1, 1, 'avatax_integration_avatax_integration', 'exemption_status', 'Exemption Status:', '[[regtime]]', '[[regtime]]'),
(365, 1, 1, 'avatax_integration_avatax_integration', 'exemption_status_pending', 'Pending', '[[regtime]]', '[[regtime]]'),
(366, 1, 1, 'avatax_integration_avatax_integration', 'exemption_status_approved', 'Approved', '[[regtime]]', '[[regtime]]'),
(367, 1, 1, 'avatax_integration_avatax_integration', 'exemption_status_declined', 'Declined', '[[regtime]]', '[[regtime]]'),
(368, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_subject', 'Your tax-exempt number has been declined', '[[regtime]]', '[[regtime]]'),
(369, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_mail_text', 'Your tax-exempt number has been declined. To check validity, please visit your account details page %s', '[[regtime]]', '[[regtime]]'),
(370, 1, 1, 'avatax_integration_avatax_integration', 'exemption_number_name', 'Exemption Number:<br /><span class="help">Tax exemption number</span>', '[[regtime]]', '[[regtime]]'),
(371, 1, 1, 'avatax_integration_avatax_integration', 'entity_use_code_name', 'Entity\\Use Code:<br /><span class="help">AvaTax has a group of codes that indicate the type of exemption. See the standard codes or create custom codes in AvaTax site</span>', '[[regtime]]', '[[regtime]]'),
(372, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_status_success_settled', 'Commit on Order status:', '[[regtime]]', '[[regtime]]'),
(373, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_status_return_settled', 'Return on Order status:', '[[regtime]]', '[[regtime]]'),
(374, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_status_cancel_settled', 'Cancel on Order status:', '[[regtime]]', '[[regtime]]'),
(375, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_account_number_validation_error', 'Account Number error. Check it!', '[[regtime]]', '[[regtime]]'),
(376, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_address_validation_countries_Both', 'Both', '[[regtime]]', '[[regtime]]'),
(377, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_address_validation_countries_US', 'USA', '[[regtime]]', '[[regtime]]'),
(378, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_address_validation_countries_CA', 'Canada', '[[regtime]]', '[[regtime]]'),
(379, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_address_validation_countries', 'Countries for address validation', '[[regtime]]', '[[regtime]]'),
(380, 1, 1, 'avatax_integration_avatax_integration', 'total_name', 'Avatax Integration Total', '[[regtime]]', '[[regtime]]');
INSERT INTO `[[dbprefix]]language_definitions` VALUES
(381, 1, 1, 'avatax_integration_avatax_integration', 'avatax_integration_logging', 'Enable transaction logging', '[[regtime]]', '[[regtime]]'),
(382, 1, 1, 'cardconnect_cardconnect', 'cardconnect_name', 'CardConnect', '[[regtime]]', '[[regtime]]'),
(383, 1, 1, 'cardconnect_cardconnect', 'cardconnect_note', 'To obtain API Credentials please visit https://cardconnect.com/signup/developer', '[[regtime]]', '[[regtime]]'),
(384, 1, 1, 'cardconnect_cardconnect', 'cardconnect_merchant_id', 'Merchant ID', '[[regtime]]', '[[regtime]]'),
(385, 1, 1, 'cardconnect_cardconnect', 'cardconnect_username', 'API Username', '[[regtime]]', '[[regtime]]'),
(386, 1, 1, 'cardconnect_cardconnect', 'cardconnect_password', 'API Password', '[[regtime]]', '[[regtime]]'),
(387, 1, 1, 'cardconnect_cardconnect', 'cardconnect_logging', 'Logging:<br /><span class="help">Log file is located in system/logs/cardconnect.txt file</span>', '[[regtime]]', '[[regtime]]'),
(388, 1, 1, 'cardconnect_cardconnect', 'cardconnect_test', 'Test', '[[regtime]]', '[[regtime]]'),
(389, 1, 1, 'cardconnect_cardconnect', 'cardconnect_test_connection', 'Test Connection', '[[regtime]]', '[[regtime]]'),
(390, 1, 1, 'cardconnect_cardconnect', 'cardconnect_get_test_api_credentials', 'Get Test API Credentials', '[[regtime]]', '[[regtime]]'),
(391, 1, 1, 'cardconnect_cardconnect', 'cardconnect_test_mode', 'Test Mode', '[[regtime]]', '[[regtime]]'),
(392, 1, 1, 'cardconnect_cardconnect', 'cardconnect_site', 'Domain portion to API:<br /><span class="help">This value should not be changed, unless different specified by cardConnent.</span>', '[[regtime]]', '[[regtime]]'),
(393, 1, 1, 'cardconnect_cardconnect', 'cardconnect_connection_success', 'Connection is successful and API Credentials are configured correctly.', '[[regtime]]', '[[regtime]]'),
(394, 1, 1, 'cardconnect_cardconnect', 'cardconnect_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(395, 1, 1, 'cardconnect_cardconnect', 'cardconnect_location_id', 'Location', '[[regtime]]', '[[regtime]]'),
(396, 1, 1, 'cardconnect_cardconnect', 'cardconnect_status_refund', 'Refunded:<br /><span class="help">Order status you want to be set if payment is refunded in admin/order', '[[regtime]]', '[[regtime]]'),
(397, 1, 1, 'cardconnect_cardconnect', 'cardconnect_status_decline', 'Decline:<br /><span class="help">Order status you want to record in history in response to payment processor status. Main order status is not affected. Order will not be placed only after payment is a success.</span>', '[[regtime]]', '[[regtime]]'),
(398, 1, 1, 'cardconnect_cardconnect', 'cardconnect_status_success_unsettled', 'Success & not settled:<br /><span class="help">Select main order status you want to set in response to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(399, 1, 1, 'cardconnect_cardconnect', 'cardconnect_status_success_settled', 'Success & settled:<br /><span class="help">Select main order status you want to set in response to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(400, 1, 1, 'cardconnect_cardconnect', 'cardconnect_status_void', 'Voided:<br /><span class="help">Order status you want to be set if payment is voided in admin/order.</span>', '[[regtime]]', '[[regtime]]'),
(401, 1, 1, 'cardconnect_cardconnect', 'cardconnect_settlement_payment', 'Auto (authorize and capture)', '[[regtime]]', '[[regtime]]'),
(402, 1, 1, 'cardconnect_cardconnect', 'cardconnect_settlement_auth', 'Delayed (authorize only)', '[[regtime]]', '[[regtime]]'),
(403, 1, 1, 'cardconnect_cardconnect', 'cardconnect_settlement', 'Settlement type:<br /><span class="help">If set to "auto", then the transaction will be included in today''s settlement. If set to ''delayed'', then the transaction will be authorised but not settled(captured). You must manually capture transactions within 7 days of authorisation</span>', '[[regtime]]', '[[regtime]]'),
(404, 1, 1, 'cardconnect_cardconnect', 'cardconnect_save_cards_limit', 'Max credit cards saved: <br/><span class="help">Set maximum number of credit cards to be saved by customers (up to 100). If set to 0 or blank saving of cards will not be allowed. Security note: Customer credit card details are saved on CardConnect secure servers to ensure maximum data security measures. No credit card details will be saved on your site.</span>', '[[regtime]]', '[[regtime]]'),
(405, 1, 1, 'cardconnect_cardconnect', 'text_column_date_added', 'Transaction Date', '[[regtime]]', '[[regtime]]'),
(406, 1, 1, 'cardconnect_cardconnect', 'text_column_amount', 'Amount', '[[regtime]]', '[[regtime]]'),
(407, 1, 1, 'cardconnect_cardconnect', 'text_captured_ok', 'Funds were captured successfully', '[[regtime]]', '[[regtime]]'),
(408, 1, 1, 'cardconnect_cardconnect', 'text_captured_order', 'Capture was successful, order status updated to success - settled', '[[regtime]]', '[[regtime]]'),
(409, 1, 1, 'cardconnect_cardconnect', 'text_refunded_ok', 'Refund was processed successfully', '[[regtime]]', '[[regtime]]'),
(410, 1, 1, 'cardconnect_cardconnect', 'text_refund_order', 'Refund was successful, order status updated to refunded', '[[regtime]]', '[[regtime]]'),
(411, 1, 1, 'cardconnect_cardconnect', 'text_voided', 'Void was successful, order status updated to voided', '[[regtime]]', '[[regtime]]'),
(412, 1, 1, 'cardconnect_cardconnect', 'text_payment_info', 'Payment Details', '[[regtime]]', '[[regtime]]'),
(413, 1, 1, 'cardconnect_cardconnect', 'text_capture_status', 'Payment captured', '[[regtime]]', '[[regtime]]'),
(414, 1, 1, 'cardconnect_cardconnect', 'text_void_status', 'Payment voided', '[[regtime]]', '[[regtime]]'),
(415, 1, 1, 'cardconnect_cardconnect', 'text_refund_status', 'Payment refunded', '[[regtime]]', '[[regtime]]'),
(416, 1, 1, 'cardconnect_cardconnect', 'text_capture_amount', 'Capture Amount', '[[regtime]]', '[[regtime]]'),
(417, 1, 1, 'cardconnect_cardconnect', 'text_refund_amount', 'Refund Amount', '[[regtime]]', '[[regtime]]'),
(418, 1, 1, 'cardconnect_cardconnect', 'text_order_ref', 'CardConnect Charge ID', '[[regtime]]', '[[regtime]]'),
(419, 1, 1, 'cardconnect_cardconnect', 'text_authorized_ammount', 'Total amount authorized', '[[regtime]]', '[[regtime]]'),
(420, 1, 1, 'cardconnect_cardconnect', 'text_balance', 'Balance amount', '[[regtime]]', '[[regtime]]'),
(421, 1, 1, 'cardconnect_cardconnect', 'text_transactions', 'Refund Transactions', '[[regtime]]', '[[regtime]]'),
(422, 1, 1, 'cardconnect_cardconnect', 'text_confirm_void', 'Please confirm you want to void the payment?', '[[regtime]]', '[[regtime]]'),
(423, 1, 1, 'cardconnect_cardconnect', 'text_confirm_capture', 'Please confirm you want to capture the payment?', '[[regtime]]', '[[regtime]]'),
(424, 1, 1, 'cardconnect_cardconnect', 'text_confirm_refund', 'Please confirm you want to refund the payment?', '[[regtime]]', '[[regtime]]'),
(425, 1, 1, 'cardconnect_cardconnect', 'button_refund', 'Refund', '[[regtime]]', '[[regtime]]'),
(426, 1, 1, 'cardconnect_cardconnect', 'button_void', 'Void', '[[regtime]]', '[[regtime]]'),
(427, 1, 1, 'cardconnect_cardconnect', 'button_capture', 'Capture', '[[regtime]]', '[[regtime]]'),
(428, 1, 1, 'cardconnect_cardconnect', 'error_system', 'Internal error. Check error log or input parameters!', '[[regtime]]', '[[regtime]]'),
(429, 1, 1, 'cardconnect_cardconnect', 'error_missing_amount', 'Please enter positive amount', '[[regtime]]', '[[regtime]]'),
(430, 1, 1, 'cardconnect_cardconnect', 'error_unable_to_void', 'Unable to void transaction, refresh and check transaction details', '[[regtime]]', '[[regtime]]'),
(431, 1, 1, 'cardconnect_cardconnect', 'error_unable_to_capture', 'Unable to capture, refresh transaction details and check capture amount', '[[regtime]]', '[[regtime]]'),
(432, 1, 1, 'cardconnect_cardconnect', 'error_unable_to_refund', 'Unable to refund, refresh transaction details and check refund amount', '[[regtime]]', '[[regtime]]'),
(433, 1, 1, 'cardconnect_cardconnect', 'text_settlement_status', 'Current Settlement Status', '[[regtime]]', '[[regtime]]'),
(434, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_name', 'Authorize.Net Payment', '[[regtime]]', '[[regtime]]'),
(435, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_note', 'Additional settings are required to complete Authorize.Net payment setup. See additional settings tab.', '[[regtime]]', '[[regtime]]'),
(436, 1, 1, 'default_authorizenet_default_authorizenet', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(437, 1, 1, 'default_authorizenet_default_authorizenet', 'text_success', 'Success: You have modified Authorize.Net payment settings!', '[[regtime]]', '[[regtime]]'),
(438, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(439, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(440, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_api_login_id', 'API Login ID:', '[[regtime]]', '[[regtime]]'),
(441, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_test_mode', 'Test mode:<br /><span class="help">Set to ON if you want to use test key</span>', '[[regtime]]', '[[regtime]]'),
(442, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_api_transaction_key', 'Transaction Key:', '[[regtime]]', '[[regtime]]'),
(443, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_api_public_key', 'Public Key:', '[[regtime]]', '[[regtime]]'),
(444, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_autoselect', ' Auto Select:<br /><span class="help">You can set to skip payment selection page if there is only one payment option. This payment method will be selected automatically</span>', '[[regtime]]', '[[regtime]]'),
(445, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_save_cards_limit', ' Can save credit cards:<br /><span class="help">Set maximum number of credit cards to be saved by customers (up to 100). If set to 0 or blank saving of cards will not be allowed. Security note: Customer credit card details are saved on authorizenet secure servers to ensure maximum data security measures. No credit card details will be saved on your site.</span>', '[[regtime]]', '[[regtime]]'),
(446, 1, 1, 'default_authorizenet_default_authorizenet', 'text_authorizenet_connect', 'You need to connect with authorizenet to set up payment details', '[[regtime]]', '[[regtime]]'),
(447, 1, 1, 'default_authorizenet_default_authorizenet', 'text_authorizenet_settings', 'Authorize.Net settings', '[[regtime]]', '[[regtime]]'),
(448, 1, 1, 'default_authorizenet_default_authorizenet', 'text_connect', 'Connect with Authorize.Net', '[[regtime]]', '[[regtime]]'),
(449, 1, 1, 'default_authorizenet_default_authorizenet', 'text_disconnect', 'Disconnect Authorize.Net', '[[regtime]]', '[[regtime]]'),
(450, 1, 1, 'default_authorizenet_default_authorizenet', 'text_skip_connect', 'Cannot connect?', '[[regtime]]', '[[regtime]]'),
(451, 1, 1, 'default_authorizenet_default_authorizenet', 'text_connect_success', 'Connected to Authorize.Net successfully', '[[regtime]]', '[[regtime]]'),
(452, 1, 1, 'default_authorizenet_default_authorizenet', 'text_disconnect_success', 'Disconnected from Authorize.Net successfully', '[[regtime]]', '[[regtime]]'),
(453, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_sort_order', 'Sort Order', '[[regtime]]', '[[regtime]]'),
(454, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_sk_live', 'Live Secret Key:<br /><span class="help">Locate this in Authorize.Net API Keys Section. Key starts with sk_live_... </span>', '[[regtime]]', '[[regtime]]'),
(455, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_pk_live', 'Live Publishable Key:<br /><span class="help">Locate this in Authorize.Net API Keys Section. Key starts with pk_live_... </span>', '[[regtime]]', '[[regtime]]'),
(456, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_sk_test', 'Test Secret Key:<br /><span class="help">Locate this in Authorize.Net API Keys Section. Key starts with sk_test_... </span>', '[[regtime]]', '[[regtime]]'),
(457, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_pk_test', 'Test Publishable Key:<br /><span class="help">Locate this in Authorize.Net API Keys Section. Key starts with pk_test_... </span>', '[[regtime]]', '[[regtime]]'),
(458, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_settlement', 'Settlement type:', '[[regtime]]', '[[regtime]]'),
(459, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_settlement_auth', 'Authorize Only', '[[regtime]]', '[[regtime]]'),
(460, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_settlement_authcapture', 'Authorize & Capture ', '[[regtime]]', '[[regtime]]'),
(461, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_status_success_settled', 'Success & settled:<br /><span class="help">Select main order status you want to set in responce to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(462, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_status_success_unsettled', 'Success & not settled:<br /><span class="help">Select main order status you want to set in responce to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(463, 1, 1, 'default_authorizenet_default_authorizenet', 'text_column_date_added', 'Transaction Date', '[[regtime]]', '[[regtime]]'),
(464, 1, 1, 'default_authorizenet_default_authorizenet', 'text_column_amount', 'Amount', '[[regtime]]', '[[regtime]]'),
(465, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_settlement_auto', 'Auto (authorize and capture)', '[[regtime]]', '[[regtime]]'),
(466, 1, 1, 'default_authorizenet_default_authorizenet', 'default_authorizenet_settlement_delayed', 'Delayed (authorize only)', '[[regtime]]', '[[regtime]]'),
(467, 1, 1, 'default_authorizenet_default_authorizenet', 'text_payment_info', 'Payment Details', '[[regtime]]', '[[regtime]]'),
(468, 1, 1, 'default_authorizenet_default_authorizenet', 'text_order_ref', 'Authorize.Net Transaction ID', '[[regtime]]', '[[regtime]]'),
(469, 1, 1, 'default_authorizenet_default_authorizenet', 'text_transaction_status', 'Transaction Status', '[[regtime]]', '[[regtime]]'),
(470, 1, 1, 'default_authorizenet_default_authorizenet', 'text_order_total', 'Total amount authorized', '[[regtime]]', '[[regtime]]'),
(471, 1, 1, 'default_authorizenet_default_authorizenet', 'text_balance', 'Balance amount', '[[regtime]]', '[[regtime]]'),
(472, 1, 1, 'default_authorizenet_default_authorizenet', 'error_system', 'Internal error. Check error log or input parameters!', '[[regtime]]', '[[regtime]]'),
(473, 1, 1, 'default_authorizenet_default_authorizenet', 'error_missing_amount', 'Please enter positive amount', '[[regtime]]', '[[regtime]]'),
(474, 1, 1, 'default_authorizenet_default_authorizenet', 'error_authorizenet_sk_test', 'Authorize.Net test key is required', '[[regtime]]', '[[regtime]]'),
(475, 1, 1, 'default_authorizenet_default_authorizenet', 'error_authorizenet_sk_live', 'Authorize.Net live key is required', '[[regtime]]', '[[regtime]]'),
(476, 1, 1, 'default_authorizenet_default_authorizenet', 'error_permission', 'Warning: You do not have permission to modify Authorize.Net Payment!', '[[regtime]]', '[[regtime]]'),
(477, 1, 1, 'default_banktransfer_default_banktransfer', 'default_banktransfer_name', 'Bank Transfer', '[[regtime]]', '[[regtime]]'),
(478, 1, 1, 'default_banktransfer_default_banktransfer', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(479, 1, 1, 'default_banktransfer_default_banktransfer', 'text_success', 'Success: You have modified bank transfer settings and details!', '[[regtime]]', '[[regtime]]'),
(480, 1, 1, 'default_banktransfer_default_banktransfer', 'default_banktransfer_instructions', 'Bank Transfer Instructions:<span class="help">Instruction shown to customers to make bank or wire transfer into your bank account</span>', '[[regtime]]', '[[regtime]]'),
(481, 1, 1, 'default_banktransfer_default_banktransfer', 'default_banktransfer_order_min', 'Total Order limit:<span class="help">Minimum order amount to be reached to allow this payment</span>', '[[regtime]]', '[[regtime]]'),
(482, 1, 1, 'default_banktransfer_default_banktransfer', 'default_banktransfer_order_status_id', 'Order Status:', '[[regtime]]', '[[regtime]]'),
(483, 1, 1, 'default_banktransfer_default_banktransfer', 'default_banktransfer_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(484, 1, 1, 'default_banktransfer_default_banktransfer', 'default_banktransfer_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(485, 1, 1, 'default_banktransfer_default_banktransfer', 'error_permission', 'Warning: You do not have permission to modify payment banktransfer!', '[[regtime]]', '[[regtime]]'),
(486, 1, 1, 'default_banktransfer_default_banktransfer', 'error_instructions', 'Bank Transfer Instructions are required!', '[[regtime]]', '[[regtime]]'),
(487, 1, 1, 'default_cheque_default_cheque', 'default_cheque_name', 'Cheque / Money Order', '[[regtime]]', '[[regtime]]'),
(488, 1, 1, 'default_cheque_default_cheque', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(489, 1, 1, 'default_cheque_default_cheque', 'text_success', 'Success: You have modified cheque / money order account details!', '[[regtime]]', '[[regtime]]'),
(490, 1, 1, 'default_cheque_default_cheque', 'default_cheque_payable', 'Payable To:<br /><span class="help">Provide name check needs to be written to</span>', '[[regtime]]', '[[regtime]]'),
(491, 1, 1, 'default_cheque_default_cheque', 'default_cheque_address', 'Mail or Send To:<br /><span class="help">Provide address where to send the check. Main store address will be used if blank</span>', '[[regtime]]', '[[regtime]]'),
(492, 1, 1, 'default_cheque_default_cheque', 'default_cheque_order_status_id', 'Order Status:', '[[regtime]]', '[[regtime]]'),
(493, 1, 1, 'default_cheque_default_cheque', 'default_cheque_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(494, 1, 1, 'default_cheque_default_cheque', 'default_cheque_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(495, 1, 1, 'default_cheque_default_cheque', 'error_permission', 'Warning: You do not have permission to modify payment cheque / money order!', '[[regtime]]', '[[regtime]]'),
(496, 1, 1, 'default_cheque_default_cheque', 'error_payable', 'Payable To Required!', '[[regtime]]', '[[regtime]]'),
(497, 1, 1, 'default_cod_default_cod', 'default_cod_name', 'Cash On Delivery', '[[regtime]]', '[[regtime]]'),
(498, 1, 1, 'default_cod_default_cod', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(499, 1, 1, 'default_cod_default_cod', 'text_success', 'Success: You have modified Cash On Delivery payment module!', '[[regtime]]', '[[regtime]]'),
(500, 1, 1, 'default_cod_default_cod', 'default_cod_order_status_id', 'Order Status:', '[[regtime]]', '[[regtime]]'),
(501, 1, 1, 'default_cod_default_cod', 'default_cod_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(502, 1, 1, 'default_cod_default_cod', 'default_cod_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(503, 1, 1, 'default_cod_default_cod', 'error_permission', 'Warning: You do not have permission to modify payment Cash On Delivery!', '[[regtime]]', '[[regtime]]'),
(504, 1, 1, 'default_fedex_default_fedex', 'default_fedex_name', 'FEDEX', '[[regtime]]', '[[regtime]]'),
(505, 1, 1, 'default_fedex_default_fedex', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(506, 1, 1, 'default_fedex_default_fedex', 'text_success', 'Success: You have modified shipping FEDEX!', '[[regtime]]', '[[regtime]]'),
(507, 1, 1, 'default_fedex_default_fedex', 'default_fedex_key', 'Fedex Production Key:<br /><span class="help">Enter the Fedex Production Key Assigned to You, Required. </span>', '[[regtime]]', '[[regtime]]'),
(508, 1, 1, 'default_fedex_default_fedex', 'default_fedex_password', 'Fedex Production Password:<br /><span class="help"></span>', '[[regtime]]', '[[regtime]]'),
(509, 1, 1, 'default_fedex_default_fedex', 'default_fedex_account', 'Account Number:<br /><span class="help">Enter the fedex Account Number assigned to you, required.</span>', '[[regtime]]', '[[regtime]]'),
(510, 1, 1, 'default_fedex_default_fedex', 'default_fedex_meter', 'Fedex Meter Number:<br /><span class="help">Enter FedEx Meter Number.</span>', '[[regtime]]', '[[regtime]]'),
(511, 1, 1, 'default_fedex_default_fedex', 'default_fedex_address', 'Address:<br /><span class="help">Shipping from street address.</span>', '[[regtime]]', '[[regtime]]'),
(512, 1, 1, 'default_fedex_default_fedex', 'default_fedex_city', 'City:<br /><span class="help">Shipping from city.</span>', '[[regtime]]', '[[regtime]]'),
(513, 1, 1, 'default_fedex_default_fedex', 'default_fedex_state', 'State:<br /><span class="help">Shipping from state (two letters).</span>', '[[regtime]]', '[[regtime]]'),
(514, 1, 1, 'default_fedex_default_fedex', 'default_fedex_zip', 'Zip/postal code:<br /><span class="help">Shipping from Zip-code.</span>', '[[regtime]]', '[[regtime]]'),
(515, 1, 1, 'default_fedex_default_fedex', 'default_fedex_country', 'Country:<br /><span class="help">Shipping from country(two letters).</span>', '[[regtime]]', '[[regtime]]'),
(516, 1, 1, 'default_fedex_default_fedex', 'default_fedex_quote_type', 'Quote Type:<br /><span class="help">Quote for Residential or Commercial Delivery.</span>', '[[regtime]]', '[[regtime]]'),
(517, 1, 1, 'default_fedex_default_fedex', 'default_fedex_quote_type_residential', 'Residential', '[[regtime]]', '[[regtime]]'),
(518, 1, 1, 'default_fedex_default_fedex', 'default_fedex_quote_type_commercial', 'Commercial', '[[regtime]]', '[[regtime]]'),
(519, 1, 1, 'default_fedex_default_fedex', 'default_fedex_add_chrg', 'Additional Charges:<br /><span class="help">Additional charge applied to fedex quote.</span>', '[[regtime]]', '[[regtime]]'),
(520, 1, 1, 'default_fedex_default_fedex', 'default_fedex_default_fedex_us_01', ' FEDEX First Overnight ', '[[regtime]]', '[[regtime]]'),
(521, 1, 1, 'default_fedex_default_fedex', 'default_fedex_default_fedex_us_02', ' FEDEX Priority Overnight ', '[[regtime]]', '[[regtime]]'),
(522, 1, 1, 'default_fedex_default_fedex', 'default_fedex_default_fedex_us_03', ' FEDEX Standard Overnight ', '[[regtime]]', '[[regtime]]'),
(523, 1, 1, 'default_fedex_default_fedex', 'default_fedex_default_fedex_us_04', ' FEDEX 2nd Day ', '[[regtime]]', '[[regtime]]'),
(524, 1, 1, 'default_fedex_default_fedex', 'default_fedex_default_fedex_us_05', ' FEDEX Express Saver ', '[[regtime]]', '[[regtime]]'),
(525, 1, 1, 'default_fedex_default_fedex', 'default_fedex_default_fedex_us_06', ' FEDEX Ground ', '[[regtime]]', '[[regtime]]'),
(526, 1, 1, 'default_fedex_default_fedex', 'error_permission', 'Warning: You do not have permission to modify shipping FEDEX!', '[[regtime]]', '[[regtime]]'),
(527, 1, 1, 'default_fedex_default_fedex', 'error_account', 'Account ID Required!', '[[regtime]]', '[[regtime]]'),
(528, 1, 1, 'default_fedex_default_fedex', 'error_meter', 'Fedex Meter ID Required!', '[[regtime]]', '[[regtime]]'),
(529, 1, 1, 'default_fedex_default_fedex', 'default_fedex_note', 'To obtain your Meter Number and Authorization Key, you will need to follow these steps:</br>\n Go to <a href="http://fedex.com/us/developer" target="_blank">http://fedex.com/us/developer</a><br>\n Login in with FedEx username and password or click Register Now if they don''t have one.<br>\n Click "Technical Resources" (left side).<br>\n Under that click "FedEx web services for shipping.<br>\n Click on "Move To Production" (right side).<br>\n Scroll down to button and click "Obtain Production Key".<br>\n On form choose "No" on question 1.<br>\n Check the first box on question 2.<br>\n Choose "Corporate Developer" on question 3.<br>\n Accept agreement.<br>\n Fill out the form (do not use dashes in the account number).<br>\n Receive meter number and key instantly. Your Production Password will be emailed to you once you complete the above steps.', '[[regtime]]', '[[regtime]]'),
(530, 1, 1, 'default_fedex_default_fedex', 'default_fedex_test', 'Test Mode:<br /><span class="help">Use the live or testing gateway server?</span>', '[[regtime]]', '[[regtime]]'),
(531, 1, 1, 'default_fedex_default_fedex', 'default_fedex_test_1', ' Yes ', '[[regtime]]', '[[regtime]]'),
(532, 1, 1, 'default_fedex_default_fedex', 'default_fedex_test_0', ' No ', '[[regtime]]', '[[regtime]]'),
(533, 1, 1, 'default_fedex_default_fedex', 'text_test_connection', 'Test Your Connection:<span class="help">You can test if API credentials that you''ve entered are correct.</span>', '[[regtime]]', '[[regtime]]'),
(534, 1, 1, 'default_fedex_default_fedex', 'text_test', 'Test', '[[regtime]]', '[[regtime]]'),
(535, 1, 1, 'default_fedex_default_fedex', 'text_connection_success', 'Connection is successful and API Credentials are configured correctly.', '[[regtime]]', '[[regtime]]'),
(536, 1, 1, 'default_fedex_default_fedex', 'error_turn_extension_on', 'Error! Please check if extension is turned ON.', '[[regtime]]', '[[regtime]]'),
(537, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_name', 'Flat Rate', '[[regtime]]', '[[regtime]]'),
(538, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(539, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'text_success', 'Success: You have modified flat rate shipping!', '[[regtime]]', '[[regtime]]'),
(540, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_rates', 'Rates:', '[[regtime]]', '[[regtime]]'),
(541, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(542, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_cost', 'Cost:', '[[regtime]]', '[[regtime]]'),
(543, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_tax_class_id', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(544, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_tax_class_id_0', ' ---None---', '[[regtime]]', '[[regtime]]'),
(545, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(546, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'default_flat_rate_shipping_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(547, 1, 1, 'default_flat_rate_shipping_default_flat_rate_shipping', 'error_permission', 'Warning: You do not have permission to modify flat rate shipping!', '[[regtime]]', '[[regtime]]'),
(548, 1, 1, 'default_free_shipping_default_free_shipping', 'default_free_shipping_name', 'Free Shipping', '[[regtime]]', '[[regtime]]'),
(549, 1, 1, 'default_free_shipping_default_free_shipping', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(550, 1, 1, 'default_free_shipping_default_free_shipping', 'text_success', 'Success: You have modified free shipping!', '[[regtime]]', '[[regtime]]'),
(551, 1, 1, 'default_free_shipping_default_free_shipping', 'default_free_shipping_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(552, 1, 1, 'default_free_shipping_default_free_shipping', 'default_free_shipping_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(553, 1, 1, 'default_free_shipping_default_free_shipping', 'error_permission', 'Warning: You do not have permission to modify free shipping!', '[[regtime]]', '[[regtime]]'),
(554, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_name', 'LIQPAY', '[[regtime]]', '[[regtime]]'),
(555, 1, 1, 'default_liqpay_default_liqpay', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(556, 1, 1, 'default_liqpay_default_liqpay', 'text_success', 'Success: You have modified LIQPAY account details!', '[[regtime]]', '[[regtime]]'),
(557, 1, 1, 'default_liqpay_default_liqpay', 'text_pay', 'LIQPAY', '[[regtime]]', '[[regtime]]'),
(558, 1, 1, 'default_liqpay_default_liqpay', 'text_card', 'Credit Card', '[[regtime]]', '[[regtime]]'),
(559, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_merchant', 'Merchant ID:', '[[regtime]]', '[[regtime]]'),
(560, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_signature', 'Signature:', '[[regtime]]', '[[regtime]]'),
(561, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_public_key', 'Public Key:', '[[regtime]]', '[[regtime]]'),
(562, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_private_key', 'Private Key:', '[[regtime]]', '[[regtime]]'),
(563, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_type', 'Type:', '[[regtime]]', '[[regtime]]'),
(564, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_type_pay', 'Pay', '[[regtime]]', '[[regtime]]'),
(565, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_type_card', 'Card', '[[regtime]]', '[[regtime]]'),
(566, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_test_mode', 'Test Mode:', '[[regtime]]', '[[regtime]]'),
(567, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_order_status_id', 'Order Status:', '[[regtime]]', '[[regtime]]'),
(568, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(569, 1, 1, 'default_liqpay_default_liqpay', 'default_liqpay_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(570, 1, 1, 'default_liqpay_default_liqpay', 'error_permission', 'Warning: You do not have permission to modify payment LIQPAY!', '[[regtime]]', '[[regtime]]'),
(571, 1, 1, 'default_liqpay_default_liqpay', 'error_merchant', 'Merchant ID Required!', '[[regtime]]', '[[regtime]]'),
(572, 1, 1, 'default_liqpay_default_liqpay', 'error_signature', 'Signature Required!', '[[regtime]]', '[[regtime]]'),
(573, 1, 1, 'default_local_delivery_default_local_delivery', 'default_local_delivery_name', 'Local Delivery', '[[regtime]]', '[[regtime]]'),
(574, 1, 1, 'default_local_delivery_default_local_delivery', 'text_shipping', 'Delivery', '[[regtime]]', '[[regtime]]'),
(575, 1, 1, 'default_local_delivery_default_local_delivery', 'text_success', 'Success: You have modified local delivery!', '[[regtime]]', '[[regtime]]'),
(576, 1, 1, 'default_local_delivery_default_local_delivery', 'default_local_delivery_total', 'Min order amount:<br /><span class="help">Minimum sub-total amount to be met for delivery option to be available.</span>', '[[regtime]]', '[[regtime]]'),
(577, 1, 1, 'default_local_delivery_default_local_delivery', 'default_local_delivery_cost', 'Delivery Fee:', '[[regtime]]', '[[regtime]]'),
(578, 1, 1, 'default_local_delivery_default_local_delivery', 'default_local_delivery_tax_class_id', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(579, 1, 1, 'default_local_delivery_default_local_delivery', 'default_local_delivery_tax_class_id_0', ' -------- ', '[[regtime]]', '[[regtime]]'),
(580, 1, 1, 'default_local_delivery_default_local_delivery', 'default_local_delivery_postal_codes', 'Postal Codes:<br /><span class="help"> Comma separated postal codes list. Wildcard * supported. Example 30001,3002,40*,*ND</span>', '[[regtime]]', '[[regtime]]'),
(581, 1, 1, 'default_local_delivery_default_local_delivery', 'error_permission', 'Warning: You do not have permission to modify local delivery!', '[[regtime]]', '[[regtime]]'),
(582, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_name', 'Parcelforce 48', '[[regtime]]', '[[regtime]]'),
(583, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(584, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'text_success', 'Success: You have modified Parcelforce 48 shipping!', '[[regtime]]', '[[regtime]]'),
(585, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_rate', 'Parcelforce 48 Rates:<br /><span class="help">Example: 0:0,10:15.99,12:19.99, - Weights less than or equal to 10 pounds would cost $15.99, Weights less than 12 pounds but more than 10 pounds will cost $19.99. Where Pound is your Store Weight class and $ is Store Base currency. You can change both in the Store Settings. Do not enter KG or any symbols. Enter values upto 5,2 decimal places. (12345.67) </span>', '[[regtime]]', '[[regtime]]'),
(586, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_weight', 'Display Delivery Weight:<br /><span class="help">Do you want to display the shipping weight? (e.g. Delivery Weight : 2.7674 Kg''s)</span>', '[[regtime]]', '[[regtime]]'),
(587, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_weight_1', 'Yes', '[[regtime]]', '[[regtime]]'),
(588, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_weight_0', 'No', '[[regtime]]', '[[regtime]]'),
(589, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_insurance', 'Display Insurance:<br /><span class="help">Do you want to display the shipping insurance? (e.g. Insured upto 500)</span>', '[[regtime]]', '[[regtime]]'),
(590, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_insurance_1', 'Yes', '[[regtime]]', '[[regtime]]'),
(591, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_insurance_0', 'No', '[[regtime]]', '[[regtime]]'),
(592, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_time', 'Display Delivery Time:<br /><span class="help">Do you want to display the shipping time? (e.g. Ships within 3 to 5 days)</span>', '[[regtime]]', '[[regtime]]'),
(593, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_time_1', 'Yes', '[[regtime]]', '[[regtime]]'),
(594, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_display_time_0', 'No', '[[regtime]]', '[[regtime]]'),
(595, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_compensation', 'Parcelforce48 Compensation Rates:<br /><span class="help">Enter values upto 5,2 decimal places. (12345.67) Example: 34:0,100:1,250:2.25 - Insurance cover for cart values upto 34 would cost 0.00 extra, those values more than 100 and upto 250 will cost 2.25 extra. Do not enter currency symbols.</span>', '[[regtime]]', '[[regtime]]'),
(596, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_tax', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(597, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_tax_0', '---None---', '[[regtime]]', '[[regtime]]'),
(598, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(599, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'default_parcelforce_48_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(600, 1, 1, 'default_parcelforce_48_default_parcelforce_48', 'error_permission', 'Warning: You do not have permission to modify Parcelforce 48 shipping!', '[[regtime]]', '[[regtime]]'),
(601, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'default_per_item_shipping_name', 'Per Item', '[[regtime]]', '[[regtime]]'),
(602, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(603, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'text_success', 'Success: You have modified shipping per item rates!', '[[regtime]]', '[[regtime]]'),
(604, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'default_per_item_shipping_cost', 'Cost:', '[[regtime]]', '[[regtime]]'),
(605, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'default_per_item_shipping_tax', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(606, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'default_per_item_shipping_tax_0', '---None---', '[[regtime]]', '[[regtime]]'),
(607, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'default_per_item_shipping_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(608, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'default_per_item_shipping_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(609, 1, 1, 'default_per_item_shipping_default_per_item_shipping', 'error_permission', 'Warning: You do not have permission to modify shipping per item rates!', '[[regtime]]', '[[regtime]]'),
(610, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_name', 'Royal Mail', '[[regtime]]', '[[regtime]]'),
(611, 1, 1, 'default_royal_mail_default_royal_mail', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(612, 1, 1, 'default_royal_mail_default_royal_mail', 'text_success', 'Success: You have modified Royal Mail shipping!', '[[regtime]]', '[[regtime]]'),
(613, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_1st_class', '1st Class (for GB only)<br/><span class="help">Next-day delivery aim for letters and parcels</span>', '[[regtime]]', '[[regtime]]'),
(614, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_1st_class_rates', '1st Class Rates:<br/><span class="help">Example: .1:1.58,.25:1.96,.5:2.48 Weight:Cost,Weight:Cost, etc. In this example 0.1kg = £1.58. Where KG is your Weight class set in the Royal Mail settings and £ is Store Base currency. Store Weight class will be ignored.</span>', '[[regtime]]', '[[regtime]]'),
(615, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_1st_class_compensation_rates', '1st Class Compensation Rates', '[[regtime]]', '[[regtime]]'),
(616, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_2nd_class', '2nd Class (for GB only)', '[[regtime]]', '[[regtime]]'),
(617, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_2nd_class_rates', '2nd Class Rates', '[[regtime]]', '[[regtime]]'),
(618, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_2nd_class_compensation_rates', '2nd Class Compensation Rates', '[[regtime]]', '[[regtime]]'),
(619, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tracked24', 'Tracked 24® (for GB only)', '[[regtime]]', '[[regtime]]'),
(620, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tracked24_rates', 'Tracked 24® Rates', '[[regtime]]', '[[regtime]]'),
(621, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tracked24_compensation_rates', 'Tracked 24® Compensation Rates', '[[regtime]]', '[[regtime]]'),
(622, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tracked48', 'Tracked 48® (for GB only)', '[[regtime]]', '[[regtime]]'),
(623, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tracked48_rates', 'Tracked 48® Rates', '[[regtime]]', '[[regtime]]'),
(624, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tracked48_compensation_rates', 'Tracked 48® Compensation Rates', '[[regtime]]', '[[regtime]]'),
(625, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_mail24', 'Mail 24® (for GB only)', '[[regtime]]', '[[regtime]]'),
(626, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_mail24_rates', 'Mail 24® Rates', '[[regtime]]', '[[regtime]]'),
(627, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_mail24_compensation_rates', 'Mail 24® Compensation Rates', '[[regtime]]', '[[regtime]]'),
(628, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_mail48', 'Mail 48® (for GB only)', '[[regtime]]', '[[regtime]]'),
(629, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_mail48_rates', 'Mail 48® Rates', '[[regtime]]', '[[regtime]]'),
(630, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_mail48_compensation_rates', 'Mail 48® Compensation Rates', '[[regtime]]', '[[regtime]]'),
(631, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_sameday', 'Sameday® (for GB only)', '[[regtime]]', '[[regtime]]'),
(632, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_sameday_rates', 'Sameday® Rates', '[[regtime]]', '[[regtime]]'),
(633, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_sameday_compensation_rates', 'Sameday® Compensation Rates', '[[regtime]]', '[[regtime]]'),
(634, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_special_delivery_guaranteed', 'Special Delivery Guaranteed® (for GB only)', '[[regtime]]', '[[regtime]]'),
(635, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_special_delivery_guaranteed_rates', 'Special Delivery Guaranteed® Rates', '[[regtime]]', '[[regtime]]'),
(636, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_special_delivery_guaranteed_compensation_rates', 'Special Delivery Guaranteed® Compensation Rates', '[[regtime]]', '[[regtime]]'),
(637, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb', 'Shipping method for free shipping (GB only)<span class="help">Please select what method will chosen for case when cart contains only products with free shipping</span>', '[[regtime]]', '[[regtime]]'),
(638, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_1st_class', '1st Class', '[[regtime]]', '[[regtime]]'),
(639, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_2nd_class', '2nd Class', '[[regtime]]', '[[regtime]]'),
(640, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_tracked24', 'Tracked 24®', '[[regtime]]', '[[regtime]]'),
(641, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_tracked48', 'Tracked 48®', '[[regtime]]', '[[regtime]]'),
(642, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_mail24', 'Mail 24®', '[[regtime]]', '[[regtime]]'),
(643, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_mail48', 'Mail 48®', '[[regtime]]', '[[regtime]]'),
(644, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_sameday', 'Sameday®', '[[regtime]]', '[[regtime]]'),
(645, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_free_gb_special_delivery_guaranteed', 'Special Delivery Guaranteed®', '[[regtime]]', '[[regtime]]'),
(646, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_europe_zone_1', 'International Pricing Europe Zone 1', '[[regtime]]', '[[regtime]]'),
(647, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_europe_zone_2', 'International Pricing Europe Zone 2', '[[regtime]]', '[[regtime]]'),
(648, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_europe_zone_3', 'International Pricing Europe Zone 3', '[[regtime]]', '[[regtime]]'),
(649, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_world_zone_1', 'International Pricing World Zone 1', '[[regtime]]', '[[regtime]]'),
(650, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_world_zone_2', 'International Pricing World Zone 2', '[[regtime]]', '[[regtime]]'),
(651, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_world_zone_3', 'International Pricing World Zone 3', '[[regtime]]', '[[regtime]]'),
(652, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_europe_zone_1', 'International Standard Economy (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(653, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_europe_zone_1_rates', 'Standard Economy Rates (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(654, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_europe_zone_2', 'International Standard Economy (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(655, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_europe_zone_2_rates', 'Standard Economy Rates (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(656, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_europe_zone_3', 'International Standard Economy (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(657, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_europe_zone_3_rates', 'Standard Economy Rates (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(658, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_world_zone_1', 'International Standard Economy (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(659, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_world_zone_1_rates', 'Standard Economy Rates (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(660, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_world_zone_2', 'International Standard Economy (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(661, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_world_zone_2_rates', 'Standard Economy Rates (World Zone 2)', '[[regtime]]', '[[regtime]]');
INSERT INTO `[[dbprefix]]language_definitions` VALUES
(662, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_world_zone_3', 'International Standard Economy (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(663, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_economy_world_zone_3_rates', 'Standard Economy Rates (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(664, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_europe_zone_1', 'International Standard Priority (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(665, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_europe_zone_1_rates', 'Standard Priority Rates (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(666, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_europe_zone_2', 'International Standard Priority (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(667, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_europe_zone_2_rates', 'Standard Priority Rates (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(668, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_europe_zone_3', 'International Standard Priority (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(669, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_europe_zone_3_rates', 'Standard Priority Rates (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(670, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_world_zone_1', 'International Standard Priority (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(671, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_world_zone_1_rates', 'Standard Priority Rates (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(672, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_world_zone_2', 'International Standard Priority (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(673, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_world_zone_2_rates', 'Standard Priority Rates (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(674, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_world_zone_3', 'International Standard Priority (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(675, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_standard_priority_world_zone_3_rates', 'Standard Priority Rates (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(676, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_europe_zone_1', 'International Signed (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(677, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_europe_zone_1_rates', 'Signed Rates (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(678, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_europe_zone_2', 'International Signed (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(679, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_europe_zone_2_rates', 'Signed Rates (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(680, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_europe_zone_3', 'International Signed (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(681, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_europe_zone_3_rates', 'Signed Rates (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(682, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_world_zone_1', 'International Signed (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(683, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_world_zone_1_rates', 'Signed Rates (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(684, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_world_zone_2', 'International Signed (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(685, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_world_zone_2_rates', 'Signed Rates (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(686, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_world_zone_3', 'International Signed (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(687, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_signed_world_zone_3_rates', 'Signed Rates (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(688, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_europe_zone_1', 'International Tracked Signed (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(689, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_europe_zone_1_rates', 'Tracked Signed Rates (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(690, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_europe_zone_2', 'International Tracked Signed (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(691, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_europe_zone_2_rates', 'Tracked Signed Rates (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(692, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_europe_zone_3', 'International Tracked Signed (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(693, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_europe_zone_3_rates', 'Tracked Signed Rates (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(694, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_world_zone_1', 'International Tracked Signed (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(695, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_world_zone_1_rates', 'Tracked Signed Rates (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(696, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_world_zone_2', 'International Tracked Signed (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(697, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_world_zone_2_rates', 'Tracked Signed Rates (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(698, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_world_zone_3', 'International Tracked Signed (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(699, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_signed_world_zone_3_rates', 'Tracked Signed Rates (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(700, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_europe_zone_1', 'International Tracked (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(701, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_europe_zone_1_rates', 'Tracked Rates (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(702, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_europe_zone_2', 'International Tracked (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(703, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_europe_zone_2_rates', 'Tracked Rates (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(704, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_europe_zone_3', 'International Tracked (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(705, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_europe_zone_3_rates', 'Tracked Rates (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(706, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_world_zone_1', 'International Tracked (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(707, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_world_zone_1_rates', 'Tracked Rates (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(708, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_world_zone_2', 'International Tracked (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(709, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_world_zone_2_rates', 'Tracked Rates (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(710, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_world_zone_3', 'International Tracked (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(711, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_world_zone_3_rates', 'Tracked Rates (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(712, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_europe_zone_1', 'International Tracked Heavier (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(713, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_europe_zone_1_rates', 'Tracked Heavier Rates (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(714, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_europe_zone_2', 'International Tracked Heavier (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(715, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_europe_zone_2_rates', 'Tracked Heavier Rates (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(716, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_europe_zone_3', 'International Tracked Heavier (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(717, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_europe_zone_3_rates', 'Tracked Heavier Rates (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(718, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_world_zone_1', 'International Tracked Heavier (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(719, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_world_zone_1_rates', 'Tracked Heavier Rates (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(720, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_world_zone_2', 'International Tracked Heavier (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(721, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_world_zone_2_rates', 'Tracked Heavier Rates (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(722, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_world_zone_3', 'International Tracked Heavier (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(723, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_tracked_heavier_world_zone_3_rates', 'Tracked Heavier Rates (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(724, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free', 'International Shipping Method for free shipping <span class="help">Please select what method will chosen for case when cart contains only products with free shipping</span>', '[[regtime]]', '[[regtime]]'),
(725, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_economy_europe_zone_1', 'Standard Economy (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(726, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_economy_europe_zone_2', 'Standard Economy (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(727, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_economy_europe_zone_3', 'Standard Economy (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(728, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_economy_world_zone_1', 'Standard Economy (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(729, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_economy_world_zone_2', 'Standard Economy (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(730, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_economy_world_zone_3', 'Standard Economy (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(731, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_priority_europe_zone_1', 'Standard Priority (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(732, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_priority_europe_zone_2', 'Standard Priority (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(733, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_priority_europe_zone_3', 'Standard Priority (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(734, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_priority_world_zone_1', 'Standard Priority (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(735, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_priority_world_zone_2', 'Standard Priority (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(736, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_standard_priority_world_zone_3', 'Standard Priority (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(737, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_signed_europe_zone_1', 'Signed (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(738, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_signed_europe_zone_2', 'Signed (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(739, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_signed_europe_zone_3', 'Signed (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(740, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_signed_world_zone_1', 'Signed (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(741, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_signed_world_zone_2', 'Signed (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(742, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_signed_world_zone_3', 'Signed (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(743, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_signed_europe_zone_1', 'Tracked Signed (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(744, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_signed_europe_zone_2', 'Tracked Signed (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(745, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_signed_europe_zone_3', 'Tracked Signed (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(746, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_signed_world_zone_1', 'Tracked Signed (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(747, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_signed_world_zone_2', 'Tracked Signed (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(748, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_signed_world_zone_3', 'Tracked Signed (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(749, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_europe_zone_1', 'Tracked (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(750, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_europe_zone_2', 'Tracked (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(751, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_europe_zone_3', 'Tracked (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(752, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_world_zone_1', 'Tracked (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(753, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_world_zone_2', 'Tracked (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(754, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_world_zone_3', 'Tracked (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(755, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_heavier_europe_zone_1', 'Tracked Heavier (Europe Zone 1)', '[[regtime]]', '[[regtime]]'),
(756, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_heavier_europe_zone_2', 'Tracked Heavier (Europe Zone 2)', '[[regtime]]', '[[regtime]]'),
(757, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_heavier_europe_zone_3', 'Tracked Heavier (Europe Zone 3)', '[[regtime]]', '[[regtime]]'),
(758, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_heavier_world_zone_1', 'Tracked Heavier (World Zone 1)', '[[regtime]]', '[[regtime]]'),
(759, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_heavier_world_zone_2', 'Tracked Heavier (World Zone 2)', '[[regtime]]', '[[regtime]]'),
(760, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_intl_free_tracked_heavier_world_zone_3', 'Tracked Heavier (World Zone 3)', '[[regtime]]', '[[regtime]]'),
(761, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_display_weight', 'Display Delivery Weight:<br /><span class="help">Do you want to display the shipping weight? (e.g. Delivery Weight : 2.7674 Kg''s)</span>', '[[regtime]]', '[[regtime]]'),
(762, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_display_insurance', 'Display Insurance:<br /><span class="help">Do you want to display the shipping insurance? (e.g. Insured upto £500)</span>', '[[regtime]]', '[[regtime]]'),
(763, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_display_time', 'Display Delivery Time:<br /><span class="help">Do you want to display the shipping time? (e.g. Ships within 3 to 5 days)</span>', '[[regtime]]', '[[regtime]]'),
(764, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_weight_class', 'Weight Class:<br /><span class="help">Your rates weight class. Store weight class will be ignored</span>', '[[regtime]]', '[[regtime]]'),
(765, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tax', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(766, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_tax_0', '---None---', '[[regtime]]', '[[regtime]]'),
(767, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(768, 1, 1, 'default_royal_mail_default_royal_mail', 'default_royal_mail_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(769, 1, 1, 'default_royal_mail_default_royal_mail', 'error_permission', 'Warning: You do not have permission to modify Royal Mail shipping!', '[[regtime]]', '[[regtime]]'),
(770, 1, 1, 'default_store_pickup_default_store_pickup', 'default_store_pickup_name', 'Pickup From Store', '[[regtime]]', '[[regtime]]'),
(771, 1, 1, 'default_store_pickup_default_store_pickup', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(772, 1, 1, 'default_store_pickup_default_store_pickup', 'text_success', 'Success: You have modified pickup from store!', '[[regtime]]', '[[regtime]]'),
(773, 1, 1, 'default_store_pickup_default_store_pickup', 'default_store_pickup_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(774, 1, 1, 'default_store_pickup_default_store_pickup', 'default_store_pickup_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(775, 1, 1, 'default_store_pickup_default_store_pickup', 'error_permission', 'Warning: You do not have permission to modify pickup from store!', '[[regtime]]', '[[regtime]]'),
(776, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_name', 'TextMarketer', '[[regtime]]', '[[regtime]]'),
(777, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_note', 'To enable sms-messaging go to System -> Settings -> <a href="#admin#rt=setting/setting/im" target="_im">IM</a> <br/>\n and choose TextMarketer as default sms-driver. Do not forget to enable section where you wish to receive sms from (admin or storefront).<br/>\n This extension will enable Mobile Phone field for admins and customers to provide. Remember that disabling of this extension will hide this field.\n If added to existing store with customers, keep in mind that this information will be missing.', '[[regtime]]', '[[regtime]]'),
(778, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_username', 'API Username', '[[regtime]]', '[[regtime]]'),
(779, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_password', 'API Password', '[[regtime]]', '[[regtime]]'),
(780, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_originator', 'Originator: <span class="help">Who the message is from (the originator or sender ID). This can be 11 alpha-numeric or 16 numeric only characters.</span>', '[[regtime]]', '[[regtime]]'),
(781, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_test', 'Test Mode', '[[regtime]]', '[[regtime]]'),
(782, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_test_0', 'No', '[[regtime]]', '[[regtime]]'),
(783, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_test_1', 'Yes', '[[regtime]]', '[[regtime]]'),
(784, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_logging', 'Error Logging Status<span class="help">If you want to log all errors of TextMarketer extension turn this setting ON.</span>', '[[regtime]]', '[[regtime]]'),
(785, 1, 1, 'default_textmarketer_default_textmarketer', 'entry_sms', ' Mobile Phone ', '[[regtime]]', '[[regtime]]'),
(786, 1, 1, 'default_textmarketer_default_textmarketer', 'default_textmarketer_test_connection', 'Test Your Connection:<span class="help">You can test if API credentials that you''ve entered are correct.</span>', '[[regtime]]', '[[regtime]]'),
(787, 1, 1, 'default_textmarketer_default_textmarketer', 'text_test', ' Test ', '[[regtime]]', '[[regtime]]'),
(788, 1, 1, 'default_textmarketer_default_textmarketer', 'error_turn_extension_on', 'Error! Please check if extension is turned ON.', '[[regtime]]', '[[regtime]]'),
(789, 1, 1, 'default_textmarketer_default_textmarketer', 'error_empty_test_phone_number', 'Error! Please place recipient phone number.', '[[regtime]]', '[[regtime]]'),
(790, 1, 1, 'default_textmarketer_default_textmarketer', 'text_see_log', 'See error log for details.', '[[regtime]]', '[[regtime]]'),
(791, 1, 1, 'default_textmarketer_default_textmarketer', 'text_connection_success', 'Connection is successful and API Credentials are configured correctly.', '[[regtime]]', '[[regtime]]'),
(792, 1, 1, 'default_twilio_default_twilio', 'default_twilio_name', 'Twilio', '[[regtime]]', '[[regtime]]'),
(793, 1, 1, 'default_twilio_default_twilio', 'default_twilio_note', 'To enable sms-messaging go to System -> Settings -> <a href="#admin#rt=setting/setting/im" target="_im">IM</a> <br/>\n and choose Twilio as default sms-driver. Do not forget to enable section where you wish to receive sms from (admin or storefront).<br/>\n This extension will enable Mobile Phone field for admins and customers to provide. Remember that disabling of this extension will hide this field.\n If added to existing store with customers, keep in mind that this information will be missing.', '[[regtime]]', '[[regtime]]'),
(794, 1, 1, 'default_twilio_default_twilio', 'default_twilio_username', 'API AccountSID', '[[regtime]]', '[[regtime]]'),
(795, 1, 1, 'default_twilio_default_twilio', 'default_twilio_token', 'API AuthToken', '[[regtime]]', '[[regtime]]'),
(796, 1, 1, 'default_twilio_default_twilio', 'default_twilio_test', 'Test Mode', '[[regtime]]', '[[regtime]]'),
(797, 1, 1, 'default_twilio_default_twilio', 'default_twilio_sender_phone', 'Sender (Twilio) Phone: <span class="help">Phone number of sender in international format (ex. +14158675309)</span>', '[[regtime]]', '[[regtime]]'),
(798, 1, 1, 'default_twilio_default_twilio', 'default_twilio_send_to', 'Send test SMS to: ', '[[regtime]]', '[[regtime]]'),
(799, 1, 1, 'default_twilio_default_twilio', 'default_twilio_test_0', 'No', '[[regtime]]', '[[regtime]]'),
(800, 1, 1, 'default_twilio_default_twilio', 'default_twilio_test_1', 'Yes', '[[regtime]]', '[[regtime]]'),
(801, 1, 1, 'default_twilio_default_twilio', 'default_twilio_test_connection', 'Test Your Connection:<span class="help">You can test if API credentials that you''ve entered are correct.</span>', '[[regtime]]', '[[regtime]]'),
(802, 1, 1, 'default_twilio_default_twilio', 'default_twilio_logging', 'Error Logging Status<span class="help">If you want to log all errors of Twilio extension turn this setting ON.</span>', '[[regtime]]', '[[regtime]]'),
(803, 1, 1, 'default_twilio_default_twilio', 'entry_sms', ' Mobile Phone ', '[[regtime]]', '[[regtime]]'),
(804, 1, 1, 'default_twilio_default_twilio', 'text_test', ' Test ', '[[regtime]]', '[[regtime]]'),
(805, 1, 1, 'default_twilio_default_twilio', 'error_turn_extension_on', 'Error! Please check if extension is turned ON.', '[[regtime]]', '[[regtime]]'),
(806, 1, 1, 'default_twilio_default_twilio', 'text_connection_success', 'Connection is successful and API Credentials are configured correctly.', '[[regtime]]', '[[regtime]]'),
(807, 1, 1, 'default_weight_default_weight', 'default_weight_name', 'Weight Based Shipping', '[[regtime]]', '[[regtime]]'),
(808, 1, 1, 'default_weight_default_weight', 'text_shipping', 'Shipping', '[[regtime]]', '[[regtime]]'),
(809, 1, 1, 'default_weight_default_weight', 'text_additional_settings', ' Additional Settings ', '[[regtime]]', '[[regtime]]'),
(810, 1, 1, 'default_weight_default_weight', 'text_success', 'Success: You have modified weight based shipping!', '[[regtime]]', '[[regtime]]'),
(811, 1, 1, 'default_weight_default_weight', 'entry_rate', 'Rates:<br /><span class="help">Example: 5:10.00,7:12.00 Weight:Cost,Weight:Cost, etc. In this example 5 pounds = $10.00. Where Pound is your Store Weight class and $ is Store Base currency. You can change both in the Store Settings</span>', '[[regtime]]', '[[regtime]]'),
(812, 1, 1, 'default_weight_default_weight', 'entry_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(813, 1, 1, 'default_weight_default_weight', 'entry_tax', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(814, 1, 1, 'default_weight_default_weight', 'entry_location', 'Location:', '[[regtime]]', '[[regtime]]'),
(815, 1, 1, 'default_weight_default_weight', 'entry_sort_order', 'Sort Order:', '[[regtime]]', '[[regtime]]'),
(816, 1, 1, 'default_weight_default_weight', 'error_permission', 'Warning: You do not have permission to modify weight based shipping!', '[[regtime]]', '[[regtime]]'),
(817, 1, 1, 'default_weight_default_weight', 'example_weight_text', 'Weight: ', '[[regtime]]', '[[regtime]]'),
(818, 1, 1, 'default_weight_default_weight', 'example_currency_text', 'Currency: ', '[[regtime]]', '[[regtime]]'),
(819, 1, 1, 'encryption_data_manager_encryption_data_manager', 'encryption_data_manager_name', 'Encryption Data Manager', '[[regtime]]', '[[regtime]]'),
(820, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_extensions', 'Extensions', '[[regtime]]', '[[regtime]]'),
(821, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_additional_settings', ' Encryption Data Tools ', '[[regtime]]', '[[regtime]]'),
(822, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(823, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_sort_order', 'Sort Order:', '[[regtime]]', '[[regtime]]'),
(824, 1, 1, 'encryption_data_manager_encryption_data_manager', 'button_generate_keys', 'Generate Key Pair', '[[regtime]]', '[[regtime]]'),
(825, 1, 1, 'encryption_data_manager_encryption_data_manager', 'button_encrypt_data', 'Encrypt Data', '[[regtime]]', '[[regtime]]'),
(826, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_permission', 'Warning: You do not have permission to modify weight based shipping!', '[[regtime]]', '[[regtime]]'),
(827, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_duplicate_key', 'Error: Selected key name pair already exists!', '[[regtime]]', '[[regtime]]'),
(828, 1, 1, 'encryption_data_manager_encryption_data_manager', 'encryption_data_manager_note', ' <b>This extension requires ADVANCED configuration and attention</b><br/> \n <b>Once enabled and data encrypted, there is NO undo and extension can not be disabled! </b><br/> \n This extension helps managing encryption keys creation and data migration from open to encrypted tables (initial migration)<br/> \n <b>PLEASE NOTE:</b> you need to have PHP with SSL Encryption <b>ENABLED</b>\n <br/>\n <br/>To enable data encryption please read help instructions (HOW TO button)', '[[regtime]]', '[[regtime]]'),
(829, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_openssl_disabled', 'Warning: OpenSSL for PHP is not available or not activated. You can not use encryption or this extension! <br> Check HELP for this extension for more details.', '[[regtime]]', '[[regtime]]'),
(830, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_data_encryption_disabled', 'Warning: Data Encryption is not enabled on your AbanteCart. You can not encrypt/decrypt data using this extension! <br> Check HELP for this extension for more details.', '[[regtime]]', '[[regtime]]'),
(831, 1, 1, 'encryption_data_manager_encryption_data_manager', 'key_gen_section_name', 'Generate Key Pair', '[[regtime]]', '[[regtime]]'),
(832, 1, 1, 'encryption_data_manager_encryption_data_manager', 'data_encryption', 'Encrypt Data', '[[regtime]]', '[[regtime]]'),
(833, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_required_data_missing', 'Missing required data field(s). Please check provided values', '[[regtime]]', '[[regtime]]'),
(834, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_key_name', 'Unique key pair name:<br /><span class="help">Name should not contain any spaces or special characters. Keeps it short and simple.</span>', '[[regtime]]', '[[regtime]]'),
(835, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_key_length', 'Key length (bits):<br /><span class="help">Specify key encryption bit length. Larger number represent stronger encryption, but can slower performance (Range 256 - 8192 )</span>', '[[regtime]]', '[[regtime]]'),
(836, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_private_key_type', 'Ecncryption type:<br /><span class="help">This is an encryption algorithm. Use default RSA if you are not advanced user.</span>', '[[regtime]]', '[[regtime]]'),
(837, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_encrypt_key', 'Enable password based key:<br /><span class="help">If enable, addtional passphrase will be required to decrypt text with use of private key. NOTE. This is not currently supported in data encryption.</span>', '[[regtime]]', '[[regtime]]'),
(838, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_passphrase', 'Passphrase or key password:<br /><span class="help">Remember the passphrase or key(s) will be useless and data might be lost</span>', '[[regtime]]', '[[regtime]]'),
(839, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_success_key_get', '<b>Key pair has been created. See keys below and keep them safe.</b> <br/><br/> %s <br/><br/> %s ', '[[regtime]]', '[[regtime]]'),
(840, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_generating_keys_failed', 'Key pair generation failed. Check your settings and check error log.', '[[regtime]]', '[[regtime]]'),
(841, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_enc_key', 'Key pair name:<br /><span class="help">Select key to be used for encryption. IMPORTANT: Remember key that you used</span>', '[[regtime]]', '[[regtime]]'),
(842, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_enc_tables', 'Table(s) to encrypt:<br /><span class="help">Shown table(s) will be encryted with the key selected. Data can only be opened with this key</span>', '[[regtime]]', '[[regtime]]'),
(843, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_enc_test_mode', 'Test Mode:<br /><span class="help">Check first that all is OK to be encrepted.</span>', '[[regtime]]', '[[regtime]]'),
(844, 1, 1, 'encryption_data_manager_encryption_data_manager', 'entry_enc_remove_original', 'Remove source data:<br /><span class="help">Remove source un-encrepted data records after encryption is complete</span>', '[[regtime]]', '[[regtime]]'),
(845, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_success_encrypting', '<b>Data has been encrypted. <br /> See details:</b> <br/><br/> %s <br /><br /> <b>If you want this key to be used for new data encryption, add following line to file system/config.php : define(''DATA_ENCRYPTION_KEYPAIR'', ''%s''); </b> ', '[[regtime]]', '[[regtime]]'),
(846, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_encryption_test', '<b>Data encryption test result</b> Check error log for any possible errors! <br/><br/> %s ', '[[regtime]]', '[[regtime]]'),
(847, 1, 1, 'encryption_data_manager_encryption_data_manager', 'error_encrypting', 'Data encryption failed. Check your settings and check error log.', '[[regtime]]', '[[regtime]]'),
(848, 1, 1, 'encryption_data_manager_encryption_data_manager', 'post_encrypting_notice', '<b>Important notes! After encryption is completed data will be copied to mirror tables with data encrypted in them. \n <br />Follow instructions to add configuration to system/config.php for AbanteCart to switch read/write operations to encrypted tables. </b><br /> Add following line to configuration file: define(''DATA_ENCRYPTION_KEYPAIR'', ''your_key_name''); <br> This will be default key for read/write operations ', '[[regtime]]', '[[regtime]]'),
(849, 1, 1, 'encryption_data_manager_encryption_data_manager', 'encryption_usage', 'Encryption Usage', '[[regtime]]', '[[regtime]]'),
(850, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_unencrepted_records', 'Un-encrypted data records', '[[regtime]]', '[[regtime]]'),
(851, 1, 1, 'encryption_data_manager_encryption_data_manager', 'warn_encrypt_open_data', 'Use ''Encrypt Data'' Tab for initial encryption', '[[regtime]]', '[[regtime]]'),
(852, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_encrepted_records', 'Encrypted data records', '[[regtime]]', '[[regtime]]'),
(853, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_usage_heading_key_id', 'Key ID', '[[regtime]]', '[[regtime]]'),
(854, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_usage_heading_key_name', 'Key Name', '[[regtime]]', '[[regtime]]'),
(855, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_usage_heading_key_tables', 'Encrypted Tables Usage', '[[regtime]]', '[[regtime]]'),
(856, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_usage_heading_key_rotate', 'Rotate (change) Encryption to new key', '[[regtime]]', '[[regtime]]'),
(857, 1, 1, 'encryption_data_manager_encryption_data_manager', 'text_usage_records', 'record(s)', '[[regtime]]', '[[regtime]]'),
(858, 1, 1, 'novator_novator', 'novator_name', 'novator', '[[regtime]]', '[[regtime]]'),
(859, 1, 1, 'novator_novator', 'novator_note', '', '[[regtime]]', '[[regtime]]'),
(860, 1, 1, 'novator_novator', 'novator_category_form_info_alert', '<div class="alert alert-info">All images following the first one can be used in the ''category slides'' block. (see block in the category page layout)</div>', '[[regtime]]', '[[regtime]]'),
(861, 1, 1, 'page_builder_page_builder', 'page_builder_name', 'Page Builder', '[[regtime]]', '[[regtime]]'),
(862, 1, 1, 'page_builder_page_builder', 'page_builder_logging', 'Logging <span class="help">Enable to save javascript exceptions into AbanteCart error log</span>', '[[regtime]]', '[[regtime]]'),
(863, 1, 1, 'page_builder_page_builder', 'text_select_template', 'Select template: ', '[[regtime]]', '[[regtime]]'),
(864, 1, 1, 'page_builder_page_builder', 'page_builder_text_preset', 'Preset: ', '[[regtime]]', '[[regtime]]'),
(865, 1, 1, 'page_builder_page_builder', 'page_builder_button_load_preset', 'Load Preset', '[[regtime]]', '[[regtime]]'),
(866, 1, 1, 'page_builder_page_builder', 'page_builder_text_load_preset_confirm_text', 'Do you really wish to load preset? Already saved changes will be rewritten.', '[[regtime]]', '[[regtime]]'),
(867, 1, 1, 'page_builder_page_builder', 'page_builder_text_delete_preset_confirm_text', 'Do you really wish to delete preset?', '[[regtime]]', '[[regtime]]'),
(868, 1, 1, 'page_builder_page_builder', 'page_builder_text_select_preset', ' -- please select -- ', '[[regtime]]', '[[regtime]]'),
(869, 1, 1, 'page_builder_page_builder', 'page_builder_text_prompt', 'Please enter preset name:', '[[regtime]]', '[[regtime]]'),
(870, 1, 1, 'page_builder_page_builder', 'page_builder_button_undo_title', ' Rollback to Save Point', '[[regtime]]', '[[regtime]]'),
(871, 1, 1, 'page_builder_page_builder', 'page_builder_button_undo', ' Undo', '[[regtime]]', '[[regtime]]'),
(872, 1, 1, 'page_builder_page_builder', 'page_builder_button_undo_confirm_text', ' Do you really wish to rollback changes to save point state?', '[[regtime]]', '[[regtime]]'),
(873, 1, 1, 'page_builder_page_builder', 'page_builder_undo_success_text', ' Success!', '[[regtime]]', '[[regtime]]'),
(874, 1, 1, 'page_builder_page_builder', 'page_builder_button_publish_title', ' Publish Page on a Storefront', '[[regtime]]', '[[regtime]]'),
(875, 1, 1, 'page_builder_page_builder', 'page_builder_button_publish', ' Publish', '[[regtime]]', '[[regtime]]'),
(876, 1, 1, 'page_builder_page_builder', 'page_builder_button_publish_success', ' Published successfully.', '[[regtime]]', '[[regtime]]'),
(877, 1, 1, 'page_builder_page_builder', 'page_builder_button_remove_custom_page_title', ' Remove Custom page to Default State', '[[regtime]]', '[[regtime]]'),
(878, 1, 1, 'page_builder_page_builder', 'page_builder_button_remove_custom_page', ' Delete Design ', '[[regtime]]', '[[regtime]]'),
(879, 1, 1, 'page_builder_page_builder', 'page_builder_button_remove_custom_page_confirm_text', 'Do you really wish to remove your design? ', '[[regtime]]', '[[regtime]]'),
(880, 1, 1, 'page_builder_page_builder', 'page_builder_remove_custom_page_success_text', 'Page has been successfully removed', '[[regtime]]', '[[regtime]]'),
(881, 1, 1, 'page_builder_page_builder', 'page_builder_save_preset_confirm_text', 'Do you really wish to save preset? ', '[[regtime]]', '[[regtime]]'),
(882, 1, 1, 'page_builder_page_builder', 'page_builder_save_preset_success_text', 'Preset %s has been saved successfully!', '[[regtime]]', '[[regtime]]'),
(883, 1, 1, 'page_builder_page_builder', 'page_builder_remove_preset_success_text', 'Preset %s has been deleted successfully!', '[[regtime]]', '[[regtime]]'),
(884, 1, 1, 'page_builder_page_builder', 'page_builder_text_abantecart_blocks', 'Storefront Blocks', '[[regtime]]', '[[regtime]]'),
(885, 1, 1, 'page_builder_page_builder', 'page_builder_text_basic_blocks', 'Basic', '[[regtime]]', '[[regtime]]'),
(886, 1, 1, 'page_builder_page_builder', 'page_builder_text_extra', 'Extra', '[[regtime]]', '[[regtime]]'),
(887, 1, 1, 'page_builder_page_builder', 'page_builder_text_forms', 'Forms', '[[regtime]]', '[[regtime]]'),
(888, 1, 1, 'page_builder_page_builder', 'page_builder_error_storage_permissions', 'PageBuilder Error: Directory %s does not exist or not writable. Please check permissions!', '[[regtime]]', '[[regtime]]'),
(889, 1, 1, 'page_builder_page_builder', 'page_builder_error_preset_permissions', 'Cannot to delete preset! Please check permissions of file %s', '[[regtime]]', '[[regtime]]'),
(890, 1, 1, 'page_builder_page_builder', 'page_builder_error_empty_preset_name', 'Preset name is empty!', '[[regtime]]', '[[regtime]]'),
(891, 1, 1, 'page_builder_page_builder', 'page_builder_error_route_not_found', 'Current Route not Found! Cannot to save.', '[[regtime]]', '[[regtime]]'),
(892, 1, 1, 'page_builder_page_builder', 'page_builder_error_preset_not_found', 'Preset not Found!', '[[regtime]]', '[[regtime]]'),
(893, 1, 1, 'page_builder_page_builder', 'page_builder_error_remove_page', 'Cannot to delete custom page! Please check permissions of file %s', '[[regtime]]', '[[regtime]]'),
(894, 1, 1, 'page_builder_page_builder', 'page_builder_error_cannot_copy', 'Cannot to copy file %s.json to %s! Please check permissions or existing of target', '[[regtime]]', '[[regtime]]'),
(895, 1, 1, 'page_builder_page_builder', 'page_builder_error_nothing_to_publish', 'Nothing to publish. No any save points found.', '[[regtime]]', '[[regtime]]'),
(896, 1, 1, 'page_builder_page_builder', 'page_builder_error_cannot_undo', 'Rollback is unavailable. Save point not found', '[[regtime]]', '[[regtime]]'),
(897, 1, 1, 'page_builder_page_builder', 'page_builder_error_cannot_save', 'Cannot save changes. Please check permissions for directory %s', '[[regtime]]', '[[regtime]]'),
(898, 1, 1, 'page_builder_page_builder', 'page_builder_tab_title', 'To start building a page, please create the layout first.', '[[regtime]]', '[[regtime]]'),
(899, 1, 1, 'page_builder_page_builder', 'page_builder_text_already_published', 'This page is already published by Page Builder.', '[[regtime]]', '[[regtime]]'),
(900, 1, 1, 'page_builder_page_builder', 'page_builder_text_can_try', '...or this page can be customized with Page Builder.', '[[regtime]]', '[[regtime]]'),
(901, 1, 1, 'page_builder_page_builder', 'page_builder_button_click_to_edit_page', 'Click to Edit page', '[[regtime]]', '[[regtime]]'),
(902, 1, 1, 'page_builder_page_builder', 'page_builder_button_click_to_try', 'Click to Try', '[[regtime]]', '[[regtime]]'),
(903, 1, 1, 'paypal_commerce_paypal_commerce', 'text_title', 'Credit Card / Debit Card (Via PayPal)', '[[regtime]]', '[[regtime]]'),
(904, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_name', 'PayPal Commerce', '[[regtime]]', '[[regtime]]'),
(905, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_manual_connect', ' ', '[[regtime]]', '[[regtime]]'),
(906, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_client_id', 'Your API Client ID<br /><span class="help">Locate this in My Apps & Credentials Section Of PayPal Dashboard -> Developer</span>', '[[regtime]]', '[[regtime]]'),
(907, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_client_secret', 'Your API Secret Key<br /><span class="help">Locate this in My Apps & Credentials Section Of PayPal Dashboard -> Developer</span>', '[[regtime]]', '[[regtime]]'),
(908, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_test_mode', 'Test mode:<br /><span class="help">Set to ON if you want to use the test key</span>', '[[regtime]]', '[[regtime]]'),
(909, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_transaction_type', 'Transaction Method:<br/><span class="help">PayPal transaction to run at customer''s checkout before order status is set. Authorization only or capture.</span>', '[[regtime]]', '[[regtime]]'),
(910, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_transaction_type_capture', 'Capture', '[[regtime]]', '[[regtime]]'),
(911, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_transaction_type_authorize', 'Authorize Only', '[[regtime]]', '[[regtime]]'),
(912, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_components', ' Enabled Components:<span class="help">Select which payment components to enable: PayPal Buttons for express checkout or Card Fields for direct credit card processing.</span>', '[[regtime]]', '[[regtime]]'),
(913, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_components_buttons', 'PayPal Buttons', '[[regtime]]', '[[regtime]]'),
(914, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_components_card-fields', 'Card Fields', '[[regtime]]', '[[regtime]]'),
(915, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_test_connection', 'Test Connection', '[[regtime]]', '[[regtime]]'),
(916, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_test', 'Test Now', '[[regtime]]', '[[regtime]]'),
(917, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_update_webhooks', 'Update Webhooks', '[[regtime]]', '[[regtime]]'),
(918, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_tooltip_update_webhooks', ' Webhooks will be set up automatically during connection to PayPal. Use this button to update webhooks in PayPal ', '[[regtime]]', '[[regtime]]'),
(919, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_connection_success', 'Connection has been established successfully.', '[[regtime]]', '[[regtime]]'),
(920, 1, 1, 'paypal_commerce_paypal_commerce', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(921, 1, 1, 'paypal_commerce_paypal_commerce', 'text_success', 'Success: You have modified PayPal payment settings!', '[[regtime]]', '[[regtime]]'),
(922, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(923, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]');
INSERT INTO `[[dbprefix]]language_definitions` VALUES
(924, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(925, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_autoselect', 'Auto Select:<br /><span class="help">You can set to skip the payment selection page if there is only one payment option. This payment method will be selected automatically</span>', '[[regtime]]', '[[regtime]]'),
(926, 1, 1, 'paypal_commerce_paypal_commerce', 'text_paypal_commerce_connect', 'You need to connect with PayPal to set up payment details', '[[regtime]]', '[[regtime]]'),
(927, 1, 1, 'paypal_commerce_paypal_commerce', 'text_paypal_commerce_settings', 'PayPal settings', '[[regtime]]', '[[regtime]]'),
(928, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_sort_order', 'Sort Order', '[[regtime]]', '[[regtime]]'),
(929, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_register_webhooks', 'Update Webhooks Endpoints on the API side', '[[regtime]]', '[[regtime]]'),
(930, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_register_webhooks_success', 'Webhook Endpoints have been updated successfully!', '[[regtime]]', '[[regtime]]'),
(931, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_status_success_settled', 'Success & captured:<br /><span class="help">Select the main order status you want to set in response to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(932, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_status_success_unsettled', 'Success & not captured:<br /><span class="help">Select the main order status you want to set in response to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(933, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_status_decline', 'Decline:<br /><span class="help">Order status you want to record in history in response to payment processor status. Main order status is not affected. Order will not be placed only after payment is a success.</span>', '[[regtime]]', '[[regtime]]'),
(934, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_status_capture_pending', 'Pending:</span>', '[[regtime]]', '[[regtime]]'),
(935, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_status_refund', 'Refunded:<br /><span class="help">Order status you want to be set if payment is refunded in admin/order.</span>', '[[regtime]]', '[[regtime]]'),
(936, 1, 1, 'paypal_commerce_paypal_commerce', 'text_column_date_added', 'Transaction Date', '[[regtime]]', '[[regtime]]'),
(937, 1, 1, 'paypal_commerce_paypal_commerce', 'text_column_amount', 'Amount', '[[regtime]]', '[[regtime]]'),
(938, 1, 1, 'paypal_commerce_paypal_commerce', 'text_captured_ok', 'Funds were captured successfully', '[[regtime]]', '[[regtime]]'),
(939, 1, 1, 'paypal_commerce_paypal_commerce', 'text_captured_order', 'Capture was successful, order status updated to success - captured', '[[regtime]]', '[[regtime]]'),
(940, 1, 1, 'paypal_commerce_paypal_commerce', 'text_refunded_ok', 'Refund was processed successfully', '[[regtime]]', '[[regtime]]'),
(941, 1, 1, 'paypal_commerce_paypal_commerce', 'text_refund_order', 'Refund was successful, order status updated to refund', '[[regtime]]', '[[regtime]]'),
(942, 1, 1, 'paypal_commerce_paypal_commerce', 'text_voided', 'Void was successful, order status updated to void', '[[regtime]]', '[[regtime]]'),
(943, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_settlement_auto', 'Auto (authorize and capture)', '[[regtime]]', '[[regtime]]'),
(944, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_settlement_delayed', 'Delayed (authorize only)', '[[regtime]]', '[[regtime]]'),
(945, 1, 1, 'paypal_commerce_paypal_commerce', 'text_payment_info', 'Payment Details', '[[regtime]]', '[[regtime]]'),
(946, 1, 1, 'paypal_commerce_paypal_commerce', 'text_capture_status', 'Payment was captured', '[[regtime]]', '[[regtime]]'),
(947, 1, 1, 'paypal_commerce_paypal_commerce', 'text_void_status', 'Payment was voided', '[[regtime]]', '[[regtime]]'),
(948, 1, 1, 'paypal_commerce_paypal_commerce', 'text_refund_status', 'Payment was refunded', '[[regtime]]', '[[regtime]]'),
(949, 1, 1, 'paypal_commerce_paypal_commerce', 'text_capture_amount', 'Capture Amount', '[[regtime]]', '[[regtime]]'),
(950, 1, 1, 'paypal_commerce_paypal_commerce', 'text_refund_amount', 'Refund Amount', '[[regtime]]', '[[regtime]]'),
(951, 1, 1, 'paypal_commerce_paypal_commerce', 'text_order_ref', 'PayPal Charge ID', '[[regtime]]', '[[regtime]]'),
(952, 1, 1, 'paypal_commerce_paypal_commerce', 'text_order_total', 'Total amount authorized', '[[regtime]]', '[[regtime]]'),
(953, 1, 1, 'paypal_commerce_paypal_commerce', 'text_balance', 'Balance amount', '[[regtime]]', '[[regtime]]'),
(954, 1, 1, 'paypal_commerce_paypal_commerce', 'text_transactions', 'Refund Transactions', '[[regtime]]', '[[regtime]]'),
(955, 1, 1, 'paypal_commerce_paypal_commerce', 'text_confirm_void', 'Please confirm you want to void the payment?', '[[regtime]]', '[[regtime]]'),
(956, 1, 1, 'paypal_commerce_paypal_commerce', 'text_confirm_capture', 'Please confirm you want to capture the payment?', '[[regtime]]', '[[regtime]]'),
(957, 1, 1, 'paypal_commerce_paypal_commerce', 'text_confirm_refund', 'Please confirm you want to refund the payment?', '[[regtime]]', '[[regtime]]'),
(958, 1, 1, 'paypal_commerce_paypal_commerce', 'button_refund', 'Refund', '[[regtime]]', '[[regtime]]'),
(959, 1, 1, 'paypal_commerce_paypal_commerce', 'button_void', 'Void', '[[regtime]]', '[[regtime]]'),
(960, 1, 1, 'paypal_commerce_paypal_commerce', 'button_capture', 'Capture', '[[regtime]]', '[[regtime]]'),
(961, 1, 1, 'paypal_commerce_paypal_commerce', 'error_system', 'Internal error. Check error log or input parameters!', '[[regtime]]', '[[regtime]]'),
(962, 1, 1, 'paypal_commerce_paypal_commerce', 'error_missing_amount', 'Please enter a positive amount', '[[regtime]]', '[[regtime]]'),
(963, 1, 1, 'paypal_commerce_paypal_commerce', 'error_unable_to_capture', 'Unable to capture, refresh transaction details and check the capture amount', '[[regtime]]', '[[regtime]]'),
(964, 1, 1, 'paypal_commerce_paypal_commerce', 'error_unable_to_void', 'Unable to void transaction, refresh and check transaction details', '[[regtime]]', '[[regtime]]'),
(965, 1, 1, 'paypal_commerce_paypal_commerce', 'error_unable_to_refund', 'Unable to refund, refresh transaction details and check the refund amount', '[[regtime]]', '[[regtime]]'),
(966, 1, 1, 'paypal_commerce_paypal_commerce', 'text_connect', 'Connect with PayPal', '[[regtime]]', '[[regtime]]'),
(967, 1, 1, 'paypal_commerce_paypal_commerce', 'text_disconnect_sandbox', 'Disconnect Sandbox', '[[regtime]]', '[[regtime]]'),
(968, 1, 1, 'paypal_commerce_paypal_commerce', 'text_disconnect_live', 'Disconnect Live', '[[regtime]]', '[[regtime]]'),
(969, 1, 1, 'paypal_commerce_paypal_commerce', 'text_skip_connect', 'Cannot connect?', '[[regtime]]', '[[regtime]]'),
(970, 1, 1, 'paypal_commerce_paypal_commerce', 'text_connected_account', 'You are connected with the account:', '[[regtime]]', '[[regtime]]'),
(971, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_error_cannot_connect', 'Connection to Paypal server can not be established.<br>%s<br>Check your server configuration or contact your hosting provider.', '[[regtime]]', '[[regtime]]'),
(972, 1, 1, 'paypal_commerce_paypal_commerce', 'text_connect_success', 'Connected to PayPal successfully', '[[regtime]]', '[[regtime]]'),
(973, 1, 1, 'paypal_commerce_paypal_commerce', 'text_disconnect_success', 'Disconnected from PayPal successfully', '[[regtime]]', '[[regtime]]'),
(974, 1, 1, 'paypal_commerce_paypal_commerce', 'error_permission', 'Warning: You do not have permission to modify PayPal Commerce Payment!', '[[regtime]]', '[[regtime]]'),
(975, 1, 1, 'paypal_commerce_paypal_commerce', 'error_paypal_commerce_client_id', 'App Client ID is required', '[[regtime]]', '[[regtime]]'),
(976, 1, 1, 'paypal_commerce_paypal_commerce', 'error_paypal_commerce_client_secret', 'App Secret key is required', '[[regtime]]', '[[regtime]]'),
(977, 1, 1, 'paypal_commerce_paypal_commerce', 'error_turn_extension_on', 'Error! Please check if the extension is turned ON.', '[[regtime]]', '[[regtime]]'),
(978, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_back', 'Back', '[[regtime]]', '[[regtime]]'),
(979, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_webhook_howto_text', 'Note: To complete setup, you should to create webhooks on PayPal Account Side.\n<br> Go to Your <a href="https://dashboard.paypal.com/webhooks" target="_blank">PayPal Dashboard Developer Section</a>\nand Add Endpoints receiving events from your account. After Endpoint has been created, copy Signing Secret and save into PayPal Subscription Extension settings belong.', '[[regtime]]', '[[regtime]]'),
(980, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding', 'Funding Options:', '[[regtime]]', '[[regtime]]'),
(981, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_venmo', 'Venmo', '[[regtime]]', '[[regtime]]'),
(982, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_paylater', 'Pay Later', '[[regtime]]', '[[regtime]]'),
(983, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_credit', 'Credit', '[[regtime]]', '[[regtime]]'),
(984, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_bancontact', 'Bancontact', '[[regtime]]', '[[regtime]]'),
(985, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_blik', 'BLIK', '[[regtime]]', '[[regtime]]'),
(986, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_eps', 'EPS', '[[regtime]]', '[[regtime]]'),
(987, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_giropay', 'Giropay', '[[regtime]]', '[[regtime]]'),
(988, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_ideal', 'iDEAL', '[[regtime]]', '[[regtime]]'),
(989, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_mybank', 'MyBank', '[[regtime]]', '[[regtime]]'),
(990, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_p24', 'Przelewy24', '[[regtime]]', '[[regtime]]'),
(991, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_sepa', 'SEPA', '[[regtime]]', '[[regtime]]'),
(992, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_sofort', 'Sofort', '[[regtime]]', '[[regtime]]'),
(993, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_trustly', 'Trustly', '[[regtime]]', '[[regtime]]'),
(994, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_mercadopago', 'Mercado Pago', '[[regtime]]', '[[regtime]]'),
(995, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_oxxo', 'OXXO', '[[regtime]]', '[[regtime]]'),
(996, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_boleto', 'Boleto', '[[regtime]]', '[[regtime]]'),
(997, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_enabled_funding_wechatpay', 'WeChat Pay', '[[regtime]]', '[[regtime]]'),
(998, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_3ds_policy', '3D Secure Policy (Card Fields only)', '[[regtime]]', '[[regtime]]'),
(999, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_3ds_policy_0', ' -- n/a -- ', '[[regtime]]', '[[regtime]]'),
(1000, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_3ds_policy_SCA_WHEN_REQUIRED', 'When Required (depends on credit card settings)', '[[regtime]]', '[[regtime]]'),
(1001, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_3ds_policy_SCA_ALWAYS', 'Always', '[[regtime]]', '[[regtime]]'),
(1002, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_pay_later_message_configurator', 'Pay Later Offer Messages<span class="help">Pay Later offers messages can be configured to display on product pages and checkout pages. This feature allows merchants to provide customers with information about available payment options and terms.</span>', '[[regtime]]', '[[regtime]]'),
(1003, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_run_configurator', 'Run Configurator', '[[regtime]]', '[[regtime]]'),
(1004, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_text_connect_for_configurator', 'Please connect to PayPal to see Configurator', '[[regtime]]', '[[regtime]]'),
(1005, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_show_buttons_product', 'Product Page Checkout Buttons', '[[regtime]]', '[[regtime]]'),
(1006, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_show_buttons_cart', 'Cart Page Checkout Buttons', '[[regtime]]', '[[regtime]]'),
(1007, 1, 1, 'paypal_commerce_paypal_commerce', 'paypal_commerce_debug_logging', 'Debug Logging:<span class="help">See the log in Admin->System->Error Logs section</span>', '[[regtime]]', '[[regtime]]'),
(1008, 1, 1, 'sola_sola', 'sola_name', 'Sola', '[[regtime]]', '[[regtime]]'),
(1009, 1, 1, 'sola_sola', 'sola_note', '', '[[regtime]]', '[[regtime]]'),
(1010, 1, 1, 'sola_sola', 'sola_transaction_key', 'Transaction Key (xKey)', '[[regtime]]', '[[regtime]]'),
(1011, 1, 1, 'sola_sola', 'sola_transaction_token', 'Transaction Token (xToken)', '[[regtime]]', '[[regtime]]'),
(1012, 1, 1, 'sola_sola', 'sola_test', 'Test Mode', '[[regtime]]', '[[regtime]]'),
(1013, 1, 1, 'sola_sola', 'sola_success_order_status', 'Order Status:<br /><span class="help">Order status to be set after customer''s order finished based on set Transaction Method</span>', '[[regtime]]', '[[regtime]]'),
(1014, 1, 1, 'sola_sola', 'sola_location_id', 'Location:<br /><span class="help">Restrict to allow only selected locations to use this payment method.', '[[regtime]]', '[[regtime]]'),
(1015, 1, 1, 'sola_sola', 'sola_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(1016, 1, 1, 'sola_sola', 'sola_transaction_method', 'Transaction Method:<br /><span class="help">Sola transaction to run at customer''s checkout before order status is set. Authorization only or capture.</span>', '[[regtime]]', '[[regtime]]'),
(1017, 1, 1, 'sola_sola', 'sola_transaction_method_capture', 'Capture', '[[regtime]]', '[[regtime]]'),
(1018, 1, 1, 'sola_sola', 'sola_transaction_method_authorization', 'Authorization Only', '[[regtime]]', '[[regtime]]'),
(1019, 1, 1, 'sola_sola', 'sola_ifields_key', 'iFields Key', '[[regtime]]', '[[regtime]]'),
(1020, 1, 1, 'sola_sola', 'sola_text_pending_authorization', 'Pending Authorization', '[[regtime]]', '[[regtime]]'),
(1021, 1, 1, 'sola_sola', 'sola_text_capture_funds', 'Capture Funds', '[[regtime]]', '[[regtime]]'),
(1022, 1, 1, 'sola_sola', 'sola_text_capture', 'Capture', '[[regtime]]', '[[regtime]]'),
(1023, 1, 1, 'sola_sola', 'sola_text_payment_status', 'Payment Status', '[[regtime]]', '[[regtime]]'),
(1024, 1, 1, 'sola_sola', 'sola_text_capture_success', 'Success! Funds have been captured successfully.', '[[regtime]]', '[[regtime]]'),
(1025, 1, 1, 'sola_sola', 'sola_text_processing', 'Processing', '[[regtime]]', '[[regtime]]'),
(1026, 1, 1, 'sola_sola', 'sola_text_do_refund', 'Do Sola Refund:<span class="help">You can enter amount that needs to be refunded.</span>', '[[regtime]]', '[[regtime]]'),
(1027, 1, 1, 'sola_sola', 'sola_text_refunded', 'Refunded', '[[regtime]]', '[[regtime]]'),
(1028, 1, 1, 'sola_sola', 'sola_text_refund', 'Refund', '[[regtime]]', '[[regtime]]'),
(1029, 1, 1, 'sola_sola', 'sola_refund_title', 'Sola Refund', '[[regtime]]', '[[regtime]]'),
(1030, 1, 1, 'sola_sola', 'sola_text_refund_success', 'Success! Order has been refunded successfully.', '[[regtime]]', '[[regtime]]'),
(1031, 1, 1, 'sola_sola', 'sola_error_empty_amount', 'Error! Amount is wrong.', '[[regtime]]', '[[regtime]]'),
(1032, 1, 1, 'sola_sola', 'sola_error_no_payment_method_data', 'Error! There is no payment method data for this order.', '[[regtime]]', '[[regtime]]'),
(1033, 1, 1, 'sola_sola', 'sola_error_no_order_id', 'Error! There is no order ID.', '[[regtime]]', '[[regtime]]'),
(1034, 1, 1, 'stripe_stripe', 'stripe_name', 'Stripe Payment', '[[regtime]]', '[[regtime]]'),
(1035, 1, 1, 'stripe_stripe', 'stripe_note', 'Additional settings are required to complete Stripe payment setup. See additional settings tab.', '[[regtime]]', '[[regtime]]'),
(1036, 1, 1, 'stripe_stripe', 'text_payment', 'Payment', '[[regtime]]', '[[regtime]]'),
(1037, 1, 1, 'stripe_stripe', 'text_success', 'Success: You have modified Stripe payment settings!', '[[regtime]]', '[[regtime]]'),
(1038, 1, 1, 'stripe_stripe', 'stripe_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(1039, 1, 1, 'stripe_stripe', 'stripe_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(1040, 1, 1, 'stripe_stripe', 'stripe_status', 'Status:', '[[regtime]]', '[[regtime]]'),
(1041, 1, 1, 'stripe_stripe', 'stripe_published_key', 'Published Key:', '[[regtime]]', '[[regtime]]'),
(1042, 1, 1, 'stripe_stripe', 'stripe_autoselect', 'Auto Select:<br /><span class="help">You can set to skip payment selection page if there is only one payment option. This payment method will be selected automatically</span>', '[[regtime]]', '[[regtime]]'),
(1043, 1, 1, 'stripe_stripe', 'stripe_payment_method_list', 'Allowed payment methods. <br /><span class="help">Leave empty for automatic selection</span>', '[[regtime]]', '[[regtime]]'),
(1044, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_card', 'Cards', '[[regtime]]', '[[regtime]]'),
(1045, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_klarna', 'Klarna', '[[regtime]]', '[[regtime]]'),
(1046, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_acss_debit', 'ACSS', '[[regtime]]', '[[regtime]]'),
(1047, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_afterpay_clearpay', 'Afterpay/Clearpay', '[[regtime]]', '[[regtime]]'),
(1048, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_alipay', 'Alipay', '[[regtime]]', '[[regtime]]'),
(1049, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_au_becs_debit', 'BECS Direct Debit', '[[regtime]]', '[[regtime]]'),
(1050, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_bacs_debit', 'Bacs Direct Debit', '[[regtime]]', '[[regtime]]'),
(1051, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_affirm', 'Affirm', '[[regtime]]', '[[regtime]]'),
(1052, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_bancontact', 'Bancontact', '[[regtime]]', '[[regtime]]'),
(1053, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_blik', 'Blik', '[[regtime]]', '[[regtime]]'),
(1054, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_boleto', 'Boleto', '[[regtime]]', '[[regtime]]'),
(1055, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_interac_present', 'Interac', '[[regtime]]', '[[regtime]]'),
(1056, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_pix', 'Pix', '[[regtime]]', '[[regtime]]'),
(1057, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_revolut_pay', 'Revolut Pay', '[[regtime]]', '[[regtime]]'),
(1058, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_swish', 'Swish', '[[regtime]]', '[[regtime]]'),
(1059, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_mobilepay', 'MobilePay', '[[regtime]]', '[[regtime]]'),
(1060, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_zip', 'Zip', '[[regtime]]', '[[regtime]]'),
(1061, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_eps', 'EPS', '[[regtime]]', '[[regtime]]'),
(1062, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_fpx', 'FPX', '[[regtime]]', '[[regtime]]'),
(1063, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_giropay', 'giropay', '[[regtime]]', '[[regtime]]'),
(1064, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_grabpay', 'Grabpay', '[[regtime]]', '[[regtime]]'),
(1065, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_ideal', 'iDEAL', '[[regtime]]', '[[regtime]]'),
(1066, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_konbini', 'Konbini', '[[regtime]]', '[[regtime]]'),
(1067, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_link', 'Link', '[[regtime]]', '[[regtime]]'),
(1068, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_oxxo', 'OXXO', '[[regtime]]', '[[regtime]]'),
(1069, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_sofort', 'Sofort', '[[regtime]]', '[[regtime]]'),
(1070, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_p24', 'Przelewy24', '[[regtime]]', '[[regtime]]'),
(1071, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_paynow', 'PayNow', '[[regtime]]', '[[regtime]]'),
(1072, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_promptpay', 'PromptPay', '[[regtime]]', '[[regtime]]'),
(1073, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_sepa_debit', 'SEPA Direct Debit', '[[regtime]]', '[[regtime]]'),
(1074, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_us_bank_account', 'ACH Direct Debit', '[[regtime]]', '[[regtime]]'),
(1075, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_wechat_pay', 'WeChat Pay', '[[regtime]]', '[[regtime]]'),
(1076, 1, 1, 'stripe_stripe', 'stripe_payment_method_list_twint', 'TWINT', '[[regtime]]', '[[regtime]]'),
(1077, 1, 1, 'stripe_stripe', 'text_stripe_connect', 'You need to connect with stripe to set up payment details', '[[regtime]]', '[[regtime]]'),
(1078, 1, 1, 'stripe_stripe', 'text_stripe_settings', 'Stripe settings', '[[regtime]]', '[[regtime]]'),
(1079, 1, 1, 'stripe_stripe', 'text_connect', 'Connect with Stripe', '[[regtime]]', '[[regtime]]'),
(1080, 1, 1, 'stripe_stripe', 'text_disconnect', 'Disconnect Stripe', '[[regtime]]', '[[regtime]]'),
(1081, 1, 1, 'stripe_stripe', 'text_skip_connect', 'Cannot connect?', '[[regtime]]', '[[regtime]]'),
(1082, 1, 1, 'stripe_stripe', 'text_connect_success', 'Connected to Stripe successfully', '[[regtime]]', '[[regtime]]'),
(1083, 1, 1, 'stripe_stripe', 'text_disconnect_success', 'Disconnected from Stripe successfully', '[[regtime]]', '[[regtime]]'),
(1084, 1, 1, 'stripe_stripe', 'text_connected_account', 'You connected with account: ', '[[regtime]]', '[[regtime]]'),
(1085, 1, 1, 'stripe_stripe', 'stripe_sort_order', 'Sort Order', '[[regtime]]', '[[regtime]]'),
(1086, 1, 1, 'stripe_stripe', 'stripe_test_mode', 'Test mode:<br /><span class="help">Set to ON if you want to use test key</span>', '[[regtime]]', '[[regtime]]'),
(1087, 1, 1, 'stripe_stripe', 'stripe_sk_live', 'Live Secret Key:<br /><span class="help">Locate this in Stripe API Keys Section. Key starts with sk_live_... </span>', '[[regtime]]', '[[regtime]]'),
(1088, 1, 1, 'stripe_stripe', 'stripe_pk_live', 'Live Publishable Key:<br /><span class="help">Locate this in Stripe API Keys Section. Key starts with pk_live_... </span>', '[[regtime]]', '[[regtime]]'),
(1089, 1, 1, 'stripe_stripe', 'stripe_sk_test', 'Test Secret Key:<br /><span class="help">Locate this in Stripe API Keys Section. Key starts with sk_test_... </span>', '[[regtime]]', '[[regtime]]'),
(1090, 1, 1, 'stripe_stripe', 'stripe_pk_test', 'Test Publishable Key:<br /><span class="help">Locate this in Stripe API Keys Section. Key starts with pk_test_... </span>', '[[regtime]]', '[[regtime]]'),
(1091, 1, 1, 'stripe_stripe', 'stripe_settlement', 'Settlement type:<br /><span class="help">If set to ''auto'', then the transaction will be included in today''s settlement. If set to ''delayed'', then the transaction will be authorised but not settled(captured). You must manually capture transactions within 7 days of authorisation</span>', '[[regtime]]', '[[regtime]]'),
(1092, 1, 1, 'stripe_stripe', 'stripe_status_success_settled', 'Success & settled:<br /><span class="help">Select main order status you want to set in response to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(1093, 1, 1, 'stripe_stripe', 'stripe_status_success_unsettled', 'Success & not settled:<br /><span class="help">Select main order status you want to set in response to payment processor status</span>', '[[regtime]]', '[[regtime]]'),
(1094, 1, 1, 'stripe_stripe', 'stripe_status_decline', 'Decline:<br /><span class="help">Order status you want to record in history in response to payment processor status. Main order status is not affected. Order will not be placed only after payment is a success.</span>', '[[regtime]]', '[[regtime]]'),
(1095, 1, 1, 'stripe_stripe', 'stripe_status_void', 'Voided:<br /><span class="help">Order status you want to be set if payment is voided in admin/order.</span>', '[[regtime]]', '[[regtime]]'),
(1096, 1, 1, 'stripe_stripe', 'stripe_status_refund', 'Refunded:<br /><span class="help">Order status you want to be set if payment is refunded in admin/order.</span>', '[[regtime]]', '[[regtime]]'),
(1097, 1, 1, 'stripe_stripe', 'text_column_date_added', 'Transaction Date', '[[regtime]]', '[[regtime]]'),
(1098, 1, 1, 'stripe_stripe', 'text_column_amount', 'Amount', '[[regtime]]', '[[regtime]]'),
(1099, 1, 1, 'stripe_stripe', 'text_captured_ok', 'Funds were captured successfully', '[[regtime]]', '[[regtime]]'),
(1100, 1, 1, 'stripe_stripe', 'text_captured_order', 'Capture was successful, order status updated to success - settled', '[[regtime]]', '[[regtime]]'),
(1101, 1, 1, 'stripe_stripe', 'text_refunded_ok', 'Refund was processed successfully', '[[regtime]]', '[[regtime]]'),
(1102, 1, 1, 'stripe_stripe', 'text_refund_order', 'Refund was successful, order status updated to refunded', '[[regtime]]', '[[regtime]]'),
(1103, 1, 1, 'stripe_stripe', 'text_voided', 'Void was successful, order status updated to voided', '[[regtime]]', '[[regtime]]'),
(1104, 1, 1, 'stripe_stripe', 'stripe_settlement_auto', 'Auto (authorize and capture)', '[[regtime]]', '[[regtime]]'),
(1105, 1, 1, 'stripe_stripe', 'stripe_settlement_delayed', 'Delayed (authorize only)', '[[regtime]]', '[[regtime]]'),
(1106, 1, 1, 'stripe_stripe', 'text_payment_info', 'Payment Details', '[[regtime]]', '[[regtime]]'),
(1107, 1, 1, 'stripe_stripe', 'text_capture_status', 'Payment was captured', '[[regtime]]', '[[regtime]]'),
(1108, 1, 1, 'stripe_stripe', 'text_void_status', 'Payment was voided', '[[regtime]]', '[[regtime]]'),
(1109, 1, 1, 'stripe_stripe', 'text_refund_status', 'Payment was refunded', '[[regtime]]', '[[regtime]]'),
(1110, 1, 1, 'stripe_stripe', 'text_capture_amount', 'Capture Amount', '[[regtime]]', '[[regtime]]'),
(1111, 1, 1, 'stripe_stripe', 'text_refund_amount', 'Refund Amount', '[[regtime]]', '[[regtime]]'),
(1112, 1, 1, 'stripe_stripe', 'text_order_ref', 'Stripe Charge ID', '[[regtime]]', '[[regtime]]'),
(1113, 1, 1, 'stripe_stripe', 'text_order_total', 'Total amount authorized', '[[regtime]]', '[[regtime]]'),
(1114, 1, 1, 'stripe_stripe', 'text_balance', 'Balance amount', '[[regtime]]', '[[regtime]]'),
(1115, 1, 1, 'stripe_stripe', 'text_transactions', 'Refund Transactions', '[[regtime]]', '[[regtime]]'),
(1116, 1, 1, 'stripe_stripe', 'text_confirm_void', 'Please confirm you want to void the payment?', '[[regtime]]', '[[regtime]]'),
(1117, 1, 1, 'stripe_stripe', 'text_confirm_capture', 'Please confirm you want to capture the payment?', '[[regtime]]', '[[regtime]]'),
(1118, 1, 1, 'stripe_stripe', 'text_confirm_refund', 'Please confirm you want to refund the payment?', '[[regtime]]', '[[regtime]]'),
(1119, 1, 1, 'stripe_stripe', 'button_refund', 'Refund', '[[regtime]]', '[[regtime]]'),
(1120, 1, 1, 'stripe_stripe', 'button_void', 'Void', '[[regtime]]', '[[regtime]]'),
(1121, 1, 1, 'stripe_stripe', 'button_capture', 'Capture', '[[regtime]]', '[[regtime]]'),
(1122, 1, 1, 'stripe_stripe', 'error_system', 'Internal error. Check error log or input parameters!', '[[regtime]]', '[[regtime]]'),
(1123, 1, 1, 'stripe_stripe', 'error_missing_amount', 'Please enter positive amount', '[[regtime]]', '[[regtime]]'),
(1124, 1, 1, 'stripe_stripe', 'error_unable_to_capture', 'Unable to capture, refresh transaction details and check capture amount', '[[regtime]]', '[[regtime]]'),
(1125, 1, 1, 'stripe_stripe', 'error_unable_to_void', 'Unable to void transaction, refresh and check transaction details', '[[regtime]]', '[[regtime]]'),
(1126, 1, 1, 'stripe_stripe', 'error_unable_to_refund', 'Unable to refund, refresh transaction details and check refund amount', '[[regtime]]', '[[regtime]]'),
(1127, 1, 1, 'stripe_stripe', 'error_stripe_pk_test', 'Stripe Published key is required', '[[regtime]]', '[[regtime]]'),
(1128, 1, 1, 'stripe_stripe', 'error_stripe_pk_live', 'Stripe Published key is required', '[[regtime]]', '[[regtime]]'),
(1129, 1, 1, 'stripe_stripe', 'error_stripe_sk_test', 'Stripe test key is required', '[[regtime]]', '[[regtime]]'),
(1130, 1, 1, 'stripe_stripe', 'error_stripe_sk_live', 'Stripe live key is required', '[[regtime]]', '[[regtime]]'),
(1131, 1, 1, 'stripe_stripe', 'error_permission', 'Warning: You do not have permission to modify Stripe Payment!', '[[regtime]]', '[[regtime]]'),
(1132, 1, 1, 'stripe_stripe', 'stripe_webhook_howto_text', 'Note: To complete setup you should to create webhooks on Stripe Account Side.\n<br> Go to Your <a href="https://dashboard.stripe.com/webhooks" target="_blank">Stripe Dashboard Developer Section</a>\nand Add Endpoints receiving events from your account. After Endpoint has been created copy Signing Secret and save into Stripe Subscription Extension settings belong.', '[[regtime]]', '[[regtime]]'),
(1133, 1, 1, 'stripe_stripe', 'stripe_entry_endpoint_url', 'Endpoint URL:', '[[regtime]]', '[[regtime]]'),
(1134, 1, 1, 'stripe_stripe', 'stripe_entry_endpoint_signing_secret', 'Endpoint Signing Secret:', '[[regtime]]', '[[regtime]]'),
(1135, 1, 1, 'ups_ups', 'ups_name', 'United Parcel Service', '[[regtime]]', '[[regtime]]'),
(1136, 1, 1, 'ups_ups', 'heading_title', 'UPS', '[[regtime]]', '[[regtime]]'),
(1137, 1, 1, 'ups_ups', 'ups_account_number', 'Account(Shipper) Number', '[[regtime]]', '[[regtime]]'),
(1138, 1, 1, 'ups_ups', 'ups_client_id', 'API Client ID<br/><span class="help">You can find it in your application section on https://developer.ups.com/apps </span>', '[[regtime]]', '[[regtime]]'),
(1139, 1, 1, 'ups_ups', 'ups_password', 'API Password<br/><span class="help">You can find it in your application section on https://developer.ups.com/apps </span>', '[[regtime]]', '[[regtime]]'),
(1140, 1, 1, 'ups_ups', 'ups_test_mode', 'Test mode', '[[regtime]]', '[[regtime]]'),
(1141, 1, 1, 'ups_ups', 'ups_validate_address', 'Address Validation', '[[regtime]]', '[[regtime]]'),
(1142, 1, 1, 'ups_ups', 'ups_country', 'Shipper Country & Zone', '[[regtime]]', '[[regtime]]'),
(1143, 1, 1, 'ups_ups', 'ups_telephone', 'Shipper Phone Number (10 digits or more)', '[[regtime]]', '[[regtime]]'),
(1144, 1, 1, 'ups_ups', 'ups_address', 'Shipper Address', '[[regtime]]', '[[regtime]]'),
(1145, 1, 1, 'ups_ups', 'ups_city', 'Shipper City', '[[regtime]]', '[[regtime]]'),
(1146, 1, 1, 'ups_ups', 'ups_postcode', 'Shipper Postal Code', '[[regtime]]', '[[regtime]]'),
(1147, 1, 1, 'ups_ups', 'ups_weight_code', 'Weight Code:<br /><span class="help">Allowed kgs, lbs.</span>', '[[regtime]]', '[[regtime]]'),
(1148, 1, 1, 'ups_ups', 'ups_test_connection', 'Test Connection', '[[regtime]]', '[[regtime]]'),
(1149, 1, 1, 'ups_ups', 'ups_length_code', 'Length Code:<br /><span class="help">Allowed inches or centimeters.</span>', '[[regtime]]', '[[regtime]]'),
(1150, 1, 1, 'ups_ups', 'ups_tax_class_id', 'Tax Class:', '[[regtime]]', '[[regtime]]'),
(1151, 1, 1, 'ups_ups', 'ups_tax_class_id_0', '-- None --', '[[regtime]]', '[[regtime]]'),
(1152, 1, 1, 'ups_ups', 'ups_location_id', 'Location:', '[[regtime]]', '[[regtime]]'),
(1153, 1, 1, 'ups_ups', 'ups_location_id_0', 'All Locations', '[[regtime]]', '[[regtime]]'),
(1154, 1, 1, 'ups_ups', 'ups_default_weight', 'Default Product Weight:<br /><span class="help">Weight of products if not set</span>', '[[regtime]]', '[[regtime]]'),
(1155, 1, 1, 'ups_ups', 'ups_default_length', 'Default Product Length:<br /><span class="help">Length of product if not set</span>', '[[regtime]]', '[[regtime]]'),
(1156, 1, 1, 'ups_ups', 'ups_default_width', 'Default Product Width:<br /><span class="help">Width of product if not set</span>', '[[regtime]]', '[[regtime]]'),
(1157, 1, 1, 'ups_ups', 'ups_default_height', 'Default Product Height:<br /><span class="help">Height of product if not set</span>', '[[regtime]]', '[[regtime]]'),
(1158, 1, 1, 'ups_ups', 'ups_packaging', 'Packaging', '[[regtime]]', '[[regtime]]'),
(1159, 1, 1, 'ups_ups', 'ups_packaging_02', 'Box', '[[regtime]]', '[[regtime]]'),
(1160, 1, 1, 'ups_ups', 'ups_manifest_order_status_id', 'Create Shipment when Order Status becomes', '[[regtime]]', '[[regtime]]'),
(1161, 1, 1, 'ups_ups', 'ups_text_print_label', 'Print UPS Label (Original Order)', '[[regtime]]', '[[regtime]]'),
(1162, 1, 1, 'ups_ups', 'ups_text_print_label_title', 'Prints the UPS label using the original weight and dimensions submitted by the customer at checkout. Any changes made to the order by the admin will not affect the label.', '[[regtime]]', '[[regtime]]'),
(1163, 1, 1, 'ups_ups', 'ups_text_print_label_suggestion', 'Change order status to "%s" to create shipment via UPS API and get parcel labels', '[[regtime]]', '[[regtime]]'),
(1164, 1, 1, 'ups_ups', 'ups_entry_weight', 'Weight:', '[[regtime]]', '[[regtime]]'),
(1165, 1, 1, 'ups_ups', 'ups_entry_height', 'Height:', '[[regtime]]', '[[regtime]]'),
(1166, 1, 1, 'ups_ups', 'ups_entry_width', 'Width:', '[[regtime]]', '[[regtime]]'),
(1167, 1, 1, 'ups_ups', 'ups_entry_depth', 'Depth:', '[[regtime]]', '[[regtime]]'),
(1168, 1, 1, 'ups_ups', 'ups_entry_parcel_info', 'Parcel Info:', '[[regtime]]', '[[regtime]]'),
(1169, 1, 1, 'ups_ups', 'ups_shipment_created_success_message', 'UPS Shipment has been successfully created. See more info <a href="%s">here</a>', '[[regtime]]', '[[regtime]]'),
(1170, 1, 1, 'usps_usps', 'usps_name', 'United States Postal Service', '[[regtime]]', '[[regtime]]'),
(1171, 1, 1, 'usps_usps', 'text_shipping', ' Shipping', '[[regtime]]', '[[regtime]]'),
(1172, 1, 1, 'usps_usps', 'text_additional_settings', 'USPS Settings', '[[regtime]]', '[[regtime]]'),
(1173, 1, 1, 'usps_usps', 'text_usps_success', 'Success: You have modified United States Postal Service!', '[[regtime]]', '[[regtime]]'),
(1174, 1, 1, 'usps_usps', 'text_international_1', 'Express Mail International', '[[regtime]]', '[[regtime]]'),
(1175, 1, 1, 'usps_usps', 'text_international_2', 'Priority Mail International', '[[regtime]]', '[[regtime]]'),
(1176, 1, 1, 'usps_usps', 'text_international_4', 'Global Express Guaranteed (Document and Non-document)', '[[regtime]]', '[[regtime]]'),
(1177, 1, 1, 'usps_usps', 'text_international_5', 'Global Express Guaranteed Document used', '[[regtime]]', '[[regtime]]'),
(1178, 1, 1, 'usps_usps', 'text_international_6', 'Global Express Guaranteed Non-Document Rectangular shape', '[[regtime]]', '[[regtime]]'),
(1179, 1, 1, 'usps_usps', 'text_international_7', 'Global Express Guaranteed Non-Document Non-Rectangular', '[[regtime]]', '[[regtime]]'),
(1180, 1, 1, 'usps_usps', 'text_international_8', 'Priority Mail Flat Rate Envelope', '[[regtime]]', '[[regtime]]'),
(1181, 1, 1, 'usps_usps', 'text_international_9', 'Priority Mail Flat Rate Box', '[[regtime]]', '[[regtime]]'),
(1182, 1, 1, 'usps_usps', 'text_international_10', 'Express Mail International Flat Rate Envelope', '[[regtime]]', '[[regtime]]'),
(1183, 1, 1, 'usps_usps', 'text_international_11', 'Priority Mail Large Flat Rate Box', '[[regtime]]', '[[regtime]]'),
(1184, 1, 1, 'usps_usps', 'text_international_12', 'Global Express Guaranteed Envelope', '[[regtime]]', '[[regtime]]'),
(1185, 1, 1, 'usps_usps', 'text_international_13', 'First Class Mail International Letters', '[[regtime]]', '[[regtime]]'),
(1186, 1, 1, 'usps_usps', 'text_international_14', 'First Class Mail International Flats', '[[regtime]]', '[[regtime]]'),
(1187, 1, 1, 'usps_usps', 'text_international_15', 'First Class Mail International Parcels', '[[regtime]]', '[[regtime]]'),
(1188, 1, 1, 'usps_usps', 'text_international_16', 'Priority Mail Small Flat Rate Box', '[[regtime]]', '[[regtime]]'),
(1189, 1, 1, 'usps_usps', 'text_international_21', 'Postcards', '[[regtime]]', '[[regtime]]'),
(1190, 1, 1, 'usps_usps', 'text_regular', 'Regular', '[[regtime]]', '[[regtime]]'),
(1191, 1, 1, 'usps_usps', 'text_large', 'Large', '[[regtime]]', '[[regtime]]'),
(1192, 1, 1, 'usps_usps', 'text_oversize', 'Oversize', '[[regtime]]', '[[regtime]]'),
(1193, 1, 1, 'usps_usps', 'text_rectangular', 'Rectangular', '[[regtime]]', '[[regtime]]'),
(1194, 1, 1, 'usps_usps', 'text_non_rectangular', 'Non Rectangular', '[[regtime]]', '[[regtime]]'),
(1195, 1, 1, 'usps_usps', 'text_variable', 'Variable', '[[regtime]]', '[[regtime]]'),
(1196, 1, 1, 'usps_usps', 'entry_api_environment', 'API Developer Mode', '[[regtime]]', '[[regtime]]'),
(1197, 1, 1, 'usps_usps', 'usps_api_environment', 'API Developer Mode', '[[regtime]]', '[[regtime]]'),
(1198, 1, 1, 'usps_usps', 'usps_api_environment_production', 'Production (live rates)', '[[regtime]]', '[[regtime]]'),
(1199, 1, 1, 'usps_usps', 'text_api_environment_shipping', 'Developer Mode', '[[regtime]]', '[[regtime]]'),
(1200, 1, 1, 'usps_usps', 'entry_client_id', 'Consumer Key<br/><span class="help">Create an APP in your https://cop.usps.com. These credentials are required for generating the OAuth Token</span>', '[[regtime]]', '[[regtime]]'),
(1201, 1, 1, 'usps_usps', 'usps_client_id', 'Consumer Key:<span class="help">You can find it in your application section on https://cop.usps.com. These credentials are required for generating the OAuth Token</span>', '[[regtime]]', '[[regtime]]'),
(1202, 1, 1, 'usps_usps', 'text_client_id_shipping', 'API Client ID', '[[regtime]]', '[[regtime]]'),
(1203, 1, 1, 'usps_usps', 'text_country_shipping', 'Shipper Country & Zone', '[[regtime]]', '[[regtime]]'),
(1204, 1, 1, 'usps_usps', 'text_address_shipping', 'Shipper Address', '[[regtime]]', '[[regtime]]'),
(1205, 1, 1, 'usps_usps', 'text_city_shipping', 'Shipper City', '[[regtime]]', '[[regtime]]'),
(1206, 1, 1, 'usps_usps', 'text_telephone_shipping', 'Shipper Phone Number<span class="help">10 digits or more, no spaces or special character</span>', '[[regtime]]', '[[regtime]]'),
(1207, 1, 1, 'usps_usps', 'entry_client_secret', 'API Client Secret<br/><span class="help">You can find it in your application section on https://developers.usps.com</span>', '[[regtime]]', '[[regtime]]'),
(1208, 1, 1, 'usps_usps', 'usps_generate_payment_token', 'Test Label Generation:<span class="help">For label generation, USPS may require additional permissions for payment token generation on your account. Contact USPS support to enable this access.</span>', '[[regtime]]', '[[regtime]]'),
(1209, 1, 1, 'usps_usps', 'usps_generate_payment_token_button', 'Test Label Generation', '[[regtime]]', '[[regtime]]'),
(1210, 1, 1, 'usps_usps', 'usps_country', 'Shipper Country & Zone', '[[regtime]]', '[[regtime]]'),
(1211, 1, 1, 'usps_usps', 'usps_telephone', 'Shipper Phone Number (10 digits or more)', '[[regtime]]', '[[regtime]]'),
(1212, 1, 1, 'usps_usps', 'usps_address', 'Shipper Address', '[[regtime]]', '[[regtime]]'),
(1213, 1, 1, 'usps_usps', 'usps_city', 'Shipper City', '[[regtime]]', '[[regtime]]'),
(1214, 1, 1, 'usps_usps', 'usps_postcode', 'Shipper Postal Code', '[[regtime]]', '[[regtime]]'),
(1215, 1, 1, 'usps_usps', 'usps_payment_crid', 'Customer Registration ID (CRID):<span class="help">Required for USPS label generation. You can find it in your account section on https://developers.usps.com</span>', '[[regtime]]', '[[regtime]]'),
(1216, 1, 1, 'usps_usps', 'usps_payment_mid', 'Mailer ID (MID):<span class="help">Required for USPS label generation. You can find it in your account section on https://developers.usps.com</span>', '[[regtime]]', '[[regtime]]'),
(1217, 1, 1, 'usps_usps', 'usps_payment_manifest_mid', 'Manifest MID:<span class="help">Required for USPS label generation. You can find it in your account section on https://developers.usps.com</span>', '[[regtime]]', '[[regtime]]'),
(1218, 1, 1, 'usps_usps', 'usps_payment_account_number', 'EPS Account Number:<span class="help">Required for USPS label generation. You can find it in your Enterprise Payment System account on https://epay.usps.com/</span>', '[[regtime]]', '[[regtime]]'),
(1219, 1, 1, 'usps_usps', 'entry_manifest_order_status_id', 'Create Shipment when Order Status becomes', '[[regtime]]', '[[regtime]]'),
(1220, 1, 1, 'usps_usps', 'usps_client_secret', 'Consumer Secret:<span class="help">You can find it in your application section on https://cop.usps.com. These credentials are required for generating the OAuth Token</span>', '[[regtime]]', '[[regtime]]'),
(1221, 1, 1, 'usps_usps', 'usps_manifest_order_status_id', 'Create Shipment when Order Status becomes', '[[regtime]]', '[[regtime]]'),
(1222, 1, 1, 'usps_usps', 'usps_shipping_storefront_icon', 'Storefront Icon', '[[regtime]]', '[[regtime]]'),
(1223, 1, 1, 'usps_usps', 'usps_debug', 'Debug Logging Status', '[[regtime]]', '[[regtime]]'),
(1224, 1, 1, 'usps_usps', 'usps_domestic_1', 'Priority Mail', '[[regtime]]', '[[regtime]]'),
(1225, 1, 1, 'usps_usps', 'usps_domestic_2', 'Priority Mail Express', '[[regtime]]', '[[regtime]]'),
(1226, 1, 1, 'usps_usps', 'usps_domestic_3', 'Parcel Select', '[[regtime]]', '[[regtime]]'),
(1227, 1, 1, 'usps_usps', 'usps_domestic_4', 'Bound Printed Matter', '[[regtime]]', '[[regtime]]'),
(1228, 1, 1, 'usps_usps', 'usps_domestic_5', 'Media Mail', '[[regtime]]', '[[regtime]]'),
(1229, 1, 1, 'usps_usps', 'usps_domestic_6', 'Library Mail', '[[regtime]]', '[[regtime]]'),
(1230, 1, 1, 'usps_usps', 'usps_domestic_7', 'USPS Ground Advantage', '[[regtime]]', '[[regtime]]'),
(1231, 1, 1, 'usps_usps', 'usps_international_1', 'Priority Mail Express International', '[[regtime]]', '[[regtime]]'),
(1232, 1, 1, 'usps_usps', 'usps_international_2', 'Priority Mail International', '[[regtime]]', '
Showing 512.00 KB of 1.43 MB. Use Edit/Download for full content.
Directory Contents
Dirs: 6 × Files: 16