Skip to content

Instantly share code, notes, and snippets.

@rabintang
Created June 20, 2013 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rabintang/5821992 to your computer and use it in GitHub Desktop.
Save rabintang/5821992 to your computer and use it in GitHub Desktop.
zen cart的Atopk模板的空数据库文件
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb1
-- http://www.phpmyadmin.net
--
-- 主机: localhost
-- 生成日期: 2013 年 06 月 18 日 23:36
-- 服务器版本: 5.5.29
-- PHP 版本: 5.4.6-1ubuntu1.1
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 */;
--
-- 数据库: `atopk`
--
-- --------------------------------------------------------
--
-- 表的结构 `address_book`
--
CREATE TABLE IF NOT EXISTS `address_book` (
`address_book_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL DEFAULT '0',
`entry_gender` char(1) NOT NULL DEFAULT '',
`entry_company` varchar(64) DEFAULT NULL,
`entry_firstname` varchar(32) NOT NULL DEFAULT '',
`entry_lastname` varchar(32) NOT NULL DEFAULT '',
`entry_street_address` varchar(64) NOT NULL DEFAULT '',
`entry_suburb` varchar(32) DEFAULT NULL,
`entry_postcode` varchar(10) NOT NULL DEFAULT '',
`entry_city` varchar(32) NOT NULL DEFAULT '',
`entry_state` varchar(32) DEFAULT NULL,
`entry_country_id` int(11) NOT NULL DEFAULT '0',
`entry_zone_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`address_book_id`),
KEY `idx_address_book_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `address_format`
--
CREATE TABLE IF NOT EXISTS `address_format` (
`address_format_id` int(11) NOT NULL AUTO_INCREMENT,
`address_format` varchar(128) NOT NULL DEFAULT '',
`address_summary` varchar(48) NOT NULL DEFAULT '',
PRIMARY KEY (`address_format_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- 转存表中的数据 `address_format`
--
INSERT INTO `address_format` (`address_format_id`, `address_format`, `address_summary`) VALUES
(1, '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country'),
(2, '$firstname $lastname$cr$streets$cr$city, $state $postcode$cr$country', '$city, $state / $country'),
(3, '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country'),
(4, '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country'),
(5, '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country'),
(6, '$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country', '$postcode / $country');
-- --------------------------------------------------------
--
-- 表的结构 `admin`
--
CREATE TABLE IF NOT EXISTS `admin` (
`admin_id` int(11) NOT NULL AUTO_INCREMENT,
`admin_name` varchar(32) NOT NULL DEFAULT '',
`admin_email` varchar(96) NOT NULL DEFAULT '',
`admin_profile` int(11) NOT NULL DEFAULT '0',
`admin_pass` varchar(40) NOT NULL DEFAULT '',
`prev_pass1` varchar(40) NOT NULL DEFAULT '',
`prev_pass2` varchar(40) NOT NULL DEFAULT '',
`prev_pass3` varchar(40) NOT NULL DEFAULT '',
`pwd_last_change_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`reset_token` varchar(60) NOT NULL DEFAULT '',
`last_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_login_ip` varchar(15) NOT NULL DEFAULT '',
`failed_logins` smallint(4) unsigned NOT NULL DEFAULT '0',
`lockout_expires` int(11) NOT NULL DEFAULT '0',
`last_failed_attempt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_failed_ip` varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (`admin_id`),
KEY `idx_admin_name_zen` (`admin_name`),
KEY `idx_admin_email_zen` (`admin_email`),
KEY `idx_admin_profile_zen` (`admin_profile`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- 转存表中的数据 `admin`
--
INSERT INTO `admin` (`admin_id`, `admin_name`, `admin_email`, `admin_profile`, `admin_pass`, `prev_pass1`, `prev_pass2`, `prev_pass3`, `pwd_last_change_date`, `reset_token`, `last_modified`, `last_login_date`, `last_login_ip`, `failed_logins`, `lockout_expires`, `last_failed_attempt`, `last_failed_ip`) VALUES
(1, 'admin', 'tbinhit@foxmail.com', 1, '351683ea4e19efe34874b501fdbf9792:9b', '351683ea4e19efe34874b501fdbf9792:9b', '351683ea4e19efe34874b501fdbf9792:9b', '351683ea4e19efe34874b501fdbf9792:9b', '2013-06-05 15:06:05', '', '2013-03-14 13:12:56', '2013-06-18 23:20:02', '127.0.0.1', 0, 0, '2013-06-18 08:07:09', '127.0.0.1'),
(4, 'root', 'binTang.hit@gmail.com', 3, '351683ea4e19efe34874b501fdbf9792:9b', '351683ea4e19efe34874b501fdbf9792:9b', '', '', '2013-06-08 11:02:35', '', '2013-05-04 15:04:10', '2013-05-04 15:04:30', '127.0.0.1', 2, 0, '2013-06-01 21:46:20', '127.0.0.1');
-- --------------------------------------------------------
--
-- 表的结构 `admin_activity_log`
--
CREATE TABLE IF NOT EXISTS `admin_activity_log` (
`log_id` bigint(15) NOT NULL AUTO_INCREMENT,
`access_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`admin_id` int(11) NOT NULL DEFAULT '0',
`page_accessed` varchar(80) NOT NULL DEFAULT '',
`page_parameters` text,
`ip_address` varchar(20) NOT NULL DEFAULT '',
`flagged` tinyint(4) NOT NULL DEFAULT '0',
`attention` varchar(255) NOT NULL DEFAULT '',
`gzpost` mediumblob NOT NULL,
PRIMARY KEY (`log_id`),
KEY `idx_page_accessed_zen` (`page_accessed`),
KEY `idx_access_date_zen` (`access_date`),
KEY `idx_flagged_zen` (`flagged`),
KEY `idx_ip_zen` (`ip_address`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
-- --------------------------------------------------------
--
-- 表的结构 `admin_allowed_categories`
--
CREATE TABLE IF NOT EXISTS `admin_allowed_categories` (
`categories_id` int(11) NOT NULL DEFAULT '0',
`admin_id` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `admin_menus`
--
CREATE TABLE IF NOT EXISTS `admin_menus` (
`menu_key` varchar(32) NOT NULL DEFAULT '',
`language_key` varchar(255) NOT NULL DEFAULT '',
`sort_order` int(11) NOT NULL DEFAULT '0',
UNIQUE KEY `menu_key` (`menu_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `admin_menus`
--
INSERT INTO `admin_menus` (`menu_key`, `language_key`, `sort_order`) VALUES
('configuration', 'BOX_HEADING_CONFIGURATION', 1),
('catalog', 'BOX_HEADING_CATALOG', 2),
('modules', 'BOX_HEADING_MODULES', 3),
('customers', 'BOX_HEADING_CUSTOMERS', 4),
('taxes', 'BOX_HEADING_LOCATION_AND_TAXES', 5),
('localization', 'BOX_HEADING_LOCALIZATION', 6),
('reports', 'BOX_HEADING_REPORTS', 7),
('tools', 'BOX_HEADING_TOOLS', 8),
('gv', 'BOX_HEADING_GV_ADMIN', 9),
('access', 'BOX_HEADING_ADMIN_ACCESS', 10),
('extras', 'BOX_HEADING_EXTRAS', 11);
-- --------------------------------------------------------
--
-- 表的结构 `admin_pages`
--
CREATE TABLE IF NOT EXISTS `admin_pages` (
`page_key` varchar(32) NOT NULL DEFAULT '',
`language_key` varchar(255) NOT NULL DEFAULT '',
`main_page` varchar(64) NOT NULL DEFAULT '',
`page_params` varchar(64) NOT NULL DEFAULT '',
`menu_key` varchar(32) NOT NULL DEFAULT '',
`display_on_menu` char(1) NOT NULL DEFAULT 'N',
`sort_order` int(11) NOT NULL DEFAULT '0',
UNIQUE KEY `page_key` (`page_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `admin_pages`
--
INSERT INTO `admin_pages` (`page_key`, `language_key`, `main_page`, `page_params`, `menu_key`, `display_on_menu`, `sort_order`) VALUES
('configMyStore', 'BOX_CONFIGURATION_MY_STORE', 'FILENAME_CONFIGURATION', 'gID=1', 'configuration', 'Y', 1),
('configMinimumValues', 'BOX_CONFIGURATION_MINIMUM_VALUES', 'FILENAME_CONFIGURATION', 'gID=2', 'configuration', 'Y', 2),
('configMaximumValues', 'BOX_CONFIGURATION_MAXIMUM_VALUES', 'FILENAME_CONFIGURATION', 'gID=3', 'configuration', 'Y', 3),
('configImages', 'BOX_CONFIGURATION_IMAGES', 'FILENAME_CONFIGURATION', 'gID=4', 'configuration', 'Y', 4),
('configCustomerDetails', 'BOX_CONFIGURATION_CUSTOMER_DETAILS', 'FILENAME_CONFIGURATION', 'gID=5', 'configuration', 'Y', 5),
('configShipping', 'BOX_CONFIGURATION_SHIPPING_PACKAGING', 'FILENAME_CONFIGURATION', 'gID=7', 'configuration', 'Y', 6),
('configProductListing', 'BOX_CONFIGURATION_PRODUCT_LISTING', 'FILENAME_CONFIGURATION', 'gID=8', 'configuration', 'Y', 7),
('configStock', 'BOX_CONFIGURATION_STOCK', 'FILENAME_CONFIGURATION', 'gID=9', 'configuration', 'Y', 8),
('configLogging', 'BOX_CONFIGURATION_LOGGING', 'FILENAME_CONFIGURATION', 'gID=10', 'configuration', 'N', 9),
('configEmail', 'BOX_CONFIGURATION_EMAIL_OPTIONS', 'FILENAME_CONFIGURATION', 'gID=12', 'configuration', 'Y', 10),
('configAttributes', 'BOX_CONFIGURATION_ATTRIBUTE_OPTIONS', 'FILENAME_CONFIGURATION', 'gID=13', 'configuration', 'N', 11),
('configGzipCompression', 'BOX_CONFIGURATION_GZIP_COMPRESSION', 'FILENAME_CONFIGURATION', 'gID=14', 'configuration', 'N', 12),
('configSessions', 'BOX_CONFIGURATION_SESSIONS', 'FILENAME_CONFIGURATION', 'gID=15', 'configuration', 'Y', 13),
('configRegulations', 'BOX_CONFIGURATION_REGULATIONS', 'FILENAME_CONFIGURATION', 'gID=11', 'configuration', 'N', 14),
('configGvCoupons', 'BOX_CONFIGURATION_GV_COUPONS', 'FILENAME_CONFIGURATION', 'gID=16', 'configuration', 'Y', 15),
('configCreditCards', 'BOX_CONFIGURATION_CREDIT_CARDS', 'FILENAME_CONFIGURATION', 'gID=17', 'configuration', 'N', 16),
('configProductInfo', 'BOX_CONFIGURATION_PRODUCT_INFO', 'FILENAME_CONFIGURATION', 'gID=18', 'configuration', 'Y', 17),
('configLayoutSettings', 'BOX_CONFIGURATION_LAYOUT_SETTINGS', 'FILENAME_CONFIGURATION', 'gID=19', 'configuration', 'Y', 18),
('configWebsiteMaintenance', 'BOX_CONFIGURATION_WEBSITE_MAINTENANCE', 'FILENAME_CONFIGURATION', 'gID=20', 'configuration', 'Y', 19),
('configNewListing', 'BOX_CONFIGURATION_NEW_LISTING', 'FILENAME_CONFIGURATION', 'gID=21', 'configuration', 'N', 20),
('configFeaturedListing', 'BOX_CONFIGURATION_FEATURED_LISTING', 'FILENAME_CONFIGURATION', 'gID=22', 'configuration', 'N', 21),
('configAllListing', 'BOX_CONFIGURATION_ALL_LISTING', 'FILENAME_CONFIGURATION', 'gID=23', 'configuration', 'N', 22),
('configIndexListing', 'BOX_CONFIGURATION_INDEX_LISTING', 'FILENAME_CONFIGURATION', 'gID=24', 'configuration', 'N', 23),
('configDefinePageStatus', 'BOX_CONFIGURATION_DEFINE_PAGE_STATUS', 'FILENAME_CONFIGURATION', 'gID=25', 'configuration', 'N', 24),
('configEzPagesSettings', 'BOX_CONFIGURATION_EZPAGES_SETTINGS', 'FILENAME_CONFIGURATION', 'gID=30', 'configuration', 'N', 25),
('categories', 'BOX_CATALOG_CATEGORIES_PRODUCTS', 'FILENAME_CATEGORIES', '', 'catalog', 'Y', 1),
('productTypes', 'BOX_CATALOG_PRODUCT_TYPES', 'FILENAME_PRODUCT_TYPES', '', 'catalog', 'Y', 2),
('priceManager', 'BOX_CATALOG_PRODUCTS_PRICE_MANAGER', 'FILENAME_PRODUCTS_PRICE_MANAGER', '', 'catalog', 'Y', 3),
('optionNames', 'BOX_CATALOG_CATEGORIES_OPTIONS_NAME_MANAGER', 'FILENAME_OPTIONS_NAME_MANAGER', '', 'catalog', 'Y', 4),
('optionValues', 'BOX_CATALOG_CATEGORIES_OPTIONS_VALUES_MANAGER', 'FILENAME_OPTIONS_VALUES_MANAGER', '', 'catalog', 'Y', 5),
('attributes', 'BOX_CATALOG_CATEGORIES_ATTRIBUTES_CONTROLLER', 'FILENAME_ATTRIBUTES_CONTROLLER', '', 'catalog', 'Y', 6),
('downloads', 'BOX_CATALOG_CATEGORIES_ATTRIBUTES_DOWNLOADS_MANAGER', 'FILENAME_DOWNLOADS_MANAGER', '', 'catalog', 'Y', 7),
('optionNameSorter', 'BOX_CATALOG_PRODUCT_OPTIONS_NAME', 'FILENAME_PRODUCTS_OPTIONS_NAME', '', 'catalog', 'Y', 8),
('optionValueSorter', 'BOX_CATALOG_PRODUCT_OPTIONS_VALUES', 'FILENAME_PRODUCTS_OPTIONS_VALUES', '', 'catalog', 'Y', 9),
('manufacturers', 'BOX_CATALOG_MANUFACTURERS', 'FILENAME_MANUFACTURERS', '', 'catalog', 'Y', 10),
('reviews', 'BOX_CATALOG_REVIEWS', 'FILENAME_REVIEWS', '', 'catalog', 'Y', 11),
('specials', 'BOX_CATALOG_SPECIALS', 'FILENAME_SPECIALS', '', 'catalog', 'Y', 12),
('featured', 'BOX_CATALOG_FEATURED', 'FILENAME_FEATURED', '', 'catalog', 'Y', 13),
('salemaker', 'BOX_CATALOG_SALEMAKER', 'FILENAME_SALEMAKER', '', 'catalog', 'Y', 14),
('productsExpected', 'BOX_CATALOG_PRODUCTS_EXPECTED', 'FILENAME_PRODUCTS_EXPECTED', '', 'catalog', 'Y', 15),
('product', 'BOX_CATALOG_PRODUCT', 'FILENAME_PRODUCT', '', 'catalog', 'N', 16),
('productsToCategories', 'BOX_CATALOG_PRODUCTS_TO_CATEGORIES', 'FILENAME_PRODUCTS_TO_CATEGORIES', '', 'catalog', 'N', 17),
('payment', 'BOX_MODULES_PAYMENT', 'FILENAME_MODULES', 'set=payment', 'modules', 'Y', 1),
('shipping', 'BOX_MODULES_SHIPPING', 'FILENAME_MODULES', 'set=shipping', 'modules', 'Y', 2),
('orderTotal', 'BOX_MODULES_ORDER_TOTAL', 'FILENAME_MODULES', 'set=ordertotal', 'modules', 'Y', 3),
('customers', 'BOX_CUSTOMERS_CUSTOMERS', 'FILENAME_CUSTOMERS', '', 'customers', 'Y', 1),
('orders', 'BOX_CUSTOMERS_ORDERS', 'FILENAME_ORDERS', '', 'customers', 'Y', 2),
('groupPricing', 'BOX_CUSTOMERS_GROUP_PRICING', 'FILENAME_GROUP_PRICING', '', 'customers', 'Y', 3),
('paypal', 'BOX_CUSTOMERS_PAYPAL', 'FILENAME_PAYPAL', '', 'customers', 'Y', 4),
('invoice', 'BOX_CUSTOMERS_INVOICE', 'FILENAME_ORDERS_INVOICE', '', 'customers', 'N', 5),
('packingslip', 'BOX_CUSTOMERS_PACKING_SLIP', 'FILENAME_ORDERS_PACKINGSLIP', '', 'customers', 'N', 6),
('linkpointReview', 'BOX_CUSTOMERS_LINKPOINT_REVIEW', 'FILENAME_LINKPOINT_REVIEW', '', 'customers', 'Y', 7),
('countries', 'BOX_TAXES_COUNTRIES', 'FILENAME_COUNTRIES', '', 'taxes', 'Y', 1),
('zones', 'BOX_TAXES_ZONES', 'FILENAME_ZONES', '', 'taxes', 'Y', 2),
('geoZones', 'BOX_TAXES_GEO_ZONES', 'FILENAME_GEO_ZONES', '', 'taxes', 'Y', 3),
('taxClasses', 'BOX_TAXES_TAX_CLASSES', 'FILENAME_TAX_CLASSES', '', 'taxes', 'Y', 4),
('taxRates', 'BOX_TAXES_TAX_RATES', 'FILENAME_TAX_RATES', '', 'taxes', 'Y', 5),
('currencies', 'BOX_LOCALIZATION_CURRENCIES', 'FILENAME_CURRENCIES', '', 'localization', 'Y', 1),
('languages', 'BOX_LOCALIZATION_LANGUAGES', 'FILENAME_LANGUAGES', '', 'localization', 'Y', 2),
('ordersStatus', 'BOX_LOCALIZATION_ORDERS_STATUS', 'FILENAME_ORDERS_STATUS', '', 'localization', 'Y', 3),
('reportCustomers', 'BOX_REPORTS_ORDERS_TOTAL', 'FILENAME_STATS_CUSTOMERS', '', 'reports', 'Y', 1),
('reportReferrals', 'BOX_REPORTS_CUSTOMERS_REFERRALS', 'FILENAME_STATS_CUSTOMERS_REFERRALS', '', 'reports', 'Y', 2),
('reportLowStock', 'BOX_REPORTS_PRODUCTS_LOWSTOCK', 'FILENAME_STATS_PRODUCTS_LOWSTOCK', '', 'reports', 'Y', 3),
('reportProductsSold', 'BOX_REPORTS_PRODUCTS_PURCHASED', 'FILENAME_STATS_PRODUCTS_PURCHASED', '', 'reports', 'Y', 4),
('reportProductsViewed', 'BOX_REPORTS_PRODUCTS_VIEWED', 'FILENAME_STATS_PRODUCTS_VIEWED', '', 'reports', 'Y', 5),
('templateSelect', 'BOX_TOOLS_TEMPLATE_SELECT', 'FILENAME_TEMPLATE_SELECT', '', 'tools', 'Y', 1),
('layoutController', 'BOX_TOOLS_LAYOUT_CONTROLLER', 'FILENAME_LAYOUT_CONTROLLER', '', 'tools', 'Y', 2),
('banners', 'BOX_TOOLS_BANNER_MANAGER', 'FILENAME_BANNER_MANAGER', '', 'tools', 'Y', 3),
('mail', 'BOX_TOOLS_MAIL', 'FILENAME_MAIL', '', 'tools', 'Y', 4),
('newsletters', 'BOX_TOOLS_NEWSLETTER_MANAGER', 'FILENAME_NEWSLETTERS', '', 'tools', 'Y', 5),
('server', 'BOX_TOOLS_SERVER_INFO', 'FILENAME_SERVER_INFO', '', 'tools', 'N', 6),
('whosOnline', 'BOX_TOOLS_WHOS_ONLINE', 'FILENAME_WHOS_ONLINE', '', 'tools', 'Y', 7),
('storeManager', 'BOX_TOOLS_STORE_MANAGER', 'FILENAME_STORE_MANAGER', '', 'tools', 'Y', 9),
('developersToolKit', 'BOX_TOOLS_DEVELOPERS_TOOL_KIT', 'FILENAME_DEVELOPERS_TOOL_KIT', '', 'tools', 'N', 10),
('ezpages', 'BOX_TOOLS_EZPAGES', 'FILENAME_EZPAGES_ADMIN', '', 'tools', 'Y', 11),
('definePagesEditor', 'BOX_TOOLS_DEFINE_PAGES_EDITOR', 'FILENAME_DEFINE_PAGES_EDITOR', '', 'tools', 'Y', 12),
('sqlPatch', 'BOX_TOOLS_SQLPATCH', 'FILENAME_SQLPATCH', '', 'tools', 'N', 13),
('couponAdmin', 'BOX_COUPON_ADMIN', 'FILENAME_COUPON_ADMIN', '', 'gv', 'Y', 1),
('couponRestrict', 'BOX_COUPON_RESTRICT', 'FILENAME_COUPON_RESTRICT', '', 'gv', 'N', 1),
('gvQueue', 'BOX_GV_ADMIN_QUEUE', 'FILENAME_GV_QUEUE', '', 'gv', 'Y', 2),
('gvMail', 'BOX_GV_ADMIN_MAIL', 'FILENAME_GV_MAIL', '', 'gv', 'Y', 3),
('gvSent', 'BOX_GV_ADMIN_SENT', 'FILENAME_GV_SENT', '', 'gv', 'Y', 4),
('profiles', 'BOX_ADMIN_ACCESS_PROFILES', 'FILENAME_PROFILES', '', 'access', 'Y', 1),
('users', 'BOX_ADMIN_ACCESS_USERS', 'FILENAME_USERS', '', 'access', 'Y', 2),
('pageRegistration', 'BOX_ADMIN_ACCESS_PAGE_REGISTRATION', 'FILENAME_ADMIN_PAGE_REGISTRATION', '', 'access', 'Y', 3),
('adminlogs', 'BOX_ADMIN_ACCESS_LOGS', 'FILENAME_ADMIN_ACTIVITY', '', 'access', 'N', 4),
('recordArtists', 'BOX_CATALOG_RECORD_ARTISTS', 'FILENAME_RECORD_ARTISTS', '', 'extras', 'N', 1),
('recordCompanies', 'BOX_CATALOG_RECORD_COMPANY', 'FILENAME_RECORD_COMPANY', '', 'extras', 'N', 2),
('musicGenre', 'BOX_CATALOG_MUSIC_GENRE', 'FILENAME_MUSIC_GENRE', '', 'extras', 'N', 3),
('mediaManager', 'BOX_CATALOG_MEDIA_MANAGER', 'FILENAME_MEDIA_MANAGER', '', 'extras', 'N', 4),
('mediaTypes', 'BOX_CATALOG_MEDIA_TYPES', 'FILENAME_MEDIA_TYPES', '', 'extras', 'N', 5),
('super_orders', 'BOX_CUSTOMERS_SUPER_ORDERS', 'FILENAME_SUPER_ORDERS', '', 'customers', 'Y', 0),
('news', 'BOX_NEWS', 'FILENAME_NEWS', '', 'extras', 'Y', 0),
('setlogo', 'BOX_SETLOGO', 'FILENAME_SETLOGO', '', 'extras', 'Y', 0),
('easypopulate_configuration', 'BOX_TOOLS_EASYPOPULATE', 'FILENAME_CONFIGURATION', 'gID=31', 'configuration', 'Y', 31),
('easypopulate_tools', 'BOX_TOOLS_EASYPOPULATE', 'FILENAME_EASYPOPULATE', '', 'tools', 'Y', 15),
('configLiveHelp', 'BOX_CONFIGURATION_LIVE_HELP', 'FILENAME_CONFIGURATION', 'gID=32', 'configuration', 'Y', 32),
('apsona_csv', 'BOX_TOOLS_APSONA_CSV', 'FILENAME_APSONA_CSV', '', 'tools', 'Y', 16),
('links_configuration', 'BOX_LINKS', 'FILENAME_CONFIGURATION', 'gID=33', 'configuration', 'N', 33),
('links', 'BOX_LINKS', 'FILENAME_LINKS', '', 'extras', 'Y', 8),
('links_categories', 'BOX_LINK_CATEGORIES', 'FILENAME_LINK_CATEGORIES', '', 'extras', 'Y', 9),
('links_contact', 'BOX_LINKS_CONTACT', 'FILENAME_LINKS_CONTACT', '', 'extras', 'Y', 10),
('configWishlist', 'BOX_CONFIGURATION_WISH_LIST', 'FILENAME_CONFIGURATION', 'gID=34', 'configuration', 'Y', 34),
('wishlists', 'BOX_TOOLS_WISH_LISTS', 'FILENAME_WISHLISTS', '', 'tools', 'Y', 14),
('wishlistsReports', 'BOX_TOOLS_WISHLISTS_REPORTS', 'FILENAME_WISHLISTS_REPORTS', '', 'tools', 'Y', 15),
('faq_categories_box_configuration', 'BOX_FAQ_CATEGORIES_CONFIG', 'FILENAME_CONFIGURATION', 'gID=35', 'configuration', 'N', 35),
('faq_info_page_configuration', 'BOX_FAQ_INFO_PAGE_CONFIG', 'FILENAME_CONFIGURATION', 'gID=36', 'configuration', 'N', 36),
('faq_listing_configuration', 'BOX_LISTING_CONGIF', 'FILENAME_CONFIGURATION', 'gID=37', 'configuration', 'N', 37),
('new_faq_page_configuration', 'BOX_PAGE_CONGIF', 'FILENAME_CONFIGURATION', 'gID=38', 'configuration', 'N', 38),
('faq_all_page_configuration', 'BOX_ALL_PAGE_CONGIF', 'FILENAME_CONFIGURATION', 'gID=39', 'configuration', 'N', 39),
('faq_general_onfiguration', 'BOX_GENERAL_CONGIF', 'FILENAME_CONFIGURATION', 'gID=40', 'configuration', 'N', 40),
('faq_manager', 'BOX_FAQ_MANAGER', 'FILENAME_FAQ_MANAGER', '', 'extras', 'Y', 11),
('optionGroups', 'BOX_CATALOG_CATEGORIES_OPTIONS_GROUP_MANAGER', 'FILENAME_OPTIONS_GROUP_MANAGER', '', 'catalog', 'Y', 3),
('shipping_4px', 'BOX_MODULES_4PX_SHIPPING', 'FILENAME_4PX_SHIPPING', '', 'modules', 'Y', 5),
('reward_points_configuration', 'BOX_REWARD_POINTS_CONGIF', 'FILENAME_CONFIGURATION', 'gID=43', 'configuration', 'Y', 43),
('collocation', 'BOX_CATALOG_COLLOCATION_MANAGER', 'FILENAME_COLLOCATION_MANAGER', '', 'catalog', 'Y', 10),
('reward_points', 'BOX_REWARD_POINTS', 'ADMIN_FILENAME_REWARD_POINTS', '', 'catalog', 'Y', 18),
('customer_reward_points', 'BOX_CUSTOMER_REWARD_POINTS', 'ADMIN_FILENAME_CUSTOMER_REWARD_POINTS', '', 'customers', 'Y', 6),
('configMainBanner', 'BOX_CONFIGURATION_MAIN_BANNER', 'FILENAME_CONFIGURATION', 'gID=49', 'configuration', 'Y', 49),
('configProductCompare', 'BOX_CONFIGURATION_PRODUCT_COMPARE', 'FILENAME_CONFIGURATION', 'gID=50', 'configuration', 'Y', 50),
('emailArchive', 'BOX_TOOLS_EMIAL_ARCHIVE', 'FILENAME_EMAIL_ARCHIVE', '', 'tools', 'Y', 1),
('quick_update', 'BOX_CATALOG_QUICK_UPDATES', 'FILENAME_QUICK_UPDATES', '', 'catalog', 'Y', 20),
('quick_update_configuration', 'BOX_CATALOG_QUICK_UPDATES', 'FILENAME_CONFIGURATION', 'gID=52', 'configuration', 'N', 52),
('jmw_api', 'BOX_CATALOG_JMW_API', 'FILENAME_JMW_API', '', 'catalog', 'Y', 20),
('jmw_send_order', 'BOX_CUSTOMERS_SEND_ORDERS', 'FILENAME_JMW_SEND_ORDERS', '', 'customers', 'Y', 7),
('jwm_configuration', 'BOX_JWM_CONFIGURATION', 'FILENAME_CONFIGURATION', 'gID=51', 'configuration', 'Y', 51),
('UltimateSEO', 'BOX_CONFIGURATION_ULTIMATE_SEO', 'FILENAME_CONFIGURATION', 'gID=745', 'configuration', 'Y', 78),
('categories_quantity_discounts', 'BOX_CATEGORIES_QUANTITY_DISCOUNTS', 'FILENAME_QUANTITIY_DISCOUNTS', '', 'catalog', 'Y', 2),
('simple_cache', 'BOX_SIMPLE_CACHE', 'FILENAME_SIMPLE_CACHE', '', 'tools', 'Y', 18),
('simple_cache_configuration', 'BOX_SIMPLE_CACHE', 'FILENAME_CONFIGURATION', 'gID=746', 'configuration', 'Y', 750),
('configJOC', 'BOX_CONFIGURATION_JOC_TITLE', 'FILENAME_CONFIGURATION', 'gID=747', 'configuration', 'Y', 1000),
('easypopulate_4', 'BOX_TOOLS_EASYPOPULATE_4', 'FILENAME_EASYPOPULATE_4', '', 'tools', 'Y', 97),
('easypopulate_4_config', 'BOX_TOOLS_EASYPOPULATE_4', 'FILENAME_CONFIGURATION', 'gID=750', 'configuration', 'Y', 97);
-- --------------------------------------------------------
--
-- 表的结构 `admin_pages_to_profiles`
--
CREATE TABLE IF NOT EXISTS `admin_pages_to_profiles` (
`profile_id` int(11) NOT NULL DEFAULT '0',
`page_key` varchar(32) NOT NULL DEFAULT '',
UNIQUE KEY `profile_page` (`profile_id`,`page_key`),
UNIQUE KEY `page_profile` (`page_key`,`profile_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `admin_pages_to_profiles`
--
INSERT INTO `admin_pages_to_profiles` (`profile_id`, `page_key`) VALUES
(3, 'adminlogs'),
(3, 'apsona_csv'),
(3, 'attributes'),
(3, 'banners'),
(3, 'categories'),
(3, 'categories_quantity_discounts'),
(3, 'collocation'),
(3, 'configAllListing'),
(3, 'configAttributes'),
(3, 'configCreditCards'),
(3, 'configCustomerDetails'),
(3, 'configDefinePageStatus'),
(3, 'configEmail'),
(3, 'configEzPagesSettings'),
(3, 'configFeaturedListing'),
(3, 'configGvCoupons'),
(3, 'configGzipCompression'),
(3, 'configImages'),
(3, 'configIndexListing'),
(3, 'configJOC'),
(3, 'configLayoutSettings'),
(3, 'configLiveHelp'),
(3, 'configLogging'),
(3, 'configMainBanner'),
(3, 'configMaximumValues'),
(3, 'configMinimumValues'),
(3, 'configMyStore'),
(3, 'configNewListing'),
(3, 'configProductCompare'),
(3, 'configProductInfo'),
(3, 'configProductListing'),
(3, 'configRegulations'),
(3, 'configSessions'),
(3, 'configShipping'),
(3, 'configStock'),
(3, 'configWebsiteMaintenance'),
(3, 'configWishlist'),
(3, 'countries'),
(3, 'couponAdmin'),
(3, 'couponRestrict'),
(3, 'currencies'),
(3, 'customers'),
(3, 'customer_reward_points'),
(3, 'definePagesEditor'),
(3, 'developersToolKit'),
(3, 'downloads'),
(3, 'easypopulate_configuration'),
(3, 'easypopulate_tools'),
(3, 'emailArchive'),
(3, 'ezpages'),
(3, 'faq_all_page_configuration'),
(3, 'faq_categories_box_configuration'),
(3, 'faq_general_onfiguration'),
(3, 'faq_info_page_configuration'),
(3, 'faq_listing_configuration'),
(3, 'faq_manager'),
(3, 'featured'),
(3, 'geoZones'),
(3, 'groupPricing'),
(3, 'gvMail'),
(3, 'gvQueue'),
(3, 'gvSent'),
(3, 'invoice'),
(3, 'jmw_api'),
(3, 'jmw_send_order'),
(3, 'jwm_configuration'),
(3, 'languages'),
(3, 'layoutController'),
(3, 'links'),
(3, 'links_categories'),
(3, 'links_configuration'),
(3, 'links_contact'),
(3, 'mail'),
(3, 'manufacturers'),
(3, 'mediaManager'),
(3, 'mediaTypes'),
(3, 'musicGenre'),
(3, 'news'),
(3, 'newsletters'),
(3, 'new_faq_page_configuration'),
(3, 'optionGroups'),
(3, 'optionNames'),
(3, 'optionNameSorter'),
(3, 'optionValues'),
(3, 'optionValueSorter'),
(3, 'orders'),
(3, 'ordersStatus'),
(3, 'orderTotal'),
(3, 'packingslip'),
(3, 'pageRegistration'),
(3, 'payment'),
(3, 'paypal'),
(3, 'priceManager'),
(3, 'product'),
(3, 'productsExpected'),
(3, 'productsToCategories'),
(3, 'productTypes'),
(3, 'profiles'),
(3, 'quick_update'),
(3, 'quick_update_configuration'),
(3, 'recordArtists'),
(3, 'recordCompanies'),
(3, 'reportCustomers'),
(3, 'reportLowStock'),
(3, 'reportProductsSold'),
(3, 'reportProductsViewed'),
(3, 'reportReferrals'),
(3, 'reviews'),
(3, 'reward_points'),
(3, 'reward_points_configuration'),
(3, 'salemaker'),
(3, 'server'),
(3, 'setlogo'),
(3, 'shipping'),
(3, 'shipping_4px'),
(3, 'simple_cache'),
(3, 'simple_cache_configuration'),
(3, 'specials'),
(3, 'sqlPatch'),
(3, 'storeManager'),
(3, 'super_orders'),
(3, 'taxClasses'),
(3, 'taxRates'),
(3, 'templateSelect'),
(3, 'UltimateSEO'),
(3, 'users'),
(3, 'whosOnline'),
(3, 'wishlists'),
(3, 'wishlistsReports'),
(3, 'zones');
-- --------------------------------------------------------
--
-- 表的结构 `admin_profiles`
--
CREATE TABLE IF NOT EXISTS `admin_profiles` (
`profile_id` int(11) NOT NULL AUTO_INCREMENT,
`profile_name` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`profile_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- 转存表中的数据 `admin_profiles`
--
INSERT INTO `admin_profiles` (`profile_id`, `profile_name`) VALUES
(1, 'Superuser'),
(3, 'root');
-- --------------------------------------------------------
--
-- 表的结构 `ajax_blocks`
--
CREATE TABLE IF NOT EXISTS `ajax_blocks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`block` varchar(255) NOT NULL,
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `authorizenet`
--
CREATE TABLE IF NOT EXISTS `authorizenet` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL DEFAULT '0',
`order_id` int(11) NOT NULL DEFAULT '0',
`response_code` int(1) NOT NULL DEFAULT '0',
`response_text` varchar(255) NOT NULL DEFAULT '',
`authorization_type` varchar(50) NOT NULL DEFAULT '',
`transaction_id` bigint(20) DEFAULT NULL,
`sent` longtext NOT NULL,
`received` longtext NOT NULL,
`time` varchar(50) NOT NULL DEFAULT '',
`session_id` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `banners`
--
CREATE TABLE IF NOT EXISTS `banners` (
`banners_id` int(11) NOT NULL AUTO_INCREMENT,
`banners_title` varchar(64) NOT NULL DEFAULT '',
`banners_url` varchar(255) NOT NULL DEFAULT '',
`banners_image` varchar(64) NOT NULL DEFAULT '',
`banners_group` varchar(15) NOT NULL DEFAULT '',
`banners_html_text` text,
`expires_impressions` int(7) DEFAULT '0',
`expires_date` datetime DEFAULT NULL,
`date_scheduled` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`date_status_change` datetime DEFAULT NULL,
`status` int(1) NOT NULL DEFAULT '1',
`banners_open_new_windows` int(1) NOT NULL DEFAULT '1',
`banners_on_ssl` int(1) NOT NULL DEFAULT '1',
`banners_sort_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`banners_id`),
KEY `idx_status_group_zen` (`status`,`banners_group`),
KEY `idx_expires_date_zen` (`expires_date`),
KEY `idx_date_scheduled_zen` (`date_scheduled`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `banners_history`
--
CREATE TABLE IF NOT EXISTS `banners_history` (
`banners_history_id` int(11) NOT NULL AUTO_INCREMENT,
`banners_id` int(11) NOT NULL DEFAULT '0',
`banners_shown` int(5) NOT NULL DEFAULT '0',
`banners_clicked` int(5) NOT NULL DEFAULT '0',
`banners_history_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`banners_history_id`),
KEY `idx_banners_id_zen` (`banners_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `categories`
--
CREATE TABLE IF NOT EXISTS `categories` (
`categories_id` int(11) NOT NULL AUTO_INCREMENT,
`categories_image` varchar(64) DEFAULT NULL,
`parent_id` int(11) NOT NULL DEFAULT '0',
`categories_type` varchar(64) NOT NULL,
`categories_display_type` varchar(64) DEFAULT '1',
`categories_products_options` text,
`sort_order` int(3) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`categories_status` tinyint(1) NOT NULL DEFAULT '1',
`categories_discount_type` tinyint(1) NOT NULL DEFAULT '0',
`categories_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
`categories_mixed_discount_quantity` tinyint(1) NOT NULL DEFAULT '1',
`categories_banner_1_img` varchar(255) DEFAULT NULL,
`categories_banner_1_link` varchar(255) DEFAULT NULL,
`h_parent_id` int(11) NOT NULL DEFAULT '0',
`h_status` tinyint(1) NOT NULL DEFAULT '0',
`h_sort_order` int(3) NOT NULL DEFAULT '0',
`sub_categories` text NOT NULL,
`parent_categories` text NOT NULL,
`show_banner` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`categories_id`),
KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
KEY `idx_status_zen` (`categories_status`),
KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `categories_description`
--
CREATE TABLE IF NOT EXISTS `categories_description` (
`categories_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`categories_name` varchar(32) NOT NULL DEFAULT '',
`categories_description` text NOT NULL,
PRIMARY KEY (`categories_id`,`language_id`),
KEY `idx_categories_name_zen` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `categories_discount_quantity`
--
CREATE TABLE IF NOT EXISTS `categories_discount_quantity` (
`discount_id` int(4) NOT NULL DEFAULT '0',
`categories_id` int(11) NOT NULL DEFAULT '0',
`discount_qty` float NOT NULL DEFAULT '0',
`discount_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
PRIMARY KEY (`categories_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `chapter`
--
CREATE TABLE IF NOT EXISTS `chapter` (
`chapter_id` int(11) NOT NULL AUTO_INCREMENT,
`chapter_date_added` date NOT NULL,
`chapter_date_available` date DEFAULT NULL,
`master_categories_id` int(11) NOT NULL,
`chapter_status` tinyint(1) NOT NULL,
`chapter_sort_order` int(11) NOT NULL,
`top_status` tinyint(1) DEFAULT '0',
`top_time` datetime DEFAULT NULL,
`hot_status` tinyint(1) DEFAULT '0',
`relate_to_pro_model` varchar(255) DEFAULT NULL,
PRIMARY KEY (`chapter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `chapter_content`
--
CREATE TABLE IF NOT EXISTS `chapter_content` (
`chapter_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`chapter_title` varchar(255) NOT NULL,
`chapter_content` text NOT NULL,
`chapter_url` varchar(255) NOT NULL,
`chapter_view` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `collocation`
--
CREATE TABLE IF NOT EXISTS `collocation` (
`collocation_id` int(11) NOT NULL AUTO_INCREMENT,
`collocation_image` varchar(64) DEFAULT NULL,
`collocation_discount_model` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:Combined sales;1:Preferential cheaper;',
`collocation_discount_value` decimal(15,4) DEFAULT NULL,
`collocation_discount_value_prefix` char(1) NOT NULL DEFAULT '-',
`collocation_date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`collocation_date_available` datetime DEFAULT NULL,
`collocation_last_modified` datetime DEFAULT NULL,
`collocation_sort_order` int(11) NOT NULL DEFAULT '0',
`collocation_status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`collocation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `collocation_description`
--
CREATE TABLE IF NOT EXISTS `collocation_description` (
`collocation_description_id` int(11) NOT NULL AUTO_INCREMENT,
`collocation_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`collocation_name` varchar(50) NOT NULL,
PRIMARY KEY (`collocation_description_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `collocation_to_products`
--
CREATE TABLE IF NOT EXISTS `collocation_to_products` (
`collocation_to_products_id` bigint(20) NOT NULL AUTO_INCREMENT,
`collocation_id` int(11) NOT NULL,
`products_id` int(11) NOT NULL,
`collocation_to_products_main` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`collocation_to_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `configuration`
--
CREATE TABLE IF NOT EXISTS `configuration` (
`configuration_id` int(11) NOT NULL AUTO_INCREMENT,
`configuration_title` text NOT NULL,
`configuration_key` varchar(255) NOT NULL DEFAULT '',
`configuration_value` text NOT NULL,
`configuration_description` text NOT NULL,
`configuration_group_id` int(11) NOT NULL DEFAULT '0',
`sort_order` int(5) DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`use_function` text,
`set_function` text,
PRIMARY KEY (`configuration_id`),
UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
KEY `idx_cfg_grp_id_zen` (`configuration_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1463 ;
--
-- 转存表中的数据 `configuration`
--
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(1, 'Store Name', 'STORE_NAME', 'China Wholesale Electronics ,motorcycle fairings,fairing kits,onmall', 'The name of my store', 1, 1, '2013-03-14 13:20:19', '2012-05-10 16:53:20', NULL, NULL),
(2, 'Store Owner', 'STORE_OWNER', 'tenghoo', 'The name of my store owner', 1, 2, '2013-03-14 13:21:20', '2012-05-10 16:53:20', NULL, NULL),
(3, 'Telephone - Customer Service', 'STORE_TELEPHONE_CUSTSERVICE', '1-888-9382222', 'Enter a telephone number for customers to reach your Customer Service department. This number may be sent as part of payment transaction details.', 1, 3, '2012-07-09 17:00:16', '2012-05-10 16:53:20', NULL, NULL),
(4, 'Country', 'STORE_COUNTRY', '223', 'The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>', 1, 6, NULL, '2012-05-10 16:53:20', 'zen_get_country_name', 'zen_cfg_pull_down_country_list('),
(5, 'Zone', 'STORE_ZONE', '43', 'The zone my store is located in', 1, 7, NULL, '2012-05-10 16:53:20', 'zen_cfg_get_zone_name', 'zen_cfg_pull_down_zone_list('),
(6, 'Expected Sort Order', 'EXPECTED_PRODUCTS_SORT', 'desc', 'This is the sort order used in the expected products box.', 1, 8, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''asc'', ''desc''), '),
(7, 'Expected Sort Field', 'EXPECTED_PRODUCTS_FIELD', 'date_expected', 'The column to sort by in the expected products box.', 1, 9, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''products_name'', ''date_expected''), '),
(8, 'Switch To Default Language Currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', 'false', 'Automatically switch to the language''s currency when it is changed', 1, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(9, 'Language Selector', 'LANGUAGE_DEFAULT_SELECTOR', 'Default', 'Should the default language be based on the Store preferences, or the customer''s browser settings?<br /><br />Default: Store''s default settings', 1, 11, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''Default'', ''Browser''), '),
(10, 'Use Search-Engine Safe URLs (still in development)', 'SEARCH_ENGINE_FRIENDLY_URLS', 'false', 'Use search-engine safe urls for all site links', 6, 12, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(11, 'Display Cart After Adding Product', 'DISPLAY_CART', 'true', 'Display the shopping cart after adding a product (or return back to their origin)', 1, 14, '2012-06-29 10:07:13', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(12, 'Default Search Operator', 'ADVANCED_SEARCH_DEFAULT_OPERATOR', 'and', 'Default search operators', 1, 17, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''and'', ''or''), '),
(13, 'Store Address and Phone', 'STORE_NAME_ADDRESS', 'Store Name\r\n Address\r\n Country\r\n Phone', 'This is the Store Name, Address and Phone used on printable documents and displayed online', 1, 7, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_textarea('),
(14, 'Show Category Counts', 'SHOW_COUNTS', 'false', 'Count recursively how many products are in each category', 1, 19, '2012-05-10 17:19:51', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(15, 'Tax Decimal Places', 'TAX_DECIMAL_PLACES', '0', 'Pad the tax value this amount of decimal places', 1, 20, NULL, '2012-05-10 16:53:20', NULL, NULL),
(16, 'Display Prices with Tax', 'DISPLAY_PRICE_WITH_TAX', 'false', 'Display prices with tax included (true) or add the tax at the end (false)', 1, 21, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(17, 'Display Prices with Tax in Admin', 'DISPLAY_PRICE_WITH_TAX_ADMIN', 'false', 'Display prices with tax included (true) or add the tax at the end (false) in Admin(Invoices)', 1, 21, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(18, 'Basis of Product Tax', 'STORE_PRODUCT_TAX_BASIS', 'Shipping', 'On what basis is Product Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 1, 21, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(19, 'Basis of Shipping Tax', 'STORE_SHIPPING_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone - Can be overriden by correctly written Shipping Module', 1, 21, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(20, 'Sales Tax Display Status', 'STORE_TAX_DISPLAY_STATUS', '0', 'Always show Sales Tax even when amount is $0.00?<br />0= Off<br />1= On', 1, 21, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(21, 'Show Split Tax Lines', 'SHOW_SPLIT_TAX_CHECKOUT', 'false', 'If multiple tax rates apply, show each rate as a separate line at checkout', 1, 22, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(22, 'Admin Session Time Out in Seconds', 'SESSION_TIMEOUT_ADMIN', '900', 'Enter the time in seconds.<br />Max allowed is 900 for PCI Compliance Reasons.<br /> Default=900<br />Example: 900= 15 min <br /><br />Note: Too few seconds can result in timeout issues when adding/editing products', 1, 40, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''900'', ''600'', ''300''), '),
(23, 'Admin Set max_execution_time for processes', 'GLOBAL_SET_TIME_LIMIT', '60', 'Enter the time in seconds for how long the max_execution_time of processes should be. Default=60<br />Example: 60= 1 minute<br /><br />Note: Changing the time limit is only needed if you are having problems with the execution time of a process', 1, 42, NULL, '2012-05-10 16:53:20', NULL, NULL),
(24, 'Show if version update available', 'SHOW_VERSION_UPDATE_IN_HEADER', 'true', 'Automatically check to see if a new version of Zen Cart is available. Enabling this can sometimes slow down the loading of Admin pages. (Displayed on main Index page after login, and Server Info page.)', 1, 44, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(25, 'Store Status', 'STORE_STATUS', '0', 'What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices', 1, 25, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(26, 'Server Uptime', 'DISPLAY_SERVER_UPTIME', 'true', 'Displaying Server uptime can cause entries in error logs on some servers. (true = Display, false = don''t display)', 1, 46, '2003-11-08 20:24:47', '0001-01-01 00:00:00', '', 'zen_cfg_select_option(array(''true'', ''false''),'),
(27, 'Missing Page Check', 'MISSING_PAGE_CHECK', 'Page Not Found', 'Zen Cart can check for missing pages in the URL and redirect to Index page. For debugging you may want to turn this off. <br /><br /><strong>Default=On</strong><br />On = Send missing pages to ''index''<br />Off = Don''t check for missing pages<br />Page Not Found = display the Page-Not-Found page', 1, 48, '2003-11-08 20:24:47', '0001-01-01 00:00:00', '', 'zen_cfg_select_option(array(''On'', ''Off'', ''Page Not Found''),'),
(28, 'cURL Proxy Status', 'CURL_PROXY_REQUIRED', 'False', 'Does your host require that you use a proxy for cURL communication?', 6, 50, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(29, 'cURL Proxy Address', 'CURL_PROXY_SERVER_DETAILS', '', 'If you have a hosting service that requires use of a proxy to talk to external sites via cURL, enter their proxy address here.<br />format: address:port<br />ie: 127.0.0.1:3128', 6, 51, NULL, '2012-05-10 16:53:20', NULL, NULL),
(30, 'HTML Editor', 'HTML_EDITOR_PREFERENCE', 'TINYMCE', 'Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions', 1, 110, '2013-03-15 15:59:21', '2012-05-10 16:53:20', NULL, 'zen_cfg_pull_down_htmleditors('),
(31, 'Enable phpBB linkage?', 'PHPBB_LINKS_ENABLED', 'false', 'Should Zen Cart synchronize new account information to your (already-installed) phpBB forum?', 1, 120, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(32, 'Show Category Counts - Admin', 'SHOW_COUNTS_ADMIN', 'true', 'Show Category Counts in Admin?', 1, 19, '2012-06-26 14:24:14', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(33, 'Currency Conversion Ratio', 'CURRENCY_UPLIFT_RATIO', '1.05', 'When auto-updating currencies, what "uplift" ratio should be used to calculate the exchange rate used by your store?<br />ie: the bank rate is obtained from the currency-exchange servers; how much extra do you want to charge in order to make up the difference between the bank rate and the consumer rate?<br /><br /><strong>Default: 1.05 </strong><br />This will cause the published bank rate to be multiplied by 1.05 to set the currency rates in your store.', 1, 55, NULL, '2012-05-10 16:53:20', NULL, NULL),
(34, 'First Name', 'ENTRY_FIRST_NAME_MIN_LENGTH', '2', 'Minimum length of first name', 2, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(35, 'Last Name', 'ENTRY_LAST_NAME_MIN_LENGTH', '2', 'Minimum length of last name', 2, 2, NULL, '2012-05-10 16:53:20', NULL, NULL),
(36, 'Date of Birth', 'ENTRY_DOB_MIN_LENGTH', '10', 'Minimum length of date of birth', 2, 3, NULL, '2012-05-10 16:53:20', NULL, NULL),
(37, 'E-Mail Address', 'ENTRY_EMAIL_ADDRESS_MIN_LENGTH', '6', 'Minimum length of e-mail address', 2, 4, NULL, '2012-05-10 16:53:20', NULL, NULL),
(38, 'Street Address', 'ENTRY_STREET_ADDRESS_MIN_LENGTH', '5', 'Minimum length of street address', 2, 5, NULL, '2012-05-10 16:53:20', NULL, NULL),
(39, 'Company', 'ENTRY_COMPANY_MIN_LENGTH', '0', 'Minimum length of company name', 2, 6, NULL, '2012-05-10 16:53:20', NULL, NULL),
(40, 'Post Code', 'ENTRY_POSTCODE_MIN_LENGTH', '4', 'Minimum length of post code', 2, 7, NULL, '2012-05-10 16:53:20', NULL, NULL),
(41, 'City', 'ENTRY_CITY_MIN_LENGTH', '2', 'Minimum length of city', 2, 8, NULL, '2012-05-10 16:53:20', NULL, NULL),
(42, 'State', 'ENTRY_STATE_MIN_LENGTH', '2', 'Minimum length of state', 2, 9, NULL, '2012-05-10 16:53:20', NULL, NULL),
(43, 'Telephone Number', 'ENTRY_TELEPHONE_MIN_LENGTH', '3', 'Minimum length of telephone number', 2, 10, NULL, '2012-05-10 16:53:20', NULL, NULL),
(44, 'Password', 'ENTRY_PASSWORD_MIN_LENGTH', '6', 'Minimum length of password', 2, 11, '2012-05-10 17:38:58', '2012-05-10 16:53:20', NULL, NULL),
(45, 'Credit Card Owner Name', 'CC_OWNER_MIN_LENGTH', '3', 'Minimum length of credit card owner name', 2, 12, NULL, '2012-05-10 16:53:20', NULL, NULL),
(46, 'Credit Card Number', 'CC_NUMBER_MIN_LENGTH', '10', 'Minimum length of credit card number', 2, 13, NULL, '2012-05-10 16:53:20', NULL, NULL),
(47, 'Credit Card CVV Number', 'CC_CVV_MIN_LENGTH', '3', 'Minimum length of credit card CVV number', 2, 13, NULL, '2012-05-10 16:53:20', NULL, NULL),
(48, 'Product Review Text', 'REVIEW_TEXT_MIN_LENGTH', '10', 'Minimum length of product review text', 2, 14, '2012-06-19 14:58:23', '2012-05-10 16:53:20', NULL, NULL),
(49, 'Best Sellers', 'MIN_DISPLAY_BESTSELLERS', '1', 'Minimum number of best sellers to display', 2, 15, NULL, '2012-05-10 16:53:20', NULL, NULL),
(50, 'Also Purchased Products', 'MIN_DISPLAY_ALSO_PURCHASED', '1', 'Minimum number of products to display in the ''This Customer Also Purchased'' box', 2, 16, NULL, '2012-05-10 16:53:20', NULL, NULL),
(51, 'Nick Name', 'ENTRY_NICK_MIN_LENGTH', '3', 'Minimum length of Nick Name', 2, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(52, 'Address Book Entries', 'MAX_ADDRESS_BOOK_ENTRIES', '5', 'Maximum address book entries a customer is allowed to have', 3, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(53, 'Admin Search Results Per Page', 'MAX_DISPLAY_SEARCH_RESULTS', '20', 'Number of products to list on an Admin search result page', 3, 2, NULL, '2012-05-10 16:53:20', NULL, NULL),
(54, 'Prev/Next Navigation Page Links', 'MAX_DISPLAY_PAGE_LINKS', '5', 'Number of ''number'' links use for page-sets', 3, 3, NULL, '2012-05-10 16:53:20', NULL, NULL),
(55, 'Products on Special ', 'MAX_DISPLAY_SPECIAL_PRODUCTS', '24', 'Number of products on special to display', 3, 4, '2013-03-29 15:48:41', '2012-05-10 16:53:20', NULL, NULL),
(56, 'New Products Module', 'MAX_DISPLAY_NEW_PRODUCTS', '24', 'Number of new products to display in a category', 3, 5, '2013-03-29 15:48:46', '2012-05-10 16:53:20', NULL, NULL),
(57, 'Upcoming Products ', 'MAX_DISPLAY_UPCOMING_PRODUCTS', '24', 'Number of ''upcoming'' products to display', 3, 6, '2013-03-29 15:48:50', '2012-05-10 16:53:20', NULL, NULL),
(58, 'Manufacturers List - Scroll Box Size/Style', 'MAX_MANUFACTURERS_LIST', '1', 'Number of manufacturers names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.', 3, 7, '2012-05-17 13:49:48', '2012-05-10 16:53:20', NULL, NULL),
(59, 'Manufacturers List - Verify Product Exist', 'PRODUCTS_MANUFACTURERS_STATUS', '1', 'Verify that at least 1 product exists and is active for the manufacturer name to show<br /><br />Note: When this feature is ON it can produce slower results on sites with a large number of products and/or manufacturers<br />0= off 1= on', 3, 7, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(60, 'Music Genre List - Scroll Box Size/Style', 'MAX_MUSIC_GENRES_LIST', '1', 'Number of music genre names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.', 3, 7, '2012-05-17 13:49:34', '2012-05-10 16:53:20', NULL, NULL),
(61, 'Record Company List - Scroll Box Size/Style', 'MAX_RECORD_COMPANY_LIST', '1', 'Number of record company names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.', 3, 7, '2012-05-17 13:49:42', '2012-05-10 16:53:20', NULL, NULL),
(62, 'Length of Record Company Name', 'MAX_DISPLAY_RECORD_COMPANY_NAME_LEN', '15', 'Used in record companies box; maximum length of record company name to display. Longer names will be truncated.', 3, 8, NULL, '2012-05-10 16:53:20', NULL, NULL),
(63, 'Length of Music Genre Name', 'MAX_DISPLAY_MUSIC_GENRES_NAME_LEN', '15', 'Used in music genres box; maximum length of music genre name to display. Longer names will be truncated.', 3, 8, NULL, '2012-05-10 16:53:20', NULL, NULL),
(64, 'Length of Manufacturers Name', 'MAX_DISPLAY_MANUFACTURER_NAME_LEN', '15', 'Used in manufacturers box; maximum length of manufacturers name to display. Longer names will be truncated.', 3, 8, NULL, '2012-05-10 16:53:20', NULL, NULL),
(65, 'New Product Reviews Per Page', 'MAX_DISPLAY_NEW_REVIEWS', '6', 'Number of new reviews to display on each page', 3, 9, NULL, '2012-05-10 16:53:20', NULL, NULL),
(66, 'Random Product Reviews for SideBox', 'MAX_RANDOM_SELECT_REVIEWS', '1', 'Number of random product REVIEWS to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 10, NULL, '2012-05-10 16:53:20', NULL, NULL),
(67, 'Random New Products for SideBox', 'MAX_RANDOM_SELECT_NEW', '5', 'Number of random NEW products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 11, '2013-03-30 12:31:26', '2012-05-10 16:53:20', NULL, NULL),
(68, 'Random Products On Special for SideBox', 'MAX_RANDOM_SELECT_SPECIALS', '5', 'Number of random products on SPECIAL to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 12, '2013-03-30 12:30:56', '2012-05-10 16:53:20', NULL, NULL),
(69, 'Categories To List Per Row', 'MAX_DISPLAY_CATEGORIES_PER_ROW', '5', 'How many categories to list per row', 3, 13, '2013-03-30 12:30:29', '2012-05-10 16:53:20', NULL, NULL),
(70, 'New Products Listing- Number Per Page', 'MAX_DISPLAY_PRODUCTS_NEW', '24', 'Number of new products listed per page', 3, 14, '2013-03-29 15:50:30', '2012-05-10 16:53:20', NULL, NULL),
(71, 'Best Sellers For Box', 'MAX_DISPLAY_BESTSELLERS', '24', 'Number of best sellers to display in box', 3, 15, '2013-03-29 15:50:38', '2012-05-10 16:53:20', NULL, NULL),
(72, 'Also Purchased Products', 'MAX_DISPLAY_ALSO_PURCHASED', '13', 'Number of products to display in the ''This Customer Also Purchased'' box', 3, 16, NULL, '2012-05-10 16:53:20', NULL, NULL),
(73, 'Recent Purchases Box- NOTE: box is disabled ', 'MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX', '6', 'Number of products to display in the recent purchases box', 3, 17, NULL, '2012-05-10 16:53:20', NULL, NULL),
(74, 'Customer Order History List Per Page', 'MAX_DISPLAY_ORDER_HISTORY', '10', 'Number of orders to display in the order history list in ''My Account''', 3, 18, NULL, '2012-05-10 16:53:20', NULL, NULL),
(75, 'Maximum Display of Customers on Customers Page', 'MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER', '20', '', 3, 19, NULL, '2012-05-10 16:53:20', NULL, NULL),
(76, 'Maximum Display of Orders on Orders Page', 'MAX_DISPLAY_SEARCH_RESULTS_ORDERS', '20', '', 3, 20, NULL, '2012-05-10 16:53:20', NULL, NULL),
(77, 'Maximum Display of Products on Reports', 'MAX_DISPLAY_SEARCH_RESULTS_REPORTS', '20', '', 3, 21, NULL, '2012-05-10 16:53:20', NULL, NULL),
(78, 'Maximum Categories Products Display List', 'MAX_DISPLAY_RESULTS_CATEGORIES', '10', 'Number of products to list per screen', 3, 22, NULL, '2012-05-10 16:53:20', NULL, NULL),
(79, 'Products Listing- Number Per Page', 'MAX_DISPLAY_PRODUCTS_LISTING', '24', 'Maximum Number of Products to list per page on main page', 3, 30, '2013-03-29 15:40:04', '2012-05-10 16:53:20', NULL, NULL),
(80, 'Products Attributes - Option Names and Values Display', 'MAX_ROW_LISTS_OPTIONS', '10', 'Maximum number of option names and values to display in the products attributes page', 3, 24, NULL, '2012-05-10 16:53:20', NULL, NULL),
(81, 'Products Attributes - Attributes Controller Display', 'MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER', '30', 'Maximum number of attributes to display in the Attributes Controller page', 3, 25, NULL, '2012-05-10 16:53:20', NULL, NULL),
(82, 'Products Attributes - Downloads Manager Display', 'MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER', '30', 'Maximum number of attributes downloads to display in the Downloads Manager page', 3, 26, NULL, '2012-05-10 16:53:20', NULL, NULL),
(83, 'Featured Products - Number to Display Admin', 'MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN', '10', 'Number of featured products to list per screen - Admin', 3, 27, '2013-03-30 13:42:08', '2012-05-10 16:53:20', NULL, NULL),
(84, 'Maximum Display of Featured Products - Main Page', 'MAX_DISPLAY_SEARCH_RESULTS_FEATURED', '9', 'Number of featured products to list on main page', 3, 28, NULL, '2012-05-10 16:53:20', NULL, NULL),
(85, 'Maximum Display of Featured Products Page', 'MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS', '24', 'Number of featured products to list per screen', 3, 29, '2013-03-29 15:39:53', '2012-05-10 16:53:20', NULL, NULL),
(86, 'Random Featured Products for SideBox', 'MAX_RANDOM_SELECT_FEATURED_PRODUCTS', '4', 'Number of random FEATURED products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 30, NULL, '2012-05-10 16:53:20', NULL, NULL),
(87, 'Maximum Display of Specials Products - Main Page', 'MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX', '24', 'Number of special products to list on main page', 3, 31, '2013-03-29 15:47:06', '2012-05-10 16:53:20', NULL, NULL),
(88, 'New Product Listing - Limited to ...', 'SHOW_NEW_PRODUCTS_LIMIT', '0', 'Limit the New Product Listing to<br />0= All Products<br />1= Current Month<br />7= 7 Days<br />14= 14 Days<br />30= 30 Days<br />60= 60 Days<br />90= 90 Days<br />120= 120 Days', 3, 40, '2012-06-18 13:05:32', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''7'', ''14'', ''30'', ''60'', ''90'', ''120''), '),
(89, 'Maximum Display of Products All Page', 'MAX_DISPLAY_PRODUCTS_ALL', '24', 'Number of products to list per screen', 3, 45, '2013-03-29 15:41:43', '2012-05-10 16:53:20', NULL, NULL),
(90, 'Maximum Display of Language Flags in Language Side Box', 'MAX_LANGUAGE_FLAGS_COLUMNS', '5', 'Number of Language Flags per Row', 3, 50, '2013-03-30 12:34:06', '2012-05-10 16:53:20', NULL, NULL),
(91, 'Maximum File Upload Size', 'MAX_FILE_UPLOAD_SIZE', '2048000', 'What is the Maximum file size for uploads?<br />Default= 2048000', 3, 60, NULL, '2012-05-10 16:53:20', NULL, NULL),
(92, 'Allowed Filename Extensions for uploading', 'UPLOAD_FILENAME_EXTENSIONS', 'jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip', 'List the permissible filetypes (filename extensions) to be allowed when files are uploaded to your site by customers. Separate multiple values with commas(,). Do not include the dot(.).<br /><br />Suggested setting: "jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip"', 3, 61, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_textarea('),
(93, 'Maximum Orders Detail Display on Admin Orders Listing', 'MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING', '0', 'Maximum number of Order Details<br />0 = Unlimited', 3, 65, NULL, '2012-05-10 16:53:20', NULL, NULL),
(94, 'Maximum PayPal IPN Display on Admin Listing', 'MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN', '20', 'Maximum number of PayPal IPN Lisings in Admin<br />Default is 20', 3, 66, NULL, '2012-05-10 16:53:20', NULL, NULL),
(95, 'Maximum Display Columns Products to Multiple Categories Manager', 'MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS', '5', 'Maximum Display Columns Products to Multiple Categories Manager<br />3 = Default', 3, 70, '2013-03-30 12:34:13', '2012-05-10 16:53:20', NULL, NULL),
(96, 'Maximum Display EZ-Pages', 'MAX_DISPLAY_SEARCH_RESULTS_EZPAGE', '20', 'Maximum Display EZ-Pages<br />20 = Default', 3, 71, NULL, '2012-05-10 16:53:20', NULL, NULL),
(97, 'Small Image Width', 'SMALL_IMAGE_WIDTH', '240', 'The pixel width of small images', 4, 1, '2012-11-24 09:57:09', '2012-05-10 16:53:20', NULL, NULL),
(98, 'Small Image Height', 'SMALL_IMAGE_HEIGHT', '180', 'The pixel height of small images', 4, 2, '2013-03-27 23:34:10', '2012-05-10 16:53:20', NULL, NULL),
(99, 'Heading Image Width - Admin', 'HEADING_IMAGE_WIDTH', '57', 'The pixel width of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin', 4, 3, NULL, '2012-05-10 16:53:20', NULL, NULL),
(100, 'Heading Image Height - Admin', 'HEADING_IMAGE_HEIGHT', '43', 'The pixel height of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin', 4, 4, '2013-03-27 23:35:26', '2012-05-10 16:53:20', NULL, NULL),
(101, 'Subcategory Image Width', 'SUBCATEGORY_IMAGE_WIDTH', '200', 'The pixel width of subcategory images', 4, 5, '2012-06-27 10:04:26', '2012-05-10 16:53:20', NULL, NULL),
(102, 'Subcategory Image Height', 'SUBCATEGORY_IMAGE_HEIGHT', '150', 'The pixel height of subcategory images', 4, 6, '2013-03-27 23:35:09', '2012-05-10 16:53:20', NULL, NULL),
(103, 'Calculate Image Size', 'CONFIG_CALCULATE_IMAGE_SIZE', 'true', 'Calculate the size of images?', 4, 7, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(104, 'Image Required', 'IMAGE_REQUIRED', 'true', 'Enable to display broken images. Good for development.', 4, 8, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(105, 'Image - Shopping Cart Status', 'IMAGE_SHOPPING_CART_STATUS', '1', 'Show product image in the shopping cart?<br />0= off 1= on', 4, 9, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(106, 'Image - Shopping Cart Width', 'IMAGE_SHOPPING_CART_WIDTH', '50', 'Default = 50', 4, 10, NULL, '2012-05-10 16:53:20', NULL, NULL),
(107, 'Image - Shopping Cart Height', 'IMAGE_SHOPPING_CART_HEIGHT', '43', 'Default = 40', 4, 11, '2013-03-27 23:35:34', '2012-05-10 16:53:20', NULL, NULL),
(108, 'Category Icon Image Width - Product Info Pages', 'CATEGORY_ICON_IMAGE_WIDTH', '57', 'The pixel width of Category Icon heading images for Product Info Pages', 4, 13, NULL, '2012-05-10 16:53:20', NULL, NULL),
(109, 'Category Icon Image Height - Product Info Pages', 'CATEGORY_ICON_IMAGE_HEIGHT', '43', 'The pixel height of Category Icon heading images for Product Info Pages', 4, 14, '2013-03-27 23:35:42', '2012-05-10 16:53:20', NULL, NULL),
(110, 'Top Subcategory Image Width', 'SUBCATEGORY_IMAGE_TOP_WIDTH', '150', 'The pixel width of Top subcategory images<br />Top subcategory is when the Category contains subcategories', 4, 15, NULL, '2012-05-10 16:53:20', NULL, NULL),
(111, 'Top Subcategory Image Height', 'SUBCATEGORY_IMAGE_TOP_HEIGHT', '113', 'The pixel height of Top subcategory images<br />Top subcategory is when the Category contains subcategories', 4, 16, '2013-03-27 23:35:56', '2012-05-10 16:53:20', NULL, NULL),
(112, 'Product Info - Image Width', 'MEDIUM_IMAGE_WIDTH', '150', 'The pixel width of Product Info images', 4, 20, NULL, '2012-05-10 16:53:20', NULL, NULL),
(113, 'Product Info - Image Height', 'MEDIUM_IMAGE_HEIGHT', '113', 'The pixel height of Product Info images', 4, 21, '2013-03-27 23:36:12', '2012-05-10 16:53:20', NULL, NULL),
(114, 'Product Info - Image Medium Suffix', 'IMAGE_SUFFIX_MEDIUM', '_MED', 'Product Info Medium Image Suffix<br />Default = _MED', 4, 22, NULL, '2012-05-10 16:53:20', NULL, NULL),
(115, 'Product Info - Image Large Suffix', 'IMAGE_SUFFIX_LARGE', '_LRG', 'Product Info Large Image Suffix<br />Default = _LRG', 4, 23, NULL, '2012-05-10 16:53:20', NULL, NULL),
(116, 'Product Info - Number of Additional Images per Row', 'IMAGES_AUTO_ADDED', '3', 'Product Info - Enter the number of additional images to display per row<br />Default = 3', 4, 30, NULL, '2012-05-10 16:53:20', NULL, NULL),
(117, 'Image - Product Listing Width', 'IMAGE_PRODUCT_LISTING_WIDTH', '100', 'Default = 100', 4, 40, NULL, '2012-05-10 16:53:20', NULL, NULL),
(118, 'Image - Product Listing Height', 'IMAGE_PRODUCT_LISTING_HEIGHT', '75', 'Default = 80', 4, 41, '2013-03-27 23:36:57', '2012-05-10 16:53:20', NULL, NULL),
(119, 'Image - Product New Listing Width', 'IMAGE_PRODUCT_NEW_LISTING_WIDTH', '100', 'Default = 100', 4, 42, NULL, '2012-05-10 16:53:20', NULL, NULL),
(120, 'Image - Product New Listing Height', 'IMAGE_PRODUCT_NEW_LISTING_HEIGHT', '75', 'Default = 80', 4, 43, '2013-03-27 23:37:02', '2012-05-10 16:53:20', NULL, NULL),
(121, 'Image - New Products Width', 'IMAGE_PRODUCT_NEW_WIDTH', '100', 'Default = 100', 4, 44, NULL, '2012-05-10 16:53:20', NULL, NULL),
(122, 'Image - New Products Height', 'IMAGE_PRODUCT_NEW_HEIGHT', '75', 'Default = 80', 4, 45, '2013-03-27 23:37:09', '2012-05-10 16:53:20', NULL, NULL),
(123, 'Image - Featured Products Width', 'IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH', '100', 'Default = 100', 4, 46, NULL, '2012-05-10 16:53:20', NULL, NULL),
(124, 'Image - Featured Products Height', 'IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT', '75', 'Default = 80', 4, 47, '2013-03-27 23:37:15', '2012-05-10 16:53:20', NULL, NULL),
(125, 'Image - Product All Listing Width', 'IMAGE_PRODUCT_ALL_LISTING_WIDTH', '100', 'Default = 100', 4, 48, NULL, '2012-05-10 16:53:20', NULL, NULL),
(126, 'Image - Product All Listing Height', 'IMAGE_PRODUCT_ALL_LISTING_HEIGHT', '75', 'Default = 80', 4, 49, '2013-03-27 23:37:20', '2012-05-10 16:53:20', NULL, NULL),
(127, 'Product Image - No Image Status', 'PRODUCTS_IMAGE_NO_IMAGE_STATUS', '1', 'Use automatic No Image when none is added to product<br />0= off<br />1= On', 4, 60, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(128, 'Product Image - No Image picture', 'PRODUCTS_IMAGE_NO_IMAGE', 'no_picture.gif', 'Use automatic No Image when none is added to product<br />Default = no_picture.gif', 4, 61, NULL, '2012-05-10 16:53:20', NULL, NULL),
(129, 'Image - Use Proportional Images on Products and Categories', 'PROPORTIONAL_IMAGES_STATUS', '1', 'Use Proportional Images on Products and Categories?<br /><br />NOTE: Do not use 0 height or width settings for Proportion Images<br />0= off 1= on', 4, 75, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(130, 'Email Salutation', 'ACCOUNT_GENDER', 'true', 'Display salutation choice during account creation and with account information', 5, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(131, 'Date of Birth', 'ACCOUNT_DOB', 'true', 'Display date of birth field during account creation and with account information<br />NOTE: Set Minimum Value Date of Birth to blank for not required<br />Set Minimum Value Date of Birth > 0 to require', 5, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(132, 'Company', 'ACCOUNT_COMPANY', 'false', 'Display company field during account creation and with account information', 5, 3, '2012-06-04 17:37:14', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(133, 'Address Line 2', 'ACCOUNT_SUBURB', 'true', 'Display address line 2 field during account creation and with account information', 5, 4, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(134, 'State', 'ACCOUNT_STATE', 'true', 'Display state field during account creation and with account information', 5, 5, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(135, 'State - Always display as pulldown?', 'ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN', 'true', 'When state field is displayed, should it always be a pulldown menu?', 5, 5, '2012-05-10 17:39:26', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(136, 'Create Account Default Country ID', 'SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY', '223', 'Set Create Account Default Country ID to:<br />Default is 223', 5, 6, NULL, '2012-05-10 16:53:20', 'zen_get_country_name', 'zen_cfg_pull_down_country_list_none('),
(137, 'Fax Number', 'ACCOUNT_FAX_NUMBER', 'true', 'Display fax number field during account creation and with account information', 5, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(138, 'Show Newsletter Checkbox', 'ACCOUNT_NEWSLETTER_STATUS', '1', 'Show Newsletter Checkbox<br />0= off<br />1= Display Unchecked<br />2= Display Checked<br /><strong>Note: Defaulting this to accepted may be in violation of certain regulations for your state or country</strong>', 5, 45, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(139, 'Customer Default Email Preference', 'ACCOUNT_EMAIL_PREFERENCE', '0', 'Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />', 5, 46, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(140, 'Customer Product Notification Status', 'CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS', '1', 'Customer should be asked about product notifications after checkout success and in account preferences<br />0= Never ask<br />1= Ask (ignored on checkout if has already selected global notifications)<br /><br />Note: Sidebox must be turned off separately', 5, 50, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(141, 'Customer Shop Status - View Shop and Prices', 'CUSTOMERS_APPROVAL', '0', 'Customer must be approved to shop<br />0= Not required<br />1= Must login to browse<br />2= May browse but no prices unless logged in<br />3= Showroom Only<br /><br />It is recommended that Option 2 be used for the purposes of Spiders if you wish customers to login to see prices.', 5, 55, '2012-07-23 10:29:19', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(142, 'Customer Approval Status - Authorization Pending', 'CUSTOMERS_APPROVAL_AUTHORIZATION', '0', 'Customer must be Authorized to shop<br />0= Not required<br />1= Must be Authorized to Browse<br />2= May browse but no prices unless Authorized<br />3= Customer May Browse and May see Prices but Must be Authorized to Buy<br /><br />It is recommended that Option 2 or 3 be used for the purposes of Spiders', 5, 65, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(143, 'Customer Authorization: filename', 'CUSTOMERS_AUTHORIZATION_FILENAME', 'customers_authorization', 'Customer Authorization filename<br />Note: Do not include the extension<br />Default=customers_authorization', 5, 66, NULL, '2012-05-10 16:53:20', NULL, ''),
(144, 'Customer Authorization: Hide Header', 'CUSTOMERS_AUTHORIZATION_HEADER_OFF', 'false', 'Customer Authorization: Hide Header <br />(true=hide false=show)', 5, 67, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(145, 'Customer Authorization: Hide Column Left', 'CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF', 'false', 'Customer Authorization: Hide Column Left <br />(true=hide false=show)', 5, 68, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(146, 'Customer Authorization: Hide Column Right', 'CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF', 'false', 'Customer Authorization: Hide Column Right <br />(true=hide false=show)', 5, 69, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(147, 'Customer Authorization: Hide Footer', 'CUSTOMERS_AUTHORIZATION_FOOTER_OFF', 'false', 'Customer Authorization: Hide Footer <br />(true=hide false=show)', 5, 70, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(148, 'Customer Authorization: Hide Prices', 'CUSTOMERS_AUTHORIZATION_PRICES_OFF', 'false', 'Customer Authorization: Hide Prices <br />(true=hide false=show)', 5, 71, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(149, 'Customers Referral Status', 'CUSTOMERS_REFERRAL_STATUS', '0', 'Customers Referral Code is created from<br />0= Off<br />1= 1st Discount Coupon Code used<br />2= Customer can add during create account or edit if blank<br /><br />NOTE: Once the Customers Referral Code has been set it can only be changed in the Admin Customer', 5, 80, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(150, 'Installed Modules', 'MODULE_PAYMENT_INSTALLED', 'alipay.php;freecharger.php;moneybookers_gateway.php;moneyorder.php;paypal.php;westernunion.php;wire.php', 'List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: freecharger.php;cod.php;paypal.php)', 6, 0, '2012-07-31 15:25:03', '2012-05-10 16:53:20', NULL, NULL),
(151, 'Installed Modules', 'MODULE_ORDER_TOTAL_INSTALLED', 'ot_group_pricing.php;ot_loworderfee.php;ot_gv.php;ot_reward_points_discount.php;ot_reward_points_display.php;ot_coupon.php;ot_shipping.php;ot_subtotal.php;ot_tax.php;ot_total.php', 'List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)', 6, 0, '2012-07-23 11:20:22', '2012-05-10 16:53:20', NULL, NULL),
(152, 'Installed Modules', 'MODULE_SHIPPING_INSTALLED', 'emszones.php;freeoptions.php;freeshipper.php', 'List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)', 6, 0, '2013-03-28 00:26:53', '2012-05-10 16:53:20', NULL, NULL),
(153, 'One Page Checkout', 'ONE_PAGE_CHECKOUT_STATUS', '1', 'One page Checkout', 1, 1, '2012-09-19 16:01:30', '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(154, 'Cache status', 'SIMPLE_CACHE_STATUS', 'false', 'Turn the cache on/off', 41, 1, '2012-07-23 11:57:58', '2012-07-23 11:57:58', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(155, 'Enable Free Charge Module', 'MODULE_PAYMENT_FREECHARGER_STATUS', 'True', 'Do you want to accept Free Charge payments?', 6, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(156, 'Sort order of display.', 'MODULE_PAYMENT_FREECHARGER_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2012-05-10 16:53:20', NULL, NULL),
(157, 'Payment Zone', 'MODULE_PAYMENT_FREECHARGER_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2012-05-10 16:53:20', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(158, 'Set Order Status', 'MODULE_PAYMENT_FREECHARGER_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2012-05-10 16:53:20', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(159, 'Enable Check/Money Order Module', 'MODULE_PAYMENT_MONEYORDER_STATUS', 'True', 'Do you want to accept Check/Money Order payments?', 6, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(160, 'Make Payable to:', 'MODULE_PAYMENT_MONEYORDER_PAYTO', 'the Store Owner/Website Name', 'Who should payments be made payable to?', 6, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(161, 'Sort order of display.', 'MODULE_PAYMENT_MONEYORDER_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2012-05-10 16:53:20', NULL, NULL),
(162, 'Payment Zone', 'MODULE_PAYMENT_MONEYORDER_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2012-05-10 16:53:20', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(163, 'Set Order Status', 'MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2012-05-10 16:53:20', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(164, 'Include Tax', 'MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX', 'false', 'Include Tax value in amount before discount calculation?', 6, 6, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(165, 'This module is installed', 'MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS', 'true', '', 6, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true''), '),
(166, 'Sort Order', 'MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER', '290', 'Sort order of display.', 6, 2, NULL, '2012-05-10 16:53:20', NULL, NULL),
(167, 'Include Shipping', 'MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING', 'false', 'Include Shipping value in amount before discount calculation?', 6, 5, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(168, 'Re-calculate Tax', 'MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX', 'Standard', 'Re-Calculate Tax', 6, 7, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''None'', ''Standard'', ''Credit Note''), '),
(169, 'Tax Class', 'MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS', '0', 'Use the following tax class when treating Group Discount as Credit Note.', 6, 0, NULL, '2012-05-10 16:53:20', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(170, 'Default Currency', 'DEFAULT_CURRENCY', 'USD', 'Default Currency', 6, 0, NULL, '2012-05-10 16:53:20', NULL, NULL),
(171, 'Default Language', 'DEFAULT_LANGUAGE', 'en', 'Default Language', 6, 0, NULL, '2012-05-10 16:53:20', NULL, NULL),
(172, 'Default Order Status For New Orders', 'DEFAULT_ORDERS_STATUS_ID', '1', 'When a new order is created, this order status will be assigned to it.', 6, 0, NULL, '2012-05-10 16:53:20', NULL, NULL),
(173, 'Admin configuration_key shows', 'ADMIN_CONFIGURATION_KEY_ON', '0', 'Manually switch to value of 1 to see the configuration_key name in configuration displays', 6, 0, NULL, '2012-05-10 16:53:20', NULL, NULL),
(174, 'Country of Origin', 'SHIPPING_ORIGIN_COUNTRY', '223', 'Select the country of origin to be used in shipping quotes.', 7, 1, NULL, '2012-05-10 16:53:20', 'zen_get_country_name', 'zen_cfg_pull_down_country_list('),
(175, 'Postal Code', 'SHIPPING_ORIGIN_ZIP', '518000', 'Enter the Postal Code (ZIP) of the Store to be used in shipping quotes. NOTE: For USA zip codes, only use your 5 digit zip code.', 7, 2, '2012-09-19 10:54:11', '2012-05-10 16:53:20', NULL, NULL),
(176, 'Enter the Maximum Package Weight you will ship', 'SHIPPING_MAX_WEIGHT', '50', 'Carriers have a max weight limit for a single package. This is a common one for all.', 7, 3, NULL, '2012-05-10 16:53:20', NULL, NULL),
(177, 'Package Tare Small to Medium - added percentage:weight', 'SHIPPING_BOX_WEIGHT', '0:3', 'What is the weight of typical packaging of small to medium packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0', 7, 4, NULL, '2012-05-10 16:53:20', NULL, NULL),
(178, 'Larger packages - added packaging percentage:weight', 'SHIPPING_BOX_PADDING', '10:0', 'What is the weight of typical packaging for Large packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0', 7, 5, NULL, '2012-05-10 16:53:20', NULL, NULL),
(179, 'Display Number of Boxes and Weight Status', 'SHIPPING_BOX_WEIGHT_DISPLAY', '3', 'Display Shipping Weight and Number of Boxes?<br /><br />0= off<br />1= Boxes Only<br />2= Weight Only<br />3= Both Boxes and Weight', 7, 15, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(180, 'Shipping Estimator Display Settings for Shopping Cart', 'SHOW_SHIPPING_ESTIMATOR_BUTTON', '2', '<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page', 7, 20, '2012-06-07 10:34:49', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(181, 'Display Order Comments on Admin Invoice', 'ORDER_COMMENTS_INVOICE', '1', 'Do you want to display the Order Comments on the Admin Invoice?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order', 7, 25, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(182, 'Display Order Comments on Admin Packing Slip', 'ORDER_COMMENTS_PACKING_SLIP', '1', 'Do you want to display the Order Comments on the Admin Packing Slip?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order', 7, 26, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(183, 'Order Free Shipping 0 Weight Status', 'ORDER_WEIGHT_ZERO_STATUS', '0', 'If there is no weight to the order, does the order have Free Shipping?<br />0= no<br />1= yes<br /><br />Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.', 7, 15, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(184, 'Display Product Image', 'PRODUCT_LIST_IMAGE', '1', 'Do you want to display the Product Image?', 8, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(185, 'Display Product Manufacturer Name', 'PRODUCT_LIST_MANUFACTURER', '0', 'Do you want to display the Product Manufacturer Name?', 8, 2, NULL, '2012-05-10 16:53:20', NULL, NULL),
(186, 'Display Product Model', 'PRODUCT_LIST_MODEL', '0', 'Do you want to display the Product Model?', 8, 3, NULL, '2012-05-10 16:53:20', NULL, NULL),
(187, 'Display Product Name', 'PRODUCT_LIST_NAME', '2', 'Do you want to display the Product Name?', 8, 4, NULL, '2012-05-10 16:53:20', NULL, NULL),
(188, 'Display Product Price/Add to Cart', 'PRODUCT_LIST_PRICE', '3', 'Do you want to display the Product Price/Add to Cart', 8, 5, NULL, '2012-05-10 16:53:20', NULL, NULL),
(189, 'Display Product Quantity', 'PRODUCT_LIST_QUANTITY', '0', 'Do you want to display the Product Quantity?', 8, 6, NULL, '2012-05-10 16:53:20', NULL, NULL),
(190, 'Display Product Weight', 'PRODUCT_LIST_WEIGHT', '0', 'Do you want to display the Product Weight?', 8, 7, NULL, '2012-05-10 16:53:20', NULL, NULL),
(191, 'Display Product Price/Add to Cart Column Width', 'PRODUCTS_LIST_PRICE_WIDTH', '125', 'Define the width of the Price/Add to Cart column<br />Default= 125', 8, 8, NULL, '2012-05-10 16:53:20', NULL, NULL),
(192, 'Display Category/Manufacturer Filter (0=off; 1=on)', 'PRODUCT_LIST_FILTER', '1', 'Do you want to display the Category/Manufacturer Filter?', 8, 9, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(193, 'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)', 'PREV_NEXT_BAR_LOCATION', '3', 'Sets the location of the Prev/Next Split Page Navigation', 8, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(194, 'Display Product Listing Default Sort Order', 'PRODUCT_LISTING_DEFAULT_SORT_ORDER', '', 'Product Listing Default sort order?<br />NOTE: Leave Blank for Product Sort Order. Sort the Product Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a', 8, 15, NULL, '2012-05-10 16:53:20', NULL, NULL),
(195, 'Display Product Add to Cart Button (0=off; 1=on; 2=on with Qty Box per Product)', 'PRODUCT_LIST_PRICE_BUY_NOW', '1', 'Do you want to display the Add to Cart Button?<br /><br /><strong>NOTE:</strong> Turn OFF Display Multiple Products Qty Box Status to use Option 2 on with Qty Box per Product', 8, 20, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(196, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_LISTING_MULTIPLE_ADD_TO_CART', '3', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 8, 25, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(197, 'Display Product Description', 'PRODUCT_LIST_DESCRIPTION', '150', 'Do you want to display the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 8, 30, NULL, '2012-05-10 16:53:20', NULL, NULL),
(198, 'Product Listing Ascending Sort Order', 'PRODUCT_LIST_SORT_ORDER_ASCENDING', '+', 'What do you want to use to indicate Sort Order Ascending?<br />Default = +', 8, 40, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_textarea_small('),
(199, 'Product Listing Descending Sort Order', 'PRODUCT_LIST_SORT_ORDER_DESCENDING', '-', 'What do you want to use to indicate Sort Order Descending?<br />Default = -', 8, 41, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_textarea_small('),
(200, 'Include Product Listing Alpha Sorter Dropdown', 'PRODUCT_LIST_ALPHA_SORTER', 'false', 'Do you want to include an Alpha Filter dropdown on the Product Listing?', 8, 50, '2012-06-25 19:48:44', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(201, 'Include Product Listing Sub Categories Image', 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS', 'true', 'Do you want to include the Sub Categories Image on the Product Listing?', 8, 52, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(202, 'Include Product Listing Top Categories Image', 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP', 'true', 'Do you want to include the Top Categories Image on the Product Listing?', 8, 53, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(203, 'Show SubCategories on Main Page while navigating', 'PRODUCT_LIST_CATEGORY_ROW_STATUS', '1', 'Show Sub-Categories on Main Page while navigating through Categories<br /><br />0= off<br />1= on', 8, 60, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(204, 'Check stock level', 'STOCK_CHECK', 'true', 'Check to see if sufficent stock is available', 9, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(205, 'Subtract stock', 'STOCK_LIMITED', 'true', 'Subtract product in stock by product orders', 9, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(206, 'Allow Checkout', 'STOCK_ALLOW_CHECKOUT', 'true', 'Allow customer to checkout even if there is insufficient stock', 9, 3, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(207, 'Mark product out of stock', 'STOCK_MARK_PRODUCT_OUT_OF_STOCK', '***', 'Display something on screen so customer can see which product has insufficient stock', 9, 4, NULL, '2012-05-10 16:53:20', NULL, NULL),
(208, 'Stock Re-order level', 'STOCK_REORDER_LEVEL', '5', 'Define when stock needs to be re-ordered', 9, 5, NULL, '2012-05-10 16:53:20', NULL, NULL),
(209, 'Products status in Catalog when out of stock should be set to', 'SHOW_PRODUCTS_SOLD_OUT', '0', 'Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON', 9, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(210, 'Show Sold Out Image in place of Add to Cart', 'SHOW_PRODUCTS_SOLD_OUT_IMAGE', '1', 'Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on', 9, 11, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(211, 'Product Quantity Decimals', 'QUANTITY_DECIMALS', '0', 'Allow how many decimals on Quantity<br /><br />0= off', 9, 15, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), ');
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(212, 'Show Shopping Cart - Delete Checkboxes or Delete Button', 'SHOW_SHOPPING_CART_DELETE', '1', 'Show on Shopping Cart Delete Button and/or Checkboxes<br /><br />1= Delete Button Only<br />2= Checkbox Only<br />3= Both Delete Button and Checkbox', 9, 20, '2012-06-26 11:40:35', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(213, 'Show Shopping Cart - Update Cart Button Location', 'SHOW_SHOPPING_CART_UPDATE', '3', 'Show on Shopping Cart Update Cart Button Location as:<br /><br />1= Next to each Qty Box<br />2= Below all Products<br />3= Both Next to each Qty Box and Below all Products', 9, 22, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(214, 'Show New Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS', '1', 'Show New Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 30, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(215, 'Show Featured Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS', '2', 'Show Featured Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 31, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(216, 'Show Special Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS', '3', 'Show Special Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 32, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(217, 'Show Upcoming Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_UPCOMING', '4', 'Show Upcoming Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 33, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(218, 'Show Notice of Combining Shopping Cart on Login', 'SHOW_SHOPPING_CART_COMBINED', '1', 'When a customer logs in and has a previously stored shopping cart, the products are combined with the existing shopping cart.<br /><br />Do you wish to display a Notice to the customer?<br /><br />0= OFF, do not display a notice<br />1= Yes show notice and go to shopping cart<br />2= Yes show notice, but do not go to shopping cart', 9, 35, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(219, 'Store Page Parse Time', 'STORE_PAGE_PARSE_TIME', 'false', 'Store the time it takes to parse a page', 10, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(220, 'Log Destination', 'STORE_PAGE_PARSE_TIME_LOG', '/home/admin/f1web/atopk.com/cache/page_parse_time.log', 'Directory and filename of the page parse time log', 10, 2, NULL, '2012-05-10 16:53:20', NULL, NULL),
(221, 'Log Date Format', 'STORE_PARSE_DATE_TIME_FORMAT', '%d/%m/%Y %H:%M:%S', 'The date format', 10, 3, NULL, '2012-05-10 16:53:20', NULL, NULL),
(222, 'Display The Page Parse Time', 'DISPLAY_PAGE_PARSE_TIME', 'true', 'Display the page parse time on the bottom of each page<br />You do not need to store the times to display them in the Catalog', 10, 4, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(223, 'Store Database Queries', 'STORE_DB_TRANSACTIONS', 'false', 'Store the database queries in the page parse time log (PHP4 only)', 10, 5, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(224, 'E-Mail Transport Method', 'EMAIL_TRANSPORT', 'smtpauth', 'Defines the method for sending mail.<br /><strong>PHP</strong> is the default, and uses built-in PHP wrappers for processing.<br />Servers running on Windows and MacOS should change this setting to <strong>SMTP</strong>.<br /><br /><strong>SMTPAUTH</strong> should only be used if your server requires SMTP authorization to send messages. You must also configure your SMTPAUTH settings in the appropriate fields in this admin section.<br /><br /><strong>sendmail</strong> is for linux/unix hosts using the sendmail program on the server<br /><strong>"sendmail-f"</strong> is only for servers which require the use of the -f parameter to send mail. This is a security setting often used to prevent spoofing. Will cause errors if your host mailserver is not configured to use it.<br /><br /><strong>Qmail</strong> is used for linux/unix hosts running Qmail as sendmail wrapper at /var/qmail/bin/sendmail.', 12, 1, '2012-06-19 14:23:52', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''PHP'', ''sendmail'', ''sendmail-f'', ''smtp'', ''smtpauth'', ''Qmail''),'),
(225, 'SMTP Email Account Mailbox', 'EMAIL_SMTPAUTH_MAILBOX', 'tenghoo@163.com', 'Enter the mailbox account name (me@mydomain.com) supplied by your host. This is the account name that your host requires for SMTP authentication.<br />Only required if using SMTP Authentication for email.', 12, 101, '2013-03-30 14:09:41', '2012-05-10 16:53:20', NULL, NULL),
(226, 'SMTP Email Account Password', 'EMAIL_SMTPAUTH_PASSWORD', '1214125', 'Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.', 12, 101, '2013-03-30 14:09:51', '2012-05-10 16:53:20', 'zen_cfg_password_display', NULL),
(227, 'SMTP Email Mail Host', 'EMAIL_SMTPAUTH_MAIL_SERVER', 'smtp.163.com', 'Enter the DNS name of your SMTP mail server.<br />ie: mail.mydomain.com<br />or 55.66.77.88<br />Only required if using SMTP Authentication for email.', 12, 101, '2012-09-19 13:57:29', '2012-05-10 16:53:20', NULL, NULL),
(228, 'SMTP Email Mail Server Port', 'EMAIL_SMTPAUTH_MAIL_SERVER_PORT', '25', 'Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.', 12, 101, NULL, '2012-05-10 16:53:20', NULL, NULL),
(229, 'E-Mail Linefeeds', 'EMAIL_LINEFEED', 'LF', 'Defines the character sequence used to separate mail headers.', 12, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''LF'', ''CRLF''),'),
(230, 'Use MIME HTML When Sending Emails', 'EMAIL_USE_HTML', 'true', 'Send e-mails in HTML format', 12, 3, '2012-07-13 11:16:24', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(231, 'Verify E-Mail Addresses Through DNS', 'ENTRY_EMAIL_ADDRESS_CHECK', 'false', 'Verify e-mail address through a DNS server', 6, 6, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(232, 'Send E-Mails', 'SEND_EMAILS', 'true', 'Send out e-mails', 12, 5, '2012-07-13 11:16:31', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(233, 'Email Archiving Active?', 'EMAIL_ARCHIVE', 'false', 'If you wish to have email messages archived/stored when sent, set this to "true".', 12, 6, '2012-07-23 11:42:34', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(234, 'E-Mail Friendly-Errors', 'EMAIL_FRIENDLY_ERRORS', 'true', 'Do you want to display friendly errors if emails fail? Setting this to false will display PHP errors and likely cause the script to fail. Only set to false while troubleshooting, and true for a live shop.', 12, 7, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(235, 'Email Address (Displayed to Contact you)', 'STORE_OWNER_EMAIL_ADDRESS', 'tenghoo@163.com', 'Email address of Store Owner. Used as "display only" when informing customers of how to contact you.', 12, 10, '2013-03-30 14:08:23', '2012-05-10 16:53:20', NULL, NULL),
(236, 'Email Address (sent FROM)', 'EMAIL_FROM', 'tenghoo@163.com', 'Address from which email messages will be "sent" by default. Can be over-ridden at compose-time in admin modules.', 12, 11, '2013-03-30 14:08:35', '2012-05-10 16:53:20', NULL, NULL),
(237, 'Emails must send from known domain?', 'EMAIL_SEND_MUST_BE_STORE', 'Yes', 'Does your mailserver require that all outgoing emails have their "from" address match a known domain that exists on your webserver?<br /><br />This is often required in order to prevent spoofing and spam broadcasts. If set to Yes, this will cause the email address (sent FROM) to be used as the "from" address on all outgoing mail.', 12, 11, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''No'', ''Yes''), '),
(238, 'Email Admin Format?', 'ADMIN_EXTRA_EMAIL_FORMAT', 'TEXT', 'Please select the Admin extra email format', 12, 12, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''TEXT'', ''HTML''), '),
(239, 'Send Copy of Order Confirmation Emails To', 'SEND_EXTRA_ORDER_EMAILS_TO', 'tenghoo@163.com', 'Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 12, '2013-03-30 14:08:39', '2012-05-10 16:53:20', NULL, NULL),
(240, 'Send Copy of Create Account Emails To - Status', 'SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS', '1', 'Send copy of Create Account Status<br />0= off 1= on', 12, 13, '2012-07-23 11:50:24', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(241, 'Send Copy of Create Account Emails To', 'SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO', 'tenghoo@163.com', 'Send copy of Create Account emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 14, '2013-03-30 14:08:46', '2012-05-10 16:53:20', NULL, NULL),
(242, 'Send Copy of Customer GV Send Emails To - Status', 'SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS', '0', 'Send copy of Customer GV Send Status<br />0= off 1= on', 12, 17, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(243, 'Send Copy of Customer GV Send Emails To', 'SEND_EXTRA_GV_CUSTOMER_EMAILS_TO', 'tenghoo@163.com', 'Send copy of Customer GV Send emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 18, '2013-03-30 14:08:52', '2012-05-10 16:53:20', NULL, NULL),
(244, 'Send Copy of Admin GV Mail Emails To - Status', 'SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS', '0', 'Send copy of Admin GV Mail Status<br />0= off 1= on', 12, 19, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(245, 'Send Copy of Customer Admin GV Mail Emails To', 'SEND_EXTRA_GV_ADMIN_EMAILS_TO', 'tenghoo@163.com', 'Send copy of Admin GV Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 20, '2013-03-30 14:08:56', '2012-05-10 16:53:20', NULL, NULL),
(246, 'Send Copy of Admin Discount Coupon Mail Emails To - Status', 'SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS', '0', 'Send copy of Admin Discount Coupon Mail Status<br />0= off 1= on', 12, 21, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(247, 'Send Copy of Customer Admin Discount Coupon Mail Emails To', 'SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO', 'tenghoo@163.com', 'Send copy of Admin Discount Coupon Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 22, '2013-03-30 14:09:02', '2012-05-10 16:53:20', NULL, NULL),
(248, 'Send Copy of Admin Orders Status Emails To - Status', 'SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS', '0', 'Send copy of Admin Orders Status Status<br />0= off 1= on', 12, 23, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(249, 'Send Copy of Admin Orders Status Emails To', 'SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO', 'tenghoo@163.com', 'Send copy of Admin Orders Status emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 24, '2013-03-30 14:09:07', '2012-05-10 16:53:20', NULL, NULL),
(250, 'Send Notice of Pending Reviews Emails To - Status', 'SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS', '0', 'Send copy of Pending Reviews Status<br />0= off 1= on', 12, 25, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(251, 'Send Notice of Pending Reviews Emails To', 'SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO', 'tenghoo@163.com', 'Send copy of Pending Reviews emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 26, '2013-03-30 14:09:13', '2012-05-10 16:53:20', NULL, NULL),
(252, 'Set "Contact Us" Email Dropdown List', 'CONTACT_US_LIST', 'tenghoo&lt;tenghoo@163.com&gt;', 'On the "Contact Us" Page, set the list of email addresses , in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 40, '2013-03-30 14:09:28', '2012-05-10 16:53:20', NULL, 'zen_cfg_textarea('),
(253, 'Contact Us - Show Store Name and Address', 'CONTACT_US_STORE_NAME_ADDRESS', '1', 'Include Store Name and Address<br />0= off 1= on', 12, 50, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(254, 'Send Low Stock Emails', 'SEND_LOWSTOCK_EMAIL', '1', 'When stock level is at or below low stock level send an email<br />0= off<br />1= on', 12, 60, '2012-07-23 11:43:13', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(255, 'Send Low Stock Emails To', 'SEND_EXTRA_LOW_STOCK_EMAILS_TO', 'tenghoo@163.com', 'When stock level is at or below low stock level send an email to this address, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 61, '2013-03-30 14:09:35', '2012-05-10 16:53:20', NULL, NULL),
(256, 'Display "Newsletter Unsubscribe" Link?', 'SHOW_NEWSLETTER_UNSUBSCRIBE_LINK', 'true', 'Show "Newsletter Unsubscribe" link in the "Information" side-box?', 12, 70, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(257, 'Audience-Select Count Display', 'AUDIENCE_SELECT_DISPLAY_COUNTS', 'true', 'When displaying lists of available audiences/recipients, should the recipients-count be included? <br /><em>(This may make things slower if you have a lot of customers or complex audience queries)</em>', 12, 90, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(258, 'Enable Downloads', 'DOWNLOAD_ENABLED', 'true', 'Enable the products download functions.', 13, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(259, 'Download by Redirect', 'DOWNLOAD_BY_REDIRECT', 'true', 'Use browser redirection for download. Disable on non-Unix systems.<br /><br />Note: Set /pub to 777 when redirect is true', 13, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(260, 'Download by streaming', 'DOWNLOAD_IN_CHUNKS', 'false', 'If download-by-redirect is disabled, and your PHP memory_limit setting is under 8 MB, you might need to enable this setting so that files are streamed in smaller segments to the browser.<br /><br />Has no effect if Download By Redirect is enabled.', 13, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(261, 'Download Expiration (Number of Days)', 'DOWNLOAD_MAX_DAYS', '7', 'Set number of days before the download link expires. 0 means no limit.', 13, 3, NULL, '2012-05-10 16:53:20', NULL, ''),
(262, 'Number of Downloads Allowed - Per Product', 'DOWNLOAD_MAX_COUNT', '5', 'Set the maximum number of downloads. 0 means no download authorized.', 13, 4, NULL, '2012-05-10 16:53:20', NULL, ''),
(263, 'Downloads Controller Update Status Value', 'DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE', '4', 'What orders_status resets the Download days and Max Downloads - Default is 4', 13, 10, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(264, 'Downloads Controller Order Status Value >= lower value', 'DOWNLOADS_CONTROLLER_ORDERS_STATUS', '2', 'Downloads Controller Order Status Value - Default >= 2<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status greater than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the lower range for this range.', 13, 12, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(265, 'Downloads Controller Order Status Value <= upper value', 'DOWNLOADS_CONTROLLER_ORDERS_STATUS_END', '4', 'Downloads Controller Order Status Value - Default <= 4<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status less than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the upper range for this range.', 13, 13, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(266, 'Enable Price Factor', 'ATTRIBUTES_ENABLED_PRICE_FACTOR', 'true', 'Enable the Attributes Price Factor.', 13, 25, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(267, 'Enable Qty Price Discount', 'ATTRIBUTES_ENABLED_QTY_PRICES', 'true', 'Enable the Attributes Quantity Price Discounts.', 13, 26, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(268, 'Enable Attribute Images', 'ATTRIBUTES_ENABLED_IMAGES', 'true', 'Enable the Attributes Images.', 13, 28, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(269, 'Enable Text Pricing by word or letter', 'ATTRIBUTES_ENABLED_TEXT_PRICES', 'true', 'Enable the Attributes Text Pricing by word or letter.', 13, 35, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(270, 'Text Pricing - Spaces are Free', 'TEXT_SPACES_FREE', '1', 'On Text pricing Spaces are Free<br /><br />0= off 1= on', 13, 36, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(271, 'Read Only option type - Ignore for Add to Cart', 'PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED', '1', 'When a Product only uses READONLY attributes, should the Add to Cart button be On or Off?<br />0= OFF<br />1= ON', 13, 37, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(272, 'Enable GZip Compression', 'GZIP_LEVEL', '0', '0= off 1= on', 14, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(273, 'Session Directory', 'SESSION_WRITE_DIRECTORY', 'D:/AppServ/www/zencart150base/cache', 'If sessions are file based, store them in this directory.', 15, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(274, 'Cookie Domain', 'SESSION_USE_FQDN', 'True', 'If True the full domain name will be used to store the cookie, e.g. www.mydomain.com. If False only a partial domain name will be used, e.g. mydomain.com. If you are unsure about this, always leave set to true.', 15, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(275, 'Force Cookie Use', 'SESSION_FORCE_COOKIE_USE', 'False', 'Force the use of sessions when cookies are only enabled.', 15, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(276, 'Check SSL Session ID', 'SESSION_CHECK_SSL_SESSION_ID', 'False', 'Validate the SSL_SESSION_ID on every secure HTTPS page request.', 15, 3, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(277, 'Check User Agent', 'SESSION_CHECK_USER_AGENT', 'False', 'Validate the clients browser user agent on every page request.', 15, 4, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(278, 'Check IP Address', 'SESSION_CHECK_IP_ADDRESS', 'False', 'Validate the clients IP address on every page request.', 15, 5, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(279, 'Prevent Spider Sessions', 'SESSION_BLOCK_SPIDERS', 'True', 'Prevent known spiders from starting a session.', 15, 6, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(280, 'Recreate Session', 'SESSION_RECREATE', 'False', 'Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).', 15, 7, '2012-08-01 15:39:30', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(281, 'IP to Host Conversion Status', 'SESSION_IP_TO_HOST_ADDRESS', 'true', 'Convert IP Address to Host Address<br /><br />Note: on some servers this can slow down the initial start of a session or execution of Emails', 15, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(282, 'Length of the redeem code', 'SECURITY_CODE_LENGTH', '10', 'Enter the length of the redeem code<br />The longer the more secure', 16, 1, NULL, '2012-05-10 16:53:20', NULL, NULL),
(283, 'Default Order Status For Zero Balance Orders', 'DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID', '2', 'When an order''s balance is zero, this order status will be assigned to it.', 16, 0, NULL, '2012-05-10 16:53:20', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(284, 'New Signup Discount Coupon ID#', 'NEW_SIGNUP_DISCOUNT_COUPON', '', 'Select the coupon<br />', 16, 75, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_coupon_id('),
(285, 'New Signup Gift Voucher Amount', 'NEW_SIGNUP_GIFT_VOUCHER_AMOUNT', '', 'Leave blank for none<br />Or enter an amount ie. 10 for $10.00', 16, 76, NULL, '2012-05-10 16:53:20', NULL, NULL),
(286, 'Maximum Discount Coupons Per Page', 'MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS', '20', 'Number of Discount Coupons to list per Page', 16, 81, NULL, '2012-05-10 16:53:20', NULL, NULL),
(287, 'Maximum Discount Coupon Report Results Per Page', 'MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS', '20', 'Number of Discount Coupons to list on Reports Page', 16, 81, NULL, '2012-05-10 16:53:20', NULL, NULL),
(288, 'Credit Card Enable Status - VISA', 'CC_ENABLED_VISA', '1', 'Accept VISA 0= off 1= on', 17, 1, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(289, 'Credit Card Enable Status - MasterCard', 'CC_ENABLED_MC', '1', 'Accept MasterCard 0= off 1= on', 17, 2, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(290, 'Credit Card Enable Status - AmericanExpress', 'CC_ENABLED_AMEX', '0', 'Accept AmericanExpress 0= off 1= on', 17, 3, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(291, 'Credit Card Enable Status - Diners Club', 'CC_ENABLED_DINERS_CLUB', '0', 'Accept Diners Club 0= off 1= on', 17, 4, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(292, 'Credit Card Enable Status - Discover Card', 'CC_ENABLED_DISCOVER', '0', 'Accept Discover Card 0= off 1= on', 17, 5, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(293, 'Credit Card Enable Status - JCB', 'CC_ENABLED_JCB', '0', 'Accept JCB 0= off 1= on', 17, 6, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(294, 'Credit Card Enable Status - AUSTRALIAN BANKCARD', 'CC_ENABLED_AUSTRALIAN_BANKCARD', '0', 'Accept AUSTRALIAN BANKCARD 0= off 1= on', 17, 7, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(295, 'Credit Card Enable Status - SOLO', 'CC_ENABLED_SOLO', '0', 'Accept SOLO Card 0= off 1= on', 17, 8, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(296, 'Credit Card Enable Status - Switch', 'CC_ENABLED_SWITCH', '0', 'Accept SWITCH Card 0= off 1= on', 17, 9, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(297, 'Credit Card Enable Status - Maestro', 'CC_ENABLED_MAESTRO', '0', 'Accept MAESTRO Card 0= off 1= on', 17, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(298, 'Credit Card Enabled - Show on Payment', 'SHOW_ACCEPTED_CREDIT_CARDS', '0', 'Show accepted credit cards on Payment page?<br />0= off<br />1= As Text<br />2= As Images<br /><br />Note: images and text must be defined in both the database and language file for specific credit card types.', 17, 50, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(299, 'This module is installed', 'MODULE_ORDER_TOTAL_GV_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true''),'),
(300, 'Sort Order', 'MODULE_ORDER_TOTAL_GV_SORT_ORDER', '840', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:40', NULL, NULL),
(301, 'Queue Purchases', 'MODULE_ORDER_TOTAL_GV_QUEUE', 'true', 'Do you want to queue purchases of the Gift Voucher?', 6, 3, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(302, 'Include Shipping', 'MODULE_ORDER_TOTAL_GV_INC_SHIPPING', 'true', 'Include Shipping in calculation', 6, 5, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(303, 'Include Tax', 'MODULE_ORDER_TOTAL_GV_INC_TAX', 'true', 'Include Tax in calculation.', 6, 6, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(304, 'Re-calculate Tax', 'MODULE_ORDER_TOTAL_GV_CALC_TAX', 'None', 'Re-Calculate Tax', 6, 7, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''None'', ''Standard'', ''Credit Note''),'),
(305, 'Tax Class', 'MODULE_ORDER_TOTAL_GV_TAX_CLASS', '0', 'Use the following tax class when treating Gift Voucher as Credit Note.', 6, 0, NULL, '2003-10-30 22:16:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(306, 'Credit including Tax', 'MODULE_ORDER_TOTAL_GV_CREDIT_TAX', 'false', 'Add tax to purchased Gift Voucher when crediting to Account', 6, 8, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(307, 'Set Order Status', 'MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID', '0', 'Set the status of orders made where GV covers full payment', 6, 0, NULL, '2012-05-10 16:53:20', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(308, 'This module is installed', 'MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:43', NULL, 'zen_cfg_select_option(array(''true''),'),
(309, 'Sort Order', 'MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER', '400', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:43', NULL, NULL),
(310, 'Allow Low Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE', 'false', 'Do you want to allow low order fees?', 6, 3, NULL, '2003-10-30 22:16:43', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(311, 'Order Fee For Orders Under', 'MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER', '50', 'Add the low order fee to orders under this amount.', 6, 4, NULL, '2003-10-30 22:16:43', 'currencies->format', NULL),
(312, 'Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_FEE', '5', 'For Percentage Calculation - include a % Example: 10%<br />For a flat amount just enter the amount - Example: 5 for $5.00', 6, 5, NULL, '2003-10-30 22:16:43', '', NULL),
(313, 'Attach Low Order Fee On Orders Made', 'MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION', 'both', 'Attach low order fee for orders sent to the set destination.', 6, 6, NULL, '2003-10-30 22:16:43', NULL, 'zen_cfg_select_option(array(''national'', ''international'', ''both''),'),
(314, 'Tax Class', 'MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS', '0', 'Use the following tax class on the low order fee.', 6, 7, NULL, '2003-10-30 22:16:43', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(315, 'No Low Order Fee on Virtual Products', 'MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL', 'false', 'Do not charge Low Order Fee when cart is Virtual Products Only', 6, 8, NULL, '2004-04-20 22:16:43', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(316, 'No Low Order Fee on Gift Vouchers', 'MODULE_ORDER_TOTAL_LOWORDERFEE_GV', 'false', 'Do not charge Low Order Fee when cart is Gift Vouchers Only', 6, 9, NULL, '2004-04-20 22:16:43', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(317, 'This module is installed', 'MODULE_ORDER_TOTAL_SHIPPING_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:46', NULL, 'zen_cfg_select_option(array(''true''),'),
(318, 'Sort Order', 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER', '7000', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:46', NULL, NULL),
(319, 'Allow Free Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING', 'false', 'Do you want to allow free shipping?', 6, 3, NULL, '2003-10-30 22:16:46', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(320, 'Free Shipping For Orders Over', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER', '50', 'Provide free shipping for orders over the set amount.', 6, 4, NULL, '2003-10-30 22:16:46', 'currencies->format', NULL),
(321, 'Provide Free Shipping For Orders Made', 'MODULE_ORDER_TOTAL_SHIPPING_DESTINATION', 'national', 'Provide free shipping for orders sent to the set destination.', 6, 5, NULL, '2003-10-30 22:16:46', NULL, 'zen_cfg_select_option(array(''national'', ''international'', ''both''),'),
(322, 'This module is installed', 'MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:49', NULL, 'zen_cfg_select_option(array(''true''),'),
(323, 'Sort Order', 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER', '8000', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:49', NULL, NULL),
(324, 'This module is installed', 'MODULE_ORDER_TOTAL_TAX_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:52', NULL, 'zen_cfg_select_option(array(''true''),'),
(325, 'Sort Order', 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER', '8888', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:52', NULL, NULL),
(326, 'This module is installed', 'MODULE_ORDER_TOTAL_TOTAL_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:55', NULL, 'zen_cfg_select_option(array(''true''),'),
(327, 'Sort Order', 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER', '9999', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:55', NULL, NULL),
(328, 'Max Show Number', 'MAX_SHOW_NUMBER', '4', 'set the max banner number', 37, 49, '2012-06-04 11:38:04', '2012-06-04 11:38:04', NULL, NULL),
(329, 'Set Order Status', 'MODULE_PAYMENT_99BILL_PROCESSING_STATUS_ID', '2', 'Set the status of orders made with this payment module that have completed payment to this value<br />(Processing recommended)', 6, 8, NULL, '2012-06-05 17:48:15', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(330, '是否开启Paypal IPN未付款先生成订单功能', 'ORDER_FIRST', 'true', '', 1, 121, '2012-06-05 16:44:43', '2012-06-05 16:32:02', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(331, 'Enable 99BILL Module', 'MODULE_PAYMENT_99BILL_STATUS', 'True', 'Do you want to accept 99BILL payments?', 6, 0, NULL, '2012-06-05 17:48:15', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(332, '99BILL ID', 'MODULE_PAYMENT_99BILL_SELLER', '1000300079901', '99BILL ID', 6, 2, NULL, '2012-06-05 17:48:15', NULL, NULL),
(333, '99BILL MD5 key', 'MODULE_PAYMENT_99BILL_MD5KEY', '1234567897654321', '99BILL MD5 key', 6, 4, NULL, '2012-06-05 17:48:15', NULL, NULL),
(334, 'Admin Demo Status', 'ADMIN_DEMO', '0', 'Admin Demo should be on?<br />0= off 1= on', 6, 0, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(335, 'Skype Style', 'LIVE_HELP_SKYPE_STYLE', 'chat', 'Choose your Skype Style', 27, 3, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''chat'', ''call''),'),
(336, 'Text product option type', 'PRODUCTS_OPTIONS_TYPE_TEXT', '1', 'Numeric value of the text product option type', 6, NULL, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(337, 'Radio button product option type', 'PRODUCTS_OPTIONS_TYPE_RADIO', '2', 'Numeric value of the radio button product option type', 6, NULL, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(338, 'Check box product option type', 'PRODUCTS_OPTIONS_TYPE_CHECKBOX', '3', 'Numeric value of the check box product option type', 6, NULL, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(339, 'File product option type', 'PRODUCTS_OPTIONS_TYPE_FILE', '4', 'Numeric value of the file product option type', 6, NULL, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(340, 'ID for text and file products options values', 'PRODUCTS_OPTIONS_VALUES_TEXT_ID', '0', 'Numeric value of the products_options_values_id used by the text and file attributes.', 6, NULL, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(341, 'Skype Username', 'LIVE_HELP_SKYPE_USERNAME', 'testzz98', 'Enter your Skype username', 27, 2, '2012-06-07 15:00:24', '2012-05-11 17:23:19', NULL, NULL),
(342, 'Enable Skype?', 'LIVE_HELP_SKYPE', 'Disable', 'Do you want to enable Skype in Live Help?', 27, 1, '2013-06-01 22:11:28', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''Enable'', ''Disable''),'),
(343, 'Read Only option type', 'PRODUCTS_OPTIONS_TYPE_READONLY', '5', 'Numeric value of the file product option type', 6, NULL, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, NULL),
(344, 'login mode https', 'SSLPWSTATUSCHECK', '0:0:0', 'System setting. Do not edit.', 6, 99, '2013-06-07 21:26:52', '2012-05-10 16:53:20', NULL, NULL),
(345, 'Products Info - Products Option Name Sort Order', 'PRODUCTS_OPTIONS_SORT_ORDER', '0', 'Sort order of Option Names for Products Info<br />0= Sort Order, Option Name<br />1= Option Name', 18, 35, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(346, 'Products Info - Product Option Value of Attributes Sort Order', 'PRODUCTS_OPTIONS_SORT_BY_PRICE', '1', 'Sort order of Product Option Values of Attributes for Products Info<br />0= Sort Order, Price<br />1= Sort Order, Option Value Name', 18, 36, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(347, 'Product Info - Show Option Values Name Below Attributes Image', 'PRODUCT_IMAGES_ATTRIBUTES_NAMES', '1', 'Product Info - Show the name of the Option Value beneath the Attribute Image?<br />0= off 1= on', 18, 41, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(348, 'Product Info - Show Sales Discount Savings Status', 'SHOW_SALE_DISCOUNT_STATUS', '1', 'Product Info - Show the amount of discount savings?<br />0= off 1= on', 18, 45, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(349, 'Product Info - Show Sales Discount Savings Dollars or Percentage', 'SHOW_SALE_DISCOUNT', '1', 'Product Info - Show the amount of discount savings display as:<br />1= % off 2= $amount off', 18, 46, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''1'', ''2''), '),
(350, 'Product Info - Show Sales Discount Savings Percentage Decimals', 'SHOW_SALE_DISCOUNT_DECIMALS', '0', 'Product Info - Show discount savings display as a Percentage with how many decimals?:<br />Default= 0', 18, 47, NULL, '2012-05-10 16:53:20', NULL, NULL),
(351, 'Product Info - Price is Free Image or Text Status', 'OTHER_IMAGE_PRICE_IS_FREE_ON', '1', 'Product Info - Show the Price is Free Image or Text on Displayed Price<br />0= Text<br />1= Image', 18, 50, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(352, 'Product Info - Price is Call for Price Image or Text Status', 'PRODUCTS_PRICE_IS_CALL_IMAGE_ON', '1', 'Product Info - Show the Price is Call for Price Image or Text on Displayed Price<br />0= Text<br />1= Image', 18, 51, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(353, 'Product Quantity Box Status - Adding New Products', 'PRODUCTS_QTY_BOX_STATUS', '1', 'What should the Default Quantity Box Status be set to when adding New Products?<br /><br />0= off<br />1= on<br />NOTE: This will show a Qty Box when ON and default the Add to Cart to 1', 18, 55, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(354, 'Product Reviews Require Approval', 'REVIEWS_APPROVAL', '1', 'Do product reviews require approval?<br /><br />Note: When Review Status is off, it will also not show<br /><br />0= off 1= on', 18, 62, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(355, 'Meta Tags - Include Product Model in Title', 'META_TAG_INCLUDE_MODEL', '1', 'Do you want to include the Product Model in the Meta Tag Title?<br /><br />0= off 1= on', 18, 69, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(356, 'Meta Tags - Include Product Price in Title', 'META_TAG_INCLUDE_PRICE', '1', 'Do you want to include the Product Price in the Meta Tag Title?<br /><br />0= off 1= on', 18, 70, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(357, 'Meta Tags Generated Description Maximum Length?', 'MAX_META_TAG_DESCRIPTION_LENGTH', '50', 'Set Generated Meta Tag Description Maximum Length to (words) Default 50:', 18, 71, NULL, '2012-05-10 16:53:20', '', ''),
(358, 'Also Purchased Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS', '5', 'Also Purchased Products Columns per Row<br />0= off or set the sort order', 18, 72, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(359, 'Previous Next - Navigation Bar Position', 'PRODUCT_INFO_PREVIOUS_NEXT', '0', 'Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page', 18, 21, '2012-06-18 07:38:10', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''Top of Page''), array(''id''=>''2'', ''text''=>''Bottom of Page''), array(''id''=>''3'', ''text''=>''Both Top & Bottom of Page'')),'),
(360, 'Previous Next - Sort Order', 'PRODUCT_INFO_PREVIOUS_NEXT_SORT', '1', 'Products Display Order by<br />0= Product ID<br />1= Product Name<br />2= Model<br />3= Price, Product Name<br />4= Price, Model<br />5= Product Name, Model<br />6= Product Sort Order', 18, 22, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Product ID''), array(''id''=>''1'', ''text''=>''Name''), array(''id''=>''2'', ''text''=>''Product Model''), array(''id''=>''3'', ''text''=>''Product Price - Name''), array(''id''=>''4'', ''text''=>''Product Price - Model''), array(''id''=>''5'', ''text''=>''Product Name - Model''), array(''id''=>''6'', ''text''=>''Product Sort Order'')),'),
(361, 'Previous Next - Button and Image Status', 'SHOW_PREVIOUS_NEXT_STATUS', '0', 'Button and Product Image status settings are:<br />0= Off<br />1= On', 18, 20, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''On'')),'),
(362, 'Previous Next - Button and Image Settings', 'SHOW_PREVIOUS_NEXT_IMAGES', '0', 'Show Previous/Next Button and Product Image Settings<br />0= Button Only<br />1= Button and Product Image<br />2= Product Image Only', 18, 21, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Button Only''), array(''id''=>''1'', ''text''=>''Button and Product Image''), array(''id''=>''2'', ''text''=>''Product Image Only'')),'),
(363, 'Previous Next - Image Width?', 'PREVIOUS_NEXT_IMAGE_WIDTH', '50', 'Previous/Next Image Width?', 18, 22, NULL, '2012-05-10 16:53:20', '', ''),
(364, 'Previous Next - Image Height?', 'PREVIOUS_NEXT_IMAGE_HEIGHT', '40', 'Previous/Next Image Height?', 18, 23, NULL, '2012-05-10 16:53:20', '', ''),
(365, 'Previous Next - Navigation Includes Category Position', 'PRODUCT_INFO_CATEGORIES', '0', 'Product''s Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right', 18, 20, '2012-06-18 07:39:00', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''Align Left''), array(''id''=>''2'', ''text''=>''Align Center''), array(''id''=>''3'', ''text''=>''Align Right'')),'),
(366, 'Previous Next - Navigation Includes Category Name and Image Status', 'PRODUCT_INFO_CATEGORIES_IMAGE_STATUS', '2', 'Product''s Category Image and Name Status<br />0= Category Name and Image always shows<br />1= Category Name only<br />2= Category Name and Image when not blank', 18, 20, '2012-05-10 16:53:20', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Category Name and Image Always''), array(''id''=>''1'', ''text''=>''Category Name only''), array(''id''=>''2'', ''text''=>''Category Name and Image when not blank'')),'),
(367, 'Column Width - Left Boxes', 'BOX_WIDTH_LEFT', '240px', 'Width of the Left Column Boxes<br />px may be included<br />Default = 150px', 19, 1, '2012-06-11 16:15:42', '2003-11-21 22:16:36', NULL, NULL),
(368, 'Column Width - Right Boxes', 'BOX_WIDTH_RIGHT', '240px', 'Width of the Right Column Boxes<br />px may be included<br />Default = 150px', 19, 2, '2012-07-20 10:45:17', '2003-11-21 22:16:36', NULL, NULL),
(369, 'Bread Crumbs Navigation Separator', 'BREAD_CRUMBS_SEPARATOR', '<em> ? </em>', 'Enter the separator symbol to appear between the Navigation Bread Crumb trail<br />Note: Include spaces with the &amp;nbsp; symbol if you want them part of the separator.<br />Default = &amp;nbsp;::&amp;nbsp;', 19, 3, '2012-06-18 07:28:55', '2003-11-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(370, 'Define Breadcrumb Status', 'DEFINE_BREADCRUMB_STATUS', '2', 'Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only', 19, 4, '2012-06-18 07:25:44', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(371, 'Bestsellers - Number Padding', 'BEST_SELLERS_FILLER', '&nbsp;', 'What do you want to Pad the numbers with?<br />Default = &amp;nbsp;', 19, 5, NULL, '2003-11-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(372, 'Bestsellers - Truncate Product Names', 'BEST_SELLERS_TRUNCATE', '35', 'What size do you want to truncate the Product Names?<br />Default = 35', 19, 6, NULL, '2003-11-21 22:16:36', NULL, NULL),
(373, 'Bestsellers - Truncate Product Names followed by ...', 'BEST_SELLERS_TRUNCATE_MORE', 'true', 'When truncated Product Names follow with ...<br />Default = true', 19, 7, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(374, 'Categories Box - Show Specials Link', 'SHOW_CATEGORIES_BOX_SPECIALS', 'true', 'Show Specials Link in the Categories Box', 19, 8, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(375, 'Categories Box - Show Products New Link', 'SHOW_CATEGORIES_BOX_PRODUCTS_NEW', 'true', 'Show Products New Link in the Categories Box', 19, 9, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(376, 'Shopping Cart Box Status', 'SHOW_SHOPPING_CART_BOX_STATUS', '1', 'Shopping Cart Shows<br />0= Always<br />1= Only when full<br />2= Only when full but not when viewing the Shopping Cart', 19, 10, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(377, 'Categories Box - Show Featured Products Link', 'SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS', 'true', 'Show Featured Products Link in the Categories Box', 19, 11, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(378, 'Categories Box - Show Products All Link', 'SHOW_CATEGORIES_BOX_PRODUCTS_ALL', 'true', 'Show Products All Link in the Categories Box', 19, 12, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(379, 'Column Left Status - Global', 'COLUMN_LEFT_STATUS', '1', 'Show Column Left, unless page override exists?<br />0= Column Left is always off<br />1= Column Left is on, unless page override', 19, 15, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(380, 'Column Right Status - Global', 'COLUMN_RIGHT_STATUS', '0', 'Show Column Right, unless page override exists?<br />0= Column Right is always off<br />1= Column Right is on, unless page override', 19, 16, '2012-06-15 17:55:19', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(381, 'Column Width - Left', 'COLUMN_WIDTH_LEFT', '240px', 'Width of the Left Column<br />px may be included<br />Default = 150px', 19, 20, '2012-06-15 17:52:49', '2003-11-21 22:16:36', NULL, NULL),
(382, 'Column Width - Right', 'COLUMN_WIDTH_RIGHT', '240px', 'Width of the Right Column<br />px may be included<br />Default = 150px', 19, 21, '2012-07-20 10:44:49', '2003-11-21 22:16:36', NULL, NULL),
(383, 'Categories Separator between links Status', 'SHOW_CATEGORIES_SEPARATOR_LINK', '1', 'Show Category Separator between Category Names and Links?<br />0= off<br />1= on', 19, 24, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(384, 'Categories Separator between the Category Name and Count', 'CATEGORIES_SEPARATOR', '-&gt;', 'What separator do you want between the Category name and the count?<br />Default = -&amp;gt;', 19, 25, NULL, '2003-11-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(385, 'Categories Separator between the Category Name and Sub Categories', 'CATEGORIES_SEPARATOR_SUBS', '|_&nbsp;', 'What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;', 19, 26, NULL, '2004-03-25 22:16:36', NULL, 'zen_cfg_textarea_small('),
(386, 'Categories Count Prefix', 'CATEGORIES_COUNT_PREFIX', '&nbsp;(', 'What do you want to Prefix the count with?<br />Default= (', 19, 27, NULL, '2003-01-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(387, 'Categories Count Suffix', 'CATEGORIES_COUNT_SUFFIX', ')', 'What do you want as a Suffix to the count?<br />Default= )', 19, 28, NULL, '2003-01-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(388, 'Categories SubCategories Indent', 'CATEGORIES_SUBCATEGORIES_INDENT', '&nbsp;&nbsp;', 'What do you want to use as the subcategories indent?<br />Default= &nbsp;&nbsp;', 19, 29, NULL, '2004-06-24 22:16:36', NULL, 'zen_cfg_textarea_small('),
(389, 'Categories with 0 Products Status', 'CATEGORIES_COUNT_ZERO', '0', 'Show Category Count for 0 Products?<br />0= off<br />1= on', 19, 30, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(390, 'Split Categories Box', 'CATEGORIES_SPLIT_DISPLAY', 'True', 'Split the categories box display by product type', 19, 31, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(391, 'Shopping Cart - Show Totals', 'SHOW_TOTALS_IN_CART', '1', 'Show Totals Above Shopping Cart?<br />0= off<br />1= on: Items Weight Amount<br />2= on: Items Weight Amount, but no weight when 0<br />3= on: Items Amount', 19, 31, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(392, 'Customer Greeting - Show on Index Page', 'SHOW_CUSTOMER_GREETING', '0', 'Always Show Customer Greeting on Index?<br />0= off<br />1= on', 19, 40, '2012-05-10 17:20:04', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(393, 'Categories - Always Show on Main Page', 'SHOW_CATEGORIES_ALWAYS', '0', 'Always Show Categories on Main Page<br />0= off<br />1= on<br />Default category can be set to Top Level or a Specific Top Level', 19, 45, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(394, 'Main Page - Opens with Category', 'CATEGORIES_START_MAIN', '0', '0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10', 19, 46, NULL, '2012-05-10 16:53:20', '', ''),
(395, 'Categories - Always Open to Show SubCategories', 'SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS', '1', 'Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected', 19, 47, '2012-06-20 16:54:03', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(396, 'Banner Display Groups - Header Position 1', 'SHOW_BANNERS_GROUP_SET1', 'top-banner', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 1?<br />Leave blank for none', 19, 55, '2012-12-06 14:35:06', '2012-05-10 16:53:20', '', ''),
(397, 'Banner Display Groups - Header Position 2', 'SHOW_BANNERS_GROUP_SET2', 'floor1-banner', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 2?<br />Leave blank for none', 19, 56, '2012-11-15 11:53:36', '2012-05-10 16:53:20', '', ''),
(398, 'Banner Display Groups - Header Position 3', 'SHOW_BANNERS_GROUP_SET3', 'whathot', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 3?<br />Leave blank for none', 19, 57, '2012-11-16 11:51:09', '2012-05-10 16:53:20', '', '');
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(399, 'Banner Display Groups - Footer Position 1', 'SHOW_BANNERS_GROUP_SET4', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 1?<br />Leave blank for none', 19, 65, NULL, '2012-05-10 16:53:20', '', ''),
(400, 'Banner Display Groups - Footer Position 2', 'SHOW_BANNERS_GROUP_SET5', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 2?<br />Leave blank for none', 19, 66, NULL, '2012-05-10 16:53:20', '', ''),
(401, 'Banner Display Groups - Footer Position 3', 'SHOW_BANNERS_GROUP_SET6', 'Wide-Banners', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />Default Group is Wide-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 3?<br />Leave blank for none', 19, 67, NULL, '2012-05-10 16:53:20', '', ''),
(402, 'Banner Display Groups - Side Box banner_box', 'SHOW_BANNERS_GROUP_SET7', 'SideBox-Banners', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box?<br />Leave blank for none', 19, 70, NULL, '2012-05-10 16:53:20', '', ''),
(403, 'Banner Display Groups - Side Box banner_box2', 'SHOW_BANNERS_GROUP_SET8', 'SideBox-Banners2', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box2?<br />Leave blank for none', 19, 71, '2012-11-16 16:31:19', '2012-05-10 16:53:20', '', ''),
(404, 'Banner Display Group - Side Box banner_box_all', 'SHOW_BANNERS_GROUP_SET_ALL', 'BannersAll', 'The Banner Display Group may only be from one (1) Banner Group for the Banner All sidebox<br /><br />Default Group is BannersAll<br /><br />What Banner Group do you want to use in the Side Box - banner_box_all?<br />Leave blank for none', 19, 72, NULL, '2012-05-10 16:53:20', '', ''),
(405, 'Footer - Show IP Address status', 'SHOW_FOOTER_IP', '0', 'Show Customer IP Address in the Footer<br />0= off<br />1= on<br />Should the Customer IP Address show in the footer?', 19, 80, '2012-06-19 17:45:12', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(406, 'Product Discount Quantities - Add how many blank discounts?', 'DISCOUNT_QTY_ADD', '5', 'How many blank discount quantities should be added for Product Pricing?', 19, 90, NULL, '2012-05-10 16:53:20', '', ''),
(407, 'Product Discount Quantities - Display how many per row?', 'DISCOUNT_QUANTITY_PRICES_COLUMN', '5', 'How many discount quantities should show per row on Product Info Pages?', 19, 95, NULL, '2012-05-10 16:53:20', '', ''),
(408, 'Categories/Products Display Sort Order', 'CATEGORIES_PRODUCTS_SORT_ORDER', '0', 'Categories/Products Display Sort Order<br />0= Categories/Products Sort Order/Name<br />1= Categories/Products Name<br />2= Products Model<br />3= Products Qty+, Products Name<br />4= Products Qty-, Products Name<br />5= Products Price+, Products Name<br />6= Products Price-, Products Name', 19, 100, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4'', ''5'', ''6''), '),
(409, 'Option Names and Values Global Add, Copy and Delete Features Status', 'OPTION_NAMES_VALUES_GLOBAL_STATUS', '1', 'Option Names and Values Global Add, Copy and Delete Features Status<br />0= Hide Features<br />1= Show Features<br />(Default=1)', 19, 110, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(410, 'Categories-Tabs Menu ON/OFF', 'CATEGORIES_TABS_STATUS', '1', 'Categories-Tabs<br />This enables the display of your store''s categories as a menu across the top of your header. There are many potential creative uses for this.<br />0= Hide Categories Tabs<br />1= Show Categories Tabs', 19, 112, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(411, 'Site Map - include My Account Links?', 'SHOW_ACCOUNT_LINKS_ON_SITE_MAP', 'No', 'Should the links to My Account show up on the site-map?<br />Note: Spiders will try to index this page, and likely should not be sent to secure pages, since there is no benefit in indexing a login page.<br /><br />Default: false', 19, 115, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''Yes'', ''No''), '),
(412, 'Skip 1-prod Categories', 'SKIP_SINGLE_PRODUCT_CATEGORIES', 'True', 'Skip single-product categories<br />If this option is set to True, then if the customer clicks on a link to a category which only contains a single item, then Zen Cart will take them directly to that product-page, rather than present them with another link to click in order to see the product.<br />Default: True', 19, 120, NULL, '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(413, 'Use split-login page', 'USE_SPLIT_LOGIN_MODE', 'True', 'The login page can be displayed in two modes: Split or Vertical.<br />In Split mode, the create-account options are accessed by clicking a button to get to the create-account page. In Vertical mode, the create-account input fields are all displayed inline, below the login field, making one less click for the customer to create their account.<br />Default: False', 19, 121, '2012-06-18 16:53:12', '2012-05-10 16:53:20', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(414, 'CSS Buttons', 'IMAGE_USE_CSS_BUTTONS', 'No', 'CSS Buttons<br />Use CSS buttons instead of images (GIF/JPG)?<br />Button styles must be configured in the stylesheet if you enable this option.', 19, 147, '2009-06-03 09:34:31', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''No'', ''Yes''), '),
(415, '<strong>Down for Maintenance: ON/OFF</strong>', 'DOWN_FOR_MAINTENANCE', 'false', 'Down for Maintenance <br />(true=on false=off)', 20, 1, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(416, 'Down for Maintenance: filename', 'DOWN_FOR_MAINTENANCE_FILENAME', 'down_for_maintenance', 'Down for Maintenance filename<br />Note: Do not include the extension<br />Default=down_for_maintenance', 20, 2, NULL, '2012-05-10 16:53:21', NULL, ''),
(417, 'Down for Maintenance: Hide Header', 'DOWN_FOR_MAINTENANCE_HEADER_OFF', 'false', 'Down for Maintenance: Hide Header <br />(true=hide false=show)', 20, 3, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(418, 'Down for Maintenance: Hide Column Left', 'DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF', 'false', 'Down for Maintenance: Hide Column Left <br />(true=hide false=show)', 20, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(419, 'Down for Maintenance: Hide Column Right', 'DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF', 'false', 'Down for Maintenance: Hide Column Right <br />(true=hide false=show)', 20, 5, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(420, 'Down for Maintenance: Hide Footer', 'DOWN_FOR_MAINTENANCE_FOOTER_OFF', 'false', 'Down for Maintenance: Hide Footer <br />(true=hide false=show)', 20, 6, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(421, 'Down for Maintenance: Hide Prices', 'DOWN_FOR_MAINTENANCE_PRICES_OFF', 'false', 'Down for Maintenance: Hide Prices <br />(true=hide false=show)', 20, 7, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(422, 'Down For Maintenance (exclude this IP-Address)', 'EXCLUDE_ADMIN_IP_FOR_MAINTENANCE', 'your IP (ADMIN)', 'This IP Address is able to access the website while it is Down For Maintenance (like webmaster)<br />To enter multiple IP Addresses, separate with a comma. If you do not know your IP Address, check in the Footer of your Shop.', 20, 8, '2003-03-21 13:43:22', '2003-03-21 21:20:07', NULL, NULL),
(423, 'NOTICE PUBLIC Before going Down for Maintenance: ON/OFF', 'WARN_BEFORE_DOWN_FOR_MAINTENANCE', 'false', 'Give a WARNING some time before you put your website Down for Maintenance<br />(true=on false=off)<br />If you set the ''Down For Maintenance: ON/OFF'' to true this will automaticly be updated to false', 20, 9, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(424, 'Date and hours for notice before maintenance', 'PERIOD_BEFORE_DOWN_FOR_MAINTENANCE', '15/05/2003 2-3 PM', 'Date and hours for notice before maintenance website, enter date and hours for maintenance website', 20, 10, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, NULL),
(425, 'Display when webmaster has enabled maintenance', 'DISPLAY_MAINTENANCE_TIME', 'false', 'Display when Webmaster has enabled maintenance <br />(true=on false=off)<br />', 20, 11, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(426, 'Display website maintenance period', 'DISPLAY_MAINTENANCE_PERIOD', 'false', 'Display Website maintenance period <br />(true=on false=off)<br />', 20, 12, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(427, 'Website maintenance period', 'TEXT_MAINTENANCE_PERIOD_TIME', '2h00', 'Enter Website Maintenance period (hh:mm)', 20, 13, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, NULL),
(428, 'Confirm Terms and Conditions During Checkout Procedure', 'DISPLAY_CONDITIONS_ON_CHECKOUT', 'false', 'Show the Terms and Conditions during the checkout procedure which the customer must agree to.', 11, 1, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(429, 'Confirm Privacy Notice During Account Creation Procedure', 'DISPLAY_PRIVACY_CONDITIONS', 'false', 'Show the Privacy Notice during the account creation procedure which the customer must agree to.', 11, 2, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(430, 'Display Product Image', 'PRODUCT_NEW_LIST_IMAGE', '1102', 'Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 1, NULL, '2012-05-10 16:53:21', NULL, NULL),
(431, 'Display Product Quantity', 'PRODUCT_NEW_LIST_QUANTITY', '1202', 'Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 2, NULL, '2012-05-10 16:53:21', NULL, NULL),
(432, 'Display Product Buy Now Button', 'PRODUCT_NEW_BUY_NOW', '1300', 'Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 3, NULL, '2012-05-10 16:53:21', NULL, NULL),
(433, 'Display Product Name', 'PRODUCT_NEW_LIST_NAME', '2101', 'Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 4, NULL, '2012-05-10 16:53:21', NULL, NULL),
(434, 'Display Product Model', 'PRODUCT_NEW_LIST_MODEL', '2201', 'Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 5, NULL, '2012-05-10 16:53:21', NULL, NULL),
(435, 'Display Product Manufacturer Name', 'PRODUCT_NEW_LIST_MANUFACTURER', '2302', 'Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 6, NULL, '2012-05-10 16:53:21', NULL, NULL),
(436, 'Display Product Price', 'PRODUCT_NEW_LIST_PRICE', '2402', 'Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 7, NULL, '2012-05-10 16:53:21', NULL, NULL),
(437, 'Display Product Weight', 'PRODUCT_NEW_LIST_WEIGHT', '2502', 'Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 8, NULL, '2012-05-10 16:53:21', NULL, NULL),
(438, 'Display Product Date Added', 'PRODUCT_NEW_LIST_DATE_ADDED', '2601', 'Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 9, NULL, '2012-05-10 16:53:21', NULL, NULL),
(439, 'Display Product Description', 'PRODUCT_NEW_LIST_DESCRIPTION', '150', 'How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 21, 10, NULL, '2012-05-10 16:53:21', NULL, NULL),
(440, 'Display Product Display - Default Sort Order', 'PRODUCT_NEW_LIST_SORT_DEFAULT', '6', 'What Sort Order Default should be used for New Products Display?<br />Default= 6 for Date New to Old<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order', 21, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8''), '),
(441, 'Default Products New Group ID', 'PRODUCT_NEW_LIST_GROUP_ID', '21', 'Warning: Only change this if your Products New Group ID has changed from the default of 21<br />What is the configuration_group_id for New Products Listings?', 21, 12, NULL, '2012-05-10 16:53:21', NULL, NULL),
(442, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART', '3', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 21, 25, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(443, 'Mask Upcoming Products from being include as New Products', 'SHOW_NEW_PRODUCTS_UPCOMING_MASKED', '0', 'Do you want to mask Upcoming Products from being included as New Products in Listing, Sideboxes and Centerbox?<br />0= off<br />1= on', 21, 30, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(444, 'Display Product Image', 'PRODUCT_FEATURED_LIST_IMAGE', '1102', 'Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 1, NULL, '2012-05-10 16:53:21', NULL, NULL),
(445, 'Display Product Quantity', 'PRODUCT_FEATURED_LIST_QUANTITY', '1202', 'Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 2, NULL, '2012-05-10 16:53:21', NULL, NULL),
(446, 'Display Product Buy Now Button', 'PRODUCT_FEATURED_BUY_NOW', '1300', 'Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 3, NULL, '2012-05-10 16:53:21', NULL, NULL),
(447, 'Display Product Name', 'PRODUCT_FEATURED_LIST_NAME', '2101', 'Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 4, NULL, '2012-05-10 16:53:21', NULL, NULL),
(448, 'Display Product Model', 'PRODUCT_FEATURED_LIST_MODEL', '2201', 'Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 5, NULL, '2012-05-10 16:53:21', NULL, NULL),
(449, 'Display Product Manufacturer Name', 'PRODUCT_FEATURED_LIST_MANUFACTURER', '2302', 'Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 6, NULL, '2012-05-10 16:53:21', NULL, NULL),
(450, 'Display Product Price', 'PRODUCT_FEATURED_LIST_PRICE', '2402', 'Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 7, NULL, '2012-05-10 16:53:21', NULL, NULL),
(451, 'Display Product Weight', 'PRODUCT_FEATURED_LIST_WEIGHT', '2502', 'Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 8, NULL, '2012-05-10 16:53:21', NULL, NULL),
(452, 'Display Product Date Added', 'PRODUCT_FEATURED_LIST_DATE_ADDED', '2601', 'Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 9, NULL, '2012-05-10 16:53:21', NULL, NULL),
(453, 'Display Product Description', 'PRODUCT_FEATURED_LIST_DESCRIPTION', '150', 'How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 22, 10, NULL, '2012-05-10 16:53:21', NULL, NULL),
(454, 'Display Product Display - Default Sort Order', 'PRODUCT_FEATURED_LIST_SORT_DEFAULT', '1', 'What Sort Order Default should be used for Featured Product Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order', 22, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8''), '),
(455, 'Default Featured Products Group ID', 'PRODUCT_FEATURED_LIST_GROUP_ID', '22', 'Warning: Only change this if your Featured Products Group ID has changed from the default of 22<br />What is the configuration_group_id for Featured Products Listings?', 22, 12, NULL, '2012-05-10 16:53:21', NULL, NULL),
(456, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART', '3', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 22, 25, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(457, 'Display Product Image', 'PRODUCT_ALL_LIST_IMAGE', '1102', 'Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 1, NULL, '2012-05-10 16:53:21', NULL, NULL),
(458, 'Display Product Quantity', 'PRODUCT_ALL_LIST_QUANTITY', '1202', 'Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 2, NULL, '2012-05-10 16:53:21', NULL, NULL),
(459, 'Display Product Buy Now Button', 'PRODUCT_ALL_BUY_NOW', '1300', 'Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 3, NULL, '2012-05-10 16:53:21', NULL, NULL),
(460, 'Display Product Name', 'PRODUCT_ALL_LIST_NAME', '2101', 'Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 4, NULL, '2012-05-10 16:53:21', NULL, NULL),
(461, 'Display Product Model', 'PRODUCT_ALL_LIST_MODEL', '2201', 'Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 5, NULL, '2012-05-10 16:53:21', NULL, NULL),
(462, 'Display Product Manufacturer Name', 'PRODUCT_ALL_LIST_MANUFACTURER', '2302', 'Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 6, NULL, '2012-05-10 16:53:21', NULL, NULL),
(463, 'Display Product Price', 'PRODUCT_ALL_LIST_PRICE', '2402', 'Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 7, NULL, '2012-05-10 16:53:21', NULL, NULL),
(464, 'Display Product Weight', 'PRODUCT_ALL_LIST_WEIGHT', '2502', 'Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 8, NULL, '2012-05-10 16:53:21', NULL, NULL),
(465, 'Display Product Date Added', 'PRODUCT_ALL_LIST_DATE_ADDED', '2601', 'Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 9, NULL, '2012-05-10 16:53:21', NULL, NULL),
(466, 'Display Product Description', 'PRODUCT_ALL_LIST_DESCRIPTION', '150', 'How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 23, 10, NULL, '2012-05-10 16:53:21', NULL, NULL),
(467, 'Display Product Display - Default Sort Order', 'PRODUCT_ALL_LIST_SORT_DEFAULT', '1', 'What Sort Order Default should be used for All Products Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order', 23, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8''), '),
(468, 'Default Products All Group ID', 'PRODUCT_ALL_LIST_GROUP_ID', '23', 'Warning: Only change this if your Products All Group ID has changed from the default of 23<br />What is the configuration_group_id for Products All Listings?', 23, 12, NULL, '2012-05-10 16:53:21', NULL, NULL),
(469, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART', '3', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 23, 25, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(470, 'Show New Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS', '1', 'Show New Products on Main Page<br />0= off or set the sort order', 24, 65, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(471, 'Show Featured Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS', '2', 'Show Featured Products on Main Page<br />0= off or set the sort order', 24, 66, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(472, 'Show Special Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS', '3', 'Show Special Products on Main Page<br />0= off or set the sort order', 24, 67, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(473, 'Show Upcoming Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_UPCOMING', '4', 'Show Upcoming Products on Main Page<br />0= off or set the sort order', 24, 68, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(474, 'Show New Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS', '1', 'Show New Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 70, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(475, 'Show Featured Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS', '2', 'Show Featured Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 71, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(476, 'Show Special Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS', '3', 'Show Special Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 72, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(477, 'Show Upcoming Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_UPCOMING', '4', 'Show Upcoming Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 73, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(478, 'Show New Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS', '1', 'Show New Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 75, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(479, 'Show Featured Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS', '2', 'Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 76, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(480, 'Show Special Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS', '3', 'Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 77, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(481, 'Show Upcoming Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_UPCOMING', '4', 'Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 78, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(482, 'Show New Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS', '1', 'Show New Products below Product Listing<br />0= off or set the sort order', 24, 85, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(483, 'Show Featured Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS', '2', 'Show Featured Products below Product Listing<br />0= off or set the sort order', 24, 86, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(484, 'Show Special Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS', '3', 'Show Special Products below Product Listing<br />0= off or set the sort order', 24, 87, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(485, 'Show Upcoming Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING', '4', 'Show Upcoming Products below Product Listing<br />0= off or set the sort order', 24, 88, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(486, 'New Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS', '3', 'New Products Columns per Row', 24, 95, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(487, 'Featured Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS', '3', 'Featured Products Columns per Row', 24, 96, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(488, 'Special Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS', '3', 'Special Products Columns per Row', 24, 97, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(489, 'Filter Product Listing for Current Top Level Category When Enabled', 'SHOW_PRODUCT_INFO_ALL_PRODUCTS', '1', 'Filter the products when Product Listing is enabled for current Main Category or show products from all categories?<br />0= Filter Off 1=Filter On ', 24, 100, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(490, 'Define Main Page Status', 'DEFINE_MAIN_PAGE_STATUS', '1', 'Enable the Defined Main Page Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 60, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(491, 'Define Contact Us Status', 'DEFINE_CONTACT_US_STATUS', '1', 'Enable the Defined Contact Us Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 61, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(492, 'Define Privacy Status', 'DEFINE_PRIVACY_STATUS', '1', 'Enable the Defined Privacy Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 62, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(493, 'Define Shipping & Returns', 'DEFINE_SHIPPINGINFO_STATUS', '1', 'Enable the Defined Shipping & Returns Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 63, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(494, 'Define Conditions of Use', 'DEFINE_CONDITIONS_STATUS', '1', 'Enable the Defined Conditions of Use Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 64, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(495, 'Define Checkout Success', 'DEFINE_CHECKOUT_SUCCESS_STATUS', '1', 'Enable the Defined Checkout Success Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 65, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(496, 'Define Discount Coupon', 'DEFINE_DISCOUNT_COUPON_STATUS', '1', 'Enable the Defined Discount Coupon Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 66, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(497, 'Define Site Map Status', 'DEFINE_SITE_MAP_STATUS', '1', 'Enable the Defined Site Map Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 67, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(498, 'Define Page-Not-Found Status', 'DEFINE_PAGE_NOT_FOUND_STATUS', '1', 'Enable the Defined Page-Not-Found Text from define-pages?<br />0= Define Text OFF<br />1= Define Text ON', 25, 67, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(499, 'Define Page 2', 'DEFINE_PAGE_2_STATUS', '1', 'Enable the Defined Page 2 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 82, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(500, 'Define Page 3', 'DEFINE_PAGE_3_STATUS', '1', 'Enable the Defined Page 3 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 83, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(501, 'Define Page 4', 'DEFINE_PAGE_4_STATUS', '1', 'Enable the Defined Page 4 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 84, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(502, 'EZ-Pages Display Status - HeaderBar', 'EZPAGES_STATUS_HEADER', '0', 'Display of EZ-Pages content can be Globally enabled/disabled for the Header Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public', 26, 10, '2012-07-04 13:41:12', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(503, 'EZ-Pages Display Status - FooterBar', 'EZPAGES_STATUS_FOOTER', '1', 'Display of EZ-Pages content can be Globally enabled/disabled for the Footer Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public', 26, 11, '2012-06-19 17:41:46', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(504, 'EZ-Pages Display Status - Sidebox', 'EZPAGES_STATUS_SIDEBOX', '1', 'Display of EZ-Pages content can be Globally enabled/disabled for the Sidebox<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public', 26, 12, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(505, 'EZ-Pages Header Link Separator', 'EZPAGES_SEPARATOR_HEADER', '&nbsp;::&nbsp;', 'EZ-Pages Header Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;', 26, 20, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_textarea_small('),
(506, 'EZ-Pages Footer Link Separator', 'EZPAGES_SEPARATOR_FOOTER', '&nbsp;|&nbsp;', 'EZ-Pages Footer Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;', 26, 21, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_textarea_small('),
(507, 'EZ-Pages Prev/Next Buttons', 'EZPAGES_SHOW_PREV_NEXT_BUTTONS', '2', 'Display Prev/Continue/Next buttons on EZ-Pages pages?<br />0=OFF (no buttons)<br />1="Continue"<br />2="Prev/Continue/Next"<br /><br />Default setting: 2.', 26, 30, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(508, 'EZ-Pages Table of Contents for Chapters Status', 'EZPAGES_SHOW_TABLE_CONTENTS', '1', 'Enable EZ-Pages Table of Contents for Chapters?<br />0= OFF<br />1= ON', 26, 35, '2012-05-10 16:53:21', '2012-05-10 16:53:21', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(509, 'EZ-Pages Pages to disable headers', 'EZPAGES_DISABLE_HEADER_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "header" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 1,5,2<br />or leave blank.', 26, 40, '2012-07-04 13:41:23', '2012-05-10 16:53:21', NULL, 'zen_cfg_textarea_small('),
(510, 'EZ-Pages Pages to disable footers', 'EZPAGES_DISABLE_FOOTER_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "footer" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,7<br />or leave blank.', 26, 41, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_textarea_small('),
(511, 'EZ-Pages Pages to disable left-column', 'EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "left" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 21<br />or leave blank.', 26, 42, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_textarea_small('),
(512, 'EZ-Pages Pages to disable right-column', 'EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "right" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,82,13<br />or leave blank.', 26, 43, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_textarea_small('),
(513, 'Convert currencies for Text emails', 'CURRENCIES_TRANSLATIONS', '', 'What currency conversions do you need for Text emails?<br />Example = &amp;pound;,&pound;:&amp;euro;,&euro;', 12, 120, NULL, '2003-11-21 00:00:00', NULL, 'zen_cfg_textarea_small('),
(514, 'Use root path for cookie path', 'SESSION_USE_ROOT_COOKIE_PATH', 'False', 'Normally Zen Cart will use the directory that a store resides in as the cookie path. This can cause problems with some servers. This setting allows you to set the cookie path to the root of the server, rather than the store directory. It should only be used if you have problems with sessions. <strong>Default Value = False</strong><br /><br /><strong>Changing this setting may mean you have problems logging into your admin, you should clear your browser cookies to overcome this.</strong>', 15, 999, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(515, 'Add period prefix to cookie domain', 'SESSION_ADD_PERIOD_PREFIX', 'True', 'Normally Zen Cart will add a period prefix to the cookie domain, e.g. .www.mydomain.com. This can sometimes cause problems with some server configurations. If you are having session problems you may want to try setting this to False. <strong>Default Value = True</strong>', 15, 999, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(516, '商店传真', 'STORE_FAX', '', '输入商店的传真号码。<br>可以使用定义<b>STORE_FAX</b>。', 1, 4, '2012-05-11 11:05:39', '2012-05-11 11:05:39', NULL, NULL),
(517, '商店电话', 'STORE_PHONE', '1-888-9382222', '输入商店的电话号码。<br>可以使用定义<b>STORE_PHONE</b>.', 1, 4, '2012-07-09 17:05:16', '2012-05-11 11:05:39', NULL, NULL),
(518, 'Allow Reward Points on Free Products', 'REWARD_POINTS_ALLOW_ON_FREE', '0', 'Set how points are rewarded for free products.<br />0= Free products give 0 Reward Points.<br />1= Allow Reward Points on free products.', 36, 8, NULL, '2012-05-25 17:02:58', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(519, 'Allow Redeem of Reward Points on Order Total or Subtotal', 'REWARD_POINTS_ALLOW_TOTAL', '0', 'Allow points to be redeemed against the full order (including shipping) or only against the subtotal.<br />0= Against the subtotal.<br />1= Against the full order. ', 36, 9, NULL, '2012-05-25 17:02:58', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(520, 'Adjust Reward Points for Sales/Specials', 'REWARD_POINTS_SPECIAL_ADJUST', '1', 'How to calculate Reward Points<br />0= Always use the base price.<br />1= Use price less Discounts and Specials.', 36, 7, '2012-05-28 09:59:19', '2012-05-25 17:02:58', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(521, 'LOGO图标描述', 'HEADER_ALT_TEXT', 'China Wholesale Electronics ,motorcycle fairings,fairing kits,onmall', '设置首页的LOGO图标描述信息 (譬如:可填上网站公司的名称!)', 1, 999, '2013-03-27 09:54:42', '0001-01-01 00:00:00', NULL, NULL),
(522, 'LOGO图标文件名', 'HEADER_LOGO_IMAGE', 'logo.jpg', '设置LOGO图标文件名 (譬如:logo.gif)。当前目录在模板目录的images目录下', 4, 999, '2011-05-05 11:18:30', '0001-01-01 00:00:00', NULL, NULL),
(523, '上传目录', 'EASYPOPULATE_CONFIG_TEMP_DIR', 'tempEP/', '上传目录的名称(默认: tempEP/)', 31, 0, NULL, '2012-05-11 16:47:55', NULL, NULL),
(524, '上传文件日期格式', 'EASYPOPULATE_CONFIG_FILE_DATE_FORMAT', 'y-m-d', '选择上传文件日期格式,通常由MS Excel生成。上传文件的RAW日期 (例如 2005-09-26 09:00:00) 不受影响,会照样上传。', 31, 1, NULL, '2012-05-11 16:47:55', NULL, 'zen_cfg_select_option(array("m-d-y", "d-m-y", "y-m-d"),'),
(525, '默认时间格式', 'EASYPOPULATE_CONFIG_DEFAULT_RAW_TIME', '09:00:00', '如果上传文件中没有指定时间,将使用该值。适合指定特价在某个时间后生效。(默认: 09:00:00)', 31, 2, NULL, '2012-05-11 16:47:55', NULL, NULL),
(526, '分批导入的数据量', 'EASYPOPULATE_CONFIG_SPLIT_MAX', '300', '缺省的分割上传文件的记录数目。用于防止大量上传时出现的超时。(默认: 300)', 31, 3, NULL, '2012-05-11 16:47:55', NULL, NULL),
(527, '最大分类深度', 'EASYPOPULATE_CONFIG_MAX_CATEGORY_LEVELS', '7', '商店的最大分类深度,决定下载文件中分类的栏目数量 (默认: 7)', 31, 4, NULL, '2012-05-11 16:47:55', NULL, NULL),
(528, '上传/下载价格含税', 'EASYPOPULATE_CONFIG_PRICE_INC_TAX', 'false', '选择价格是否含税。', 31, 5, NULL, '2012-05-11 16:47:55', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(529, '数量为零的产品不激活', 'EASYPOPULATE_CONFIG_ZERO_QTY_INACTIVE', 'false', '批量上传时,如果产品数量为零,产品状态设置为未激活。(默认: false)', 31, 6, NULL, '2012-05-11 16:47:55', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(530, '换行的智能标签替换', 'EASYPOPULATE_CONFIG_SMART_TAGS', 'true', '上传文件中描述字段,回车符和换行符转换为HTML换行,防止格式错误(默认: true)', 31, 7, NULL, '2012-05-11 16:47:55', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(531, '高级智能标签', 'EASYPOPULATE_CONFIG_ADV_SMART_TAGS', 'false', '描述字段采用高级格式化,标题加粗、添加列表等。在ADMIN/easypopulate.php文件中设置 (默认: false)', 31, 8, NULL, '2012-05-11 16:47:55', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(532, '调试记录', 'EASYPOPULATE_CONFIG_DEBUG_LOGGING', 'true', '生成调试记录 (默认: true)', 31, 9, NULL, '2012-05-11 16:47:55', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(533, '自定义产品字段', 'EASYPOPULATE_CONFIG_CUSTOM_FIELDS', '', '输入用逗号分割的产品数据表里的字段名称,将自动增加到导入、导出文件(例如: products_length, products_width). 请确认这些字段存在 PRODUCTS 表中。', 31, 100, NULL, '2012-05-11 16:47:55', NULL, NULL),
(534, 'Enable Yahoo Messenger?', 'LIVE_HELP_YAHOO', 'Disable', 'Do you want to enable Yahoo Messenger in Live Help?', 27, 4, '2013-06-01 22:11:37', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''Enable'', ''Disable''),'),
(535, 'Yahoo Messenger Username', 'LIVE_HELP_YAHOO_USERNAME', 'Please enter your Yahoo Messenger username', 'Enter your Yahoo Messenger username', 27, 5, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, NULL),
(536, 'Yahoo Messenger Style', 'LIVE_HELP_YAHOO_STYLE', '1', 'Choose your Yahoo Messenger Style', 27, 6, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''),'),
(537, 'Enable Tencent QQ?', 'LIVE_HELP_QQ', 'Disable', 'Do you want to enable Tencent QQ in Live Help?', 27, 7, '2013-06-01 22:11:41', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''Enable'', ''Disable''),'),
(538, 'Tencent QQ Number', 'LIVE_HELP_QQ_USERNAME', 'Please enter your Tencent QQ Number', 'Enter your Tencent QQ Number', 27, 8, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, NULL),
(539, 'Tencent QQ Style', 'LIVE_HELP_QQ_STYLE', '12', 'Choose your Tencent QQ Style', 27, 9, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12'', ''13'', ''14'', ''15'', ''16'', ''17''),'),
(540, 'Enable MSN Messenger?', 'LIVE_HELP_MSN', 'Disable', 'Do you want to enable MSN messenger in Live Help?', 27, 13, '2013-06-01 22:11:59', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''Enable'', ''Disable''),'),
(541, 'MSN Account ID', 'LIVE_HELP_MSN_ID', '0a3903f9e5bcabe3', 'Enter your MSN Account ID', 27, 14, '2012-06-07 16:15:41', '2012-05-11 17:23:19', NULL, NULL),
(542, 'MSN Username', 'LIVE_HELP_MSN_USERNAME', 'lisa', 'Enter the name you want to show at the live help box', 27, 15, '2012-06-07 16:15:49', '2012-05-11 17:23:19', NULL, NULL),
(543, 'Enable Tao Bao Wang Wang?', 'LIVE_HELP_WANGWANG', 'Disable', 'Do you want to enable Tao Bao Wang Wang in Live Help?', 27, 10, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''Enable'', ''Disable''),'),
(544, 'Tao Bao Wang Wang Username', 'LIVE_HELP_WANGWANG_USERNAME', 'Please enter your Tao Bao Wang Wang username', 'Enter your Tao Bao Wang Wang username', 27, 11, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, NULL),
(545, 'Tao Bao Wang Wang Style', 'LIVE_HELP_WANGWANG_STYLE', '2', 'Choose your Tao Bao Wang Wang Style', 27, 12, '2012-05-11 17:23:19', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''1'', ''2''),'),
(546, 'My Live 360 Style', 'LIVE_HELP_MY_LIVE_360_STYLE', 'Disable', 'Do you want to enable MyLive360 in Live Help?', 27, 12, '2013-06-01 22:11:50', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''Enable'', ''Disable''),'),
(547, 'My Live 360 Lang', 'LIVE_HELP_MY_LIVE_360_LANG', 'cn', 'Choose a language code', 27, 12, '2012-06-07 17:25:00', '2012-05-11 17:23:19', NULL, 'zen_cfg_select_option(array(''cn'', ''en''),'),
(548, 'My Live 360 Username', 'LIVE_HELP_MY_LIVE_360_USERNAME', 'mazentop', 'Enter your username', 27, 12, '2012-06-07 17:24:55', '2012-05-11 17:23:19', NULL, NULL),
(549, '多图展示方式', 'PRODUCT_IMAGES_DISPLAY_MODE', 'jqueryzoom', '产品详细页图片展示方式,click->代表点击放大,jqueryzoom->代表移动局部放大', 4, 80, '2012-06-19 15:12:25', '2012-05-15 15:38:38', NULL, 'zen_cfg_select_option(array(''click'', ''jqueryzoom''),'),
(550, '开启水印', 'WATERMARK_LARGE_IMAGES', 'yes', '开启往最新上传的图片打上水印的功能,仅限开启此功能后开始上传的图片,若之前的图片也要打上水印,则需要重新上传', 4, 80, '2012-06-05 17:49:02', '2012-05-15 15:38:38', NULL, 'zen_cfg_select_option(array(''no'', ''yes''),'),
(551, '水印透明度', 'WATERALPHA', '95', '水印透明度(0-100有效)', 4, 81, '2013-03-27 23:37:42', '2012-05-15 15:38:38', NULL, NULL),
(552, '水印水平X偏移量', 'WATERMARK_LARGE_IMAGES_POSITION_X', '', '相对于原始图片左上角定位X轴水平偏移量,默认居中', 4, 82, '2012-05-15 15:38:38', '2012-05-15 15:38:38', NULL, NULL),
(553, '水印竖直Y偏移量', 'WATERMARK_LARGE_IMAGES_POSITION_Y', '', '相对于原始图片左上角定位Y轴竖直偏移量,默认居中', 4, 83, '2012-05-15 15:38:38', '2012-05-15 15:38:38', NULL, NULL),
(554, 'Click Count', 'ENABLE_LINKS_COUNT', 'true', 'Enable links click count.', 28, 1, NULL, '2012-05-17 11:51:19', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(555, 'Display Description As Link', 'DISPLAY_LINK_DESCRIPTION_AS_LINK', 'false', 'Display the links description as a link', 28, 1, NULL, '2012-05-17 11:51:19', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(556, 'Submit Link - Require Reciprocal Page', 'SUBMIT_LINK_REQUIRE_RECIPROCAL', 'true', 'Require Reciprocal Page on Links Submit', 28, 1, NULL, '2012-05-17 11:51:19', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(557, 'Links Box - Display Submit Link', 'BOX_DISPLAY_SUBMIT_LINK', 'true', 'Display Submit Link on Sidebox', 28, 1, NULL, '2012-05-17 11:51:19', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(558, 'Links Box - Display View All Links', 'BOX_DISPLAY_VIEW_ALL_LINKS', 'true', 'Display View All Links on Links Sidebox', 28, 1, NULL, '2012-05-17 11:51:19', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(559, 'Links Image Width', 'LINKS_IMAGE_WIDTH', '120', 'Maximum width of the links image.', 28, 3, NULL, '2012-05-17 11:51:19', NULL, ''),
(560, 'Links Image Height', 'LINKS_IMAGE_HEIGHT', '60', 'Maximum height of the links image.', 28, 4, NULL, '2012-05-17 11:51:19', NULL, '');
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(561, 'Display Link Image & Title', 'LINK_LIST_IMAGE', '1', 'Do you want to display the Link Image and Title?', 28, 5, NULL, '2012-05-17 11:51:19', NULL, ''),
(562, 'Display Link Description', 'LINK_LIST_DESCRIPTION', '3', 'Do you want to display the Link Description?', 28, 8, NULL, '2012-05-17 11:51:19', NULL, ''),
(563, 'Display Link Click Count', 'LINK_LIST_COUNT', '5', 'Do you want to display the Link Click Count?', 28, 9, NULL, '2012-05-17 11:51:19', NULL, ''),
(564, 'Link Title Minimum Length', 'ENTRY_LINKS_TITLE_MIN_LENGTH', '2', 'Minimum length of link title.', 28, 10, NULL, '2012-05-17 11:51:19', NULL, ''),
(565, 'Link URL Minimum Length', 'ENTRY_LINKS_URL_MIN_LENGTH', '10', 'Minimum length of link URL.', 28, 11, NULL, '2012-05-17 11:51:19', NULL, ''),
(566, 'Link Description Minimum Length', 'ENTRY_LINKS_DESCRIPTION_MIN_LENGTH', '10', 'Minimum length of link description.', 28, 12, NULL, '2012-05-17 11:51:19', NULL, ''),
(567, 'Link Contact Name Minimum Length', 'ENTRY_LINKS_CONTACT_NAME_MIN_LENGTH', '2', 'Minimum length of link contact name.', 28, 13, NULL, '2012-05-17 11:51:19', NULL, ''),
(568, 'Links Check Phrase', 'LINKS_CHECK_PHRASE', 'yoursitename', 'Phrase to look for, when you perform a link check.', 28, 14, NULL, '2012-05-17 11:51:19', NULL, ''),
(569, 'Links List - Scroll Box Size/Style', 'MAX_LINKS_LIST', '1', 'Number of link category names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list', 28, 15, NULL, '2012-05-17 11:51:19', NULL, ''),
(570, 'Length of Link Categories Name', 'MAX_DISPLAY_LINK_NAME_LEN', '20', 'Used in links box; maximum length of link category name to display. Longer names will be truncated.', 28, 16, NULL, '2012-05-17 11:51:19', NULL, ''),
(571, 'Pages to enable Wishlists', 'WISHLISTS_PAGES', 'product_info', 'Enter product pages you want to enable Wishlists, separated by comma. (Example: ''product_info,document_product_info,product_music_info'')', 29, 1, '2012-05-17 16:00:13', '2012-05-17 16:00:13', NULL, NULL),
(572, 'Show FAQ Category Counts', 'SHOW_FAQ_COUNTS', 'true', 'Count recursively how many FAQs are in each FAQ category', 30, 9, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(573, 'FAQ Categories Count Prefix', 'FAQ_CATEGORIES_COUNT_PREFIX', '&nbsp;(', 'What do you want to Prefix the FAQ count with?<br />Default= (', 30, 10, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_textarea_small('),
(574, 'FAQ Categories Count Suffix', 'FAQ_CATEGORIES_COUNT_SUFFIX', ')', 'What do you want as a Suffix to the FAQ count?<br />Default= )', 30, 11, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_textarea_small('),
(575, 'FAQ Categories SubCategories Indent', 'FAQ_CATEGORIES_SUBFAQ_CATEGORIES_INDENT', '&nbsp;&nbsp;', 'What do you want to use as the FAQ subcategories indent?<br />Default= &nbsp;&nbsp;', 30, 12, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_textarea_small('),
(576, 'FAQ Categories with 0 FAQs Status', 'FAQ_CATEGORIES_COUNT_ZERO', '0', 'Show FAQ Count for 0 FAQs?<br />0= off<br />1= on', 30, 13, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(577, 'Separator between links Status', 'SHOW_FAQ_CATEGORIES_SEPARATOR_LINK', '1', 'Show FAQ Category Separator between Category Names and Links?<br />0= off<br />1= on', 30, 14, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(578, 'Separator between the Category Name and Count', 'FAQ_CATEGORIES_SEPARATOR', '-&gt;', 'What separator do you want between the FAQ Category name and the count?<br />Default = -&amp;gt;', 30, 15, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_textarea_small('),
(579, 'Separator between the Category Name and Sub Categories', 'FAQ_CATEGORIES_SEPARATOR_SUBS', '|_&nbsp;', 'What separator do you want between the FAQ Category name and FAQ Sub Category Name?<br />Default = |_&amp;nbsp;', 30, 16, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_textarea_small('),
(580, 'Always Open to Show FAQ SubCategories', 'SHOW_FAQ_CATEGORIES_SUBFAQ_CATEGORIES_ALWAYS', '1', 'Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected', 30, 17, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(581, 'Show New FAQs Link', 'SHOW_FAQ_CATEGORIES_BOX_FAQS_NEW', 'true', 'Show FAQs New Link in the FAQ Categories Box', 30, 18, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(582, 'Show All FAQs Link', 'SHOW_FAQ_CATEGORIES_BOX_FAQS_ALL', 'true', 'Show FAQs All Link in the FAQ Categories Box', 30, 19, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(583, 'Previous Next - Navigation Bar Position', 'FAQ_INFO_PREVIOUS_NEXT', '1', 'Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page', 31, 30, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''Top of Page''), array(''id''=>''2'', ''text''=>''Bottom of Page''), array(''id''=>''3'', ''text''=>''Both Top & Bottom of Page'')),'),
(584, 'Previous Next - Sort Order', 'FAQ_INFO_PREVIOUS_NEXT_SORT', '1', 'FAQs Display Order by<br />0= FAQ ID<br />1= FAQ Name<br />6= FAQ Sort Order', 31, 31, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''FAQ ID''), array(''id''=>''1'', ''text''=>''Name''), array(''id''=>''6'', ''text''=>''FAQ Sort Order'')),'),
(585, 'Previous Next - Button and Image Status', 'SHOW_FAQ_PREVIOUS_NEXT_STATUS', '0', 'Button and FAQ Image status settings are:<br />0= Off<br />1= On', 31, 32, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''On'')),'),
(586, 'Previous Next - Button and Image Settings', 'SHOW_FAQ_PREVIOUS_NEXT_IMAGES', '0', 'Show Previous/Next Button and FAQ Image Settings<br />0= Button Only<br />1= Button and FAQ Image<br />2= FAQ Image Only', 31, 33, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Button Only''), array(''id''=>''1'', ''text''=>''Button and FAQ Image''), array(''id''=>''2'', ''text''=>''FAQ Image Only'')),'),
(587, 'Previous Next - Navigation Includes FAQ Category', 'FAQ_INFO_FAQ_CATEGORIES', '1', 'FAQs Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right', 31, 34, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''Align Left''), array(''id''=>''2'', ''text''=>''Align Center''), array(''id''=>''3'', ''text''=>''Align Right'')),'),
(588, 'Show FAQ Reviews Count', 'SHOW_FAQ_INFO_REVIEWS_COUNT', '1', 'Display FAQ Reviews Count on FAQ Info 0= off 1= on', 31, 35, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(589, 'Show FAQ Reviews Button', 'SHOW_FAQ_INFO_REVIEWS', '1', 'Display FAQ Reviews Button on FAQ Info 0= off 1= on', 31, 36, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(590, 'Show Date Added', 'SHOW_FAQ_INFO_DATE_ADDED', '1', 'Display Date Added on FAQ Info 0= off 1= on', 31, 37, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(591, 'Show FAQ URL', 'SHOW_FAQ_INFO_URL', '1', 'Display URL on FAQ Info 0= off 1= on', 31, 38, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(592, 'Show FAQ Tell a Friend button', 'SHOW_FAQ_INFO_TELL_A_FRIEND', '1', 'Display the Tell a Friend button on FAQ Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on', 31, 39, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(593, 'Display FAQ Name', 'FAQ_LIST_NAME', '1', 'Do you want to display the FAQ Name?', 32, 50, NULL, '2012-05-17 16:29:47', '', ''),
(594, 'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)', 'PREV_NEXT_FAQ_BAR_LOCATION', '1', 'Sets the location of the FAQ Prev/Next Split Page Navigation', 32, 51, NULL, '2012-05-17 16:29:47', '', 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(595, 'Display FAQ Listing Default Sort Order', 'FAQ_LISTING_DEFAULT_SORT_ORDER', '', 'FAQ Listing Default sort order?<br />NOTE: Leave Blank for FAQ Sort Order. Sort the FAQ Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a', 32, 52, NULL, '2012-05-17 16:29:47', '', ''),
(596, 'Number Per Page', 'MAX_DISPLAY_FAQS_LISTING', '10', 'Maximum Number of FAQs to list per page on main page', 32, 53, NULL, '2012-05-17 16:29:47', '', ''),
(597, 'Number of FAQs Per Page', 'MAX_DISPLAY_FAQS_NEW', '10', 'Number of new FAQs listings per page', 33, 70, NULL, '2012-05-17 16:29:47', '', ''),
(598, 'Display FAQ Image', 'FAQ_NEW_LIST_IMAGE', '1102', 'Do you want to display the FAQ Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 33, 71, NULL, '2012-05-17 16:29:47', '', ''),
(599, 'Display FAQ Name', 'FAQ_NEW_LIST_NAME', '2101', 'Do you want to display the FAQ Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 33, 72, NULL, '2012-05-17 16:29:47', '', ''),
(600, 'Display FAQ Date Added', 'FAQ_NEW_LIST_DATE_ADDED', '2601', 'Do you want to display the FAQ Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 33, 73, NULL, '2012-05-17 16:29:47', '', ''),
(601, 'Display FAQ Description', 'FAQ_NEW_LIST_DESCRIPTION', '1', 'Do you want to display the FAQ Description - First 150 characters?<br />0= off<br />1= on', 33, 74, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(602, 'Default Sort Order', 'FAQ_NEW_LIST_SORT_DEFAULT', '6', 'What Sort Order Default should be used for New FAQs Display?<br />Default= 6 for Date New to Old<br /><br />1= FAQs Name<br />2= FAQs Name Desc<br />6= Date Added desc<br />7= Date Added', 33, 75, NULL, '2012-05-17 16:29:47', '', 'zen_cfg_select_option(array(''1'', ''2'', ''6'', ''7''), '),
(603, 'Image Width', 'IMAGE_FAQ_NEW_LISTING_WIDTH', '50', 'Default = 50', 33, 76, NULL, '2012-05-17 16:29:47', '', ''),
(604, 'Image Height', 'IMAGE_FAQ_NEW_LISTING_HEIGHT', '40', 'Default = 40', 33, 77, NULL, '2012-05-17 16:29:47', '', ''),
(605, 'Number of FAQs Per Page', 'MAX_DISPLAY_FAQS_ALL', '10', 'Number of faqs to list per screen', 33, 80, NULL, '2012-05-17 16:29:47', NULL, ''),
(606, 'New FAQs Page Configuration Group ID', 'FAQ_LISTS_GROUP_ID_NEW', '38', 'Warning: Only change this if your FAQs All Group ID has changed from the default<br />What is the configuration_group_id for FAQ Listings?', 33, 90, NULL, '2012-05-17 16:29:47', '', ''),
(607, 'Display FAQ Image', 'FAQ_ALL_LIST_IMAGE', '0102', 'Do you want to display the FAQ Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 34, 81, '2012-06-20 14:03:36', '2012-05-17 16:29:47', '', ''),
(608, 'Display FAQ Name', 'FAQ_ALL_LIST_NAME', '2101', 'Do you want to display the FAQ Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 34, 82, NULL, '2012-05-17 16:29:47', '', ''),
(609, 'Display FAQ Date Added', 'FAQ_ALL_LIST_DATE_ADDED', '2601', 'Do you want to display the FAQ Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 34, 83, NULL, '2012-05-17 16:29:47', '', ''),
(610, 'Display FAQ Description', 'FAQ_ALL_LIST_DESCRIPTION', '1', 'Do you want to display the FAQ Description - First 150 characters?', 34, 84, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(611, 'Default Sort Order', 'FAQ_ALL_LIST_SORT_DEFAULT', '1', 'What Sort Order Default should be used for All FAQs Display?<br />Default= 1 for FAQ Name<br /><br />1= FAQs Name<br />2= FAQs Name Desc<br />6= Date Added desc<br />7= Date Added', 34, 85, NULL, '2012-05-17 16:29:47', '', 'zen_cfg_select_option(array(''1'', ''2'', ''6'', ''7''), '),
(612, 'Image Width', 'IMAGE_FAQ_ALL_LISTING_WIDTH', '50', 'Default = 50', 34, 86, NULL, '2012-05-17 16:29:47', '', ''),
(613, 'Image Height', 'IMAGE_FAQ_ALL_LISTING_HEIGHT', '40', 'Default = 40', 34, 87, NULL, '2012-05-17 16:29:47', '', ''),
(614, 'ALL FAQs Page Configuration Group ID', 'FAQ_LISTS_GROUP_ID_ALL', '39', 'Warning: Only change this if your FAQs All Group ID has changed from the default<br />What is the configuration_group_id for FAQ Listings?', 34, 90, NULL, '2012-05-17 16:29:47', '', ''),
(615, 'FAQ Categories - FAQ Categories To List Per Row', 'MAX_DISPLAY_FAQ_CATEGORIES_PER_ROW', '1', 'How many FAQ categories to list per row', 35, 91, NULL, '2012-05-17 16:29:47', '', ''),
(616, 'Allow faqs To Go Live As Submitted', 'FAQ_LIST_LIVE', 'false', 'Do you want faqs to go live as submitted<br>Set to false for admin approval.', 35, 92, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(617, 'Define FAQs Submit', 'DEFINE_FAQS_SUBMIT_STATUS', '1', 'Enable the Defined faqs_submit text?<br />0= OFF<br />1= ON', 35, 93, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(618, 'Allow FAQS submission', 'ALLOW_FAQS_SUBMISSION', 'true', 'Allow users to submit FAQs.', 35, 94, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(619, 'If Allow FAQS submission = true, allow unregistered users submit FAQs', 'UNREGISTERED_FAQS_SUBMIT', 'true', 'Allow unregistered users to submit FAQs.', 35, 95, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(620, 'Allow Image Upload', 'SUBMIT_FAQ_ALLOW_IMAGE_UPLOAD', 'true', 'Allow Image Upload on FAQ Submit', 35, 96, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(621, 'Send FAQ Submit Notification Emails To:', 'SEND_FAQ_SUBMIT_EMAILS_TO_EMAILS_TO', 'support@test.com', 'Enter the email address that FAQ submit notifications should be sent to', 35, 97, NULL, '2012-05-17 16:29:47', '', ''),
(622, 'Define No FAQs Allowed', 'DEFINE_NO_FAQS_ALLOWED', '1', 'Enable the No FAQs Allowed text?<br>0= OFF<br>1= ON', 35, 98, NULL, '2012-05-17 16:29:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(623, 'Display Filter Group', 'PRODUCTS_OPTIONS_SETTING_DISPLAY_FILTER_GROUP', '1', 'Whether the manifestation filter packet', 23, NULL, '2012-11-22 15:45:48', '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(624, 'Mode for PayPal web services<br /><br />Default:<br /><code>www.paypal.com/cgi-bin/webscr</code><br />or<br /><code>www.paypal.com/us/cgi-bin/webscr</code><br />or for the UK,<br /><code>www.paypal.com/uk/cgi-bin/webscr</code>', 'MODULE_PAYMENT_PAYPAL_HANDLER', 'www.sandbox.paypal.com/cgi-bin/webscr', 'Choose the URL for PayPal live processing', 6, 73, NULL, '2012-07-31 15:25:02', NULL, ''),
(625, 'PDT Token (Payment Data Transfer)', 'MODULE_PAYMENT_PAYPAL_PDTTOKEN', 'HJJxsM2yFXtSUXML16WZO97wCp-lRDL2lY1XkQOLEvGtYh4Kix8V6ZoY5gO', 'Enter your PDT Token value here in order to activate transactions immediately after processing (if they pass validation).', 6, 25, NULL, '2012-07-31 15:25:02', 'zen_cfg_password_display', NULL),
(626, 'Page Style', 'MODULE_PAYMENT_PAYPAL_PAGE_STYLE', 'Primary', 'Sets the Custom Payment Page Style for payment pages. The value of page_style is the same as the Page Style Name you chose when adding or editing the page style. You can add and edit Custom Payment Page Styles from the Profile subtab of the My Account tab on the PayPal site. If you would like to always reference your Primary style, set this to "primary." If you would like to reference the default PayPal page style, set this to "paypal".', 6, 25, NULL, '2012-07-31 15:25:02', NULL, NULL),
(627, 'Enable PayPal Module', 'MODULE_PAYMENT_PAYPAL_STATUS', 'True', 'Do you want to accept PayPal payments?', 6, 0, NULL, '2012-07-31 15:25:02', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(628, 'Business ID', 'MODULE_PAYMENT_PAYPAL_BUSINESS_ID', 'seller_1338887460_biz@163.com', 'Primary email address for your PayPal account.<br />NOTE: This must match <strong>EXACTLY </strong>the primary email address on your PayPal account settings. It <strong>IS case-sensitive</strong>, so please check your PayPal profile preferences at paypal.com and be sure to enter the EXACT same primary email address here.', 6, 2, NULL, '2012-07-31 15:25:02', NULL, NULL),
(629, 'Transaction Currency', 'MODULE_PAYMENT_PAYPAL_CURRENCY', 'Selected Currency', 'Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD.', 6, 3, NULL, '2012-07-31 15:25:02', NULL, 'zen_cfg_select_option(array(''Selected Currency'', ''Only USD'', ''Only AUD'', ''Only CAD'', ''Only EUR'', ''Only GBP'', ''Only CHF'', ''Only CZK'', ''Only DKK'', ''Only HKD'', ''Only HUF'', ''Only JPY'', ''Only NOK'', ''Only NZD'', ''Only PLN'', ''Only SEK'', ''Only SGD'', ''Only THB'', ''Only MXN'', ''Only ILS'', ''Only PHP'', ''Only TWD'', ''Only BRL'', ''Only MYR'', ''Only TKD''), '),
(630, 'Payment Zone', 'MODULE_PAYMENT_PAYPAL_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 4, NULL, '2012-07-31 15:25:02', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(631, 'Set Pending Notification Status', 'MODULE_PAYMENT_PAYPAL_PROCESSING_STATUS_ID', '5', 'Set the status of orders made with this payment module that are not yet completed to this value<br />(''Pending'' recommended)', 6, 5, NULL, '2012-07-31 15:25:02', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(632, 'Set Order Status', 'MODULE_PAYMENT_PAYPAL_ORDER_STATUS_ID', '2', 'Set the status of orders made with this payment module that have completed payment to this value<br />(''Processing'' recommended)', 6, 6, NULL, '2012-07-31 15:25:02', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(633, 'Set Refund Order Status', 'MODULE_PAYMENT_PAYPAL_REFUND_ORDER_STATUS_ID', '1', 'Set the status of orders that have been refunded made with this payment module to this value<br />(''Pending'' recommended)', 6, 7, NULL, '2012-07-31 15:25:02', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(634, 'Sort order of display.', 'MODULE_PAYMENT_PAYPAL_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 8, NULL, '2012-07-31 15:25:02', NULL, NULL),
(635, 'Address Override', 'MODULE_PAYMENT_PAYPAL_ADDRESS_OVERRIDE', '1', 'If set to 1, the customer shipping address selected in Zen Cart will override the customer PayPal-stored address book. The customer will see their address from Zen Cart, but will NOT be able to edit it at PayPal.<br />(An invalid address will be treated by PayPal as not-supplied, or override=0)<br />0=No Override<br />1=ZC address overrides PayPal address choices', 6, 18, NULL, '2012-07-31 15:25:02', NULL, 'zen_cfg_select_option(array(''0'',''1''), '),
(636, 'Shipping Address Requirements?', 'MODULE_PAYMENT_PAYPAL_ADDRESS_REQUIRED', '1', 'The buyers shipping address. If set to 0 your customer will be prompted to include a shipping address. If set to 1 your customer will not be asked for a shipping address. If set to 2 your customer will be required to provide a shipping address.<br />0=Prompt<br />1=Not Asked<br />2=Required<br /><br /><strong>NOTE: If you allow your customers to enter their own shipping address, then MAKE SURE you PERSONALLY manually verify the PayPal confirmation details to verify the proper address when filling orders. When using Website Payments Standard (IPN), Zen Cart does not know if they choose an alternate shipping address at PayPal vs the one entered when placing an order.</strong>', 6, 20, NULL, '2012-07-31 15:25:02', NULL, 'zen_cfg_select_option(array(''0'',''1'',''2''), '),
(637, 'Detailed Line Items in Cart', 'MODULE_PAYMENT_PAYPAL_DETAILED_CART', 'No', 'Do you want to give line-item details to PayPal? If set to True, line-item details will be shared with PayPal if no discounts apply and if tax and shipping are simple. Otherwise an Aggregate cart summary will be sent.', 6, 22, NULL, '2012-07-31 15:25:02', NULL, 'zen_cfg_select_option(array(''No'',''Yes''), '),
(638, 'Delete Old Reward Transactions Period', 'REWARD_POINTS_HOUSEKEEPING', '90', 'Set the age (in days) to keep the reward point transactions. Outstanding reward points pending after this period will be lost. Set to 0 to keep all transactions.', 36, 7, NULL, '2012-05-25 17:02:58', NULL, NULL),
(639, 'Reward Point Redeem Maximum', 'REWARD_POINTS_REDEEM_MAXIMUM', '0', 'This is the maximum amount of earned points that can be redeemed against a single order. Note: this can be a absolute value (eg 1000) or a percentage (20%).', 36, 4, NULL, '2012-05-25 17:02:58', NULL, NULL),
(640, 'Reward Point Rounding', 'REWARD_POINTS_ROUNDING', '0.0', 'Rounding value- This is an adjustment to each product price before it is rounded to 0 decimal places to calculate product Reward Points (default 0.0)', 36, 5, NULL, '2012-05-25 17:02:58', NULL, NULL),
(641, 'Max Transactions to Display in Customer Admin', 'REWARD_POINTS_MAX_TRANSACTIONS', '12', 'Select the maximum number of records to show on the Pending Reward Points table in Customer Reward Point admininstration.', 36, 6, NULL, '2012-05-25 17:02:58', NULL, NULL),
(642, 'Reward Point Sunrise Period', 'REWARD_POINTS_SUNRISE_PERIOD', '0', 'The number of days after which points pending become points earned. Set to 0 for no sunrise period.', 36, 3, NULL, '2012-05-25 17:02:58', NULL, NULL),
(643, 'Reward Point Redeem Minimum', 'REWARD_POINTS_REDEEM_MINIMUM', '0', 'This is the minimum amount of earned points needed before they can be redeemed.', 36, 3, NULL, '2012-05-25 17:02:58', NULL, NULL),
(644, '在4PX的标识', 'SHIPPING_4PX_COMPANY_ID', '', '请填写递四方提供在4PX的标识', 1, 100, '2012-05-24 16:23:15', '2012-05-24 16:23:15', NULL, NULL),
(645, '4px 接口wsdl地址', 'SHIPPING_4PX_SOAP_URL', 'http://myorder.4px.cc//services/OrderServices?wsdl', '请填写4px 接口wsdl地址', 1, 101, '2012-05-24 16:23:15', '2012-05-24 16:23:15', NULL, NULL),
(646, 'Reward Point Mode', 'REWARD_POINT_MODE', '0', 'Select the Reward Point Mode<br />0= Reward Points are fixed to the product prices and are calculated individually.<br />1= Reward Points are calculated on the Order Total or Subtotal (depending on the setting of the <strong>Allow Redeem of Reward Points on Order Total or Subtotal</strong> configuration).', 36, 0, NULL, '2012-05-25 17:02:58', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(647, 'Reward Point Sidebox Display', 'SHOW_REWARD_POINTS_BOX_OPTION', '0', 'Display Reward Points Sidebox<br />0= Always<br />1= Only when logged in<br />2= Only when logged in and has points', 36, 1, NULL, '2012-05-25 17:02:58', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(648, 'Reward Point Status Track', 'REWARD_POINTS_STATUS_TRACK', '1,5/2,3,4', '<b>Simple mode:</b> All new reward points are set to Pending and are changed to Earned when the Order Status changes. If the Order Status is then changed back to Pending then the reward points are transfered back from Earned.<br /><br /><b>Advanced mode:</b> Set the order status items that will trigger a transfer of the reward points between pending and earned. Points are transfered when the status changes between the "Pending" and "Earned". Status items set to "Ignore" will have no effect if the Order Status changes to it.', 36, 2, '2012-05-25 17:33:33', '2012-05-25 17:02:58', 'UseRewardPointStateFunction', 'SetRewardPointStateFunction('),
(649, 'Set Minimum Order Value to Redeem Points Against', 'REWARD_POINTS_MINIMUM_VALUE', '0', 'Set the minimum value that the order should be in order for it to qualify for reward point redeem.', 36, 10, NULL, '2012-05-25 17:02:58', NULL, NULL),
(650, 'Limit Maximum Customers on Listings', 'REWARD_POINTS_CUSTOMER_LIMIT', '50', 'Set the maximum number of records to appear on each page under Customer Reward Point admininstration page.', 36, 11, NULL, '2012-05-25 17:02:58', NULL, NULL),
(651, 'Display Products Reward Points When Zero', 'REWARD_POINTS_ALWAYS_DISPLAY', '1', 'Set whether a products reward points are displayed when zero.<br />0= Don''t display 0 Reward Points.<br />1= Always display reward points even when zero.', 36, 12, NULL, '2012-05-25 17:02:58', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(652, 'Set New Account Reward Points', 'REWARD_POINTS_NEW_ACCOUNT_REWARD', '-500', 'Set the amount of points awarded to a customer when an account is created. The points can either be added to ''Earned'' which will allow the customer to redeem the points straight away; Or the points can be added to ''Pending'' in which case the customer will receive the points after their first successful order.', 36, 13, '2012-05-28 09:59:41', '2012-05-25 17:02:58', 'UseRewardPointNewAccountAwardFunction', 'SetRewardPointNewAccountAwardFunction('),
(653, 'Advanced Reward Point Calculation Rules', 'REWARD_POINTS_ADVANCED_CALCULATE_TABLE', '-ot_gv,-ot_coupon', 'Advanced configuration of Reward Point calculations. This will be the figure that total Reward Points are adjusted by. This also affects the maximum value that any points can be redeemed against.', 36, 14, NULL, '2012-05-25 17:02:58', 'UseRewardPointAdvancedCalculateTableFunction', 'SetRewardPointAdvancedCalculateTableFunction('),
(654, 'This module is installed', 'MODULE_ORDER_TOTAL_REWARD_POINTS_DISPLAY_STATUS', 'true', '', 6, 1, NULL, '2012-05-25 17:07:45', NULL, 'zen_cfg_select_option(array(''true'',''false''), '),
(655, 'Sort Order', 'MODULE_ORDER_TOTAL_REWARD_POINTS_DISPLAY_SORT_ORDER', '1000', 'Sort order of display.', 6, 2, NULL, '2012-05-25 17:07:45', NULL, NULL),
(656, 'Payment Zone', 'MODULE_PAYMENT_99BILL_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 6, NULL, '2012-06-05 17:48:15', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(657, 'Show Option Mode', 'PRODUCTS_OPTIONS_SETTING_SHOW_OPTION_MODE', '1', '1:products options,2:categories options', 23, NULL, '2012-06-19 09:45:27', '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''1'', ''2''),'),
(658, 'Show Title', 'SHOW_BANNER_TITLE', '0', 'show title', 37, 49, '2012-06-08 15:58:37', '2012-06-04 11:38:04', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(659, 'Playlist Style', 'PLAYLIST_STYLE', 'bullets', 'playlist style', 37, 49, '2012-11-15 11:38:00', '2012-06-04 11:38:04', NULL, 'zen_cfg_select_option(array(''number'', ''bullets''),'),
(660, 'Is Auto Play', 'IS_AUTO_PLAY', '1', 'is banner auto play not 0=false,1=true', 37, 49, '2012-06-04 11:38:04', '2012-06-04 11:38:04', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(661, 'Show Banner Index', 'SHOW_BANNER_INDEX', '1', 'whether allow the banner index show in playlist or not 0=false,1=true', 37, 49, '2012-06-05 17:28:29', '2012-06-04 11:38:04', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(662, 'Show Banner on Main Page', 'SHOW_BANNER_ON_MAIN_PAGE', '1', 'Show Banner on Main Page 0=off or 1=on', 37, 49, '2012-06-04 14:13:12', '2012-06-04 11:38:04', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(663, 'max compare num', 'MAX_COLUMN_NUM', '4', 'max compare number', 38, 1, '2012-06-05 15:07:49', '2012-06-04 14:31:31', NULL, NULL),
(664, 'title column width', 'TITLE_COLUMN_WIDTH', '147', 'title column width', 38, 1, '2012-06-19 14:32:33', '2012-06-04 14:31:31', NULL, NULL),
(665, 'attributes column width', 'ATTRIBUTE_COLUMN_WIDTH', '200', 'attributes column width', 38, 1, '2012-06-19 14:32:45', '2012-06-04 14:31:31', NULL, NULL),
(666, 'Max Related Display Num', 'MAX_RELATED_DISPLAY_NUM', '4', 'max number of displying related products', 8, 8, '2012-06-04 17:42:25', '2012-06-04 17:42:25', NULL, NULL),
(667, 'Set Pending Notification Status', 'MODULE_PAYMENT_99BILL_ORDER_STATUS_ID', '1', 'Set the status of orders made with this payment module to this value<br />(Pending recommended)', 6, 10, NULL, '2012-06-05 17:48:15', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(668, 'Sort order of display', 'MODULE_PAYMENT_99BILL_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 12, NULL, '2012-06-05 17:48:15', NULL, NULL),
(669, '99BILL transaction URL<br />Default: <code>https://www.99bill.com/gateway/recvMerchantInfoAction.htm</code><br />', 'MODULE_PAYMENT_99BILL_HANDLER', 'https://www.99bill.com/gateway/recvMerchantInfoAction.htm', '99BILL transaction URL', 6, 18, NULL, '2012-06-05 17:48:15', NULL, ''),
(670, 'Enable Western Union Order Module', 'MODULE_PAYMENT_WESTERNUNION_STATUS', 'True', 'Do you want to accept Western Union Order payments?', 6, 1, NULL, '2012-06-06 08:54:42', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(671, '::Enter Reciever''s Information Below::', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_FIRST_NAME', 'mazentop', 'First Name :', 6, 2, NULL, '2012-06-06 08:54:42', NULL, NULL),
(672, 'Enter Receiver''s Last Name', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_LAST_NAME', 'mazentop', 'Last Name :', 6, 3, NULL, '2012-06-06 08:54:42', NULL, NULL),
(673, 'Enter Receiver''s Address', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_ADDRESS', 'mazentop', 'Address :', 6, 4, NULL, '2012-06-06 08:54:42', NULL, NULL),
(674, 'Enter Receiver''s Zip Code', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_ZIP', '518128', 'Zip Code :', 6, 5, NULL, '2012-06-06 08:54:42', NULL, NULL),
(675, 'Enter Receiver''s City', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_CITY', 'mazentop', 'City :', 6, 6, NULL, '2012-06-06 08:54:42', NULL, NULL),
(676, 'Enter Receiver''s Country', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_COUNTRY', 'mazentop', 'Country :', 6, 7, NULL, '2012-06-06 08:54:42', NULL, NULL),
(677, 'Enter Receiver''s Telephone', 'MODULE_PAYMENT_WESTERNUNION_RECEIVER_PHONE', '123456789', 'TelePhone :', 6, 8, NULL, '2012-06-06 08:54:42', NULL, NULL),
(678, 'Sort order of display.', 'MODULE_PAYMENT_WESTERNUNION_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2012-06-06 08:54:42', NULL, NULL),
(679, 'Set Order Status', 'MODULE_PAYMENT_WESTERNUNION_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2012-06-06 08:54:42', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(680, 'Enable Wire Transfer Payment Module', 'MODULE_PAYMENT_WIRE_STATUS', 'True', 'Do you want to accept wire transfer payment?', 6, 1, NULL, '2012-06-06 08:56:51', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(681, 'Account Name:', 'MODULE_PAYMENT_WIRE_NAME', 'mazentop', 'Receiver Account Name', 6, 2, NULL, '2012-06-06 08:56:51', NULL, NULL),
(682, 'Account Number:', 'MODULE_PAYMENT_WIRE_ACCOUNT', '123456789', 'Receiver Account Number', 6, 3, NULL, '2012-06-06 08:56:51', NULL, NULL),
(683, 'Receiver Telephone:', 'MODULE_PAYMENT_WIRE_TELEPHONE', '123456789', 'Receiver Telephone', 6, 4, NULL, '2012-06-06 08:56:51', NULL, NULL),
(684, 'Bank Name:', 'MODULE_PAYMENT_WIRE_BANK_NAME', 'mazentop', 'Bank Name', 6, 5, NULL, '2012-06-06 08:56:51', NULL, NULL),
(685, 'Bank Address:', 'MODULE_PAYMENT_WIRE_BANK_ADDRESS', 'mazentop', 'Bank Address', 6, 6, NULL, '2012-06-06 08:56:51', NULL, NULL),
(686, 'Swift Code:', 'MODULE_PAYMENT_WIRE_SWIFT_CODE', 'mazentop', 'Swift Code', 6, 7, NULL, '2012-06-06 08:56:51', NULL, NULL),
(687, 'Sort order of display.', 'MODULE_PAYMENT_WIRE_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 8, NULL, '2012-06-06 08:56:51', NULL, NULL),
(688, 'Set Order Status', 'MODULE_PAYMENT_WIRE_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 9, NULL, '2012-06-06 08:56:51', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(689, 'Moneybookers Payment Gateway Status', 'MODULE_PAYMENT_MBOOKERS_GWAY_STATUS', 'True', 'Activate Moneybookers Payment Gateway?', 6, 20, NULL, '2012-06-06 08:59:31', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(690, 'Geographical Zone', 'MODULE_PAYMENT_MBOOKERS_GWAY_ZONE', '0', 'Only enable this module for selected Geo Zone.', 6, 30, NULL, '2012-06-06 08:59:31', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(691, 'E-Mail Address<font color="RED"><b>*</b></font>', 'MODULE_PAYMENT_MBOOKERS_GWAY_ID', 'zhong5359266@163.com', 'Registered e-mail address on Moneybookers.com', 6, 40, NULL, '2012-06-06 08:59:31', NULL, NULL),
(692, 'Moneybookers Merchant ID', 'MODULE_PAYMENT_MBOOKERS_GWAY_REFID', '123456789', 'Moneybookers Merchant ID if known', 6, 50, NULL, '2012-06-06 08:59:31', NULL, NULL),
(693, 'Moneybookers Secret Word', 'MODULE_PAYMENT_MBOOKERS_GWAY_SECRET_WORD', '123456879', 'Moneybookers Secret Word if known.', 6, 60, NULL, '2012-06-06 08:59:31', NULL, NULL),
(694, 'Downloadable Items', 'MODULE_PAYMENT_MBOOKERS_GWAY_DOWNLOADS', 'NO', 'Do you offer downloadable items for sale?', 6, 70, NULL, '2012-06-06 08:59:31', NULL, 'zen_cfg_select_option(array(''YES'', ''NO''), '),
(695, 'Default Currency', 'MODULE_PAYMENT_MBOOKERS_GWAY_DEFAULT_CURRENCY', 'USD', 'Default currency on Moneybookers.com', 6, 80, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_currency', 'zen_mb_gway_cfg_pull_down_default_currency('),
(696, 'Default Language', 'MODULE_PAYMENT_MBOOKERS_GWAY_DEFAULT_LANGUAGE', 'EN', 'Default language on Moneybookers.com', 6, 90, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_language', 'zen_mb_gway_cfg_pull_down_default_language('),
(697, 'Transaction Currency', 'MODULE_PAYMENT_MBOOKERS_GWAY_CURRENCY', 'Same as Cart', 'Currency customers allowed to use on Moneybookers.com.<br />Prices will be converted to this currency on moneybookers<br />if "Same as Cart" is selected and cart currency is not available on moneybookers, prices will be converted to default currency', 6, 100, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_currency', 'zen_mb_gway_cfg_pull_down_user_currency('),
(698, 'Website Language', 'MODULE_PAYMENT_MBOOKERS_GWAY_LANGUAGE', 'Same as Cart', 'Language to use to display Moneybookers.com to customers.<br />Display will be shown in selected language on moneybookers<br />if "Same as Cart" is selected and cart language is not available on moneybookers, display will be in default language', 6, 110, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_language', 'zen_mb_gway_cfg_pull_down_language('),
(699, 'Checkout Banner', 'MODULE_PAYMENT_MBOOKERS_GWAY_MB_BANNER', 'Standard', 'Moneybookers Banner to show at checkout.', 6, 120, NULL, '2012-06-06 08:59:31', NULL, 'zen_cfg_select_option(array(''Standard'', ''Simple'', ''Animated'', ''International''), '),
(700, 'Customer Order Status Emails', 'MODULE_PAYMENT_MBOOKERS_GWAY_CUST_EMAIL', 'YES', 'Send moneybookers order status update email notifications to customers?', 6, 130, NULL, '2012-06-06 08:59:31', NULL, 'zen_cfg_select_option(array(''YES'', ''NO''), '),
(701, 'Admin Order Status Emails', 'MODULE_PAYMENT_MBOOKERS_GWAY_ADMIN_EMAIL', 'YES', 'Receive moneybookers order status update emails?<br/>Warning and error messages are always sent', 6, 140, NULL, '2012-06-06 08:59:31', NULL, 'zen_cfg_select_option(array(''YES'', ''NO''), '),
(702, 'MD5 Signature Check?', 'MODULE_PAYMENT_MBOOKERS_GWAY_MD5_CHECK', 'NO', 'Check md5 Signature before auto updating order status table?<br /><font color = red>IMPORTANT!</font> Only select ''YES'' if you have registered for a merchant account on moneybookers and entered both your merchant id and secret word above', 6, 150, NULL, '2012-06-06 08:59:31', NULL, 'zen_cfg_select_option(array(''YES'', ''NO''), '),
(703, 'Key Value for Processed Orders', 'MODULE_PAYMENT_MBOOKERS_GWAY_PROCESSED_KEY', '11', 'Order Status Key for Processed Moneybookers Orders<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 160, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_processed_key', 'zen_mb_gway_cfg_pull_down_keys('),
(704, 'Key Value for Scheduled Orders', 'MODULE_PAYMENT_MBOOKERS_GWAY_SCHEDULED_KEY', '12', 'Order Status Key for Scheduled Moneybookers Orders<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 170, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_scheduled_key', 'zen_mb_gway_cfg_pull_down_keys('),
(705, 'Key Value for Pending Orders', 'MODULE_PAYMENT_MBOOKERS_GWAY_PENDING_KEY', '13', 'Order Status Key for Pending Moneybookers Orders<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 180, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_pending_key', 'zen_mb_gway_cfg_pull_down_keys('),
(706, 'Key Value for Cancelled Orders', 'MODULE_PAYMENT_MBOOKERS_GWAY_CANCELLED_KEY', '14', 'Order Status Key for Cancelled Moneybookers Orders<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 190, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_cancelled_key', 'zen_mb_gway_cfg_pull_down_keys('),
(707, 'Key Value for Declined Orders', 'MODULE_PAYMENT_MBOOKERS_GWAY_DECLINED_KEY', '15', 'Order Status Key for Declined Moneybookers Orders<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 200, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_declined_key', 'zen_mb_gway_cfg_pull_down_keys('),
(708, 'Key Value for Chargedback Orders', 'MODULE_PAYMENT_MBOOKERS_GWAY_CHARGEDBACK_KEY', '16', 'Order Status Key for Chargedback Moneybookers Orders<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 210, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_chargedback_key', 'zen_mb_gway_cfg_pull_down_keys('),
(709, 'Key Value for Orders Awaiting Confirmation', 'MODULE_PAYMENT_MBOOKERS_GWAY_INITIAL_KEY', '17', 'Order Status Key for Orders Awaiting Confirmation<br /><font color = red>IMPORTANT!</font> DO NOT DUPLICATE KEYS.', 6, 220, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_initial_key', 'zen_mb_gway_cfg_pull_down_keys('),
(710, 'Confirmation Note', 'MODULE_PAYMENT_MBOOKERS_GWAY_CONFIRM_NOTE', 'Thank you for your custom.<br />Your order has been securely processed.', 'Note to be shown to customers on Moneybookers site after completing transaction.', 6, 230, NULL, '2012-06-06 08:59:31', NULL, NULL),
(711, 'Admin Listing Records', 'MODULE_PAYMENT_MBOOKERS_GWAY_ADMIN_RECORDS', '20', 'Number of order records to display per page in Admin Listing.', 6, 240, NULL, '2012-06-06 08:59:31', 'zen_mb_gway_get_initial_key', 'zen_mb_gway_cfg_pull_down_keys('),
(712, 'Sort order of display.', 'MODULE_PAYMENT_MBOOKERS_GWAY_SORT_ORDER', '40', 'Sort order for display.<br />Modules with lower values are displayed first.', 6, 250, NULL, '2012-06-06 08:59:31', NULL, NULL),
(713, 'Maximum Display News Listing at sideox', 'MAX_DISPLAY_NEWS_SIDEBOX_LISTING', '11', 'Maximum Display News Listing at sideox<br />8 = Default', 3, 81, '2012-06-20 11:07:12', '2012-06-18 18:23:32', NULL, NULL),
(714, 'Maximum Display News Listing', 'MAX_DISPLAY_NEWS_LISTING', '9', 'Maximum Display News Listing<br />10 = Default', 3, 80, '2012-06-20 08:52:22', '2012-06-19 09:15:37', NULL, NULL),
(715, 'Banner image height', 'BANNER_IMAGE_WIDTH', '512px', 'set image width', 37, 49, '2012-11-15 11:32:31', '2012-06-19 09:26:27', NULL, NULL),
(716, 'Banner image width', 'BANNER_IMAGE_HEIGHT', '270px', 'set image height', 37, 49, '2012-11-15 11:32:24', '2012-06-19 09:26:27', NULL, NULL),
(717, 'Redefine Shipping Name', 'MODULE_SHIPPING_FREESHIPPER_REDEFINE_NAME', 'Free Shipping', 'Redefine Shipping Name.', 6, 0, NULL, '2012-09-19 15:54:54', NULL, NULL),
(718, 'Upload shipping image', 'MODULE_SHIPPING_FREESHIPPER_IMAGE_UPLOAD', '', 'Upload shipping image', 6, 0, NULL, '2012-09-19 15:54:54', NULL, 'zen_cfg_file_upload('),
(719, 'Enable Free Shipping', 'MODULE_SHIPPING_FREESHIPPER_STATUS', 'False', 'Do you want to offer Free shipping?', 6, 0, NULL, '2012-09-19 15:54:54', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(720, 'Free Shipping Cost', 'MODULE_SHIPPING_FREESHIPPER_COST', '0.00', 'What is the Shipping cost?', 6, 6, NULL, '2012-09-19 15:54:54', NULL, NULL),
(721, 'Handling Fee', 'MODULE_SHIPPING_FREESHIPPER_HANDLING', '0', 'Handling fee for this shipping method.', 6, 0, NULL, '2012-09-19 15:54:54', NULL, NULL),
(722, 'Tax Class', 'MODULE_SHIPPING_FREESHIPPER_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2012-09-19 15:54:54', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(723, 'Shipping Zone', 'MODULE_SHIPPING_FREESHIPPER_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2012-09-19 15:54:54', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(724, 'Sort Order', 'MODULE_SHIPPING_FREESHIPPER_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2012-09-19 15:54:54', NULL, NULL),
(725, 'Redefine Shipping Name', 'MODULE_SHIPPING_FREEOPTIONS_REDEFINE_NAME', 'Free Shipping Options', 'Redefine Shipping Name.', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(726, 'Upload shipping image', 'MODULE_SHIPPING_FREEOPTIONS_IMAGE_UPLOAD', '', 'Upload shipping image', 6, 0, NULL, '2012-09-19 15:54:59', NULL, 'zen_cfg_file_upload('),
(727, 'Enable Free Options Shipping', 'MODULE_SHIPPING_FREEOPTIONS_STATUS', 'False', 'Free Options is used to display a Free Shipping option when other Shipping Modules are displayed.\nIt can be based on: Always show, Order Total, Order Weight or Order Item Count.\nThe Free Options module does not show when Free Shipper is displayed.<br /><br />\nSetting Total to >= 0.00 and <= nothing (leave blank) will activate this module to show with all shipping modules, except for Free Shipping - freeshipper.<br /><br />\nNOTE: Leaving all settings for Total, Weight and Item count blank will deactivate this module.<br /><br />\nNOTE: Free Shipping Options does not display if Free Shipping is used based on 0 weight is Free Shipping.\nSee: freeshipper<br /><br />Do you want to offer per freeoptions rate shipping?', 6, 0, NULL, '2012-09-19 15:54:59', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(728, 'Shipping Cost', 'MODULE_SHIPPING_FREEOPTIONS_COST', '0.00', 'The shipping cost will be $0.00', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(729, 'Handling Fee', 'MODULE_SHIPPING_FREEOPTIONS_HANDLING', '0', 'Handling fee for this shipping method.', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(730, 'Total >=', 'MODULE_SHIPPING_FREEOPTIONS_TOTAL_MIN', '0.00', 'Free Shipping when Total >=', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(731, 'Total <=', 'MODULE_SHIPPING_FREEOPTIONS_TOTAL_MAX', '', 'Free Shipping when Total <=', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(732, 'Weight >=', 'MODULE_SHIPPING_FREEOPTIONS_WEIGHT_MIN', '', 'Free Shipping when Weight >=', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(733, 'Weight <=', 'MODULE_SHIPPING_FREEOPTIONS_WEIGHT_MAX', '', 'Free Shipping when Weight <=', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(734, 'Item Count >=', 'MODULE_SHIPPING_FREEOPTIONS_ITEMS_MIN', '', 'Free Shipping when Item Count >=', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(735, 'Item Count <=', 'MODULE_SHIPPING_FREEOPTIONS_ITEMS_MAX', '', 'Free Shipping when Item Count <=', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(736, 'Tax Class', 'MODULE_SHIPPING_FREEOPTIONS_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2012-09-19 15:54:59', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(737, 'Tax Basis', 'MODULE_SHIPPING_FREEOPTIONS_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 6, 0, NULL, '2012-09-19 15:54:59', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(738, 'Shipping Zone', 'MODULE_SHIPPING_FREEOPTIONS_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2012-09-19 15:54:59', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(739, 'Sort Order', 'MODULE_SHIPPING_FREEOPTIONS_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2012-09-19 15:54:59', NULL, NULL),
(740, 'Enable Newsletter-only subscriptions?', 'NEWSONLY_SUBSCRIPTION_ENABLED', 'true', 'Are visitors allowed to subscribe to your newsletter without creating a customer account?', 1, 200, NULL, '2012-09-19 17:28:17', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(741, 'News-only Subscriptions Version', 'NEWSONLY_SUBSCRIPTION_VERSION', '205', 'Are visitors allowed to subscribe to your newsletter without creating a customer account?', 0, 0, NULL, '2012-09-19 17:28:17', NULL, NULL),
(742, 'Show Newsletter-only subscription field in header?', 'NEWSONLY_SUBSCRIPTION_HEADER', 'false', 'Show subscribe link in header? Note: You must edit your custom template tpl_header.php file in order to use this. See readme that came with contribution.', 19, 200, NULL, '2012-09-19 17:28:17', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(743, 'Send Notice of Newsletter-only Subscriptions To - Status', 'NEWSONLY_SUBSCRIPTION_CC_STATUS', '0', 'Would you like to send a notice of new newsletter-only subscribers?<br />0=off, 1=on', 12, 200, NULL, '2012-09-19 17:28:17', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(744, 'Send Notice of Newsletter-only Subscriptions To', 'NEWSONLY_SUBSCRIPTION_CC', '', 'Send notice of newsletter-only subscriptions to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 201, NULL, '2012-09-19 17:28:17', NULL, NULL),
(745, 'Newsletter Test Group Email', 'NEWSONLY_SUBSCRIPTION_TEST_GROUP', '', 'Enter the email addresses of customers and newsletter-only subscribers that you wish to send test emails to.<br />Only valid subscriber/customer emails will work.', 12, 202, NULL, '2012-09-19 17:28:17', NULL, NULL),
(746, 'Include Shipping', 'MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING', 'true', 'Include Shipping in calculation', 6, 5, NULL, '2012-07-23 10:43:07', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(747, 'Include Tax', 'MODULE_ORDER_TOTAL_COUPON_INC_TAX', 'false', 'Include Tax in calculation.', 6, 6, NULL, '2012-07-23 10:43:07', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(748, 'Re-calculate Tax', 'MODULE_ORDER_TOTAL_COUPON_CALC_TAX', 'Standard', 'Re-Calculate Tax', 6, 7, NULL, '2012-07-23 10:43:07', NULL, 'zen_cfg_select_option(array(''None'', ''Standard'', ''Credit Note''), '),
(749, 'This module is installed', 'MODULE_ORDER_TOTAL_COUPON_STATUS', 'true', '', 6, 1, NULL, '2012-07-23 10:43:07', NULL, 'zen_cfg_select_option(array(''true''), '),
(750, 'Sort Order', 'MODULE_ORDER_TOTAL_COUPON_SORT_ORDER', '2000', 'Sort order of display.', 6, 2, NULL, '2012-07-23 10:43:07', NULL, NULL),
(751, '产品大图长度', 'PRODUCT_DETAILS_LARGE_WIDTH', '800', '', 4, 94, '2013-03-27 23:31:16', '2012-08-24 16:06:40', NULL, NULL),
(752, '产品大图高度', 'PRODUCT_DETAILS_LARGE_HEIGHT', '600', '', 4, 95, '2013-03-27 23:31:29', '2012-08-24 16:06:40', NULL, NULL),
(753, 'Debug Mode', 'MODULE_PAYMENT_PAYPAL_IPN_DEBUG', 'Log File', 'Enable debug logging? <br />NOTE: This can REALLY clutter your email inbox!<br />Logging goes to the /includes/modules/payment/paypal/logs folder<br />Email goes to the store-owner address.<br />Email option NOT recommended.<br /><strong>Leave OFF for normal operation.</strong>', 6, 71, NULL, '2012-07-31 15:25:02', NULL, 'zen_cfg_select_option(array(''Off'',''Log File'',''Log and Email''), '),
(754, 'Debug Email Address', 'MODULE_PAYMENT_PAYPAL_DEBUG_EMAIL_ADDRESS', 'testzz98@163.com', 'The email address to use for PayPal debugging', 6, 72, NULL, '2012-07-31 15:25:03', NULL, NULL),
(755, 'Body bottom custom code', 'BODY_BOTTOM_CUSTOM_CODE', '', 'You can add custom code in the body at the bottom of', 1, 4, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_textarea('),
(756, '产品小图长度', 'PRODUCT_DETAILS_SMALL_WIDTH', '64', '', 4, 90, '2012-11-24 09:59:03', '2012-08-24 16:06:40', NULL, NULL),
(757, '产品小图高度', 'PRODUCT_DETAILS_SMALL_HEIGHT', '48', '', 4, 91, '2013-03-27 23:33:16', '2012-08-24 16:06:40', NULL, NULL),
(758, '产品中图长度', 'PRODUCT_DETAILS_IMAGE_WIDTH', '240', '', 4, 92, '2012-11-24 10:00:38', '2012-08-24 16:06:40', NULL, NULL),
(759, '产品中图高度', 'PRODUCT_DETAILS_IMAGE_HEIGHT', '180', '', 4, 93, '2013-03-27 23:32:04', '2012-08-24 16:06:40', NULL, NULL),
(760, '显示编号', 'QUICKUPDATES_DISPLAY_ID', 'true', '打开/关闭显示商品编号', 39, 1, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(761, '显示缩略图。', 'QUICKUPDATES_DISPLAY_TRUMBNAIL', 'true', '打开/关闭显示商品缩略图', 39, 2, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),');
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(762, '修改型号', 'QUICKUPDATES_MODIFY_MODEL', 'true', '打开/关闭显示、修改商品型号', 39, 3, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(763, '修改名称', 'QUICKUPDATES_MODIFY_NAME', 'true', '打开/关闭修改商品名称', 39, 4, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(764, '修改说明', 'QUICKUPDATES_MODIFY_DESCRIPTION', 'true', '打开/根本显示、修改商品说明', 39, 5, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(765, '修改商品状态', 'QUICKUPDATES_MODIFY_STATUS', 'true', '打开/关闭显示、修改状态', 39, 6, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(766, '修改商品重量', 'QUICKUPDATES_MODIFY_WEIGHT', 'true', '打开/关闭显示、修改重量?', 39, 7, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(767, '修改商品数量', 'QUICKUPDATES_MODIFY_QUANTITY', 'true', '打开/关闭显示、修改数量', 39, 8, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(768, '修改商品厂家', 'QUICKUPDATES_MODIFY_MANUFACTURER', 'false', '打开/关闭显示、修改厂家', 39, 9, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(769, '修改商品税类', 'QUICKUPDATES_MODIFY_TAX', 'false', '打开/关闭显示、修改税类', 39, 10, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(770, '修改分类。', 'QUICKUPDATES_MODIFY_CATEGORY', 'true', '打开/关闭修改商品分类', 39, 11, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(771, '显示含税价格', 'QUICKUPDATES_DISPLAY_TVA_OVER', 'true', '鼠标指向商品时,打开/关闭显示含税价格', 39, 20, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(772, '显示到商品页面的链接', 'QUICKUPDATES_DISPLAY_PREVIEW', 'false', '打开/关闭显示到商品页面的链接', 39, 30, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(773, '显示用于修改商品的页面的链接', 'QUICKUPDATES_DISPLAY_EDIT', 'true', '打开/关闭显示用于修改商品的页面的链接', 39, 31, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(774, '是否启用利润功能', 'QUICKUPDATES_ACTIVATE_COMMERCIAL_MARGIN', 'true', '打开/关闭启用利润功能?', 39, 40, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(775, '修改排序', 'QUICKUPDATES_MODIFY_SORT_ORDER', 'true', '打开/关闭修改商品排序', 39, 11, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(776, '采用弹出窗口', 'QUICKUPDATES_MODIFY_DESCRIPTION_POPUP', 'true', '打开/关闭采用弹出链接修改说明', 39, 11, '2012-06-21 16:23:21', '2012-06-21 16:23:21', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(777, 'Featured Categories To List Per Row', 'MAX_DISPLAY_FEATURED_CATEGORIES_PER_ROW', '4', 'How many featured categories to list per row', 3, 13, NULL, '2012-06-27 18:40:28', NULL, NULL),
(778, 'Shop By Categories To List Per Row', 'MAX_DISPLAY_SHOP_BY_CATEGORIES_PER_ROW', '4', 'How many Shop by categories to list per row', 3, 13, NULL, '2012-06-27 18:40:28', NULL, NULL),
(779, 'Maximum Display Featured Categories', 'MAX_DISPLAY_FEATURED_CATEGORY', '8', 'Maximum Display Featured Categories', 3, 13, NULL, '2012-06-27 18:40:28', NULL, NULL),
(780, 'Maximum Display Shop By Categories', 'MAX_DISPLAY_SHOP_BY_CATEGORY', '12', 'Maximum Display Shop By Categories', 3, 13, NULL, '2012-06-27 18:40:28', NULL, NULL),
(781, 'Reset SEO URLs Cache', 'SEO_URLS_CACHE_RESET', 'false', 'This will reset the cache data for SEO', 40, 15, '2012-06-28 09:27:19', '2012-06-28 09:27:19', 'zen_reset_cache_data_seo_urls', 'zen_cfg_select_option(array(''reset'', ''false''),'),
(782, 'Maximum Display Recently Viewed for Sidebox', 'MAX_DISPLAY_RECENTLY_VIEWED_SIDEBOX', '5', 'Display the maximum number of recent browsing\r\n\r\n', 3, 82, '2012-07-05 18:20:38', '0001-01-01 00:00:00', NULL, NULL),
(783, 'Maximum Display Recently Viewed Time for Sidebox', 'MAX_DISPLAY_RECENTLY_VIEWED_TIME_SIDEBOX', '18000', 'Display the maximum time of recent browsing ', 3, 83, NULL, '0001-01-01 00:00:00', NULL, NULL),
(784, 'twitter button', 'PRODUCT_INFO_TWITTER', '0', 'twitter button on product info page', 18, 1, '2012-08-02 15:31:27', '2012-07-17 09:12:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(785, 'facebook button', 'PRODUCT_INFO_FACEBOOK', '0', 'facebook button on product info page', 18, 1, '2012-08-02 15:31:23', '2012-07-17 09:12:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(786, 'google plus button', 'PRODUCT_INFO_GOOGLE_PLUS', '1', 'google plus button on product info page', 18, 1, '2012-08-01 11:01:51', '2012-07-17 09:12:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(787, 'Reviews tab', 'PRODUCT_INFO_REVIEWS_TAB', '1', 'enable reviews tab on product info page', 18, 1, '2012-07-17 09:13:09', '2012-07-17 09:12:47', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(788, 'Custom Share Button', 'PRODUCT_INFO_CUSTOM_SHARE_BuTTON', 'you share on admin', 'Add Custom Share Button', 18, 1, '2012-08-01 17:37:06', '2012-07-17 09:12:47', NULL, 'zen_cfg_textarea('),
(789, 'Enable ALIPAY Module', 'MODULE_PAYMENT_ALIPAY_STATUS', 'True', 'Do you want to accept ALIPAY payments?', 6, 0, NULL, '2012-07-17 16:10:42', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(790, 'ALIPAY E-Mail', 'MODULE_PAYMENT_ALIPAY_SELLER', 'qqrola@139.com', 'ALIPAY E-Mail', 6, 2, NULL, '2012-07-17 16:10:42', NULL, NULL),
(791, 'ALIPAY MD5 key', 'MODULE_PAYMENT_ALIPAY_MD5KEY', '19mi7b7rxy9p8knyxm5eh4gp49kkaixc', 'ALIPAY MD5 key', 6, 4, NULL, '2012-07-17 16:10:42', NULL, NULL),
(792, 'ALIPAY Partner ID', 'MODULE_PAYMENT_ALIPAY_PARTNER', '2088002735338018', 'ALIPAY Partner ID', 6, 5, NULL, '2012-07-17 16:10:42', NULL, NULL),
(793, 'Payment Zone', 'MODULE_PAYMENT_ALIPAY_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 6, NULL, '2012-07-17 16:10:42', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(794, 'Set Order Status', 'MODULE_PAYMENT_ALIPAY_PROCESSING_STATUS_ID', '2', 'Set the status of orders made with this payment module that have completed payment to this value<br />(Processing recommended)', 6, 8, NULL, '2012-07-17 16:10:42', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(795, 'Set Pending Notification Status', 'MODULE_PAYMENT_ALIPAY_ORDER_STATUS_ID', '1', 'Set the status of orders made with this payment module to this value<br />(Pending recommended)', 6, 10, NULL, '2012-07-17 16:10:42', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(796, 'Sort order of display', 'MODULE_PAYMENT_ALIPAY_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 12, NULL, '2012-07-17 16:10:42', NULL, NULL),
(797, 'ALIPAY transaction URL<br />Default: <code>https://www.alipay.com/cooperate/gateway.do?_input_charset=utf-8</code><br />', 'MODULE_PAYMENT_ALIPAY_HANDLER', 'https://www.alipay.com/cooperate/gateway.do?_input_charset=utf-8', 'ALIPAY transaction URL', 6, 18, NULL, '2012-07-17 16:10:42', NULL, ''),
(798, 'This module is installed', 'MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_STATUS', 'true', '', 6, 1, NULL, '2012-07-23 11:17:33', NULL, 'zen_cfg_select_option(array(''true''), '),
(799, 'Cache default expire time', 'SIMPLE_CACHE_DEFAULT_TIME', '900', 'Set the default cache time in seconds', 41, 1, '2012-07-23 11:57:58', '2012-07-23 11:57:58', NULL, NULL),
(800, 'GZIP level', 'SIMPLE_CACHE_GZIP_LEVEL', '0', '0 means no gzip, and 9 is the maxiumum level. The higher the level is, the slower it will take to do the compressing and the more load it will put on the CPU', 41, 1, '2012-07-23 11:57:58', '2012-07-23 11:57:58', NULL, NULL),
(801, 'Tax Class', 'MODULE_ORDER_TOTAL_COUPON_TAX_CLASS', '0', 'Use the following tax class when treating Discount Coupon as Credit Note.', 6, 0, NULL, '2012-07-23 10:43:07', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(802, 'Discount Table', 'MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_TABLE', '5:5000,10:10000,15:15000,20:20000,30:30000,40:40000', 'Table of discounts and required Reward Points.', 6, 4, NULL, '2012-07-23 11:17:33', 'UseRewardPointDiscountTableFunction', 'SetRewardPointDiscountTableFunction('),
(803, 'Sort Order', 'MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_SORT_ORDER', '900', 'Sort order of display.', 6, 2, NULL, '2012-07-23 11:17:33', NULL, NULL),
(804, 'Discount Type', 'MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_TYPE', '0', 'Select the type of discount:', 6, 3, NULL, '2012-07-23 11:17:33', 'UseRewardPointDiscountTypeFunction', 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Percentage discount''), array(''id''=>''1'', ''text''=>''Cash discount'')), '),
(805, 'Custom Live Help', 'LIVE_HELP_CUSTOM_ITEMS', '<script type="text/javascript" src="https://mylivechat.com/chatwidget.aspx?hccid=43624259&WidgetStartPos=middleright&WidgetPosition=middleright"></script>', 'Paste Your Code Here', 27, 12, '2012-07-31 14:29:36', '2012-07-31 14:29:36', NULL, 'zen_cfg_textarea('),
(806, 'Facebook地址', 'JOC_FACEBOOK', 'http://www.facebook.com/mazentop', 'Facebook链接地址', 42, 1, '2012-12-11 16:56:16', '0001-01-01 00:00:00', NULL, NULL),
(807, 'Twitter地址', 'JOC_TWITTER', '###', 'Twitter地址', 42, NULL, '2012-12-11 17:08:24', '0001-01-01 00:00:00', NULL, NULL),
(808, 'Pinterest地址', 'JOC_PINTEREST', '###', 'Pinterest地址', 42, NULL, '2012-12-11 17:08:56', '0001-01-01 00:00:00', NULL, NULL),
(809, '博客地址', 'JOC_BLOG', '###', '博客地址', 42, NULL, '2012-12-11 17:08:19', '0001-01-01 00:00:00', NULL, NULL),
(810, 'YouTube地址', 'JOC_YOUTUBE', '###', 'YouTube地址', 42, NULL, '2012-12-11 17:08:13', '0001-01-01 00:00:00', NULL, NULL),
(811, 'Redefine Shipping Name', 'MODULE_SHIPPING_EMSZONES_REDEFINE_NAME', 'EMS Rates', 'Redefine Shipping Name.', 6, 0, NULL, '2013-03-28 00:26:01', NULL, NULL),
(812, 'Upload shipping image', 'MODULE_SHIPPING_EMSZONES_IMAGE_UPLOAD', '', 'Upload shipping image', 6, 0, NULL, '2013-03-28 00:26:01', NULL, 'zen_cfg_file_upload('),
(813, 'Enable EMS Method', 'MODULE_SHIPPING_EMSZONES_STATUS', 'False', 'Do you want to offer EMS shipping?', 6, 0, NULL, '2013-03-28 00:26:01', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(814, 'Calculation Method', 'MODULE_SHIPPING_EMSZONES_METHOD', 'Weight', 'Calculate cost based on Weight, Price or Item?', 6, 0, NULL, '2013-03-28 00:26:01', NULL, 'zen_cfg_select_option(array(''Weight'', ''Price'', ''Item''), '),
(815, 'Tax Class', 'MODULE_SHIPPING_EMSZONES_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2013-03-28 00:26:01', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(816, 'Tax Basis', 'MODULE_SHIPPING_EMSZONES_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 6, 0, NULL, '2013-03-28 00:26:01', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(817, 'Sort Order', 'MODULE_SHIPPING_EMSZONES_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2013-03-28 00:26:01', NULL, NULL),
(818, 'Skip Countries, use a comma separated list of the two character ISO country codes', 'MODULE_SHIPPING_EMSZONES_SKIPPED', '', 'Disable for the following Countries:', 6, 0, NULL, '2013-03-28 00:26:01', NULL, 'zen_cfg_textarea('),
(819, '头部logo宽度', 'HEADER_LOGO_WIDTH', '131px', '头部LOGO的宽度', 4, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(820, '头部logo的高度', 'HEADER_LOGO_HEIGHT', '37px', '头部LOGO的高度', 4, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(821, '首页按类购买导航每行最大值', 'MAX_HOME_SHOP_BY_CATEGORIES_PER_ROW', '4', '首页按类购买导航每行最大值', 3, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(822, '首页按类购买导航总数最大值', 'MAX_HOME_SHOP_BY_CATEGORIES_TOTAL', '12', '首页按类购买导航总数最大值', 3, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(823, '首页按类导航每类最大深度', 'MAX_HOME_SHOP_BY_CATEGORIES_DEPTH', '5', '首页按类导航每类中包含最多的子类数', 3, NULL, '2013-06-07 21:35:15', '0001-01-01 00:00:00', NULL, NULL),
(824, '首页按类购买默认图片', 'HOME_SHOW_BY_CATEGORIES_DEFAULT_IMAGE', 'peishi.jpg', '首页按类购买默认图片,类别没有图片时,指定该图片', 4, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(825, '首页特殊商品最大显示数', 'MAX_HOME_SHOW_PRODUCTS_TOTAL', '10', '首页显示的特殊商品模块最大总数', 3, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(826, '首页特殊商品每行最大值', 'MAX_HOME_SHOW_PRODUCTS_PER_ROW', '5', '首页特殊商品每行最大值', 3, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(827, '类目首页最热销商品数', 'MAX_DISPLAY_CATEGORIES_BEST_SELLERS', '5', '类目首页显示的最热卖商品数', 3, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(828, '产品类目页特殊商品每行最大值', 'MAX_CATEGORIES_DISPLAY_PER_ROW', '5', '产品类目页特殊商品每行最大值', 3, NULL, NULL, '0001-01-01 00:00:00', NULL, NULL),
(829, 'Uploads Directory', 'EASYPOPULATE_4_CONFIG_TEMP_DIR', 'temp/', 'Name of directory for your uploads (default: temp/).', 44, 0, NULL, '2013-06-18 08:17:05', NULL, NULL),
(830, 'Upload File Date Format', 'EASYPOPULATE_4_CONFIG_FILE_DATE_FORMAT', 'm-d-y', 'Choose order of date values that corresponds to your uploads file, usually generated by MS Excel. Raw dates in your uploads file (Eg 2005-09-26 09:00:00) are not affected, and will upload as they are.', 44, 1, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("m-d-y", "d-m-y", "y-m-d"),'),
(831, 'Default Raw Time', 'EASYPOPULATE_4_CONFIG_DEFAULT_RAW_TIME', '09:00:00', 'If no time value stipulated in upload file, use this value. Useful for ensuring specials begin after a specific time of the day (default: 09:00:00)', 44, 2, NULL, '2013-06-18 08:17:05', NULL, NULL),
(832, 'Upload/Download Prices Include Tax', 'EASYPOPULATE_4_CONFIG_PRICE_INC_TAX', 'false', 'Choose to include or exclude tax, depending on how you manage prices outside of Zen Cart.', 44, 5, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(833, 'Verbose Feedback', 'EASYPOPULATE_4_CONFIG_VERBOSE', 'true', 'When importing, report all messages. Set to false for only warnings and errors. (default: true).', 44, 6, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(834, 'Make Zero Qty Products Inactive', 'EASYPOPULATE_4_CONFIG_ZERO_QTY_INACTIVE', 'false', 'When uploading, make the status Inactive for products with zero qty (default: false).', 44, 7, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(835, 'Smart Tags Replacement of Newlines', 'EASYPOPULATE_4_CONFIG_SMART_TAGS', 'true', 'Allows your description fields in your uploads file to have carriage returns and/or new-lines converted to HTML line-breaks on uploading, thus preserving some rudimentary formatting - Note: this legacy code is disabled until further review. (default: true).', 44, 8, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(836, 'Advanced Smart Tags', 'EASYPOPULATE_4_CONFIG_ADV_SMART_TAGS', 'false', 'Allow the use of complex regular expressions to format descriptions, making headings bold, add bullets, etc. Note: legacy code is disabled until further review. (default: false).', 44, 9, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(837, 'Debug Logging', 'EASYPOPULATE_4_CONFIG_DEBUG_LOGGING', 'true', 'Allow Easy Populate to generate an error log on errors only (default: true)', 44, 10, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("true", "false"),'),
(838, 'Maximum Quantity Discounts', 'EASYPOPULATE_4_CONFIG_MAX_QTY_DISCOUNTS', '3', 'Maximum number of quantity discounts (price breaks). Is the number of discount columns in downloaded file (default: 3).', 44, 11, NULL, '2013-06-18 08:17:05', NULL, NULL),
(839, 'Split On Number of Records', 'EASYPOPULATE_4_CONFIG_SPLIT_RECORDS', '2000', 'Number of records to split csv files. Used to break large import files into smaller files. Useful on servers with limited resourses. (default: 2000).', 44, 12, NULL, '2013-06-18 08:17:05', NULL, NULL),
(840, 'Script Execution Time', 'EASYPOPULATE_4_CONFIG_EXECUTION_TIME', '60', 'Number of seconds for script to run before timeout. May not work on some servers. (default: 60).', 44, 13, NULL, '2013-06-18 08:17:05', NULL, NULL),
(841, 'Convert Curly Quotes, etc.', 'EASYPOPULATE_4_CONFIG_CURLY_QUOTES', '0', 'Convert Curly Quotes, Em-Dash, En-Dash and Ellipsis characters in Products Description (default 0).<br><br>0=No Change<br>1=Replace with Basic Characters<br>3=Replace with HMTL equivalants', 44, 14, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("0", "1", "2"),'),
(842, 'Convert Character 0x92', 'EASYPOPULATE_4_CONFIG_CHAR_92', '1', 'Convert Character 0x92 characters in Product Names &amp; Descriptions (default 1).<br><br>0=No Change<br>1=Replace with Standard Single Quote<br>2=Replace with HMTL equivalant', 44, 15, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("0", "1", "2"),'),
(843, 'Enable Products Meta Data', 'EASYPOPULATE_4_CONFIG_META_DATA', '1', 'Enable Products Meta Data Columns (default 1).<br><br>0=Disable<br>1=Enable', 44, 16, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("0", "1"),'),
(844, 'Enable Products Music Data', 'EASYPOPULATE_4_CONFIG_MUSIC_DATA', '0', 'Enable Products Music Data Columns (default 0).<br><br>0=Disable<br>1=Enable', 44, 17, NULL, '2013-06-18 08:17:05', NULL, 'zen_cfg_select_option(array("0", "1"),'),
(845, 'User Defined Products Fields', 'EASYPOPULATE_4_CONFIG_CUSTOM_FIELDS', '', 'User Defined Products Table Fields (comma delimited, no spaces)', 44, 18, NULL, '2013-06-18 08:17:05', NULL, NULL);
-- --------------------------------------------------------
--
-- 表的结构 `configuration_group`
--
CREATE TABLE IF NOT EXISTS `configuration_group` (
`configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
`configuration_group_title` varchar(64) NOT NULL DEFAULT '',
`configuration_group_description` varchar(255) NOT NULL DEFAULT '',
`sort_order` int(5) DEFAULT NULL,
`visible` int(1) DEFAULT '1',
PRIMARY KEY (`configuration_group_id`),
KEY `idx_visible_zen` (`visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=751 ;
--
-- 转存表中的数据 `configuration_group`
--
INSERT INTO `configuration_group` (`configuration_group_id`, `configuration_group_title`, `configuration_group_description`, `sort_order`, `visible`) VALUES
(1, 'My Store', 'General information about my store', 1, 1),
(2, 'Minimum Values', 'The minimum values for functions / data', 2, 1),
(3, 'Maximum Values', 'The maximum values for functions / data', 3, 1),
(4, 'Images', 'Image parameters', 4, 1),
(5, 'Customer Details', 'Customer account configuration', 5, 1),
(6, 'Module Options', 'Hidden from configuration', 6, 0),
(7, 'Shipping/Packaging', 'Shipping options available at my store', 7, 1),
(8, 'Product Listing', 'Product Listing configuration options', 8, 1),
(9, 'Stock', 'Stock configuration options', 9, 1),
(10, 'Logging', 'Logging configuration options', 10, 1),
(11, 'Regulations', 'Regulation options', 16, 1),
(12, 'E-Mail Options', 'General settings for E-Mail transport and HTML E-Mails', 12, 1),
(13, 'Attribute Settings', 'Configure products attributes settings', 13, 1),
(14, 'GZip Compression', 'GZip compression options', 14, 1),
(15, 'Sessions', 'Session options', 15, 1),
(16, 'GV Coupons', 'Gift Vouchers and Coupons', 16, 1),
(17, 'Credit Cards', 'Credit Cards Accepted', 17, 1),
(18, 'Product Info', 'Product Info Display Options', 18, 1),
(19, 'Layout Settings', 'Layout Options', 19, 1),
(20, 'Website Maintenance', 'Website Maintenance Options', 20, 1),
(21, 'New Listing', 'New Products Listing', 21, 1),
(22, 'Featured Listing', 'Featured Products Listing', 22, 1),
(23, 'All Listing', 'All Products Listing', 23, 1),
(24, 'Index Listing', 'Index Products Listing', 24, 1),
(25, 'Define Page Status', 'Define Main Pages and HTMLArea Options', 25, 1),
(26, 'EZ-Pages Settings', 'EZ-Pages Settings', 30, 1),
(27, 'Live Help Configuration', 'Set Live Help Options', 32, 1),
(28, 'Links Manager', 'Links Display Settings', 33, 1),
(29, 'Wishlists', 'Set Wishlists Options', 34, 1),
(30, 'FAQ Manager - Categories Box', 'FAQ Manager Categories Box Settings', 35, 1),
(31, 'FAQ Manager - FAQ Info Page', 'FAQ Manager FAQ Info Page Settings', 36, 1),
(32, 'FAQ Manager - FAQ Listing', 'FAQ Manager FAQ Listing Settings', 37, 1),
(33, 'FAQ Manager - New FAQs Page', 'FAQ Manager New FAQs Page Settings', 38, 0),
(34, 'FAQ Manager - All FAQs Page', 'FAQ Manager All FAQs Page Settings', 39, 1),
(35, 'FAQ Manager - General Config', 'FAQ Manager General Config Settings', 40, 1),
(36, 'Reward Points', 'Reward Point Module Configuration', 43, 1),
(37, 'Main Banner Settings', 'Main Page Banner Settings', 49, 1),
(38, 'Product Compare Settings', 'Product Compare Settings', 50, 1),
(39, '快速更新', '设置快速更新选项', 52, 1),
(40, 'SEO URLs', 'Options for Ultimate SEO URLs by Chemo', 745, 1),
(41, 'Simple Cache', 'Set Simple Cache Options', 746, 1),
(42, 'Join our community Settings', 'Join our community Settings', 747, 1),
(43, 'categories control', '有关类别的管理', NULL, 1),
(44, 'Easy Populate 4', 'Configuration Options for Easy Populate 4', 750, 1);
-- --------------------------------------------------------
--
-- 表的结构 `counter`
--
CREATE TABLE IF NOT EXISTS `counter` (
`startdate` char(8) DEFAULT NULL,
`counter` int(12) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `counter`
--
INSERT INTO `counter` (`startdate`, `counter`) VALUES
('20130618', 1);
-- --------------------------------------------------------
--
-- 表的结构 `counter_history`
--
CREATE TABLE IF NOT EXISTS `counter_history` (
`startdate` char(8) NOT NULL DEFAULT '',
`counter` int(12) DEFAULT NULL,
`session_counter` int(12) DEFAULT NULL,
PRIMARY KEY (`startdate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `counter_history`
--
INSERT INTO `counter_history` (`startdate`, `counter`, `session_counter`) VALUES
('20130618', 1, 1);
-- --------------------------------------------------------
--
-- 表的结构 `countries`
--
CREATE TABLE IF NOT EXISTS `countries` (
`countries_id` int(11) NOT NULL AUTO_INCREMENT,
`countries_name` varchar(64) NOT NULL DEFAULT '',
`countries_iso_code_2` char(2) NOT NULL DEFAULT '',
`countries_iso_code_3` char(3) NOT NULL DEFAULT '',
`address_format_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`countries_id`),
KEY `idx_countries_name_zen` (`countries_name`),
KEY `idx_address_format_id_zen` (`address_format_id`),
KEY `idx_iso_2_zen` (`countries_iso_code_2`),
KEY `idx_iso_3_zen` (`countries_iso_code_3`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=246 ;
--
-- 转存表中的数据 `countries`
--
INSERT INTO `countries` (`countries_id`, `countries_name`, `countries_iso_code_2`, `countries_iso_code_3`, `address_format_id`) VALUES
(240, 'Aaland Islands', 'AX', 'ALA', 1),
(1, 'Afghanistan', 'AF', 'AFG', 1),
(2, 'Albania', 'AL', 'ALB', 1),
(3, 'Algeria', 'DZ', 'DZA', 1),
(4, 'American Samoa', 'AS', 'ASM', 1),
(5, 'Andorra', 'AD', 'AND', 1),
(6, 'Angola', 'AO', 'AGO', 1),
(7, 'Anguilla', 'AI', 'AIA', 1),
(8, 'Antarctica', 'AQ', 'ATA', 1),
(9, 'Antigua and Barbuda', 'AG', 'ATG', 1),
(10, 'Argentina', 'AR', 'ARG', 1),
(11, 'Armenia', 'AM', 'ARM', 1),
(12, 'Aruba', 'AW', 'ABW', 1),
(13, 'Australia', 'AU', 'AUS', 1),
(14, 'Austria', 'AT', 'AUT', 5),
(15, 'Azerbaijan', 'AZ', 'AZE', 1),
(16, 'Bahamas', 'BS', 'BHS', 1),
(17, 'Bahrain', 'BH', 'BHR', 1),
(18, 'Bangladesh', 'BD', 'BGD', 1),
(19, 'Barbados', 'BB', 'BRB', 1),
(20, 'Belarus', 'BY', 'BLR', 1),
(21, 'Belgium', 'BE', 'BEL', 1),
(22, 'Belize', 'BZ', 'BLZ', 1),
(23, 'Benin', 'BJ', 'BEN', 1),
(24, 'Bermuda', 'BM', 'BMU', 1),
(25, 'Bhutan', 'BT', 'BTN', 1),
(26, 'Bolivia', 'BO', 'BOL', 1),
(27, 'Bosnia and Herzegowina', 'BA', 'BIH', 1),
(28, 'Botswana', 'BW', 'BWA', 1),
(29, 'Bouvet Island', 'BV', 'BVT', 1),
(30, 'Brazil', 'BR', 'BRA', 1),
(31, 'British Indian Ocean Territory', 'IO', 'IOT', 1),
(32, 'Brunei Darussalam', 'BN', 'BRN', 1),
(33, 'Bulgaria', 'BG', 'BGR', 1),
(34, 'Burkina Faso', 'BF', 'BFA', 1),
(35, 'Burundi', 'BI', 'BDI', 1),
(36, 'Cambodia', 'KH', 'KHM', 1),
(37, 'Cameroon', 'CM', 'CMR', 1),
(38, 'Canada', 'CA', 'CAN', 2),
(39, 'Cape Verde', 'CV', 'CPV', 1),
(40, 'Cayman Islands', 'KY', 'CYM', 1),
(41, 'Central African Republic', 'CF', 'CAF', 1),
(42, 'Chad', 'TD', 'TCD', 1),
(43, 'Chile', 'CL', 'CHL', 1),
(44, 'China', 'CN', 'CHN', 1),
(45, 'Christmas Island', 'CX', 'CXR', 1),
(46, 'Cocos (Keeling) Islands', 'CC', 'CCK', 1),
(47, 'Colombia', 'CO', 'COL', 1),
(48, 'Comoros', 'KM', 'COM', 1),
(49, 'Congo', 'CG', 'COG', 1),
(50, 'Cook Islands', 'CK', 'COK', 1),
(51, 'Costa Rica', 'CR', 'CRI', 1),
(52, 'Cote D''Ivoire', 'CI', 'CIV', 1),
(53, 'Croatia', 'HR', 'HRV', 1),
(54, 'Cuba', 'CU', 'CUB', 1),
(55, 'Cyprus', 'CY', 'CYP', 1),
(56, 'Czech Republic', 'CZ', 'CZE', 1),
(57, 'Denmark', 'DK', 'DNK', 1),
(58, 'Djibouti', 'DJ', 'DJI', 1),
(59, 'Dominica', 'DM', 'DMA', 1),
(60, 'Dominican Republic', 'DO', 'DOM', 1),
(61, 'Timor-Leste', 'TL', 'TLS', 1),
(62, 'Ecuador', 'EC', 'ECU', 1),
(63, 'Egypt', 'EG', 'EGY', 1),
(64, 'El Salvador', 'SV', 'SLV', 1),
(65, 'Equatorial Guinea', 'GQ', 'GNQ', 1),
(66, 'Eritrea', 'ER', 'ERI', 1),
(67, 'Estonia', 'EE', 'EST', 1),
(68, 'Ethiopia', 'ET', 'ETH', 1),
(69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', 1),
(70, 'Faroe Islands', 'FO', 'FRO', 1),
(71, 'Fiji', 'FJ', 'FJI', 1),
(72, 'Finland', 'FI', 'FIN', 1),
(73, 'France', 'FR', 'FRA', 1),
(75, 'French Guiana', 'GF', 'GUF', 1),
(76, 'French Polynesia', 'PF', 'PYF', 1),
(77, 'French Southern Territories', 'TF', 'ATF', 1),
(78, 'Gabon', 'GA', 'GAB', 1),
(79, 'Gambia', 'GM', 'GMB', 1),
(80, 'Georgia', 'GE', 'GEO', 1),
(81, 'Germany', 'DE', 'DEU', 5),
(82, 'Ghana', 'GH', 'GHA', 1),
(83, 'Gibraltar', 'GI', 'GIB', 1),
(84, 'Greece', 'GR', 'GRC', 1),
(85, 'Greenland', 'GL', 'GRL', 1),
(86, 'Grenada', 'GD', 'GRD', 1),
(87, 'Guadeloupe', 'GP', 'GLP', 1),
(88, 'Guam', 'GU', 'GUM', 1),
(89, 'Guatemala', 'GT', 'GTM', 1),
(90, 'Guinea', 'GN', 'GIN', 1),
(91, 'Guinea-bissau', 'GW', 'GNB', 1),
(92, 'Guyana', 'GY', 'GUY', 1),
(93, 'Haiti', 'HT', 'HTI', 1),
(94, 'Heard and Mc Donald Islands', 'HM', 'HMD', 1),
(95, 'Honduras', 'HN', 'HND', 1),
(96, 'Hong Kong', 'HK', 'HKG', 1),
(97, 'Hungary', 'HU', 'HUN', 1),
(98, 'Iceland', 'IS', 'ISL', 1),
(99, 'India', 'IN', 'IND', 1),
(100, 'Indonesia', 'ID', 'IDN', 1),
(101, 'Iran (Islamic Republic of)', 'IR', 'IRN', 1),
(102, 'Iraq', 'IQ', 'IRQ', 1),
(103, 'Ireland', 'IE', 'IRL', 1),
(104, 'Israel', 'IL', 'ISR', 1),
(105, 'Italy', 'IT', 'ITA', 1),
(106, 'Jamaica', 'JM', 'JAM', 1),
(107, 'Japan', 'JP', 'JPN', 1),
(108, 'Jordan', 'JO', 'JOR', 1),
(109, 'Kazakhstan', 'KZ', 'KAZ', 1),
(110, 'Kenya', 'KE', 'KEN', 1),
(111, 'Kiribati', 'KI', 'KIR', 1),
(112, 'Korea, Democratic People''s Republic of', 'KP', 'PRK', 1),
(113, 'Korea, Republic of', 'KR', 'KOR', 1),
(114, 'Kuwait', 'KW', 'KWT', 1),
(115, 'Kyrgyzstan', 'KG', 'KGZ', 1),
(116, 'Lao People''s Democratic Republic', 'LA', 'LAO', 1),
(117, 'Latvia', 'LV', 'LVA', 1),
(118, 'Lebanon', 'LB', 'LBN', 1),
(119, 'Lesotho', 'LS', 'LSO', 1),
(120, 'Liberia', 'LR', 'LBR', 1),
(121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', 1),
(122, 'Liechtenstein', 'LI', 'LIE', 1),
(123, 'Lithuania', 'LT', 'LTU', 1),
(124, 'Luxembourg', 'LU', 'LUX', 1),
(125, 'Macao', 'MO', 'MAC', 1),
(126, 'Macedonia, The Former Yugoslav Republic of', 'MK', 'MKD', 1),
(127, 'Madagascar', 'MG', 'MDG', 1),
(128, 'Malawi', 'MW', 'MWI', 1),
(129, 'Malaysia', 'MY', 'MYS', 1),
(130, 'Maldives', 'MV', 'MDV', 1),
(131, 'Mali', 'ML', 'MLI', 1),
(132, 'Malta', 'MT', 'MLT', 1),
(133, 'Marshall Islands', 'MH', 'MHL', 1),
(134, 'Martinique', 'MQ', 'MTQ', 1),
(135, 'Mauritania', 'MR', 'MRT', 1),
(136, 'Mauritius', 'MU', 'MUS', 1),
(137, 'Mayotte', 'YT', 'MYT', 1),
(138, 'Mexico', 'MX', 'MEX', 1),
(139, 'Micronesia, Federated States of', 'FM', 'FSM', 1),
(140, 'Moldova', 'MD', 'MDA', 1),
(141, 'Monaco', 'MC', 'MCO', 1),
(142, 'Mongolia', 'MN', 'MNG', 1),
(143, 'Montserrat', 'MS', 'MSR', 1),
(144, 'Morocco', 'MA', 'MAR', 1),
(145, 'Mozambique', 'MZ', 'MOZ', 1),
(146, 'Myanmar', 'MM', 'MMR', 1),
(147, 'Namibia', 'NA', 'NAM', 1),
(148, 'Nauru', 'NR', 'NRU', 1),
(149, 'Nepal', 'NP', 'NPL', 1),
(150, 'Netherlands', 'NL', 'NLD', 1),
(151, 'Netherlands Antilles', 'AN', 'ANT', 1),
(152, 'New Caledonia', 'NC', 'NCL', 1),
(153, 'New Zealand', 'NZ', 'NZL', 1),
(154, 'Nicaragua', 'NI', 'NIC', 1),
(155, 'Niger', 'NE', 'NER', 1),
(156, 'Nigeria', 'NG', 'NGA', 1),
(157, 'Niue', 'NU', 'NIU', 1),
(158, 'Norfolk Island', 'NF', 'NFK', 1),
(159, 'Northern Mariana Islands', 'MP', 'MNP', 1),
(160, 'Norway', 'NO', 'NOR', 1),
(161, 'Oman', 'OM', 'OMN', 1),
(162, 'Pakistan', 'PK', 'PAK', 1),
(163, 'Palau', 'PW', 'PLW', 1),
(164, 'Panama', 'PA', 'PAN', 1),
(165, 'Papua New Guinea', 'PG', 'PNG', 1),
(166, 'Paraguay', 'PY', 'PRY', 1),
(167, 'Peru', 'PE', 'PER', 1),
(168, 'Philippines', 'PH', 'PHL', 1),
(169, 'Pitcairn', 'PN', 'PCN', 1),
(170, 'Poland', 'PL', 'POL', 1),
(171, 'Portugal', 'PT', 'PRT', 1),
(172, 'Puerto Rico', 'PR', 'PRI', 1),
(173, 'Qatar', 'QA', 'QAT', 1),
(174, 'Reunion', 'RE', 'REU', 1),
(175, 'Romania', 'RO', 'ROU', 1),
(176, 'Russian Federation', 'RU', 'RUS', 1),
(177, 'Rwanda', 'RW', 'RWA', 1),
(178, 'Saint Kitts and Nevis', 'KN', 'KNA', 1),
(179, 'Saint Lucia', 'LC', 'LCA', 1),
(180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', 1),
(181, 'Samoa', 'WS', 'WSM', 1),
(182, 'San Marino', 'SM', 'SMR', 1),
(183, 'Sao Tome and Principe', 'ST', 'STP', 1),
(184, 'Saudi Arabia', 'SA', 'SAU', 1),
(185, 'Senegal', 'SN', 'SEN', 1),
(186, 'Seychelles', 'SC', 'SYC', 1),
(187, 'Sierra Leone', 'SL', 'SLE', 1),
(188, 'Singapore', 'SG', 'SGP', 4),
(189, 'Slovakia (Slovak Republic)', 'SK', 'SVK', 1),
(190, 'Slovenia', 'SI', 'SVN', 1),
(191, 'Solomon Islands', 'SB', 'SLB', 1),
(192, 'Somalia', 'SO', 'SOM', 1),
(193, 'South Africa', 'ZA', 'ZAF', 1),
(194, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', 1),
(195, 'Spain', 'ES', 'ESP', 3),
(196, 'Sri Lanka', 'LK', 'LKA', 1),
(197, 'St. Helena', 'SH', 'SHN', 1),
(198, 'St. Pierre and Miquelon', 'PM', 'SPM', 1),
(199, 'Sudan', 'SD', 'SDN', 1),
(200, 'Suriname', 'SR', 'SUR', 1),
(201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', 1),
(202, 'Swaziland', 'SZ', 'SWZ', 1),
(203, 'Sweden', 'SE', 'SWE', 1),
(204, 'Switzerland', 'CH', 'CHE', 1),
(205, 'Syrian Arab Republic', 'SY', 'SYR', 1),
(206, 'Taiwan', 'TW', 'TWN', 1),
(207, 'Tajikistan', 'TJ', 'TJK', 1),
(208, 'Tanzania, United Republic of', 'TZ', 'TZA', 1),
(209, 'Thailand', 'TH', 'THA', 1),
(210, 'Togo', 'TG', 'TGO', 1),
(211, 'Tokelau', 'TK', 'TKL', 1),
(212, 'Tonga', 'TO', 'TON', 1),
(213, 'Trinidad and Tobago', 'TT', 'TTO', 1),
(214, 'Tunisia', 'TN', 'TUN', 1),
(215, 'Turkey', 'TR', 'TUR', 1),
(216, 'Turkmenistan', 'TM', 'TKM', 1),
(217, 'Turks and Caicos Islands', 'TC', 'TCA', 1),
(218, 'Tuvalu', 'TV', 'TUV', 1),
(219, 'Uganda', 'UG', 'UGA', 1),
(220, 'Ukraine', 'UA', 'UKR', 1),
(221, 'United Arab Emirates', 'AE', 'ARE', 1),
(222, 'United Kingdom', 'GB', 'GBR', 6),
(223, 'United States', 'US', 'USA', 2),
(224, 'United States Minor Outlying Islands', 'UM', 'UMI', 1),
(225, 'Uruguay', 'UY', 'URY', 1),
(226, 'Uzbekistan', 'UZ', 'UZB', 1),
(227, 'Vanuatu', 'VU', 'VUT', 1),
(228, 'Vatican City State (Holy See)', 'VA', 'VAT', 1),
(229, 'Venezuela', 'VE', 'VEN', 1),
(230, 'Viet Nam', 'VN', 'VNM', 1),
(231, 'Virgin Islands (British)', 'VG', 'VGB', 1),
(232, 'Virgin Islands (U.S.)', 'VI', 'VIR', 1),
(233, 'Wallis and Futuna Islands', 'WF', 'WLF', 1),
(234, 'Western Sahara', 'EH', 'ESH', 1),
(235, 'Yemen', 'YE', 'YEM', 1),
(236, 'Serbia', 'RS', 'SRB', 1),
(238, 'Zambia', 'ZM', 'ZMB', 1),
(239, 'Zimbabwe', 'ZW', 'ZWE', 1),
(241, 'Palestinian Territory', 'PS', 'PSE', 1),
(242, 'Montenegro', 'ME', 'MNE', 1),
(243, 'Guernsey', 'GG', 'GGY', 1),
(244, 'Isle of Man', 'IM', 'IMN', 1),
(245, 'Jersey', 'JE', 'JEY', 1);
-- --------------------------------------------------------
--
-- 表的结构 `coupons`
--
CREATE TABLE IF NOT EXISTS `coupons` (
`coupon_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_type` char(1) NOT NULL DEFAULT 'F',
`coupon_code` varchar(32) NOT NULL DEFAULT '',
`coupon_amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
`coupon_minimum_order` decimal(15,4) NOT NULL DEFAULT '0.0000',
`coupon_start_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`coupon_expire_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`uses_per_coupon` int(5) NOT NULL DEFAULT '1',
`uses_per_user` int(5) NOT NULL DEFAULT '0',
`restrict_to_products` varchar(255) DEFAULT NULL,
`restrict_to_categories` varchar(255) DEFAULT NULL,
`restrict_to_customers` text,
`coupon_active` char(1) NOT NULL DEFAULT 'Y',
`date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`date_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`coupon_zone_restriction` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`coupon_id`),
KEY `idx_active_type_zen` (`coupon_active`,`coupon_type`),
KEY `idx_coupon_code_zen` (`coupon_code`),
KEY `idx_coupon_type_zen` (`coupon_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `coupons_description`
--
CREATE TABLE IF NOT EXISTS `coupons_description` (
`coupon_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '0',
`coupon_name` varchar(32) NOT NULL DEFAULT '',
`coupon_description` text,
PRIMARY KEY (`coupon_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `coupon_email_track`
--
CREATE TABLE IF NOT EXISTS `coupon_email_track` (
`unique_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL DEFAULT '0',
`customer_id_sent` int(11) NOT NULL DEFAULT '0',
`sent_firstname` varchar(32) DEFAULT NULL,
`sent_lastname` varchar(32) DEFAULT NULL,
`emailed_to` varchar(32) DEFAULT NULL,
`date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`unique_id`),
KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `coupon_gv_customer`
--
CREATE TABLE IF NOT EXISTS `coupon_gv_customer` (
`customer_id` int(5) NOT NULL DEFAULT '0',
`amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `coupon_gv_queue`
--
CREATE TABLE IF NOT EXISTS `coupon_gv_queue` (
`unique_id` int(5) NOT NULL AUTO_INCREMENT,
`customer_id` int(5) NOT NULL DEFAULT '0',
`order_id` int(5) NOT NULL DEFAULT '0',
`amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
`date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`ipaddr` varchar(32) NOT NULL DEFAULT '',
`release_flag` char(1) NOT NULL DEFAULT 'N',
PRIMARY KEY (`unique_id`),
KEY `idx_cust_id_order_id_zen` (`customer_id`,`order_id`),
KEY `idx_release_flag_zen` (`release_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `coupon_redeem_track`
--
CREATE TABLE IF NOT EXISTS `coupon_redeem_track` (
`unique_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL DEFAULT '0',
`customer_id` int(11) NOT NULL DEFAULT '0',
`redeem_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`redeem_ip` varchar(32) NOT NULL DEFAULT '',
`order_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`unique_id`),
KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `coupon_restrict`
--
CREATE TABLE IF NOT EXISTS `coupon_restrict` (
`restrict_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL DEFAULT '0',
`product_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
`coupon_restrict` char(1) NOT NULL DEFAULT 'N',
PRIMARY KEY (`restrict_id`),
KEY `idx_coup_id_prod_id_zen` (`coupon_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `currencies`
--
CREATE TABLE IF NOT EXISTS `currencies` (
`currencies_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(32) NOT NULL DEFAULT '',
`code` char(3) NOT NULL DEFAULT '',
`symbol_left` varchar(24) DEFAULT NULL,
`symbol_right` varchar(24) DEFAULT NULL,
`decimal_point` char(1) DEFAULT NULL,
`thousands_point` char(1) DEFAULT NULL,
`decimal_places` char(1) DEFAULT NULL,
`value` float(13,8) DEFAULT NULL,
`last_updated` datetime DEFAULT NULL,
PRIMARY KEY (`currencies_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- 转存表中的数据 `currencies`
--
INSERT INTO `currencies` (`currencies_id`, `title`, `code`, `symbol_left`, `symbol_right`, `decimal_point`, `thousands_point`, `decimal_places`, `value`, `last_updated`) VALUES
(1, 'US Dollar', 'USD', '$', '', '.', ',', '2', 1.00000000, '2009-06-11 11:55:08'),
(2, 'Euro', 'EUR', '&euro;', '', '.', ',', '2', 0.83082765, '2009-06-11 11:55:10'),
(3, 'GB Pound', 'GBP', '&pound;', '', '.', ',', '2', 0.65934485, '2009-06-11 11:55:18'),
(4, 'Canadian Dollar', 'CAD', '$', '', '.', ',', '2', 1.03604209, '2009-06-11 11:55:35'),
(5, 'Australian Dollar', 'AUD', '$', '', '.', ',', '2', 1.02532446, '2009-06-11 11:55:38'),
(6, '人民币', 'CNY', '¥', '', '.', ',', '2', 6.66132689, '2009-06-11 11:55:50');
-- --------------------------------------------------------
--
-- 表的结构 `customers`
--
CREATE TABLE IF NOT EXISTS `customers` (
`customers_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_gender` char(1) NOT NULL DEFAULT '',
`customers_firstname` varchar(32) NOT NULL DEFAULT '',
`customers_lastname` varchar(32) NOT NULL DEFAULT '',
`customers_dob` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`customers_email_address` varchar(96) NOT NULL DEFAULT '',
`customers_nick` varchar(96) NOT NULL DEFAULT '',
`customers_default_address_id` int(11) NOT NULL DEFAULT '0',
`customers_telephone` varchar(32) NOT NULL DEFAULT '',
`customers_fax` varchar(32) DEFAULT NULL,
`customers_password` varchar(40) NOT NULL DEFAULT '',
`customers_newsletter` char(1) DEFAULT NULL,
`customers_group_pricing` int(11) NOT NULL DEFAULT '0',
`customers_email_format` varchar(4) NOT NULL DEFAULT 'TEXT',
`customers_authorization` int(1) NOT NULL DEFAULT '0',
`customers_referral` varchar(32) NOT NULL DEFAULT '',
`customers_paypal_payerid` varchar(20) NOT NULL DEFAULT '',
`customers_paypal_ec` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`customers_id`),
KEY `idx_email_address_zen` (`customers_email_address`),
KEY `idx_referral_zen` (`customers_referral`(10)),
KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
KEY `idx_nick_zen` (`customers_nick`),
KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `customers_basket`
--
CREATE TABLE IF NOT EXISTS `customers_basket` (
`customers_basket_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL DEFAULT '0',
`products_id` tinytext NOT NULL,
`customers_basket_quantity` float NOT NULL DEFAULT '0',
`final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`customers_basket_date_added` varchar(8) DEFAULT NULL,
PRIMARY KEY (`customers_basket_id`),
KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `customers_basket_attributes`
--
CREATE TABLE IF NOT EXISTS `customers_basket_attributes` (
`customers_basket_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL DEFAULT '0',
`products_id` tinytext NOT NULL,
`products_options_id` varchar(64) NOT NULL DEFAULT '0',
`products_options_value_id` int(11) NOT NULL DEFAULT '0',
`products_options_value_text` blob,
`products_options_sort_order` text NOT NULL,
PRIMARY KEY (`customers_basket_attributes_id`),
KEY `idx_cust_id_prod_id_zen` (`customers_id`,`products_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `customers_info`
--
CREATE TABLE IF NOT EXISTS `customers_info` (
`customers_info_id` int(11) NOT NULL DEFAULT '0',
`customers_info_date_of_last_logon` datetime DEFAULT NULL,
`customers_info_number_of_logons` int(5) DEFAULT NULL,
`customers_info_date_account_created` datetime DEFAULT NULL,
`customers_info_date_account_last_modified` datetime DEFAULT NULL,
`global_product_notifications` int(1) DEFAULT '0',
PRIMARY KEY (`customers_info_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `customers_message`
--
CREATE TABLE IF NOT EXISTS `customers_message` (
`customers_message_id` bigint(20) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL,
`customers_message_type` varchar(50) NOT NULL,
`customers_message_value` bigint(20) NOT NULL,
`customers_message_title` varchar(255) NOT NULL,
`customers_message_content` text NOT NULL,
`customers_message_date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`customers_message_date_last` datetime DEFAULT NULL,
`customers_message_status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`customers_message_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `db_cache`
--
CREATE TABLE IF NOT EXISTS `db_cache` (
`cache_entry_name` varchar(64) NOT NULL DEFAULT '',
`cache_data` mediumblob,
`cache_entry_created` int(15) DEFAULT NULL,
PRIMARY KEY (`cache_entry_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `email_archive`
--
CREATE TABLE IF NOT EXISTS `email_archive` (
`archive_id` int(11) NOT NULL AUTO_INCREMENT,
`email_to_name` varchar(96) NOT NULL DEFAULT '',
`email_to_address` varchar(96) NOT NULL DEFAULT '',
`email_from_name` varchar(96) NOT NULL DEFAULT '',
`email_from_address` varchar(96) NOT NULL DEFAULT '',
`email_subject` varchar(255) NOT NULL DEFAULT '',
`email_html` text NOT NULL,
`email_text` text NOT NULL,
`date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`module` varchar(64) NOT NULL DEFAULT '',
`customer_company` varchar(255) DEFAULT NULL,
`customer_telephone` varchar(20) DEFAULT NULL,
`customer_fax` varchar(20) DEFAULT NULL,
`customer_ip` varchar(15) DEFAULT NULL,
`page_url` varchar(255) DEFAULT NULL,
PRIMARY KEY (`archive_id`),
KEY `idx_email_to_address_zen` (`email_to_address`),
KEY `idx_module_zen` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `ezpages`
--
CREATE TABLE IF NOT EXISTS `ezpages` (
`pages_id` int(11) NOT NULL AUTO_INCREMENT,
`pages_title` varchar(64) NOT NULL DEFAULT '',
`alt_url` varchar(255) NOT NULL DEFAULT '',
`alt_url_external` varchar(255) NOT NULL DEFAULT '',
`pages_html_text` mediumtext,
`status_header` int(1) NOT NULL DEFAULT '1',
`status_sidebox` int(1) NOT NULL DEFAULT '1',
`status_footer` int(1) NOT NULL DEFAULT '1',
`status_toc` int(1) NOT NULL DEFAULT '1',
`header_sort_order` int(3) NOT NULL DEFAULT '0',
`sidebox_sort_order` int(3) NOT NULL DEFAULT '0',
`footer_sort_order` int(3) NOT NULL DEFAULT '0',
`toc_sort_order` int(3) NOT NULL DEFAULT '0',
`page_open_new_window` int(1) NOT NULL DEFAULT '0',
`page_is_ssl` int(1) NOT NULL DEFAULT '0',
`toc_chapter` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`pages_id`),
KEY `idx_ezp_status_header_zen` (`status_header`),
KEY `idx_ezp_status_sidebox_zen` (`status_sidebox`),
KEY `idx_ezp_status_footer_zen` (`status_footer`),
KEY `idx_ezp_status_toc_zen` (`status_toc`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=32 ;
--
-- 转存表中的数据 `ezpages`
--
INSERT INTO `ezpages` (`pages_id`, `pages_title`, `alt_url`, `alt_url_external`, `pages_html_text`, `status_header`, `status_sidebox`, `status_footer`, `status_toc`, `header_sort_order`, `sidebox_sort_order`, `footer_sort_order`, `toc_sort_order`, `page_open_new_window`, `page_is_ssl`, `toc_chapter`) VALUES
(1, '', 'index.php?main_page=shippinginfo', '', NULL, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 10),
(2, '', 'index.php?main_page=contact_us', '', NULL, 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0),
(3, '', '', '', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(4, '', 'index.php?main_page=featured_products', '', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(5, '', 'index.php?main_page=site_map', '', NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(6, '', 'index.php?main_page=privacy', '', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(7, '', 'index.php?main_page=unsubscribe', '', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(8, '', '', '', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(9, 'Array', 'index.php', '', 'Array', 1, 0, 1, 0, 10, 0, 10, 0, 0, 0, 0),
(10, 'Array', 'index.php?main_page=products_new', '', 'Array', 1, 0, 1, 0, 20, 0, 20, 0, 0, 0, 0),
(11, '', 'index.php?main_page=conditions', '', NULL, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0),
(12, 'Array', 'index.php?main_page=specials', '', 'Array', 1, 0, 1, 0, 30, 0, 30, 0, 0, 0, 0),
(13, '', 'index.php?main_page=create_account', '', NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(17, 'Array', 'index.php?main_page=products_all', '', 'Array', 1, 0, 1, 0, 40, 0, 40, 0, 0, 0, 0),
(18, 'Array', 'index.php?main_page=reviews', '', 'Array', 1, 0, 1, 0, 50, 0, 50, 0, 0, 0, 0),
(19, 'Array', 'index.php?main_page=contact_us', '', 'Array', 1, 0, 1, 0, 60, 0, 60, 0, 0, 0, 0),
(20, 'Array', '', '', 'Array', 1, 0, 1, 0, 70, 0, 70, 0, 0, 0, 0),
(21, 'Array', '', '', 'Array', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(23, '', '', '', '', 1, 1, 0, 0, 100, 100, 0, 0, 0, 0, 0),
(24, '', '', '', '', 1, 1, 0, 0, 100, 100, 0, 0, 0, 0, 0),
(25, '', '', '', '', 1, 1, 0, 0, 100, 100, 0, 0, 0, 0, 0),
(26, 'Array', '', '', 'Array', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(27, 'Array', '', '', 'Array', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(29, '', '', '', 'Array', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(30, 'Array', '', '', 'Array', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(31, 'Array', '', '', 'Array', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
-- --------------------------------------------------------
--
-- 表的结构 `ezpages_content`
--
CREATE TABLE IF NOT EXISTS `ezpages_content` (
`pc_id` int(11) NOT NULL AUTO_INCREMENT,
`pages_id` int(11) NOT NULL DEFAULT '0',
`languages_id` int(11) NOT NULL DEFAULT '1',
`pages_title` varchar(64) NOT NULL DEFAULT '',
`pages_html_text` text,
PRIMARY KEY (`pc_id`),
KEY `idx_ezpages_content` (`pages_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=58 ;
--
-- 转存表中的数据 `ezpages_content`
--
INSERT INTO `ezpages_content` (`pc_id`, `pages_id`, `languages_id`, `pages_title`, `pages_html_text`) VALUES
(1, 1, 2, '发货付款', ''),
(2, 1, 1, 'Shipping', ''),
(3, 2, 2, '联系我们', ''),
(4, 2, 1, 'Contact Us', ''),
(5, 3, 2, '本店新闻', '演示商店正式开张<br /><br />所有商品都是演示用途,本站非营业网站<br /><br />下单仅限于测试各项功能'),
(6, 3, 1, 'News', 'This store is for demo purpose only. No order will be proceed. '),
(7, 4, 2, '推荐商品', ''),
(8, 4, 1, 'Featured Products', ''),
(9, 5, 2, '网站地图', ''),
(10, 5, 1, 'Site Map', ''),
(11, 6, 2, '隐私声明', ''),
(12, 6, 1, 'Privacy', ''),
(13, 7, 2, '电子商情', ''),
(14, 7, 1, 'Newsletter', ''),
(15, 8, 2, '公司简介', ''),
(16, 8, 1, 'About Us', ''),
(17, 9, 2, '首页', ''),
(18, 9, 1, 'Home', ''),
(19, 10, 2, '新进商品', ''),
(20, 10, 1, 'New Products', ''),
(21, 11, 2, '顾客须知', ''),
(22, 11, 1, 'Conditions of Use', ''),
(23, 12, 2, '特价商品', ''),
(24, 12, 1, 'Specials', ''),
(25, 13, 2, '注册', ''),
(26, 13, 1, 'Register', ''),
(27, 14, 2, '中文简易页面c', 'dsaflaksdjlkjzxcvjakeowpijfjaosidjflk'),
(28, 14, 1, 'yycccc', 'lkjsdalkcxnvzx,mvndsjfopi'),
(29, 15, 2, '中文测试', '$breadcrumb->$breadcrumb->$breadcrumb->$breadcrumb->'),
(30, 15, 1, 'entest', '$breadcrumb->$breadcrumb->$breadcrumb->$breadcrumb->'),
(31, 16, 2, '配送', 'sdfsdf'),
(32, 16, 1, 'shipping', ''),
(33, 17, 2, '所有商品', ''),
(34, 17, 1, 'All Products', ''),
(35, 18, 2, '评论', ''),
(36, 18, 1, 'Reviews', ''),
(37, 19, 2, '联系', ''),
(38, 19, 1, 'Contacts', ''),
(39, 20, 2, '常见问题', '<p>testgb</p>'),
(40, 20, 1, 'FAQs', '<p>testen</p>'),
(41, 21, 1, 'Site Info', '<div id="siteinfo">\r\n<ul>\r\n<h3>Customer Services</h3>\r\n<li> <a title="Shopping Guide" href="index.php?main_page=site_map">Shopping Guide</a></li>\r\n<li> <a title="Contact Us" href="index.php?main_page=contact_us">Contact Us</a></li>\r\n<li> <a title="FAQ" href="index.php?main_page=faqs_all">FAQ</a></li>\r\n<li> <a title="Track My Order" href="#">Track My Order</a></li>\r\n<li id="LiveChat_links"><a title="Live Chat" href="#">Live Chat</a></li>\r\n</ul>\r\n<ul>\r\n<h3>My Account</h3>\r\n<li> <a title="Sign in" href="index.php?main_page=login">Sign in</a> | <a title="Register" href="index.php?main_page=create_account">Register</a></li>\r\n<li> <a title="Order History" href="index.php?main_page=account_history">Order History</a></li>\r\n<li> <a title="Reward Points" href="index.php?main_page=account_edit">Reward Points</a></li>\r\n<li> <a title="Wish List" href="index.php?main_page=wishlists_manager">Wish List</a></li>\r\n</ul>\r\n<ul>\r\n<h3>Company Info</h3>\r\n<li> <a title="About Us" href="#">About Us</a></li>\r\n<li> <a title="Why Buy From Us" href="#">Why Buy From Us</a></li>\r\n<li> <a title="Privacy Notice" href="index.php?main_page=privacy">Privacy Notice</a></li>\r\n<li> <a title="Return Policy" href="#">Return Policy</a></li>\r\n<li> <a title="Terms of Use" href="#">Terms of Use</a></li>\r\n<li> <a title="Partner Links" href="#">Partner Links</a></li>\r\n</ul>\r\n<ul>\r\n<h3>Make Money With Us</h3>\r\n<li> <a title="Wholesale" href="#">Wholesale</a></li>\r\n<li> <a title="Affiliate Program" href="#">Affiliate Program</a></li>\r\n<li> <a title="Make money with us" href="#">Make money with us</a></li>\r\n</ul>\r\n<ul class="joinlinks">\r\n<h3>Join Our Community</h3>\r\n<li class="f"> <a title="Facebook" href="http://www.facebook.com/"></a></li>\r\n<li class="b"> <a title="Blog" href="/blog/"></a> </li>\r\n<li class="t"> <a title="Twitter" href="http://www.twitter.com/"></a></li>\r\n<li class="y"> <a title="Youtube" href="http://www.youtube.com/"></a></li>\r\n<li class="g"> <a title="Google +1" href="http://plus.google.com/"></a></li>\r\n</ul>\r\n</div>'),
(42, 21, 2, 'Site Info', '<div id="siteinfo">\r\n<ul>\r\n<h3>售后服务</h3>\r\n<li> <a title="购物指南" href="index.php?main_page=site_map">购物指南</a></li>\r\n<li> <a title="联系我们" href="index.php?main_page=contact_us">联系我们</a></li>\r\n<li> <a title="常见问题" href="index.php?main_page=faqs_all">常见问题</a></li>\r\n<li> <a title="订单追踪" href="#">订单追踪</a></li>\r\n<li id="LiveChat_links"><a title="在线聊天" href="#">在线聊天</a></li>\r\n</ul>\r\n<ul>\r\n<h3>我的账户</h3>\r\n<li> <a title="登入" href="index.php?main_page=login">登入</a> | <a title="注册" href="index.php?main_page=create_account">注册</a></li>\r\n<li> <a title="订单记录" href="index.php?main_page=account_history">订单记录</a></li>\r\n<li> <a title="奖励积分" href="index.php?main_page=account_edit">奖励积分</a></li>\r\n<li> <a title="收藏夹" href="index.php?main_page=wishlists_manager">收藏夹</a></li>\r\n</ul>\r\n<ul>\r\n<h3>公司简介</h3>\r\n<li> <a title="关于我们" href="#">关于我们</a></li>\r\n<li> <a title="为什么购买我们的产品" href="#">为什么购买我们的产品</a></li>\r\n<li> <a title="隐私声明" href="index.php?main_page=privacy">隐私声明</a></li>\r\n<li> <a title="商品退换细则" href="#">商品退换细则</a></li>\r\n<li> <a title="使用条款" href="#">使用条款</a></li>\r\n<li> <a title="友情链接" href="#">友情链接</a></li>\r\n</ul>\r\n<ul>\r\n<h3>共同赢利</h3>\r\n<li> <a title="批发" href="#">批发</a></li>\r\n<li> <a title="联盟计划" href="#">联盟计划</a></li>\r\n<li> <a title="共同赢利" href="#">共同赢利</a></li>\r\n</ul>\r\n<ul class="joinlinks">\r\n<h3>加入我们社区</h3>\r\n<li class="f"> <a title="Facebook" href="http://www.facebook.com/"></a></li>\r\n<li class="b"> <a title="Blog" href="/blog/"></a> </li>\r\n<li class="t"> <a title="Twitter" href="http://www.twitter.com/"></a></li>\r\n<li class="y"> <a title="Youtube" href="http://www.youtube.com/"></a></li>\r\n<li class="g"> <a title="Google +1" href="http://plus.google.com/"></a></li>\r\n</ul>\r\n</div>'),
(43, 22, 1, 'hot sell products', '<p>hot sell products</p>'),
(44, 22, 2, 'hot sell products', '<p>hot sell products</p>'),
(45, 23, 1, 'hot sell', '<p>djreurieruiosnafbrt</p>\r\n<p>djreurieruiosnafbrt</p>'),
(46, 23, 2, '热销产品', '<p>djreurieruiosnafbrt</p>\r\n<p>djreurieruiosnafbrt</p>'),
(47, 24, 1, 'hot sell', '<p>djreurieruiosnafbrt</p>\r\n<p>djreurieruiosnafbrt</p>'),
(48, 24, 2, '热销产品', '<p>djreurieruiosnafbrt</p>\r\n<p>djreurieruiosnafbrt</p>'),
(49, 25, 1, 'hot sell', '<p>djreurieruiosnafbrt</p>\r\n<p>djreurieruiosnafbrt</p>'),
(50, 25, 2, '热销产品', '<p>djreurieruiosnafbrt</p>\r\n<p>djreurieruiosnafbrt</p>'),
(51, 26, 1, 'After-sales service', '<p>All goods are not marked are three packs of shops</p>'),
(52, 26, 2, '售后服务', '<p>所有商品未标注均为店铺三包</p>'),
(53, 27, 1, '产品详细页面-产品描述右边区域', '<!-- .w-shppingInfo ul{ height:96px; } --> <dl> <dt>Tailoring Time</dt> <dd>\r\n<p style="margin: 0pt;">Tailoring will take 13-15 business days.<br /><a class="u" href="javascript:var newin=window.open(''/index.php'',''dbdetails'',''height=510,width=780,scrollbars=yes''); if (newin!=null) { newin.focus(); }">See Details >></a></p>\r\n</dd> </dl> <dl id="shippingInfo"> <dt>Shipping Time</dt> <dd>\r\n<p>Ships to: <a href="/" target="_blank"><strong>over 200 countries</strong></a> worldwide <br />Expedited:3-5 business days<br />Standard:6-8 business days</p>\r\n</dd> </dl> <dl id="paymentOption"> <dt>Payment Methods</dt> <dd> \r\n<ul>\r\n<li><em class="icon0"></em></li>\r\n<li><em class="icon1"></em></li>\r\n<li><em class="icon2"></em></li>\r\n<li><em class="icon3"></em></li>\r\n<li><em class="icon4"></em></li>\r\n<li><em class="icon5"></em></li>\r\n<li><em class="icon6"></em></li>\r\n<li><em class="icon7"></em></li>\r\n<li><em class="icon8"></em></li>\r\n<li><em class="icon9"></em></li>\r\n<li><em class="icon10"></em></li>\r\n<li><em class="icon11"></em></li>\r\n<li><em class="icon12"></em></li>\r\n<li><em class="icon13"></em></li>\r\n<li><img src="/images/Boleto-brio.png" alt="" /></li>\r\n</ul>\r\n</dd> </dl>\r\n<script type="text/javascript">// <![CDATA[\r\n if (typeof shipping_info != ''undefined'' && shipping_info) {\r\n $(''#shippingInfo .iconQuestion'').tooltip({position:''vertical'', html:shipping_info, width:280,hoverHide:true,hoverObj:''#shippingInfo''});\r\n }\r\n// ]]></script>'),
(54, 28, 1, 'testfooter', '<p>fdfdfd</p>'),
(55, 29, 1, '底部信息列表页', '<div><dl> <dt> Company Info </dt> <dd> <a rel="nofollow" href="###" target="_top">About Company Info</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Location &amp; Working Hours</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Testimonials</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Career</a> </dd> <dd> <a href="###" target="_top">Site Map</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Our Guarantee</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Press Releases</a> </dd> </dl> <dl> <dt> Customer Service </dt> <dd> <a rel="nofollow" href="###" target="_top">Contact Us</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Track Your Order</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Help Page and Knowledge Base</a> </dd> </dl> <dl> <dt> Payment &amp; Shipping </dt> <dd> <a rel="nofollow" href="###" target="_top">Payment Methods</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Shipping Guide</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Locations We Ship To</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Estimated Delivery Time</a> </dd> </dl> <dl> <dt> Company Policies </dt> <dd> <a rel="nofollow" href="###" target="_top">Return Policy</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Privacy Policy</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Terms of Use</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Intellectual Property Infringement Policy</a> </dd> </dl> <dl> <dt> Other Business </dt> <dd> <a rel="nofollow" href="###" target="_top">Wholesale</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Dropship</a> </dd> <dd> <a href="###" target="_top">Partners</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">Affiliate Program</a> </dd> <dd> <a rel="nofollow" href="###" target="_top">寻求供应商</a> </dd> </dl></div>'),
(56, 30, 1, '底部信息-图片区域', '<p><img title="footer_support.png" src="/includes/templates/atopk/images/footer_support.png" alt="footer_support.png" /></p>'),
(57, 31, 1, '底部信息-版权信息', '<p>Copyright &copy; 2006-2013 www.onmall.net All Rights Reserved.</p>');
-- --------------------------------------------------------
--
-- 表的结构 `faqs`
--
CREATE TABLE IF NOT EXISTS `faqs` (
`faqs_id` int(11) NOT NULL AUTO_INCREMENT,
`faqs_type` int(11) NOT NULL DEFAULT '1',
`faqs_image` varchar(64) DEFAULT NULL,
`faqs_date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`faqs_last_modified` datetime DEFAULT NULL,
`faqs_status` tinyint(1) NOT NULL DEFAULT '0',
`faqs_sort_order` int(11) NOT NULL DEFAULT '0',
`master_faq_categories_id` int(11) NOT NULL DEFAULT '0',
`faqs_helpful` int(3) DEFAULT '0',
`faqs_nohelpful` int(3) DEFAULT '0',
PRIMARY KEY (`faqs_id`),
KEY `idx_faqs_date_added` (`faqs_date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=71 ;
--
-- 转存表中的数据 `faqs`
--
INSERT INTO `faqs` (`faqs_id`, `faqs_type`, `faqs_image`, `faqs_date_added`, `faqs_last_modified`, `faqs_status`, `faqs_sort_order`, `master_faq_categories_id`, `faqs_helpful`, `faqs_nohelpful`) VALUES
(1, 1, '', '2008-08-08 18:34:41', '2009-07-23 14:43:39', 1, 0, 1, 2, 1),
(2, 1, '', '2008-08-19 07:09:52', '2009-07-23 14:58:43', 1, 0, 3, 0, 0),
(3, 1, '', '2008-08-19 09:26:24', '2009-07-23 14:45:55', 1, 0, 1, 0, 0),
(4, 1, '', '2008-08-19 09:27:08', '2009-07-23 14:47:54', 1, 0, 1, 0, 0),
(5, 1, '', '2008-08-19 09:39:56', '2009-07-23 14:53:52', 1, 0, 1, 0, 0),
(6, 1, '', '2008-08-19 13:54:14', '2009-02-08 06:05:41', 1, 0, 1, 0, 0),
(23, 1, '', '2009-02-08 06:17:41', '0000-00-00 00:00:00', 1, 0, 4, 0, 0),
(24, 1, '', '2009-02-08 06:18:16', '2009-07-28 04:01:41', 1, 0, 4, 0, 0),
(25, 1, '', '2009-02-08 06:19:08', '0000-00-00 00:00:00', 1, 0, 4, 0, 0),
(34, 1, '', '2009-02-08 06:33:12', '2009-07-23 15:35:16', 1, 0, 6, 0, 0),
(27, 1, '', '2009-02-08 06:21:50', '0000-00-00 00:00:00', 1, 0, 4, 0, 0),
(26, 1, '', '2009-02-08 06:20:33', '2009-07-23 15:33:40', 1, 0, 4, 0, 0),
(65, 1, '', '2012-06-20 13:45:14', NULL, 2, 0, 2, 0, 0),
(35, 1, '', '2009-02-08 06:33:53', '2009-07-23 15:34:33', 1, 0, 6, 0, 0),
(22, 1, '', '2009-02-08 06:11:33', '2009-07-23 15:21:16', 1, 0, 2, 0, 0),
(28, 1, '', '2009-02-08 06:22:28', '0000-00-00 00:00:00', 1, 0, 4, 0, 0),
(29, 1, '', '2009-02-08 06:23:48', '2009-07-28 04:02:58', 1, 0, 4, 0, 0),
(30, 1, '', '2009-02-08 06:25:33', '2009-07-23 15:08:17', 1, 0, 3, 0, 0),
(31, 1, '', '2009-02-08 06:26:44', '2009-07-23 15:09:31', 1, 0, 3, 0, 0),
(32, 1, '', '2009-02-08 06:27:19', '2009-07-23 15:12:14', 1, 0, 3, 0, 0),
(33, 1, '', '2009-02-08 06:28:20', '2009-07-28 04:00:27', 1, 0, 3, 0, 0),
(36, 1, '', '2009-02-08 06:39:13', '2009-07-28 04:03:56', 1, 0, 7, 0, 0),
(37, 1, '', '2009-02-08 06:40:39', '2009-07-23 15:38:51', 1, 0, 7, 0, 0),
(38, 1, '', '2009-02-08 06:41:10', '0000-00-00 00:00:00', 1, 0, 7, 0, 0),
(39, 1, '', '2009-02-08 06:42:01', '2009-07-23 15:41:05', 1, 0, 7, 0, 0),
(40, 1, '', '2009-02-08 06:42:47', '0000-00-00 00:00:00', 1, 0, 8, 0, 0),
(41, 1, '', '2009-02-08 06:43:45', '0000-00-00 00:00:00', 1, 0, 8, 0, 0),
(42, 1, '', '2009-02-08 06:45:32', '2009-07-23 15:42:50', 1, 0, 8, 0, 0),
(43, 1, '', '2009-02-08 06:59:38', '2009-07-23 15:45:36', 1, 0, 17, 0, 0),
(44, 1, '', '2009-02-08 07:00:15', '0000-00-00 00:00:00', 1, 0, 17, 0, 0),
(45, 1, '', '2009-02-08 07:00:55', '2009-07-23 15:48:54', 1, 0, 17, 0, 0),
(46, 1, '', '2009-02-08 07:02:27', '2009-07-23 15:53:11', 1, 0, 16, 0, 0),
(47, 1, '', '2009-02-08 07:03:35', '0000-00-00 00:00:00', 1, 0, 16, 0, 0),
(48, 1, '', '2009-02-08 07:04:27', '2009-07-23 15:54:53', 1, 0, 16, 0, 0),
(49, 1, '', '2009-02-08 07:05:44', '0000-00-00 00:00:00', 1, 0, 15, 0, 0),
(50, 1, '', '2009-02-08 07:07:58', '2009-07-23 15:57:31', 1, 0, 15, 0, 0),
(51, 1, '', '2009-02-08 07:08:36', '0000-00-00 00:00:00', 1, 0, 15, 0, 0),
(52, 1, '', '2009-02-08 07:09:09', '0000-00-00 00:00:00', 1, 0, 15, 0, 0),
(53, 1, '', '2009-02-08 07:10:37', '0000-00-00 00:00:00', 1, 0, 14, 0, 0),
(54, 1, '', '2009-02-08 07:12:07', '2009-07-23 16:05:29', 1, 0, 13, 0, 0),
(55, 1, '', '2009-02-08 07:13:24', '2009-07-23 16:09:13', 1, 0, 13, 0, 0),
(58, 1, '', '2009-02-08 07:16:20', '2009-07-23 16:10:26', 1, 0, 11, 0, 0),
(59, 1, '', '2009-02-08 07:17:17', '0000-00-00 00:00:00', 1, 0, 11, 0, 0),
(60, 1, '', '2009-02-08 07:17:53', '2009-07-23 16:11:44', 1, 0, 11, 0, 0),
(61, 1, '', '2009-02-08 07:19:32', '0000-00-00 00:00:00', 1, 0, 11, 0, 0),
(62, 1, '', '2009-02-08 07:20:58', '2009-07-23 16:15:48', 1, 0, 10, 0, 0),
(63, 1, '', '2009-02-08 07:22:47', '2009-07-23 16:23:42', 1, 0, 10, 0, 0),
(64, 1, '', '2009-02-08 07:25:25', '2009-07-23 16:20:10', 1, 0, 10, 0, 0),
(69, 1, '', '2013-05-24 16:11:52', NULL, 2, 0, 4, 0, 0),
(70, 1, '', '2013-05-30 11:45:20', NULL, 2, 0, 2, 0, 0);
-- --------------------------------------------------------
--
-- 表的结构 `faqs_description`
--
CREATE TABLE IF NOT EXISTS `faqs_description` (
`faqs_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '1',
`faqs_name` varchar(64) NOT NULL DEFAULT '',
`faqs_description` text,
`faqs_answer` text,
`faqs_url` varchar(255) DEFAULT NULL,
`faqs_contact_name` varchar(255) DEFAULT NULL,
`faqs_contact_mail` varchar(255) DEFAULT NULL,
`faqs_owner` varchar(11) DEFAULT '0',
`faqs_viewed` int(5) DEFAULT '0',
PRIMARY KEY (`faqs_id`,`language_id`),
KEY `faqs_name` (`faqs_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=71 ;
--
-- 转存表中的数据 `faqs_description`
--
INSERT INTO `faqs_description` (`faqs_id`, `language_id`, `faqs_name`, `faqs_description`, `faqs_answer`, `faqs_url`, `faqs_contact_name`, `faqs_contact_mail`, `faqs_owner`, `faqs_viewed`) VALUES
(1, 1, 'Can I Trust cheap-chanel-watches.com?', '<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">If you have any doubts about importing from China, you''re right to be cautious. Here''s some key information about cheap-chanel-watches to give you more confidence in starting out with your new China Wholesale supplier: cheap-chanel-watches based in the city of Fuzhou in Mainland China. Goods are shipped to worldwide by airfreight and couriers such as DHL and UPS. What makes cheap-chanel-watches different from other Chinese suppliers? </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">-Unlike most Chinese export companies, there is no minimum order restriction. You can buy products in any order quantity - even 1 piece samples - from a wide selection of the latest released products. So you can test products and find out about the details of importing from cheap-chanel-watches before you''re committed to any large orders. </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">-You can pay by credit card through Paypal, which offers total buyer protection and avoids having to share any of your financial information; -Dropshippers can send single items directly from cheap-chanel-watches to their customers. </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">-All the products you buy from cheap-chanel-watches are covered by a 12 month guarantee, and are carefully inspected for quality before packing - which is one additional level of QA over and above what is done in the factory; -You''re supported by friendly English speaking staff before and after placing an order, and you can get full product information and support even before purchasing. </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">-Your goods are packed carefully, and the packages are correctly labeled and accompanied by all the paperwork that''s needed for smooth clearance through your country''s Customs. </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">Why you can trust cheap-chanel-watches: </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">-When you pay for orders on cheap-chanel-watches you do not need to share any of your confidential financial details with cheap-chanel-watches and you''re protected by Paypal''s money back guarantees.</span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">-The cheap-chanel-watches website is certified "Hacker Safe" by Scanalert and is also verified by ValidatedSite.</span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">Contacting cheap-chanel-watches: </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">- http://help.cheap-chanel-watches.com/ to view FAQs and submit help tickets (we aim to answer all tickets within 1 working days).</span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: 宋体;"><span class="mediumtext"><span lang="EN-US">- By phone:&nbsp;</span></span><strong><span lang="EN-US">1-646-755-9933</span></strong><span class="mediumtext"><span lang="EN-US"></span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small; font-family: 宋体;">- you can also email service@vgoldzone.com directly</span></span></span><strong style="mso-bidi-font-weight: normal;"><span lang="EN-US"></span></strong></p>\r\n<p>&nbsp;</p>', '', '', '', '', '', 321),
(2, 1, 'Does cheap-chanel-watches Has MOQ?', '<p><span class="mediumtext"><span style="font-size: 12pt; color: black; font-family: 宋体; mso-bidi-font-family: Arial; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA;" lang="EN-US">cheap-chanel-watches&nbsp;has no minimum order quantity, and we can ship single item samples or large orders worldwide.</span></span></p>', '', '', '', '', '0', 203),
(3, 1, 'Can An Order Be Made Without Using The Website?', '<p>We prefer our customers to order through our website. You can place orders directly for the products you like. However, if you want to order in other ways, or have questions about ordering, please contact our customer service representatives by live chat or email me service@vgoldzone.com</p>', '', '', '', '', '0', 186),
(4, 1, 'What If I Am Making A Large / Bulk Order?', '<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small; font-family: 宋体;">We will provide you with personal customer service for large volume wholesale orders and discuss the shipping options fully. For large volume order quotation, our VIP Customer Manager wish to serve you: MSN: </span><a href="mailto:service@vgoldzone.com"><span style="text-decoration: underline;"><span style="font-size: small; color: #0000ff; font-family: 宋体;">service@vgoldzone.com</span></span></a><span style="font-size: small; font-family: 宋体;"> <span style="mso-spacerun: yes;">&nbsp;</span>Email: </span><a href="mailto:service@vgoldzone.com"><span style="text-decoration: underline;"><span style="font-size: small; color: #0000ff; font-family: 宋体;">service@vgoldzone.com</span></span></a></span></span></p>', '', '', '', '', '0', 191),
(5, 1, 'How to ship products to me from cheap-chanel-watches?', '<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">Q: If I order products from cheap-chanel-watches, how to ship them to me? How much is the delivery? How can I trace my order?</span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small; font-family: 宋体;">&nbsp;</span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">A: cheap-chanel-watches currently ships small and medium sized orders by international couriers. The shipping rates can be previewed inside the cheap-chanel-watches online shop system. When you place the order you will see the postage on the shipping method section. Shipping fee will be estimated by system automatically. </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small; font-family: 宋体;">&nbsp;</span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">Q: How can I trace my order? </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">A: Once your order is shipped, you will receive an email from us. In this email, there should be tracking information for your packages as well as the website in which you could trace your order.</span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;"><span style="mso-spacerun: yes;">&nbsp;</span></span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">Q: How Long Will It Take To Delivery?</span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small; font-family: 宋体;">&nbsp;</span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: 宋体;"><span class="mediumtext"><span lang="EN-US">A: Total delivery time is composed of three parts. The first part is the processing time. This is the time from when your payment is received to when we gather up all the items and pack them. The second part is the </span></span><span class="bblack"><span lang="EN-US">packaging time a</span></span><span style="color: windowtext; mso-bidi-font-family: 宋体;">fter your order is processed, we send it to the warehouse. And the last part is </span><span class="mediumtext"><span lang="EN-US">actual shipping time. This is the time that it takes for the package to be delivered by the couriers to the destination. Standard shipping normally takes 3-7 days, and express shipping normally takes 2-4 days. Processing takes 1-2 days normally. </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small; font-family: 宋体;">&nbsp;</span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">Q: Are the packages insured? </span></span></span></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span class="mediumtext"><span lang="EN-US"><span style="font-size: small;"><span style="font-family: 宋体;">A: Shipping with couriers is insured and traceable online. Once your goods are sent out we will email you with a tracking number so you can trace your delivery. When you checkout your order, you can Add Shipping Insurance to your order. We offer Shipping Insurance US$ 1.99 to protect your package against any lost or damaged shipments. Any missing issues reported, we would reship your order immediately.</span></span></span></span></p>\r\n<p>&nbsp;</p>', '', '', '', '', '0', 178),
(6, 1, 'Payment Methods Accepted', '<div class="part7_part3">There are three ways in which you can pay for your taoxieyoua orders:<br />\r\n<ul>\r\n<li><strong>PayPal </strong></li>\r\n<li><strong>Western Union </strong></li>\r\n<li><strong>Wire Transfer</strong><br /></li>\r\n</ul>\r\n</div>\r\n<div class="part7_part4"><br /></div>\r\n<div class="part7_part4 text12 text_bold"><strong>Paying with PayPal</strong></div>\r\n<div class="part7_part4 text11"><ol>\r\n<li>With PayPal, you can send payment quickly and securely online. </li>\r\n<li>Through PayPal, you can pay with credit card, debit card, or bank account balance. </li>\r\n<li>Once your order is submitted, you will be redirected to PayPal''s site where you could make the payment. </li>\r\n</ol></div>\r\n<div class="part7_part4 text11">Advantages with using PayPal:</div>\r\n<div class="part7_part3">\r\n<ul>\r\n<li>Payment is traceable. You can trace the status of your payment using your PayPal account. </li>\r\n<li>Payment does not require you to use your credit card online (you can transfer directly from your bank account).&nbsp;taoxieyoua doesn''t see your credit card number (it is safely encrypted through PayPal''s server), which limits the risk of unauthorized use. </li>\r\n<li>The location the seller is shipping to (also call the destination country or region).<br /><br /><br /></li>\r\n</ul>\r\n</div>\r\n<div class="part7_part4 text12 text_bold"><strong>Paying with Western Union:</strong><br /><br /></div>\r\n<div class="part7_part4 text11">We are also happy to accept Western Union payment for most orders. Due to the timeliness and convenience of the payment for us, we offer a 7% discount to the total of your order (shipping included).</div>\r\n<div class="part7_part4 text11">For Western Union payments</div>\r\n<div class="part7_part3">\r\n<ul>\r\n<li>Beneficiary: Linfeng xu<br />First name: Linfeng<br />Last name: xu<br />City:Putian<br />Province: Fujian<br />Country: China <br />Postal Code: 351100<br />MEMO: After you made the payment, please don''t forget to send the MTCN (Money Transfer Control Number), money amount, your full name, your address details, Postal Code. and correct Telephone, in order to assure the shipment all right. </li>\r\n</ul>\r\n</div>\r\n<div class="part7_part4"><br /><br /></div>\r\n<div class="part7_part4 text12 text_bold">Paying with Wire Transfer:</div>\r\n<div class="part7_part4 text11">We are also happy to accept Wire Transfer payment for most orders.<br /><strong><br />For Wire Transfer payments<br /><br /></strong></div>\r\n<div class="part7_part3">\r\n<ul>\r\n<li>First name&nbsp; :&nbsp; LinFeng&nbsp; <br />last name : Xu&nbsp; <br />Bank : bank of China <br />Bank account :6013826407002769509<br />swift code: BKCHCNBJ3C</li>\r\n<li><br /><br /></li>\r\n</ul>\r\n</div>\r\n<div><span class="text_bold"><strong>IMPORTANT NOTICE</strong></span>: Please email your ORDER NUMBER, ORDER AMOUNT, SENDER''S FIRST and LAST NAME, SENDER''S ADDRESS and COUNTRY, and SENDER''S PHONE NUMBER to:service@taoxieyoua after you send payment through Wire Transfer.</div>', '', '', '', '', '0', 173),
(34, 1, 'What If You Want To Order A Lot More? Can Give Me discounts?', '<p>Of course, we can get you better prices for large volume orders.<br /><br />If you are interested in a quote for a large quantity of items, please contact us with the following details:<br />- The products you want<br />- The exact desired order quantity<br />- Your desired time frame<br />- Any special packing instructions, e.g. bulk packing without product boxes.<br /><br />With this information we will get back to you with a quotation.<br /><br />You can also contact with our online salesman easily.</p>\r\n<p>&nbsp;</p>', '', '', '', '', '0', 126),
(65, 1, '123456', '123456', NULL, NULL, 'testzz', 'test@163.com', '', 0),
(22, 1, 'Payment Methods Accepted', '<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">&nbsp;</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">There are three ways in which you can pay for your taoxieyoua orders:</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l4 level1 lfo1; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">PayPal </span></strong></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l4 level1 lfo1; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">Western Union </span></strong></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l4 level1 lfo1; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">Wire Transfer</span></strong></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">&nbsp;</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">Paying with PayPal</span></strong></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 42pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l1 level1 lfo2; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: Verdana; mso-font-kerning: 0pt; mso-fareast-font-family: Verdana;"><span style="mso-list: Ignore;">1.<span style="font: 7pt ">&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">With PayPal, you can send payment quickly and securely online. </span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 42pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l1 level1 lfo2; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: Verdana; mso-font-kerning: 0pt; mso-fareast-font-family: Verdana;"><span style="mso-list: Ignore;">2.<span style="font: 7pt ">&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">Through PayPal, you can pay with credit card, debit card, or bank account balance. </span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 42pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l1 level1 lfo2; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: Verdana; mso-font-kerning: 0pt; mso-fareast-font-family: Verdana;"><span style="mso-list: Ignore;">3.<span style="font: 7pt ">&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">Once your order is submitted, you will be redirected to PayPal''s site where you could make the payment. </span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">Advantages with using PayPal:</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l3 level1 lfo3; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">Payment is traceable. You can trace the status of your payment using your PayPal account. </span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l3 level1 lfo3; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">Payment does not require you to use your credit card online (you can transfer directly from your bank account).&nbsp;taoxieyoua doesn''t see your credit card number (it is safely encrypted through PayPal''s server), which limits the risk of unauthorized use. </span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 12pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l3 level1 lfo3; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">The location the seller is shipping to (also call the destination country or region).<br style="mso-special-character: line-break;" /><br style="mso-special-character: line-break;" /></span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 12pt; text-align: left; mso-pagination: widow-orphan;" align="left"><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">Paying with Western Union:</span></strong></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">We are also happy to accept Western Union payment for most orders. Due to the timeliness and convenience of the payment for us, we offer a 7% discount to the total of your order (shipping included).</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">For Western Union payments</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l0 level1 lfo4; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;">\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l0 level1 lfo4; tab-stops: list 36.0pt;" align="left"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></p>\r\n</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l0 level1 lfo4; tab-stops: list 36.0pt;" align="left">&nbsp;</p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l0 level1 lfo4; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong>MEMO: After you made the payment, please don''t forget to send the MTCN (Money Transfer Control Number), money amount, your full name, your address details, Postal Code. and correct Telephone, in order to assure the shipment all right. </span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 12pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">&nbsp;</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">Paying with Wire Transfer:</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 12pt; text-align: left; mso-pagination: widow-orphan;" align="left"><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">We are also happy to accept Wire Transfer payment for most orders.<br /><strong><br /></strong></span><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">For Wire Transfer payments</span></strong></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l2 level1 lfo5; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">First name&nbsp; :&nbsp; LinFeng&nbsp; <br />last name : Xu&nbsp; <br />Bank : bank of China <br />Bank account :6013826407002769509<br />swift code: BKCHCNBJ3C</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 12pt 6pt; text-indent: -18pt; text-align: left; mso-pagination: widow-orphan; mso-list: l2 level1 lfo5; tab-stops: list 36.0pt;" align="left"><span style="color: #000000; font-family: Symbol; mso-bidi-font-family: Symbol; mso-font-kerning: 0pt; mso-bidi-font-size: 9.0pt; mso-fareast-font-family: Symbol;"><span style="mso-list: Ignore;">&middot;<span style="font: 7pt ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">&nbsp;</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left; mso-pagination: widow-orphan;" align="left"><strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-bidi-font-size: 12.0pt;">IMPORTANT NOTICE</span></strong><span style="color: #000000; font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt;">: Please email your ORDER NUMBER, ORDER AMOUNT, SENDER''S FIRST and LAST NAME, SENDER''S ADDRESS and COUNTRY, and SENDER''S PHONE NUMBER to:service@taoxieyoua after you send payment through Wire Transfer.</span></p>\r\n<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span lang="EN-US"><span style="font-size: small; font-family: Times New Roman;">&nbsp;</span></span></p>', '', '', '', '', '0', 130),
(23, 1, 'Is shipping included In the prices?', '<p>If product name includes ''free shipping'', then you will do not need to pay for shipping cost. Free available for every country. <br /><br />For products without &lsquo;free shipping&rsquo; are not included in the item prices: you need to use the online system to generate a shipping quote for your order.<br /><br />Please put the desired number of items in your shopping cart.<br />Then click the ''Estimate Shipping Costs'' link, and choose your country to preview shipping prices for different shipping services.</p>', '', '', '', '', '0', 130),
(24, 1, 'Why can''t I choose my desired courier?', '<p>Due to different circumstances in different countries at different time, we have to use our discretion in choosing our courier. All we need from our customers is the length of time in which they desire to receive their products, and we will choose the courier according to that requirement</p>', '', '', '', '', '0', 127),
(25, 1, 'How do I save on shipping?', '<p>Due to the high price of international shipping, we suggest our customers to buy everything they want in one order. That way, the per-item shipping cost could be minimized. <br /><br />If you can wait a little longer, please choose the standard shipping method, it will be much cheaper than using express shipping.</p>', '', '', '', '', '0', 134),
(26, 1, 'How to ship products to me from cheap-chanel-watches?', '<p><strong>If I order products from cheap-chanel-watches.com</strong>, <strong>how would you ship them to me? How much would it cost? Will I be able to trace my order? </strong>"</p>\r\n<p>cheap-chanel-watches.com currently ships small and medium sized orders by international couriers. <br /><br />The shipping rates can be previewed inside the cheap-chanel-watches.com online shop system. You can just click on the "Estimated Shipping Costs" and choose the country you want to ship to, Shipping fees will be estimated by our system automatically.</p>\r\n<p><br /><br />*<strong>How can I trace my order?</strong></p>\r\n<p><strong></strong><br />Once your order is shipped, you will receive an email from us. In this email, there should be the tracking information for your packages as well as the website in which you could trace your order at.</p>\r\n<p><br /><br />*<strong>How Long Will It Take To Delivery? </strong></p>\r\n<p>Total delivery time is composed of thress&nbsp;parts. The first part is the processing time. This is the time from when your payment is received to when we gather up all the items and package them. The second part is after your order is processed, we send it to the warehouse.&nbsp;The last part is the actual shipping time. This is the time that it takes for the package to be delivered by the couriers to the destination. Standard shipping normally takes 3-7 days, and express shipping normally takes 2-4 days. Processing takes 1-2 days normally.</p>\r\n<p><br /><br />* <strong>Are the packages insured? </strong></p>\r\n<p><strong></strong><br />Shipping with couriers is insured and can be tracked online. Once your goods are sent out we will email you with a tracking number so you can trace your delivery any time you want. <br /><br />We offer Shipping Insurance for the total of US$ 1.99 to protect your package against any lost or damaged shipments. If a missing issue arises, we will reship your order immediately.</p>', '', '', '', '', '0', 147),
(27, 1, 'Need to contact DHL about your delivery?', '<p>Below is the list for your reference of DHL contact numbers for listed countries. Sometimes if there is a delivery problem, our customer service staff will personally contact DHL China to assist you, meanwhile you also can contact your local DHL yourself, and maybe the problem will be solved quicker.<br /><br /><br />DHL UK: +44 1332816960<br />DHL France: +33 472613098<br />DHL Australia: +61 738457850<br />DHL Germany: +49 610376560<br />DHL Canada: +1 9056731345<br />DHL Denmark: +45 70345345<br />DHL Hellas (Greece) +30-210-989 0000 <br /><br />DHL USA<br />- Customer Service: 1-800-225-5345<br />- Attempted Delivery Inquires: 1-888-273-8876<br /><br />If you know any more useful local courier numbers, please let us know, as the courier companies aren''t too good at publishing them!</p>', '', '', '', '', '0', 137),
(28, 1, 'TNT contact phone number in main destination countries', '<p><span class="mediumtext">Here we list some countrys'' TNT contact phone number for your reference,Sometimes if there is any delivery Below is the list for your reference of TNT contact numbers for listed countries. Sometimes if there is a delivery problem, our customer service staff will personally contact TNT China to assist you, meanwhile you also can contact your local TNT yourself, and maybe the problem will be solved quicker.<br /><br />TNT Japan&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 55201 900<br />TNT India&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 222 823 4060<br />TNT Australia&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 93177 717<br />TNT New Zealand&nbsp;&nbsp; 92550500<br />TNT US&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 800 558 5555<br />TNT Mexico&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 555 242 9159<br />TNT Canada&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 905 672 9753<br />TNT Brazil&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5564 8600<br />TNT UK&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 02072310455<br />TNT France&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 148144814<br />TNT Italy&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 025808881<br />TNT Germany&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4073469 0<br />TNT Sweden&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8 625 5 8 00<br />TNT Finland&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20 420&nbsp; 420<br />TNT Denmark&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7938051 1<br />TNT Norway&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 81000810<br />TNT Holland&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 204744000<br />TNT Spain&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 9166059 00<br />TNT Russia&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4957972 700<br />TNT Turkey&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 212 410 1500<br />TNT Israel&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8 91402 22<br />TNT Switzerland&nbsp;&nbsp; 62 837&nbsp; 00 00 </span></p>', '', '', '', '', '0', 116),
(29, 1, '"I am an online seller, can you show me how to shipping', '<p>Please log in to your cheap-chanel-watches.com account, put items in your cart, and preview the shipping cost in the checkout process. You can also go back, change the items in your cart, and see how the prices change if you order more or fewer pieces.<br /><br />The calculation is automatic and based on your shipping address and the weight of the items! <br /><br />There are two reasons why we can''t publish fixed shipping rates or put them in a table on our website:<br /><br />1: Displaying the calculation chart would be too big. Imagine over 100 location codes, 50 weight bands, factoring of constants for each combination, exceptions, etc. Now imagine this information, but for four or five different courier companies. You can''t represent that in a simple way, which is why we just let customers preview calculations for their order in the checkout system.<br /><br />2: The shipping rates for different countries are changed monthly by the courier companies, so shipping quotes are not a static equation. This means that publishing the information online is even more unfeasible.</p>', '', '', '', '', '0', 120),
(30, 1, 'How To Make An Order From cheap-chanel-wathes?', '<p><strong>I Do Not Know How To Make Orders? Can You Help Me To Make An Order On Your Website?</strong><br /><br />Here are some&nbsp;&nbsp;step-by-step instructions to help you make an order from cheap-chanel-wathes:<br /><br />1-&nbsp; Register with&nbsp;cheap-chanel-wathes for free.<br /><br />2-&nbsp; Log in your cheap-chanel-wathes account. <br /><br />3-&nbsp; Search or browse products, and if you wish to buy them, type a number in the quantity box and click "Add to cart". You can add just one piece item if you want. You can remove them later or adjust the quantities if you change your mind.Products you''ve added to your shopping cart are saved there while you looking at more items. Your cart is even saved for next time if you log out or accidentally close your browser.<br /><br />4-&nbsp; If you want to find out the total price including shipping, click "Estimate Shipping Costs" in the shopping cart page.</p>\r\n<p>5.- The first checkout page is "address book", you can edit you billing address or change shipping address. e.g. to an different dropship address.<br /><br />6.- The&nbsp;second checkout page you can choose shipping methods.We offer free shipping for many kind of items, if we offer free shipping for the items you want,you can not choose shipping methods. On the same webpage you can also choose the payment method you prefer. In the textbox"Special Instructions Or Comments", you can add special request for your order. e.g. the declared value of the package that you wish for customs purposes.<br /><br />7.- If you choose paypal, you can click paypal link to pay for your order directly; If you do not want to pay&nbsp;it now, you can click "Place An Order" to make an order first and pay it later.You will receive an email confirming your order information.<br /><br />We will begin processing your order when payment is received. After we send out your order, we will email you the tracking number and tracking links to your registered email address.</p>', '', '', '', '', '0', 141),
(31, 1, 'Is It Safe To Shop At cheap-chanel-wathes?', '<p>At cheap-chanel-wathes.com, we go to the extreme to ensure the safety of our customers'' information. We do not store your payment information on the website. Payments made through PayPal are processed by Paypal company, it is&nbsp;considered to be secure and trustworthy. We also do not disclose your information to third parties.</p>', '', '', '', '', '0', 121),
(32, 1, 'After Payment,How Can I Check The Status Of My Order?', '<p>During the process of purchase, you should receive several emails from us. There will be an email confirming your order information, and we will also email you the tracking number after we ship out your order.<br /><br />You also can log in your&nbsp;cheap-chanel-wathes account to check status of all of your orders.</p>', '', '', '', '', '0', 127),
(33, 1, 'Want To Order Some Products.', '<p><span class="mediumtext">Please place orders using our online shop system for products you like. It is also very easy to register with cheap-chanel-wathes and start ordering right away. <br /></span></p>\r\n<p><span class="mediumtext">Please don''t attempt to place orders by email, fax, or phone unless some special occasions. Please discuss with our customer service representative.</span></p>\r\n<p>You need to register with cheap-chanel-wathes before placing orders.<span class="mediumtext"><br /><br /></span>Any products added to your online cart remain there until you remove them, or check them out.</p>', '', '', '', '', '0', 136),
(35, 1, 'Can I Get Any Special Discount For My Order?', '<p>Yeah, you can contact our online salesman, depending on the amount of your order, they may offer you some special coupon.<br /><br />We also offer limited time sale, please contact with our online salesman for detailed information.</p>', '', '', '', '', '0', 132),
(36, 1, 'Instructions for returning faulty goods', '<p>Before returning goods, please contact us first to discuss the issues you are having. 90% of the time we are able to sort out the problem by giving technical support, without you having to send anything back.<br /><br />If there are irremediable defects with the devices, you can return them back to us for repair or replacement under our twelve months warranty.<br /><br />Please go to our HelpCenter to submit a ticket., and we will offer you a return code (e.g. RETURN10208) and our return address, along with additional important instructions.<br /><br />Generally we advise you to return faulty goods by sending them through the Post Office rather than using couriers like DHL, UPS, and TNT. Normally it will take 2 weeks to return goods to us by Post Office.<br /><br />If you did not buy your product directly from cheap-chanel-watches.com, you will need to contact the vendor who sold it to you.</p>', '', '', '', '', '0', 124),
(37, 1, 'How to cancel an order? Before payment and after payment.', '<p><span class="mediumtext"><span style="font-size: small;"><strong>Cancellation before payment</strong><br /></span></span></p>\r\n<p><span class="mediumtext">If you have not paid for your order yet, there is no need to contact us to cancel it. We receive hundreds of ''test'' orders each day which our members are using to quote certain cart contents and save the invoice for later references.<br /><br />We ignore all orders until a matching payment is received. So if you haven''t paid, don''t worry, we are not processing your order.<br /><br />You are under no obligation to follow through and pay for an order just because you checked out your shopping cart online. If you want to do test orders to save certain invoices for later you are welcome to do this.<br /><br />If your order is more than a week old please note you may not be able to "reactivate" it by sending a payment, because the prices of the items may have changed as well as the shipping rates and currency conversions. You may need to repeat the order with a new cart.<br /><br /><br /><strong><span style="font-size: small;">Withdrawing an order after payment<br /></span></strong><br />If you have already paid for an order and want to cancel it, please contact us as soon as possible.<br /><br />If you are uncertain about something in your order and you wish to change it, please contact us and put the order on hold while you decide. This will stop the packaging process so you still time to make changes.<br /><br />If the package has already been delivered we cannot cancel or change the order.<br /><br />If you want to cancel an order because you are ADDING further products, but not canceling the previous items, simply contact us and we will process it, usually for no extra fees.<br /><br />If the order is in an early processing stage you may be able to change and cancel it. You can ask for a refund or keep your payment as a credit.</span></p>', '', '', '', '', '0', 133),
(38, 1, 'Who is responsible for product damage or loss during transit?', '<p>We offer Shipping Insurance for just US$ 1.99 to protect your package, in case of lost or damage problems. Any missing issues reported, we will reship your order immediately.<br /><br />You can add shipping insurance when you checkout your order, it is worth it.</p>', '', '', '', '', '0', 139),
(39, 1, 'I have problems in using the product I ordered, please help!', '<p>Firstly please check the English manual that comes with the product, or you can check for online manuals or Blogs for advice. If you still can&rsquo;t figure out the problem, please submit a ticket to our customer service representative at:<a href="http://help.taoxieyoua.com/"> www.cheap-chanel-watches.com</a>. They will offer you professional tech support and help you assess if your product is defected.</p>', '', '', '', '', '0', 126),
(40, 1, 'Can Your Cellphone Be Used In My Country?', '<p>Please pay attention to the band of cellphone,some kinds of cellphone may can not be used in your country.The band<br />means the frequency that cellphone support.</p>\r\n<p>US&nbsp; &amp; Canada&nbsp; support GSM 850mHz/1900mHz<br />Europe&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; support GSM 900mHz/1800mHz<br />Australia&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; support GSM 900mHz/1800mHz<br />Southeast Asia support GSM 900mHz/1800mHz<br /><br />IF you are in US,please do not choose dualband cellphone GSM 900mHz/1800mHz,It will can not be used in US.You can choose triband ones:900/1800/1900 MHz or qualband ones.<br /><br />If you are not sure about the frequency your sim card support,please ask some information the sim card carrier,or you can contact us.</p>', '', '', '', '', '0', 62),
(41, 1, 'Which Kind Of Wii Is Available At taoxieyoua Now?', '<p>The wii we supply is Japan version,So the menu limits in Japanese. <br /><br />For different versions, Their user interface layouts are the same. We can provide English and Japanese manuals in hardcopy format for each. Then the end-user would find it easy to use by comparing it with the Japanese user interface that comes with the wii console we are selling. <br /><br />All the games come with the wii is in English.&nbsp;&nbsp; <br /><br /><br />The wii we supply has been decoded by Wiikey, It support the NTSC format, Thus the wii can play some of the PAL games But it can play all the NTSC games. If you are in Europe, please try to buy the NTSC format games on the www.ebay.com or other websites<br /><br /><br />The software of the wii is 3.1 version. if you want to update the wii system, please connect wii with the internet, and following the procedure to update the system online.<br /><br /><br />Because this is Japan version, So it support the NTSC model only, If you are in Europe, Your TV must compatible with the NTSC model. The European and Australian customers will get a free power convertor, As the power of the wii is 110V.<span style="font-size: 10pt; color: black; font-family: Verdana;"> <br /></span></p>', '', '', '', '', '0', 63);
INSERT INTO `faqs_description` (`faqs_id`, `language_id`, `faqs_name`, `faqs_description`, `faqs_answer`, `faqs_url`, `faqs_contact_name`, `faqs_contact_mail`, `faqs_owner`, `faqs_viewed`) VALUES
(42, 1, 'Colour Chart & Size Chart For Bridal Dress, Bridesmaid Dress', '<h3><strong>The Size Chart (Standard US Size 2-28 or Custom Size for large size)</strong></h3>\r\n<table class="table_style_1" border="0" cellspacing="0" cellpadding="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<th style="font-size: 16px;" colspan="20">Bridesmaid / Formal, Special Occasion Dress Size Chart<br /></th>\r\n</tr>\r\n<tr>\r\n<td class="tit">US Size No.</td>\r\n<td>2</td>\r\n<td>4</td>\r\n<td>6</td>\r\n<td>8</td>\r\n<td>10</td>\r\n<td>12</td>\r\n<td>14</td>\r\n<td>16</td>\r\n<td>18</td>\r\n<td>20</td>\r\n<td>22</td>\r\n<td>24</td>\r\n<td>26</td>\r\n<td>28</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Bust(inches)</td>\r\n<td>33</td>\r\n<td>34</td>\r\n<td>35</td>\r\n<td>36</td>\r\n<td>37</td>\r\n<td>39</td>\r\n<td>40</td>\r\n<td>42</td>\r\n<td>43</td>\r\n<td>45</td>\r\n<td>47</td>\r\n<td>49</td>\r\n<td>52</td>\r\n<td>56</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Waist(inches)</td>\r\n<td>24</td>\r\n<td>25</td>\r\n<td>26</td>\r\n<td>27</td>\r\n<td>28</td>\r\n<td>30</td>\r\n<td>31</td>\r\n<td>33</td>\r\n<td>34</td>\r\n<td>36</td>\r\n<td>38</td>\r\n<td>40</td>\r\n<td>43</td>\r\n<td>47</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Hips(inches)</td>\r\n<td>36</td>\r\n<td>37</td>\r\n<td>38</td>\r\n<td>39</td>\r\n<td>40</td>\r\n<td>42</td>\r\n<td>43</td>\r\n<td>45</td>\r\n<td>46</td>\r\n<td>48</td>\r\n<td>50</td>\r\n<td>52</td>\r\n<td>55</td>\r\n<td>59</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Hollow to Hemb(inches)</td>\r\n<td>59</td>\r\n<td>59</td>\r\n<td>60</td>\r\n<td>60</td>\r\n<td>60</td>\r\n<td>60</td>\r\n<td>61</td>\r\n<td>61</td>\r\n<td>61</td>\r\n<td>61</td>\r\n<td>62</td>\r\n<td>62</td>\r\n<td>62</td>\r\n<td>62</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>The Size Chart For Children</strong></h3>\r\n<table class="table_style_1" border="0" cellspacing="0" cellpadding="0" width="100%">\r\n<tbody>\r\n<tr>\r\n<th style="font-size: 16px;" colspan="20">Dress Size Chart For Childen (inches) </th>\r\n</tr>\r\n<tr>\r\n<td class="tit">US Size No.</td>\r\n<td>2</td>\r\n<td>3</td>\r\n<td>4</td>\r\n<td>5</td>\r\n<td>6</td>\r\n<td>8</td>\r\n<td>9</td>\r\n<td>10</td>\r\n<td>11</td>\r\n<td>12</td>\r\n<td>13</td>\r\n<td>14</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Bust</td>\r\n<td>21</td>\r\n<td>22</td>\r\n<td>23</td>\r\n<td>24</td>\r\n<td>25</td>\r\n<td>27</td>\r\n<td>28</td>\r\n<td>28.5</td>\r\n<td>29</td>\r\n<td>30</td>\r\n<td>31</td>\r\n<td>32</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Waist</td>\r\n<td>20</td>\r\n<td>20.5</td>\r\n<td>21</td>\r\n<td>21.5</td>\r\n<td>22</td>\r\n<td>23.5</td>\r\n<td>24</td>\r\n<td>24.5</td>\r\n<td>25</td>\r\n<td>25.5</td>\r\n<td>26</td>\r\n<td>27</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Hips</td>\r\n<td>22</td>\r\n<td>23</td>\r\n<td>24</td>\r\n<td>25</td>\r\n<td>26</td>\r\n<td>28</td>\r\n<td>29</td>\r\n<td>30</td>\r\n<td>31</td>\r\n<td>32</td>\r\n<td>33</td>\r\n<td>34</td>\r\n</tr>\r\n<tr>\r\n<td class="tit">Height from<br />head to floor</td>\r\n<td style="padding: 2px;">35-36</td>\r\n<td style="padding: 2px;">36-40</td>\r\n<td style="padding: 2px;">40-44</td>\r\n<td style="padding: 2px;">44-46</td>\r\n<td style="padding: 2px;">46-48</td>\r\n<td style="padding: 2px;">50-51</td>\r\n<td style="padding: 2px;">51-54</td>\r\n<td style="padding: 2px;">54-56</td>\r\n<td style="padding: 2px;">56-57</td>\r\n<td style="padding: 2px;">57-58</td>\r\n<td style="padding: 2px;">58-60</td>\r\n<td style="padding: 2px;">60-61</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><br /></h3>\r\n<h3><strong>The Colours Chart For Bridal Dress, Bridesmaid Dress, Dress Belt&amp; Lady''s Evening Dress</strong></h3>\r\n<table class="table_style_2" border="0" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<th colspan="7" align="center">Color Palette</th>\r\n</tr>\r\n<tr>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_031222416289.gif" border="0" alt="" width="43" height="40" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_051222416339.gif" border="0" alt="" width="43" height="39" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_071222416445.gif" border="0" alt="" width="44" height="40" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_091222416519.gif" border="0" alt="" width="43" height="40" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_111222416546.gif" border="0" alt="" width="44" height="40" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_131222416566.gif" border="0" alt="" width="44" height="40" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_151222416752.gif" border="0" alt="" width="43" height="40" /></td>\r\n</tr>\r\n<tr>\r\n<td height="30" valign="top"><strong>Grape</strong></td>\r\n<td valign="top"><strong>Lilac</strong></td>\r\n<td valign="top"><strong>LightSlateGray</strong></td>\r\n<td valign="top"><strong>Lavender</strong></td>\r\n<td valign="top"><strong>Pink</strong></td>\r\n<td valign="top"><strong>Brown</strong></td>\r\n<td valign="top"><strong>Chocolate</strong></td>\r\n</tr>\r\n<tr>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_151222416752.gif" border="0" alt="" width="43" height="40" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_251222417077.gif" border="0" alt="" width="43" height="41" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_261222417096.gif" border="0" alt="" width="44" height="41" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_271222417119.gif" border="0" alt="" width="43" height="41" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_281222417306.gif" border="0" alt="" width="44" height="41" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_291222417706.gif" border="0" alt="" width="44" height="41" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_301222417737.gif" border="0" alt="" width="43" height="41" /></td>\r\n</tr>\r\n<tr>\r\n<td height="30" valign="top"><strong>Black</strong></td>\r\n<td valign="top"><strong>Champagne</strong></td>\r\n<td valign="top"><strong>Gold</strong></td>\r\n<td valign="top"><strong>Ivory</strong></td>\r\n<td valign="top"><strong>Burgundy</strong></td>\r\n<td valign="top"><strong>Red</strong></td>\r\n<td valign="top"><strong>Org</strong></td>\r\n</tr>\r\n<tr>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_381222417757.gif" border="0" alt="" width="43" height="42" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_391222417782.gif" border="0" alt="" width="43" height="42" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_401222417872.gif" border="0" alt="" width="44" height="42" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_411222417907.gif" border="0" alt="" width="43" height="42" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_421222417925.gif" border="0" alt="" width="44" height="42" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_431222417945.gif" border="0" alt="" width="44" height="42" /></td>\r\n<td><img src="http://image.atopk.com/images/wholesale/200809/color(2)_441222417965.gif" border="0" alt="" width="43" height="42" /></td>\r\n</tr>\r\n<tr>\r\n<td height="20" valign="top"><strong>White</strong></td>\r\n<td valign="top"><strong>Silver</strong></td>\r\n<td valign="top"><strong>Hunter</strong></td>\r\n<td valign="top"><strong>Green</strong></td>\r\n<td valign="top"><strong>Sage</strong></td>\r\n<td valign="top"><strong>Royal Blue</strong></td>\r\n<td valign="top"><strong>Blue</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><strong>How to Measure:</strong></p>\r\n<p><br />To ensure accurate measurements we suggest having a professional seamstress measure you. If you do not get a professional seamstress to take your measurements you should follow this guide to ensure proper fit.</p>\r\n<p>Please Note: You should always have someone else take your measurements, physically measuring yourself will provide you with inaccurate numbers, so please have someone help you.<br /><br /><img src="http://help.taoxieyoua.com/index.php?pg=file&amp;from=2&amp;id=50" border="0" alt="" /></p>', '', '', '', '', '0', 55),
(43, 1, 'I Can''t Log In', '<p>Please follow the following instructions:<br /><br />Check your login details. Your login username is the email address you used for registration.<br /><br />It might be a problem caused by cheap-chanel-watches.com system maintenance - Please wait 30 minutes and try again.<br /><br />Ensure that cookies from <a href="http://www.cheap-chanel-watches.com">www.cheap-chanel-watches.com</a> are accepted in your browser (Internet Explorer or others).<br /><br />If nothing works please submit a ticket, our customer service will help you solve it out.<br /><br />TIP: If you''re not sure if the problem is with us or you, please test logging in with a different set of computer, or try different browsers.<br /><br /><br /><br /><br />If you made a mistake when you registered, and you can''t access your account, and you''ve never made any orders, it might be quickest to just use the registration to sign up again for a new account.<br /><br />If you have forgotten your password, please go here to get a new password.</p>', '', '', '', '', '0', 120),
(44, 1, 'I paid for an order and the order was canceled, why?', '<p><span class="mediumtext"><strong>Why was my order cancelled? Why did you refund my payment?</strong><br /><br />If we returned your money to you and closed your order, it is most likely because we were unable to verify your payment, or the products you want ordered are out of stock. In most cases, our customer service staff will contact you by phone or email to discuss the matter with you, but if we can not get in touch with you within 5 days time after we receive your payment, we will automatically return the funds to you. It is our responsibility to ensure the safety of your money and purchase order.<br /><br />Possible reasons for refunding money are:<br /><br />- PayPal account name and address does not match your order''s shipping address, and there was no response when we try to contact you. <br /><br />- The products you ordered are out of stock (we usually keep our inventory stocked and updated), and there was no response when we try to contact you.</span></p>', '', '', '', '', '0', 136),
(45, 1, 'I want to cancel an order placed wrongly', '<p><span class="mediumtext"><span style="font-size: small;"><strong>Cancellation before payment</strong><br /></span></span></p>\r\n<p><span class="mediumtext">If you have not paid for your order yet, there is no need to contact us to cancel it. We receive hundreds of ''test'' orders each day which our members are using to quote certain cart contents and save the invoice for later references.<br /><br />We ignore all orders until a matching payment is received. So if you haven''t paid, don''t worry, we are not processing your order.<br /><br />You are under no obligation to follow through and pay for an order just because you checked out your shopping cart online. If you want to do test orders to save certain invoices for later you are welcome to do this.<br /><br />If your order is more than a week old please note you may not be able to "reactivate" it by sending a payment, because the prices of the items may have changed as well as the shipping rates and currency conversions. You may need to repeat the order with a new cart.<br /><br /><br /><strong><span style="font-size: small;">Withdrawing an order after payment<br /></span></strong><br />If you have already paid for an order and want to cancel it, please contact us as soon as possible.<br /><br />If you are uncertain about something in your order and you wish to change it, please contact us and put the order on hold while you decide. This will stop the packaging process so you still time to make changes.<br /><br />If the package has already been delivered we cannot cancel or change the order.<br /><br />If you want to cancel an order because you are ADDING further products, but not canceling the previous items, simply contact us and we will process it, usually for no extra fees.<br /><br />If the order is in an early processing stage you may be able to change and cancel it. You can ask for a refund or keep your payment as a credit.</span></p>', '', '', '', '', '0', 139),
(46, 1, 'How To Drop-Ship With cheap-chanel-watches?', '<p>cheap-chanel-watches allows drop-ship orders for all registered customers.<br /><br />There are no additional charges.<br /><br />Just order online the same way as usual, but add different shipping addresses.<br /><br />We always check carefully (for fraud prevention) if the shipping address is different to the billing address, so if you are a new drop-shipping customer, please make sure that your PayPal account is verified.<br /><br />We do not include cheap-chanel-watches publicity materials / invoices etc when we send drop ship goods, so it protects your reputation as a seller. They will not know the source of your goods, and they will not know the price you that you paid for it.<br /><br />If your customer has technical support issues, or wants to return a product, they will have to discuss this with you first because it&rsquo;s your account with cheap-chanel-watches.<br /><br />Please note that if there are import taxes to pay, you will have to pay this when you receive the goods from the courier. So if you''re drop-shipping, your customers may ''unexpectedly&rsquo; have to pay ''extra charges''. <br /><br />Please note it''s your responsibility as the cheap-chanel-watches buyer / drop-ship vendor to find out information about taxes and inform your customers. Although of course we will do whatever we can to help you minimize the tax burden if you have special packing/ declaration instructions.</p>', '', '', '', '', '0', 130),
(47, 1, 'What Is The Meaning Of Drop-ship?', '<p>Drop-ship is common among the Electronics retailing business. Drop-ship means a reseller instruct their wholesale counterpart, which may be located in a duty free zone, to ship out orders according to the reseller and delivering directly to their customers in a as and when basis. The reseller does not actually take the job of stocking, packaging and shipping.<br /><br />Wholesale on the other hand means buying products in bulks and get a discount from it, then retailing it one at a time to make a profit. This is the conventional way of retail business.<br /><br />With the internet kicking in around the world, drop-shipping does make sense after all. Most drop ship services only exist hand in hand with the internet so no one will know that you don&rsquo;t keep an inventory on-hand. You won''t be able to sell products with your conventional store front without products, right?<span style="font-size: small; font-family: Arial;"><span style="font-size: x-small;"> </span></span></p>', '', '', '', '', '0', 111),
(48, 1, 'Fair Use of cheap-chanel-watches website materials', '<p><span class="mediumtext"><em>Can I use your pictures or descriptions on my website?<br />Can I copy your website pages for my reselling or drop-shipping electronics business?</em><br /><br />*In general cheap-chanel-watches is open about sharing product pictures and descriptions, because we want to help out drop-shippers and eBay sellers in their online listings.<br /><br />*Please don''t copy an entire cheap-chanel-watches web page or design your web pages to imitate the appearance of cheap-chanel-watches.com.<br /><br />**Please read the following notes on copying / use of content from cheap-chanel-watches.com:<br /><br />- You may use product pictures and product descriptions from cheap-chanel-watchesa freely, provided they are used appropriately in the context of your reselling or affiliate activities.<br /><br />- Please don''t copy or adapt customer testimonials or product reviews.<br /><br />- Please don''t copy or adapt cheap-chanel-watches Knowledgebase articles.<br /><br />- All material on cheap-chanel-watches.com is copyrighted and we reserve the right to change our policy at a later date.<br />&nbsp;<br />If you feel you can give us suggestions to improve the product descriptions (an ongoing task as we are always adding new products which start off with no English description at all!), we are always grateful to hear your feedback!<br /><br />Likewise, we are grateful if you improve product photographs and are willing to share them (in lower resolution formats) with cheap-chanel-watches and our other members.</span></p>', '', '', '', '', '0', 126),
(49, 1, 'Taxes on imported goods', '<p>We don''t add taxes, VAT, or other hidden charges. You pay what you see on the checkout page, i.e. goods subtotal + shipping cost.<br /><br />However - In most countries in the world you have to pay taxes on imported goods. Sometimes goods under a certain value, or in certain categories, do not incur taxes.<br />The rules are different in every country.<br /><br />In any one country the rules are often applied differently in different places, and sometimes rather randomly.<br /><br />taoxieyoua is based in China. We are a Chinese company. Therefore anything you buy from us is going to be imported as far as your country''s customs are concerned.<br /><br />Unfortunately there is no way for us to know the rules, regulations, customs, traditions, practices, loopholes, schemes, systems, paperwork, codes, laws, or rulings of any country.<br /><br />As such we cannot, and will not, offer advice about taxes in your country.<br /><br />As the buyer, it is your responsibility to find out that information before you order.<br /><br />If you have to pay import taxes and/or additional duties and sales taxes (e.g. VAT in the UK) then you would have to pay that to the courier upon receipt of the package(s) from China. Unfortunately we can''t calculate this for you and there is no way to pre-pay it. If you are drop-shipping or sending a gift item to someone else please make sure they are aware of the possibility of having to pay taxes when receiving the goods.<br /><br />If you order goods from us and feel that you''ve been unexpectedly ''stung'' with taxes at your end, please don''t blame us. <br /><br />Please find out as much as you can about your import taxes in your own country before completing your order.<br /><br />If you find out information about the import tax situation in your country, and you believe there are ways for you to minimize the taxes you have to pay (or eliminate the taxes altogether), we are more than happy to follow your instructions regarding labeling, packing, declarations, invoices, etc. Just tell us what you need and we will let you know what we can do to help.</p>', '', '', '', '', '0', 128),
(50, 1, 'How much tax do I need to pay?', '<p>Please note that all import taxes / duties are the buyer&rsquo;s responsibility.<br />&nbsp;<br />cheap-chanel-watches will accept no responsibility for customs costs incurred.<br /><br />Many countries do not charge import duties on private items, samples, and goods below a certain stated value. <br /><br />However, you may find that you have to pay taxes when goods you&rsquo;ve ordered from us arrive in your country. <br /><br />Obviously you will want this to be as low as possible, but cheap-chanel-watches CANNOT give you advice or information about tax rates and customs charges in your country. <br /><br />You must ensure you find out about regulations in your own country before ordering from cheap-chanel-watches. In most countries the actual origin of the goods (China) is not important: only the declared value of the goods and declared contents is relevant.<br /><br />Let us know if you have any special packing or labeling instructions when placing your order.</p>', '', '', '', '', '0', 115),
(51, 1, 'Why I was asked for "CPF" number? -Brazil Customers', '<p><strong>Why I was asked for "CPF" number?<br /></strong><span class="mediumtext"><br />Our customers in Brazil have informed us that companies importing anything to Brazil are supposed to state their "CNPJ" number, and individuals are supposed to state their "CPF" number on invoices.<br /><br />So if you want us to ship your order to Brazil, please make sure you give us the correct "CNPJ" or "CPF" number, so the package can go through customs smoothly.&nbsp; </span></p>', '', '', '', '', '0', 142),
(52, 1, 'Can you declare $ X for my order to avoid import taxes?', '<p>Question: "I am in [COUNTRY]. If the order is declared over USD [TAX THRESHOLD] then I will be painfully taxed. Can you help me by declaring the goods at [VERY LOW VALUE]?"<br /><br />First, we will do our best to help you with import regulations.<br /><br />If you have special instructions for the waybill and invoice declaration on your orders, you need to tell us these instructions every time you order, using the online checkout comments box. One such example is instructing us to declare the value below a certain value.<br /><br />Can we always declare low? Like, under $30?<br /><br />The answer is NO, NOT ALWAYS... because your order value may be much higher than this and declaring that low value would not be feasible.<br /><br />Provided the value of your order / type/ quantity of the items is suitable for a declaration under $50, we will do our best to help you with this.<br /><br />If you need advice about whether a particular declared value is deemed possible, before you pay, you can check out an order and submit a ticket with your order number. We will then look at the contents of your order and your country and assess what declared value is sensible.</p>', '', '', '', '', '0', 129),
(53, 1, 'Can Products Be Returned Back For Refund,Repairment And Replacem', '<p>We&nbsp;will try our best to make sure the products shipped to our customers are in good quality.<br /><br />1.Return and full refund<br />--Products with quality problem in 7 days(from the date products were received)can be returned and refund.<br />--Customer need to send the products back to us,When we receive the products,We will give an full refund.<br /><br />2.Replace<br />--Products with quality problem in&nbsp;30 days(from the date products were received)can be returned and replaced.<br />--Customer need to send the products back to us,When we receive the products,We will replace new ones and ship back to customer.<br />--We will pay shipping fee for the replaced products we ship to the customer.</p>\r\n<div class="MsoNormal" style="margin: 0cm 0cm 0pt;"><br />3.Repair<br />--Products with quality problem in&nbsp;1 year(from the date products were received)can be returned and repaired.<br />--Customer need to send the products back to us,When we receive the products,We will repair and ship back to customer.<br />--We will pay shipping fee for the repaired products we ship to the customers.<br /><br />4.Return and partial refund.<br />--Because the international shipping fee is very high and most of pictures on taoxieyoua.com are taken by ourself with real products.So we do not give full refund for returns without quality problems.like"not like the picture""not as imagining"or just "not satisfied"<br />--We will reduce the shipping fee from the order total amount,that means a partial refund.<br /></div>', '', '', '', '', '0', 127),
(54, 1, 'How To Check My Order?', '<p>It is easy,after you placed an order,please log in your account using your email address.</p>\r\n<p>In your cheap-chanel-watches account,you can see all the orders you made including full information: shipping address, shipping method, payment information, also items ordered. You can also print an invoice by yourself.<br /><br />When the status of your order is updated, it will also show in your account. The tracking number will be submitted to your account after we ship out your package. You should also receive a email from cheap-chanel-watches including tracking number and links.<br /><br />You can also do some account setting or manage your address book.</p>', '', '', '', '', '0', 128),
(55, 1, 'What Does My Order Status Mean?', '<p>cheap-chanel-watches Order Status<br /><br />Here are all the different order status, and you will find the explanations below:<br /><br /><strong>Pending<br />Payment Received<br />Payment Confirmed<br />Payment Reviewing<br />Processing<br />Packaging<br />Shipped<br />Complete<br />Void<br />Contacting Customer<br />Order Tracing<br />Cancelled<br />Refunded<br />Repackaging<br />Returned<br />Repaired<br />Replaced<br />Return-refunded</strong><br /><br />Every time you checkout an order at cheap-chanel-watches.com, an order number is created for you.<br />If you decide not to pay for an order you''ve checked out, you don''t need to do anything - it will just automatically expire later.<br /><br /><strong>MEANING OF ORDER STATUS:</strong><br /><br /><strong>Pending</strong><br />This means that you have placed an order successfully, but we still have not received your payment.(you may have paid your order by western union or bank transfer, but it will take some time to confirm your payment and update status. Generally we can confirm western union payment in 24 hrs in working days; If you pay by bank transfer,It will be a little slower, normally it will take about 4-7 days to transfer money to our bank account.)<br /><br /><strong>Payment&nbsp; Received</strong><br />This means we have received&nbsp; your&nbsp; payment. Your order will be handled according to our standard procedure.</p>\r\n<p><strong>Payment Confirmed</strong><br />If you pay your order by Paypal, it means that we have verified your payment. If you pay by western union or bank transfer, it means that the payment information you offered is all matched, we already get the money.<br /><br /><strong>Payment Reviewing</strong><br />This means there is some problems with your payment, our cusotmer Service staff will contact you for details .<br />You can also email them to: <a href="mailto:service@vgoldzone.com">service@vgoldzone.com</a>&nbsp;to quicken the verification.<br /><br /><strong>Processing</strong><br />This means we are processing your order. We are gathering all the products you ordered together and check the quality, making sure they function well.<br /><br /><strong>Packaging</strong><br />We are packing all the products properly, also will follow your instructions to label tha package or add in customized invoice in package.<br /><br /><strong>shipped</strong><br />This means we have sent out your order. You will receive an email from cheap-chanel-watches including tracking number and links. You can also log in your account to check it.</p>\r\n<p><strong>Complete</strong><br />This means your order was delivered sucessfully, we will stop tracing this order. If there is any after sale issues, please contact our customer service representative for further action.<br /><br /><strong>Contacting Customer</strong><br />When we handle your order, there may be some unexpected issues, please check your email or phone, we may had contacted you but failed. We also suggest you go to our <a href="http://help.taoxieyoua.com/">HelpCenter</a> to submit a ticket, it''s easy to solve your problem.<br /><br /><strong>Void</strong><br />The order in this status will be irremediable and useless. The most possibility is that you asked us to cancell an unpaid order. <br /><br />Other status do not mean too much for customers. Basically they mainly help us to deal with after sale.</p>', '', '', '', '', '0', 126),
(58, 1, 'About cheap-chanel-watches Affiliates Programme', '<p>We recognize that business success involves building long term relationship with our partners. Therefore, we have designed our affiliate program.<br /><br />cheap-chanel-watches Affiliate Program is an incentive program wholesale that offers an opportunity to qualified affiliate channels (website, email, pay-per-click) to get paid for generating buyers in cheap-chanel-watches from their websites. Our affiliate partners have the opportunity to receive a commission generated from successful transactions completed by each user they refer to cheap-chanel-watches. There is no up-front investment and you are not required to purchase any products or inventory to participate<br /><br />Join our affiliate programme now.</p>', '', '', '', '', '0', 122),
(59, 1, 'How Much Can Affiliates Earn?', '<p><strong>Affiliates - Overview<br /><br /></strong>Affiliates Program drives internet traffic to taoxieyoua through specially formatted links that allow us to track transactions and other activity. Associates earn up to 5% in referral fees on all qualifying revenue made through their links.<br /><br /><strong>Commission<br /></strong><br />1. High Commission: sale plus 5% commission Rate. Please note that the sale does not include shipping fee, except that the merchandize is described as &ldquo;Free Shipping&rdquo;<br />2. 5% sale commission applies to all transactions within 60 days cookie duration<br />3. all transactions must be in status &ldquo;shipped&rdquo; and no any further complains such as replace nor refund requests in 15 days.<br />4. We cast up the accounts on 15th each calendar month, it includes the complete orders from 1st to 31st previous calendar month.<br />5. If there are any replacement issue happened to one order which made during previous calendar month, then it will be a deduction appearing in the upcoming calendar month checkout amount</p>', '', '', '', '', '0', 123),
(60, 1, 'What is an Affiliate?', '<p><span>In short, if you send someone to cheap-chanel-watches online, and that person makes an order, you get paid 5% commission on that sale.<br /><br />If the people you refer to our website don''t spend anything, you don''t get paid anything.<br /><br />But if they spend a lot, you get paid a lot too!<br /><br />Our Affiliates Program is good for us because it brings in new customers, and it is good for you because you can earn large amounts of money without having to actually sell anything.</span></p>', '', '', '', '', '0', 126),
(61, 1, 'Do Affiliates Need to Have Their Own Website?', '<p><span>No, anyone can be an affiliate. (Please note you need a Paypal account to collect commission&rsquo;s payments.)<br /><br />You just need to be creative and find places to put your unique&nbsp;taoxieyoua link, such as in emails to your customers, articles, online classifieds, or forum postings.</span></p>', '', '', '', '', '0', 136),
(62, 1, 'Privacy Policy', '<div>Thank you for accessing the web site ("Site") of cheap-chanel-watches.com, Limited. ("cheap-chanel-watches.com," that''s us). We respect your privacy and want to protect your personal information. To learn more, please read this Privacy Policy.<br />This Privacy Policy explains how we collect, use and (under certain conditions) disclose your personal information. This Privacy Policy also explains the steps we have taken to secure your personal information. Finally, this Privacy Policy explains your options regarding the collection, use and disclosure of your personal information. By visiting our Site, you accept the practices described in this Policy.<br />This privacy policy applies only to this Site. This privacy policy does not necessarily apply to our offline collection of your personal information. Please see below for details. We are not responsible for the content or privacy practices on any non-cheap-chanel-watches.com web site to which this Site links or that links to this Site.<br /></div>\r\n<h4 class="margin_t">INFORMATION COLLECTION AND USE</h4>\r\n<div><strong>1. Information Collection. We collect information from you in several different ways on this Site. One goal in collecting personal information from you is to provide an efficient, meaningful, and customized experience. For example, we can use your personal information to:</strong><br />\r\n<ul class="gray_trangle_list pad_1em">\r\n<li>help make this Site easier for you to use by not having to enter information more than once. </li>\r\n<li>help you quickly find information, products, and services. </li>\r\n<li>help us create content on this Site that is most relevant to you. </li>\r\n<li>alert you to new information, products, and services that we offer. </li>\r\n</ul>\r\n<br /><strong>(a)</strong> Registration and Ordering. Before using certain parts of this Site or ordering products, you must complete an online registration form. During registration, you will be prompted to provide to us certain personal information, including but not limited to your name, shipping and billing address(es), phone number, email address, and credit card number. In addition, we may also ask you for your country of residence and/or your organization''s country of operation, so we can comply with applicable laws and regulations, and for your gender. These kinds of personal information are used for billing purposes, to fulfill your orders, to communicate with you about your order and our site, and for internal marketing purposes. If we encounter a problem when processing your order, we use the personal information to contact you. <br /><strong>(b)</strong> Email Addresses. Several locations of the Site permit you to enter your email address for purposes including but not limited to: to register for a free promotion letter; to request us to notify you when we receive a new brand, new product style; to sign up for our email. Your participation in a contest is completely voluntary, so you have a choice whether to participate and disclose information to us. We use this information to notify contest winners and to award prizes. We may post on our Site the names and cities of contest winners.<br /><strong>(c)</strong> Cookies and Other Technology. Like many sites, this Site employs cookies and web beacons (also known as clear GIF technology or "action tags") to speed your navigation of the Site, recognize you and your access privileges, and track your Site usage.<br />&nbsp;&nbsp;&nbsp;&nbsp;(i) Cookies are small pieces of information that are stored as text files by your Internet browser on your computer''s hard drive. Most Internet browsers are initially set to accept cookies. You can set your browser to refuse cookies from web sites or to remove cookies from your hard drive, but if you do, you will not be able to access or use portions of this Site. We have to use cookies to enable you to select products, place them in an online shopping cart, and to purchase those products. If you do this, we keep a record of your browsing activity and purchase. THIS SITE''S COOKIES DO NOT AND CANNOT INFILTRATE A USER''S HARD DRIVE TO GATHER A USER''S CONFIDENTIAL INFORMATION. Our cookies are not "spyware." <br />&nbsp;&nbsp;&nbsp;&nbsp;(ii) Web beacons assist in delivering cookies and help us determine whether a web page on this Site has been viewed and, if so, how many times. For example, any electronic image on this Site, such as an ad banner, can function as a web beacon.<br />&nbsp;&nbsp;&nbsp;&nbsp;(iii) We may use third-party advertising companies to help us tailor site content to users or to serve ads on our behalf. These companies may employ cookies and web beacons to measure advertising effectiveness (such as which web pages are visited or what products are purchased and in what amount). Any information that these third parties collect via cookies and web beacons is not linked to any personal information collected by us.<br /><strong>(d)</strong> Log Files. As is true of most web sites, the Site server automatically recognizes the Internet URL from which you access this Site. We may also log your Internet protocol ("IP") address, Internet service provider, and date/time stamp for system administration, order verification, internal marketing, and system troubleshooting purposes. (An IP address may indicate the location of your computer on the Internet.)<br /><strong>(e)</strong> Age. We respect children''s privacy. We do not knowingly or intentionally collect personal information from children under age 13. Elsewhere on this Site, you have represented and warranted that you are either 18 years of age or using the Site with the supervision of a parent or guardian. If you are under the age of 13, please do not submit any personal information to us, and rely on a parent or guardian to assist you.<br /><strong>(f)</strong> Product Reviews. You may choose to submit a product review. If you post a review, we will ask for your email address and geographic location. If you submit a review, your geographic location will be visible to other users (your email address will be kept private). Also, any personally identifiable information that you submit as part of the review can be read or used by other visitors to the Site. We are not responsible for any personally identifiable information that you choose to submit as part of your review. We believe you can post a helpful review without disclosing any personal information.<br /><strong>2. Information Use and Disclosure.</strong><br /><strong>(a)</strong> Internal Use. We use your personal information to process your order and provide you with customer service. We may internally use your personal information to improve our Site''s content and layout, to improve our outreach and for our own marketing efforts (including marketing our services and products to you), and to determine general marketplace information about visitors to this Site.<br /><strong>(b)</strong> Communications with You: We will use your personal information to communicate with you about our site and your orders and deliveries. Also, we may send you a confirmation email when you register with us. We may send you a service-related announcement on the rare occasions when it is necessary (for example, if we must temporarily suspend our service for maintenance.) Also, you may submit your email address for reasons such as to request us to notify you when we receive a new brand, new product style, or product; to sign up for our email newsletter and special offers; If you submit your email address, we use it to deliver the information to you. We always permit you to unsubscribe or opt out of future emails (see opt out section, below, for more details). Because we have to communicate with you about orders that you choose to place, you cannot opt out of receiving emails related to your orders.<br /><strong>(c)</strong> External Use. We want to provide you with excellent service and to offer you a great selection - we primarily sell merchandise, not information. We do not sell, rent, trade, license or otherwise disclose your specific personal information or financial information to anyone, except that:<br />&nbsp;&nbsp;&nbsp;&nbsp;(i) As do most catalog and Internet wholesalers, we sometimes use others to perform specific functions on our behalf. When we disclose information to these service providers, we disclose information to help them to perform their service. For example, in order to deliver products to you, we must share some information. We partner with third parties (such as DHL, and UPS) to ship products, to ensure delivery, and so that we can obtain feedback, improve the quality of our service, and measure and improve the quality of the service of the third party. In the example of shippers, we provide them some personally identifiable information such as your name, shipping address, email, and phone number.<br />&nbsp;&nbsp;&nbsp;&nbsp;(ii) Similarly, to help you buy products and provide customer service to you, we must provide your credit card number to financial-services corporations such as credit-card processors and issuers. When we submit your credit card number for authorization, we use state-of-the-art data encryption to protect your information. (More on this below in the Data Security section.)<br />&nbsp;&nbsp;&nbsp;&nbsp;(iii) We may be required to disclose such information in response to requests from law-enforcement officials conducting investigations; subpoenas; a court order; or if we are otherwise required to disclose such information by law. We also will release personal information where disclosure is necessary to protect our legal rights, enforce our Terms of Use or other agreements, or to protect ourselves or others. For example, we may share information to reduce the risk of fraud or if someone uses or attempts to use our Site for illegal reasons or to commit fraud.<br />&nbsp;&nbsp;&nbsp;&nbsp;(iv) We will not sell (or trade or rent) personally identifiable information to other companies as part of our regular course of business. However, it''s possible that we might acquire or merge with or be acquired by another company or that we might dispose of some or all of our assets. If that happens, your personal information may be disclosed to another company, but that disclosure will be subject to the Privacy Policy in effect.<br />&nbsp;&nbsp;&nbsp;&nbsp;(v) We may share non-personal information (such as the number of daily visitors to a particular web page, or the size of an order placed on a certain date) with third parties such as advertising partners. This information does not directly personally identify you or any user.<br /></div>\r\n<h4 class="margin_t">DATA SECURITY</h4>\r\n<div>This Site incorporates physical, electronic, and administrative procedures to safeguard the confidentiality of your personal information, including Secure Sockets Layer ("SSL") for all financial transactions through this Site. We use SSL encryption to protect your personal information online, and we also take several steps to protect your personal information in our facilities. Access to your personal information is restricted. Only employees who need access to your personal information to perform a specific job are granted access to your personal information. Finally, we rely on third-party service providers for the physical security of some of our computer hardware. We believe that their security procedures are adequate. For example, when you visit our Site, you access servers that are kept in a secure physical environment, behind a locked cage and an electronic firewall.<br />While we use industry-standard precautions to safeguard your personal information, we cannot guarantee complete security. 100% complete security does not presently exist anywhere online or offline.</div>\r\n<h4 class="margin_t">OPT OUT/CORRECTIONS</h4>\r\n<div>Upon your request, we will (a) correct or update your personal information; (b) stop sending emails to your email address; and/or (c) disable your account to prevent any future purchases through that account. You can make these requests at the customer information section, or by telephoning, also you can go to our <span class="goog-spellcheck-word" style="background-position: 0% 0%; background-attachment: scroll; background-image: none; background-repeat: repeat; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">HelpCente</span>r to submit a ticket. Please do not email your credit-card number or other sensitive information.</div>\r\n<h4 class="margin_t">OFFLINE COLLECTION, USE &amp; DISCLOSURE OF INFORMATION</h4>\r\n<div>As you might expect from cheap-chanel-watches.com, the majority of information that we collect is obtained through our Site, and this Privacy Policy applies only to that online collection of personal information. We also collect information offline, where we also try to protect the privacy of you personal information. One example involves someone calling us to place an order or to ask questions. When someone calls, we will ask only for the personal information we need in order to place the order or to answer the question. When we need to store information (such as order information), we will enter it into our database through SSL encryption (See the Data Security section above for more information). There are other ways we could learn of personal information offline (for example, we suppose someone could send us a letter including some return address information), and this Policy doesn''t discuss or try to predict all of those methods or uses. As we mentioned, we primarily sell merchandise, not information, and we will try to treat offline collection, uses, and disclosures consistently with our relevant online practices.</div>\r\n<h4 class="margin_t">UPDATES TO THIS POLICY</h4>\r\n<div>If we change or update this Privacy Policy, we will post changes and updates on this Site so that you will always be aware of what information we collect, use and disclose. We encourage you to review this Privacy Policy from time to time so you will know if the Privacy Policy has been changed or updated. If you have any questions about the Privacy Policy, please email me <a href="mailto:service@vgoldzone.com">service@vgoldzone.com</a></div>', '', '', '', '', '0', 113);
INSERT INTO `faqs_description` (`faqs_id`, `language_id`, `faqs_name`, `faqs_description`, `faqs_answer`, `faqs_url`, `faqs_contact_name`, `faqs_contact_mail`, `faqs_owner`, `faqs_viewed`) VALUES
(63, 1, 'cheap-chanel-watches Term Of Use', '<p>ACCESSING, BROWSING OR OTHERWISE USING THE SITE INDICATES YOUR AGREEMENT TO ALL THE TERMS AND CONDITIONS IN THIS AGREEMENT, SO PLEASE READ THIS AGREEMENT CAREFULLY BEFORE PROCEEDING.</p>\r\n<p>USE OF SITE:<br />You represent and warrant that you are at least 18 years old or visiting the Site under the supervision of a parent or guardian. Subject to the terms and conditions of this Agreement, cheap-chanel-watches.com hereby grants you a limited, revocable, non-transferable and non-exclusive license to access and use the Site by displaying it on your internet browser only for the purpose of shopping for personal items sold on the Site and not for any commercial use or use on behalf of any third party, except as explicitly permitted by cheap-chanel-watches.com in advance. Any breach of this Agreement shall result in the immediate revocation of the license granted in this paragraph without notice to you.<br />Except as permitted in the paragraph above, you may not reproduce, distribute, display, sell, lease, transmit, create derivative works from, translate, modify, reverse-engineer, disassemble, decompile or otherwise exploit this Site or any portion of it unless expressly permitted by cheap-chanel-watches.com in writing. You may not make any commercial use of any of the information provided on the Site or make any use of the Site for the benefit of another business unless explicitly permitted by cheap-chanel-watches.com in advance. cheap-chanel-watches.com reserves the right to refuse service, terminate accounts, and/or cancel orders in its discretion, including, without limitation, if cheap-chanel-watches.com believes that customer conduct violates applicable law or is harmful to cheap-chanel-watches.com&rsquo;s interests.<br />You shall not upload to, distribute, or otherwise publish through this Site any Content, information, or other material that (a) violates or infringes the copyrights, patents, trademarks, service marks, trade secrets, or other proprietary rights of any person; (b) is libelous, threatening, defamatory, obscene, indecent, pornographic, or could give rise to any civil or criminal liability under U.S. or international law; or (c) includes any bugs, viruses, worms, trap doors, Trojan horses or other harmful code or properties. cheap-chanel-watches.com may assign you a password and account identification to enable you to access and use certain portions of this Site. Each time you use a password or identification, you will be deemed to be authorized to access and use the Site in a manner consistent with the terms and conditions of this Agreement, and cheap-chanel-watches.com has no obligation to investigate the authorization or source of any such access or use of the Site. YOU WILL BE SOLELY RESPONSIBLE FOR ALL ACCESS TO AND USE OF THIS SITE BY ANYONE USING THE PASSWORD AND IDENTIFICATION ORIGINALLY ASSIGNED TO YOU WHETHER OR NOT SUCH ACCESS TO AND USE OF THIS SITE IS ACTUALLY AUTHORIZED BY YOU, INCLUDING WITHOUT LIMITATION, ALL COMMUNICATIONS AND TRANSMISSIONS AND ALL OBLIGATIONS (INCLUDING WITHOUT LIMITATION FINANCIAL OBLIGATIONS) INCURRED THROUGH SUCH ACCESS OR USE. You are solely responsible for protecting the security and confidentiality of the password and identification assigned to you. You shall immediately notify cheap-chanel-watches.com of any unauthorized use of your password or identification or any other breach or threatened breach of this Site''s security.</p>\r\n<p>REVIEWS AND COMMENTS<br />Except as otherwise provided elsewhere in this Agreement or on the Site, anything that you submit or post to the Site and/or provide cheap-chanel-watches.com, including without limitation, ideas, know-how, techniques, questions, reviews, comments, and suggestions (collectively, "Submissions") is and will be treated as non-confidential and nonproprietary, and cheap-chanel-watches.com shall have the royalty-free, worldwide, perpetual, irrevocable and transferable right to use, copy, distribute, display, publish, perform, sell, lease, transmit, adapt, create derivative works from such Submissions by any means and in any form, and to translate, modify, reverse-engineer, disassemble, or decompile such Submissions. All Submissions shall automatically become the sole and exclusive property of cheap-chanel-watches.com and shall not be returned to you. <br />In addition to the rights applicable to any Submission, when you post comments or reviews to the Site, you also grant cheap-chanel-watches.com the right to use the name that you submit with any review, comment, or other Content, if any, in connection with such review, comment, or other content. You represent and warrant that you own or otherwise control all of the rights to the reviews, comments and other Content that you post on this Site and that use of your reviews, comments, or other Content by cheap-chanel-watches.com will not infringe upon or violate the rights of any third party. You shall not use a false e mail address, pretend to be someone other than yourself or otherwise mislead cheap-chanel-watches.com or third parties as to the origin of any Submissions or Content. cheap-chanel-watches.com may, but shall not be obligated to, remove or edit any Submissions (including comments or reviews) for any reason.</p>\r\n<p>INTELLECTUAL PROPERTY<br />All text, graphics, button icons, images, audio clips, and software (collectively, "Content"), belongs exclusively to cheap-chanel-watches.com or its content suppliers. The collection, arrangement, and assembly of all content on this Site (the "Compilation") belong exclusively to cheap-chanel-watches.com. All software used on this Site (the "software") is the property of cheap-chanel-watches.com or its Software suppliers. The Content, the Compilation and the Software are all protected by U.S. and international copyright laws. <br />cheap-chanel-watches.COM, cheap-chanel-watches.COM THE WEB''S MOST POPULAR SHOE STORE (&amp; design), THE SHOE STORE cheap-chanel-watches.COM (&amp; design), cheap-chanel-watches, TYPE L and other logos, slogans, trade names or words are registered trademarks, trademarks or service marks of cheap-chanel-watches.com, its suppliers, or third parties. The use of any cheap-chanel-watches.com trademark or service mark without cheap-chanel-watches.com''s express written consent is strictly prohibited. You may not use any cheap-chanel-watches.com trademark or service mark in connection with any non- cheap-chanel-watches.com product or service or in any way that is likely to cause confusion. You may not use cheap-chanel-watches.com''s trademarks or service marks in any manner that disparages or discredits cheap-chanel-watches.com. You may not use any of the cheap-chanel-watches.com trademarks or service marks in meta tags without the prior explicit consent of cheap-chanel-watches.com.</p>\r\n<p>TERMINATION AND EFFECT OF TERMINATION<br />In addition to any other legal or equitable remedies, cheap-chanel-watches.com may, without prior notice to you, immediately terminate the Agreement or revoke any or all of your rights granted under this Agreement. Upon any termination of this Agreement, you shall immediately cease all access to and use of the Site and cheap-chanel-watches.com shall, in addition to any other legal or equitable remedies, immediately revoke all password(s) and account identification issued to you and deny your access to and use of this Site in whole or in part. Any termination of this Agreement shall not affect the respective rights and obligations (including without limitation, payment obligations) of the parties arising before the date of termination.<br />DISCLAIMER AND LIMITATION OF LIABILITY<br />EXCEPT AS OTHERWISE PROVIDED IN THE STANDARD TERMS OF SALE THAT GOVERN THE SALE OF EACH PRODUCT ON THIS SITE, THIS SITE, THE PRODUCTS OFFERED FOR SALE ON IT AND THE TRANSACTIONS CONDUCTED THROUGH IT ARE PROVIDED BY cheap-chanel-watches.COM ON AN "AS IS" BASIS. cheap-chanel-watches.COM MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, AS TO THE OPERATION OF THE SITE OR THE INFORMATION, CONTENT, MATERIALS, OR PRODUCTS INCLUDED ON THIS SITE EXCEPT AS PROVIDED HERE TO THE FULL EXTENT PERMISSIBLE BY APPLICABLE LAW, cheap-chanel-watches.COM DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, TITLE, QUIET ENJOYMENT, DATA ACCURACY AND SYSTEM INTEGRATION. THIS SITE MAY INCLUDE INACCURACIES, MISTAKES OR TYPOGRAPHICAL ERRORS. cheap-chanel-watches.COM DOES NOT WARRANT THAT THE CONTENT WILL BE UNINTERRUPTED OR ERROR FREE. TO THE MAXIMUM EXTENT PERMITTED BY LAW, cheap-chanel-watches.COM WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OF THIS SITE, INCLUDING, BUT NOT LIMITED TO INDIRECT, INCIDENTAL, PUNITIVE, EXEMPLARY, SPECIAL OR CONSEQUENTIAL DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, cheap-chanel-watches.COM&rsquo;S TOTAL LIABILITY TO YOU FOR ANY DAMAGES (REGARDLESS OF THE FOUNDATION FOR THE ACTION) SHALL NOT EXCEED IN THE AGGREGATE THE AMOUNT OF FEES ACTUALLY PAID BY YOU TO cheap-chanel-watches.COM DURING THE MONTH IMMEDIATELY PRECEDING THE ACT ALLEGEDLY GIVING RISE TO cheap-chanel-watches.COM''S LIABILITY.<br />ORDER ACCEPTENCE<br />Please note that there may be certain orders that we are unable to accept and must cancel. cheap-chanel-watches.com reserves the right, at sole discretion, to refuse or cancel any order for any reason. Some situations that may result in your order being canceled include limitations on quantities available for purchase, inaccuracies or errors in product or pricing information, or problems identified by our credit and fraud avoidance department. We may also require additional verifications or information before accepting any order. We will contact you if all or any portion of your order is canceled or if additional information is required to accept your order.<br />TYPOGRAPHICAL ERRORS<br />While cheap-chanel-watches.com strives to provide accurate product and pricing information, pricing or typographical errors may occur. cheap-chanel-watches.com cannot confirm the price of an item until after you order. In the event that an item is listed at an incorrect price or with incorrect information due to an error in pricing or product information, cheap-chanel-watches.com shall have the right, at our sole discretion, to refuse or cancel any orders placed for that item. In the event that an item is mis-priced, cheap-chanel-watches.com may, at our discretion, either contact you for instructions or cancel your order and notify you of such cancellation.<br />ARBITRATION<br />Where the parties fail to settle dispute within 30 days after such dispute occurs, they agree to submit such dispute to Hong Kong International Arbitration Center (the &ldquo;HKIAC&rdquo;) for arbitration which shall be conducted in accordance with the Commission''s arbitration rules in effect at the time of applying for arbitration. The arbitral awards are final and binding upon both parties.<br />LINKS<br />This site may contain links to other sites on the Internet that are owned and operated by third parties. You acknowledge that cheap-chanel-watches.com is not responsible for the operation of or content located on or through any such site.<br />REMEDIES<br />You agree that cheap-chanel-watches.com''s remedy at law for any actual or threatened breach of this Agreement would be inadequate and that cheap-chanel-watches.com shall be entitled to specific performance or injunctive relief, or both, in addition to any damages that cheap-chanel-watches.com may be legally entitled to recover, together with reasonable expenses of any form of dispute resolution, including, without limitation, attorneys'' fees.<br />No right or remedy of cheap-chanel-watches.com shall be exclusive of any other, whether at law or in equity, including without limitation damages injunctive relief, attorneys'' fees and expenses.<br />No instance of waiver by cheap-chanel-watches.com of its rights or remedies under these terms and conditions shall imply any obligation to grant any similar, future or other waiver</p>', '', '', '', '', '0', 117),
(64, 1, 'cheap-chanel-watches Policies & Ter', '<p>Welcome to cheap-chanel-watches. You must enter into this Agreement if you want to submit digital images or other content to cheap-chanel-watches.com through the "Write a Review" section (the "Service"). As used in this Agreement, "we", "cheap-chanel-watches", or "cheap-chanel-watches.com" means cheap-chanel-watches Co. and "you" means the individual or entity submitting materials to cheap-chanel-watches. Any individual or entity that wants to use the Service must accept the terms of this Agreement without change. BY CLICKING THE ACCEPT TERMS AND CONDITIONS BUTTON, YOU AGREE TO BE BOUND BY ALL TERMS OF THIS AGREEMENT AND ALL SPECIFICATIONS AND GUIDELINES INCORPORATED BY REFERENCE.</p>\r\n<p>1) Eligibility. You may only submit Materials to the Service for which you hold all intellectual property rights; i.e. you must own all rights to such image or have the authorization of the person who does own those rights. The Service is limited to parties that lawfully can enter into and form contracts under applicable law. Minors may not submit Materials to the Service. Further, you may not submit any personally identifiable information about any child under the age of 13.</p>\r\n<p>2) Definitions. As used in this Agreement, (a) "Affiliates" means any entity controlled by, in control of, or under common control with cheap-chanel-watches, (b) "Materials" means all content that you submit to cheap-chanel-watches.com, including all photographs, illustrations, graphics and text, and (c) "Media" means any means of conveying information, whether now known or hereafter devised.</p>\r\n<p>3) License Grant for Materials. You hereby grant to cheap-chanel-watches and its Affiliates a worldwide, nonexclusive, royalty-free, perpetual right and license to (a) reproduce, distribute, transmit, publicly perform and publicly display the Materials, in whole or in part, in any manner and Media, (b) modify, adapt, translate and create derivative works from the Materials, in whole or in part, in any manner and Media, and (c) sublicense the foregoing rights, in whole or in part, to any third party, with or without a fee.</p>\r\n<p>4) Removal of Materials. If you decide you would like to remove your Materials from the Service, you may provide written notice to cheap-chanel-watches by either deleting the image through the cheap-chanel-watches interface or by contacting cheap-chanel-watches customer service (<a href="mailto:Service@cheap-chanel-watches.com">Service@vgoldzone.com</a>), and cheap-chanel-watches will remove such Materials from the Service within a reasonable period of time.</p>\r\n<p>5) License for Name, Trademarks and Likenesses. You hereby grant to cheap-chanel-watches, its Affiliates and sublicensees a nonexclusive, worldwide, royalty-free license to use all trademarks, trade names, and the names and likenesses of any individuals that appear in the Materials. You grant cheap-chanel-watches, its Affiliates and sublicensees the right to use the name that you submit in connection with the Materials.</p>\r\n<p>6) Specifications and Guidelines. You agree to submit Materials to us in accordance with all guidelines for use of the Service posted on the cheap-chanel-watches web site or of which you are otherwise notified ("Guidelines"), as these Guidelines may be changed in the future.</p>\r\n<p>7) Representations, Warranties and Indemnities. You represent and warrant to cheap-chanel-watches and its Affiliates that (a) you have the right, power, and authority necessary to enter into this Agreement, to fully perform your obligations hereunder, and to grant the licenses set forth in Paragraphs 3 and 5 above, (b) you will comply fully with all terms of this Agreement, (c) the Materials submitted to cheap-chanel-watches by you, and cheap-chanel-watches''s and its Affiliates'' exercise of their rights hereunder, do not and will not violate, misappropriate or infringe any intellectual property right, including but not limited to trademark rights, copyrights, moral rights and publicity rights of any third party, (d) you possess all rights necessary for the reproduction, distribution, transmission, public performance, public display, and other exploitation of the Materials by cheap-chanel-watches and its Affiliates as permitted hereunder, (e) the Materials are not pornographic, obscene, libelous, defamatory, or otherwise unlawful, and (f) all factual statements submitted by you are accurate and not misleading. You agree to indemnify, defend, and hold cheap-chanel-watches and its Affiliates harmless from all claims, liabilities, damages, and expenses (including, without limitation, reasonable attorneys'' fees and expenses) arising from your breach of any representation or warranty set forth in this paragraph.</p>\r\n<p>8) Restrictions. You agree that you will not submit Materials that are unlawful, pornographic, libelous, defamatory, tortious, obscene, or racially, ethnically or otherwise objectionable, or that otherwise violate general cheap-chanel-watches corporate standards. We expressly reserve the right to remove or not make available any Materials that we deem to be in violation of this Agreement, applicable laws or our corporate standards in our sole discretion. You agree that you will not upload, post, e-mail or otherwise transmit Materials to us or our Affiliates that contain software viruses or any other computer code, files, or programs designed to interrupt, destroy or limit the functionality of any computer software or hardware or telecommunications equipment.</p>\r\n<p>9) No Obligation. Although we have the right to include your Materials in the Service or in any Media, we do not have the obligation to do so. We may, in our sole discretion and for any reason, refuse the Materials or remove them from our Service at any time.</p>\r\n<p>10) Changes to Agreement. We reserve the right to change any of the terms of this Agreement or any Specifications or Guidelines governing the Service at any time in our sole discretion. All changes will be effective upon posting to the Service. However, for all changes to this Agreement, excluding Specifications and Guidelines, we will post a notice of change for thirty (30) days. You are responsible for reviewing the notice and any applicable changes. YOUR CONTINUED USE OF THIS SERVICE FOLLOWING OUR POSTING OF ANY CHANGES WILL CONSTITUTE YOUR ACCEPTANCE OF SUCH CHANGES.</p>\r\n<p>11) cheap-chanel-watches Intellectual Property. Without our prior written consent, you may not use our intellectual property, including, without limitation, our trademarks, trade names, trade dress, or copyrighted material, in any manner.</p>\r\n<p>12) Communications. cheap-chanel-watches and its Affiliates may communicate with you in connection with the Service, electronically and in other Media, and you consent to such communications regardless of any "Customer Communication Preferences" (or similar preferences or requests) you may have indicated on the web sites of cheap-chanel-watches or its Affiliates or by any other means.</p>\r\n<p>13) Waiver. cheap-chanel-watches AND ITS AFFILIATES WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO SUCH DAMAGES ARISING FROM BREACH OF CONTRACT OR WARRANTY OR FROM NEGLIGENCE OR STRICT LIABILITY) ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, EVEN IF WE HAVE BEEN ADVISED OF (OR KNEW OR SHOULD KNOWN OF) THE POSSIBILITY OF SUCH DAMAGES.</p>\r\n<p>14) Disclaimer. cheap-chanel-watches PROVIDES THE SERVICE "AS IS" WITHOUT WARRANTY OF ANY KIND.</p>\r\n<p>15) Miscellaneous. You may not assign this Agreement, by operation of law or otherwise, without our prior written consent. Subject to that restriction, this Agreement will be binding on, inure to, and be enforceable against the parties and their respective successors and permitted assigns. Our failure to enforce your strict performance of any provision of this Agreement will not constitute a waiver of our right to enforce such provision or any other provision of this Agreement subsequently. The Specifications and Guidelines (including all future changes) are incorporated by reference into this Agreement. This Agreement is in addition to, and does not supersede or modify, the terms and conditions of use of the web sites of cheap-chanel-watches and its Affiliates</p>', '', '', '', '', '0', 123),
(69, 1, 'fsdhfishdi', 'fsdfsdf', NULL, NULL, '范德萨范德萨', 'tfs', '', 0),
(70, 1, 'fsdfsdfsd', 'fsdfsdfsdfsd', NULL, NULL, 'new customer', 'tangbin@qq.com', '29', 0);
-- --------------------------------------------------------
--
-- 表的结构 `faqs_to_faq_categories`
--
CREATE TABLE IF NOT EXISTS `faqs_to_faq_categories` (
`faqs_id` int(11) NOT NULL DEFAULT '0',
`faq_categories_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`faqs_id`,`faq_categories_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `faqs_to_faq_categories`
--
INSERT INTO `faqs_to_faq_categories` (`faqs_id`, `faq_categories_id`) VALUES
(1, 1),
(2, 3),
(3, 1),
(4, 1),
(5, 1),
(6, 1),
(22, 2),
(23, 4),
(24, 4),
(25, 4),
(26, 4),
(27, 4),
(28, 4),
(29, 4),
(30, 3),
(31, 3),
(32, 3),
(33, 3),
(34, 6),
(35, 6),
(36, 7),
(37, 7),
(38, 7),
(39, 7),
(40, 8),
(41, 8),
(42, 8),
(43, 17),
(44, 17),
(45, 17),
(46, 16),
(47, 16),
(48, 16),
(49, 15),
(50, 15),
(51, 15),
(52, 15),
(53, 14),
(54, 13),
(55, 13),
(58, 11),
(59, 11),
(60, 11),
(61, 11),
(62, 10),
(63, 10),
(64, 10),
(65, 2),
(69, 4),
(70, 2);
-- --------------------------------------------------------
--
-- 表的结构 `faq_categories`
--
CREATE TABLE IF NOT EXISTS `faq_categories` (
`faq_categories_id` int(11) NOT NULL AUTO_INCREMENT,
`faq_categories_image` varchar(64) DEFAULT NULL,
`parent_id` int(11) NOT NULL DEFAULT '0',
`sort_order` int(3) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`faq_categories_status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`faq_categories_id`),
KEY `idx_faq_categories_parent_id` (`parent_id`),
KEY `idx_sort_order` (`sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
--
-- 转存表中的数据 `faq_categories`
--
INSERT INTO `faq_categories` (`faq_categories_id`, `faq_categories_image`, `parent_id`, `sort_order`, `date_added`, `last_modified`, `faq_categories_status`) VALUES
(1, '', 0, 1, '2008-07-30 16:50:03', '2009-02-08 05:41:48', 1),
(2, '', 0, 2, '2008-07-30 16:50:15', '0000-00-00 00:00:00', 1),
(3, '', 0, 3, '2008-07-30 16:50:28', '0000-00-00 00:00:00', 1),
(4, '', 0, 4, '2008-07-30 16:50:53', '0000-00-00 00:00:00', 1),
(6, '', 0, 5, '2008-07-30 16:51:15', '2008-08-19 14:10:55', 1),
(7, '', 0, 6, '2008-07-30 16:51:25', '2008-08-19 14:11:03', 1),
(8, '', 0, 30, '2008-07-30 16:52:19', '2009-07-28 05:03:05', 1),
(10, '', 0, 15, '2008-08-19 14:07:20', '2009-07-23 16:22:46', 1),
(11, '', 0, 14, '2008-08-19 14:07:43', '0000-00-00 00:00:00', 1),
(13, '', 0, 12, '2008-08-19 14:08:09', '0000-00-00 00:00:00', 1),
(14, '', 0, 11, '2008-08-19 14:08:20', '0000-00-00 00:00:00', 1),
(15, '', 0, 10, '2008-08-19 14:08:34', '0000-00-00 00:00:00', 1),
(16, '', 0, 9, '2008-08-19 14:08:52', '2009-03-25 16:15:51', 1),
(17, '', 0, 8, '2008-08-19 14:11:24', '0000-00-00 00:00:00', 1);
-- --------------------------------------------------------
--
-- 表的结构 `faq_categories_description`
--
CREATE TABLE IF NOT EXISTS `faq_categories_description` (
`faq_categories_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`faq_categories_name` varchar(32) NOT NULL DEFAULT '',
`faq_categories_description` text NOT NULL,
PRIMARY KEY (`faq_categories_id`,`language_id`),
KEY `idx_faq_categories_name` (`faq_categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `faq_categories_description`
--
INSERT INTO `faq_categories_description` (`faq_categories_id`, `language_id`, `faq_categories_name`, `faq_categories_description`) VALUES
(1, 1, 'FAQ', '<p>asdfasdfasdfasdfaf</p>'),
(2, 1, 'Payment Methods', 'asdfasd'),
(3, 1, 'New user--guide', '123123'),
(4, 1, 'Shipping & Delivery', 'asdfasdf<br />'),
(17, 1, 'Troubleshooting', ''),
(6, 1, 'Extra discount', '123123'),
(7, 1, 'After sale Questions', 'asdfasdf'),
(8, 1, 'Products questions', 'asdfasd'),
(10, 1, 'cheap-chanel-watc Policies & Ter', ''),
(11, 1, 'Affiliates Programme', ''),
(13, 1, 'Checking Your Order', ''),
(14, 1, 'Guarantee & Warranty', ''),
(15, 1, 'Taxes,Customs & Duties', ''),
(16, 1, 'How To Drop-ship', '');
-- --------------------------------------------------------
--
-- 表的结构 `faq_reviews`
--
CREATE TABLE IF NOT EXISTS `faq_reviews` (
`reviews_id` int(11) NOT NULL AUTO_INCREMENT,
`faqs_id` int(11) NOT NULL DEFAULT '0',
`customers_id` int(11) DEFAULT NULL,
`customers_name` varchar(64) NOT NULL DEFAULT '',
`reviews_rating` int(1) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`reviews_read` int(5) NOT NULL DEFAULT '0',
`status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`reviews_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `faq_reviews_description`
--
CREATE TABLE IF NOT EXISTS `faq_reviews_description` (
`reviews_id` int(11) NOT NULL DEFAULT '0',
`languages_id` int(11) NOT NULL DEFAULT '0',
`reviews_text` text NOT NULL,
PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `faq_types`
--
CREATE TABLE IF NOT EXISTS `faq_types` (
`type_id` int(11) NOT NULL AUTO_INCREMENT,
`type_name` varchar(255) NOT NULL DEFAULT '',
`type_handler` varchar(255) NOT NULL DEFAULT '',
`type_master_type` int(11) NOT NULL DEFAULT '1',
`allow_add_to_cart` char(1) NOT NULL DEFAULT 'Y',
`default_image` varchar(255) NOT NULL DEFAULT '',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `faq_types`
--
INSERT INTO `faq_types` (`type_id`, `type_name`, `type_handler`, `type_master_type`, `allow_add_to_cart`, `default_image`, `date_added`, `last_modified`) VALUES
(1, 'FAQ - General', 'faq', 1, 'N', '', '2008-07-30 16:43:43', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- 表的结构 `faq_types_to_faq_category`
--
CREATE TABLE IF NOT EXISTS `faq_types_to_faq_category` (
`faq_type_id` int(11) NOT NULL DEFAULT '0',
`faq_category_id` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `faq_type_layout`
--
CREATE TABLE IF NOT EXISTS `faq_type_layout` (
`configuration_id` int(11) NOT NULL AUTO_INCREMENT,
`configuration_title` text NOT NULL,
`configuration_key` varchar(255) NOT NULL DEFAULT '',
`configuration_value` text NOT NULL,
`configuration_description` text NOT NULL,
`faq_type_id` int(11) NOT NULL DEFAULT '0',
`sort_order` int(5) DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`use_function` text,
`set_function` text,
PRIMARY KEY (`configuration_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `featured`
--
CREATE TABLE IF NOT EXISTS `featured` (
`featured_id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL DEFAULT '0',
`featured_date_added` datetime DEFAULT NULL,
`featured_last_modified` datetime DEFAULT NULL,
`expires_date` date NOT NULL DEFAULT '0001-01-01',
`date_status_change` datetime DEFAULT NULL,
`status` int(1) NOT NULL DEFAULT '1',
`featured_date_available` date NOT NULL DEFAULT '0001-01-01',
PRIMARY KEY (`featured_id`),
KEY `idx_status_zen` (`status`),
KEY `idx_products_id_zen` (`products_id`),
KEY `idx_date_avail_zen` (`featured_date_available`),
KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `files_uploaded`
--
CREATE TABLE IF NOT EXISTS `files_uploaded` (
`files_uploaded_id` int(11) NOT NULL AUTO_INCREMENT,
`sesskey` varchar(32) DEFAULT NULL,
`customers_id` int(11) DEFAULT NULL,
`files_uploaded_name` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`files_uploaded_id`),
KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Must always have either a sesskey or customers_id' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `geo_zones`
--
CREATE TABLE IF NOT EXISTS `geo_zones` (
`geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
`geo_zone_name` varchar(32) NOT NULL DEFAULT '',
`geo_zone_description` varchar(255) NOT NULL DEFAULT '',
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `geo_zones`
--
INSERT INTO `geo_zones` (`geo_zone_id`, `geo_zone_name`, `geo_zone_description`, `last_modified`, `date_added`) VALUES
(1, 'Florida', 'Florida local sales tax zone', NULL, '2012-05-10 16:53:21');
-- --------------------------------------------------------
--
-- 表的结构 `get_terms_to_filter`
--
CREATE TABLE IF NOT EXISTS `get_terms_to_filter` (
`get_term_name` varchar(255) NOT NULL DEFAULT '',
`get_term_table` varchar(64) NOT NULL,
`get_term_name_field` varchar(64) NOT NULL,
PRIMARY KEY (`get_term_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `get_terms_to_filter`
--
INSERT INTO `get_terms_to_filter` (`get_term_name`, `get_term_table`, `get_term_name_field`) VALUES
('manufacturers_id', 'TABLE_MANUFACTURERS', 'manufacturers_name'),
('music_genre_id', 'TABLE_MUSIC_GENRE', 'music_genre_name'),
('record_company_id', 'TABLE_RECORD_COMPANY', 'record_company_name');
-- --------------------------------------------------------
--
-- 表的结构 `group_pricing`
--
CREATE TABLE IF NOT EXISTS `group_pricing` (
`group_id` int(11) NOT NULL AUTO_INCREMENT,
`group_name` varchar(32) NOT NULL DEFAULT '',
`group_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `languages`
--
CREATE TABLE IF NOT EXISTS `languages` (
`languages_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL DEFAULT '',
`code` char(2) NOT NULL DEFAULT '',
`image` varchar(64) DEFAULT NULL,
`directory` varchar(32) DEFAULT NULL,
`sort_order` int(3) DEFAULT NULL,
PRIMARY KEY (`languages_id`),
KEY `idx_languages_name_zen` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- 转存表中的数据 `languages`
--
INSERT INTO `languages` (`languages_id`, `name`, `code`, `image`, `directory`, `sort_order`) VALUES
(1, 'English', 'en', 'icon.gif', 'english', 1);
-- --------------------------------------------------------
--
-- 表的结构 `layout_boxes`
--
CREATE TABLE IF NOT EXISTS `layout_boxes` (
`layout_id` int(11) NOT NULL AUTO_INCREMENT,
`layout_template` varchar(64) NOT NULL DEFAULT '',
`layout_box_name` varchar(64) NOT NULL DEFAULT '',
`layout_box_status` tinyint(1) NOT NULL DEFAULT '0',
`layout_box_location` tinyint(1) NOT NULL DEFAULT '0',
`layout_box_sort_order` int(11) NOT NULL DEFAULT '0',
`layout_box_sort_order_single` int(11) NOT NULL DEFAULT '0',
`layout_box_status_single` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`layout_id`),
KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
KEY `idx_layout_box_status_zen` (`layout_box_status`),
KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=121 ;
--
-- 转存表中的数据 `layout_boxes`
--
INSERT INTO `layout_boxes` (`layout_id`, `layout_template`, `layout_box_name`, `layout_box_status`, `layout_box_location`, `layout_box_sort_order`, `layout_box_sort_order_single`, `layout_box_status_single`) VALUES
(1, 'template_default', 'banner_box.php', 1, 0, 300, 1, 127),
(2, 'template_default', 'banner_box2.php', 1, 1, 15, 1, 15),
(3, 'template_default', 'banner_box_all.php', 1, 1, 5, 0, 0),
(4, 'template_default', 'best_sellers.php', 1, 1, 30, 70, 1),
(5, 'template_default', 'categories.php', 1, 0, 10, 10, 1),
(6, 'template_default', 'currencies.php', 1, 1, 25, 60, 0),
(7, 'template_default', 'document_categories.php', 1, 0, 0, 0, 0),
(8, 'template_default', 'ezpages.php', 1, 1, -1, 2, 1),
(9, 'template_default', 'featured.php', 1, 0, 45, 0, 0),
(10, 'template_default', 'information.php', 1, 0, 50, 40, 1),
(11, 'template_default', 'languages.php', 1, 1, 70, 50, 0),
(12, 'template_default', 'manufacturers.php', 1, 0, 30, 20, 1),
(13, 'template_default', 'manufacturer_info.php', 1, 1, 35, 95, 1),
(14, 'template_default', 'more_information.php', 1, 0, 200, 200, 1),
(15, 'template_default', 'music_genres.php', 1, 1, 0, 0, 0),
(16, 'template_default', 'order_history.php', 1, 1, 0, 0, 0),
(17, 'template_default', 'product_notifications.php', 1, 1, 55, 85, 1),
(18, 'template_default', 'record_companies.php', 1, 1, 0, 0, 0),
(19, 'template_default', 'reviews.php', 1, 0, 40, 0, 0),
(20, 'template_default', 'search.php', 1, 1, 10, 0, 0),
(21, 'template_default', 'search_header.php', 0, 0, 0, 0, 1),
(22, 'template_default', 'shopping_cart.php', 1, 1, 20, 30, 1),
(23, 'template_default', 'specials.php', 1, 1, 45, 0, 0),
(24, 'template_default', 'whats_new.php', 1, 0, 20, 0, 0),
(25, 'template_default', 'whos_online.php', 1, 1, 200, 200, 1),
(26, 'template_default', 'links_box.php', 1, 0, 5, 0, 0),
(27, 'template_default', 'live_help.php', 1, 0, 1, 0, 0),
(28, 'template_default', 'news.php', 1, 0, 33, 0, 0),
(29, 'template_default', 'faq_categories.php', 1, 1, 20, 0, 1),
(30, 'template_default', 'reward_points.php', 0, 0, 0, 0, 0),
(31, 'template_default', 'shopping_cart_with_rewards.php', 0, 0, 0, 0, 0),
(32, 'template_default', 'product_compare.php', 1, 0, 6, 0, 0),
(76, 'atopk', 'account_menu.php', 0, 0, 0, 0, 0),
(77, 'atopk', 'also_purchased_products.php', 0, 0, 0, 0, 0),
(78, 'atopk', 'banner_box.php', 1, 0, 2, 2, 1),
(79, 'atopk', 'banner_box2.php', 0, 0, 0, 0, 0),
(80, 'atopk', 'banner_box_all.php', 0, 0, 0, 0, 0),
(81, 'atopk', 'best_sellers.php', 0, 0, 1, 1, 0),
(82, 'atopk', 'categories.php', 0, 0, 1, 1, 0),
(83, 'atopk', 'currencies.php', 0, 0, 0, 0, 0),
(84, 'atopk', 'document_categories.php', 0, 0, 0, 0, 0),
(85, 'atopk', 'ezpages.php', 0, 0, 0, 0, 0),
(86, 'atopk', 'faq_categories_css.php', 0, 0, 0, 0, 0),
(87, 'atopk', 'featured.php', 0, 0, 0, 0, 0),
(88, 'atopk', 'information.php', 0, 0, 0, 0, 0),
(89, 'atopk', 'languages.php', 0, 0, 0, 0, 0),
(90, 'atopk', 'live_help.php', 0, 0, 0, 0, 0),
(91, 'atopk', 'manufacturer_info.php', 0, 0, 0, 0, 0),
(92, 'atopk', 'manufacturers.php', 0, 0, 0, 0, 0),
(93, 'atopk', 'more_information.php', 0, 0, 0, 0, 0),
(94, 'atopk', 'music_genres.php', 0, 0, 0, 0, 0),
(95, 'atopk', 'news.php', 0, 0, 0, 0, 0),
(96, 'atopk', 'news_categories.php', 0, 0, 0, 0, 0),
(97, 'atopk', 'order_history.php', 0, 0, 0, 0, 0),
(98, 'atopk', 'product_compare.php', 0, 0, 0, 0, 0),
(99, 'atopk', 'product_notifications.php', 0, 0, 0, 0, 0),
(100, 'atopk', 'product_relative_news.php', 0, 0, 0, 0, 0),
(101, 'atopk', 'recently_viewed.php', 0, 0, 0, 0, 0),
(102, 'atopk', 'record_companies.php', 0, 0, 0, 0, 0),
(103, 'atopk', 'reviews.php', 0, 0, 2, 2, 0),
(104, 'atopk', 'reward_points.php', 0, 0, 0, 0, 0),
(105, 'atopk', 'search.php', 0, 0, 0, 0, 0),
(106, 'atopk', 'search_header.php', 0, 0, 0, 0, 0),
(107, 'atopk', 'shopby_categoires.php', 1, 0, 1, 1, 1),
(108, 'atopk', 'shopping_cart.php', 0, 0, 0, 0, 0),
(109, 'atopk', 'shopping_cart_with_rewards.php', 0, 0, 0, 0, 0),
(110, 'atopk', 'side_menu.php', 0, 0, 0, 0, 0),
(111, 'atopk', 'specials.php', 0, 0, 0, 0, 0),
(112, 'atopk', 'subscribe.php', 0, 0, 3, 3, 0),
(113, 'atopk', 'whats_new.php', 0, 0, 0, 0, 0),
(114, 'atopk', 'whos_online.php', 0, 0, 0, 0, 0),
(115, 'atopk', 'what_hot.php', 1, 0, 1, 1, 1),
(116, 'atopk', 'customer_testimonials.php', 1, 0, 3, 3, 1),
(117, 'atopk', 'trustful.php', 1, 0, 4, 4, 1),
(119, 'atopk', 'poplular_search.php', 1, 0, 5, 5, 1),
(120, 'atopk', 'shopby_sub_categories.php', 1, 0, 3, 0, 1);
-- --------------------------------------------------------
--
-- 表的结构 `links`
--
CREATE TABLE IF NOT EXISTS `links` (
`links_id` int(11) NOT NULL AUTO_INCREMENT,
`links_url` varchar(255) DEFAULT NULL,
`links_reciprocal_url` varchar(255) DEFAULT NULL,
`links_image_url` varchar(255) DEFAULT NULL,
`links_contact_name` varchar(64) DEFAULT NULL,
`links_contact_email` varchar(96) DEFAULT NULL,
`links_date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`links_last_modified` datetime DEFAULT NULL,
`links_status` tinyint(1) NOT NULL DEFAULT '0',
`links_clicked` int(11) NOT NULL DEFAULT '0',
`links_rating` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`links_id`),
KEY `idx_links_date_added` (`links_date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `links_description`
--
CREATE TABLE IF NOT EXISTS `links_description` (
`links_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '1',
`links_title` varchar(64) NOT NULL DEFAULT '',
`links_description` text,
PRIMARY KEY (`links_id`,`language_id`),
KEY `links_title` (`links_title`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `links_status`
--
CREATE TABLE IF NOT EXISTS `links_status` (
`links_status_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`links_status_name` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`links_status_id`,`language_id`),
KEY `idx_links_status_name` (`links_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `links_status`
--
INSERT INTO `links_status` (`links_status_id`, `language_id`, `links_status_name`) VALUES
(1, 1, 'Pending'),
(2, 1, 'Approved'),
(3, 1, 'Disabled');
-- --------------------------------------------------------
--
-- 表的结构 `links_to_link_categories`
--
CREATE TABLE IF NOT EXISTS `links_to_link_categories` (
`links_id` int(11) NOT NULL DEFAULT '0',
`link_categories_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`links_id`,`link_categories_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `link_categories`
--
CREATE TABLE IF NOT EXISTS `link_categories` (
`link_categories_id` int(11) NOT NULL AUTO_INCREMENT,
`link_categories_image` varchar(64) DEFAULT NULL,
`link_categories_sort_order` int(3) DEFAULT NULL,
`link_categories_date_added` datetime DEFAULT NULL,
`link_categories_last_modified` datetime DEFAULT NULL,
`link_home_page_status` tinyint(1) DEFAULT '0',
`link_categories_status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`link_categories_id`),
KEY `idx_link_categories_date_added` (`link_categories_date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- 转存表中的数据 `link_categories`
--
INSERT INTO `link_categories` (`link_categories_id`, `link_categories_image`, `link_categories_sort_order`, `link_categories_date_added`, `link_categories_last_modified`, `link_home_page_status`, `link_categories_status`) VALUES
(2, NULL, 1, '2012-06-12 14:20:01', '2012-06-12 16:40:04', 0, 1);
-- --------------------------------------------------------
--
-- 表的结构 `link_categories_description`
--
CREATE TABLE IF NOT EXISTS `link_categories_description` (
`link_categories_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`link_categories_name` varchar(32) NOT NULL DEFAULT '',
`link_categories_description` text,
PRIMARY KEY (`link_categories_id`,`language_id`),
KEY `idx_link_categories_name` (`link_categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `link_categories_description`
--
INSERT INTO `link_categories_description` (`link_categories_id`, `language_id`, `link_categories_name`, `link_categories_description`) VALUES
(2, 2, 'links', 'links'),
(2, 1, 'links', 'links');
-- --------------------------------------------------------
--
-- 表的结构 `manufacturers`
--
CREATE TABLE IF NOT EXISTS `manufacturers` (
`manufacturers_id` int(11) NOT NULL AUTO_INCREMENT,
`manufacturers_name` varchar(32) NOT NULL DEFAULT '',
`manufacturers_image` varchar(64) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
PRIMARY KEY (`manufacturers_id`),
KEY `idx_mfg_name_zen` (`manufacturers_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `manufacturers_info`
--
CREATE TABLE IF NOT EXISTS `manufacturers_info` (
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`languages_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_url` varchar(255) NOT NULL DEFAULT '',
`url_clicked` int(5) NOT NULL DEFAULT '0',
`date_last_click` datetime DEFAULT NULL,
PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `mbookers_gway_orders`
--
CREATE TABLE IF NOT EXISTS `mbookers_gway_orders` (
`cart_amount` decimal(14,2) DEFAULT NULL,
`cart_currency` char(3) DEFAULT NULL,
`mb_amount` decimal(14,2) DEFAULT NULL,
`mb_currency` char(3) DEFAULT NULL,
`mb_posts` int(5) NOT NULL,
`mb_tid` varchar(32) NOT NULL,
`zc_oid` int(11) DEFAULT NULL,
`my_date` datetime DEFAULT NULL,
PRIMARY KEY (`mb_tid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `media_clips`
--
CREATE TABLE IF NOT EXISTS `media_clips` (
`clip_id` int(11) NOT NULL AUTO_INCREMENT,
`media_id` int(11) NOT NULL DEFAULT '0',
`clip_type` smallint(6) NOT NULL DEFAULT '0',
`clip_filename` text NOT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`clip_id`),
KEY `idx_media_id_zen` (`media_id`),
KEY `idx_clip_type_zen` (`clip_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `media_manager`
--
CREATE TABLE IF NOT EXISTS `media_manager` (
`media_id` int(11) NOT NULL AUTO_INCREMENT,
`media_name` varchar(255) NOT NULL DEFAULT '',
`last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`media_id`),
KEY `idx_media_name_zen` (`media_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `media_to_products`
--
CREATE TABLE IF NOT EXISTS `media_to_products` (
`media_id` int(11) NOT NULL DEFAULT '0',
`product_id` int(11) NOT NULL DEFAULT '0',
KEY `idx_media_product_zen` (`media_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `media_types`
--
CREATE TABLE IF NOT EXISTS `media_types` (
`type_id` int(11) NOT NULL AUTO_INCREMENT,
`type_name` varchar(64) NOT NULL DEFAULT '',
`type_ext` varchar(8) NOT NULL DEFAULT '',
PRIMARY KEY (`type_id`),
KEY `idx_type_name_zen` (`type_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `media_types`
--
INSERT INTO `media_types` (`type_id`, `type_name`, `type_ext`) VALUES
(1, 'MP3', '.mp3');
-- --------------------------------------------------------
--
-- 表的结构 `meta_tags_categories_description`
--
CREATE TABLE IF NOT EXISTS `meta_tags_categories_description` (
`categories_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL DEFAULT '1',
`metatags_title` varchar(255) NOT NULL DEFAULT '',
`metatags_keywords` text,
`metatags_description` text,
PRIMARY KEY (`categories_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `meta_tags_products_description`
--
CREATE TABLE IF NOT EXISTS `meta_tags_products_description` (
`products_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL DEFAULT '1',
`metatags_title` varchar(255) NOT NULL DEFAULT '',
`metatags_keywords` text,
`metatags_description` text,
PRIMARY KEY (`products_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `module_version_tracker`
--
CREATE TABLE IF NOT EXISTS `module_version_tracker` (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`module_code` varchar(255) NOT NULL,
`patch_level` int(10) NOT NULL,
`version_name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `module_code` (`module_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `module_version_tracker`
--
INSERT INTO `module_version_tracker` (`ID`, `module_code`, `patch_level`, `version_name`) VALUES
(2, 'yellow1912_sc', 1, 'Alpha 1.1');
-- --------------------------------------------------------
--
-- 表的结构 `music_genre`
--
CREATE TABLE IF NOT EXISTS `music_genre` (
`music_genre_id` int(11) NOT NULL AUTO_INCREMENT,
`music_genre_name` varchar(32) NOT NULL DEFAULT '',
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
PRIMARY KEY (`music_genre_id`),
KEY `idx_music_genre_name_zen` (`music_genre_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `music_genre`
--
INSERT INTO `music_genre` (`music_genre_id`, `music_genre_name`, `date_added`, `last_modified`) VALUES
(1, 'Rock', '2004-06-01 20:53:26', NULL),
(2, 'Jazz', '2004-06-01 20:53:45', NULL);
-- --------------------------------------------------------
--
-- 表的结构 `newsletters`
--
CREATE TABLE IF NOT EXISTS `newsletters` (
`newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`content` text NOT NULL,
`content_html` text NOT NULL,
`module` varchar(255) NOT NULL DEFAULT '',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`date_sent` datetime DEFAULT NULL,
`status` int(1) DEFAULT NULL,
`locked` int(1) DEFAULT '0',
PRIMARY KEY (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- 表的结构 `news_cate`
--
CREATE TABLE IF NOT EXISTS `news_cate` (
`categories_id` int(11) NOT NULL AUTO_INCREMENT,
`sort_order` int(3) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`categories_status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`categories_id`),
KEY `idx_parent_id_cat_id_zen` (`categories_id`),
KEY `idx_status_zen` (`categories_status`),
KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `news_cate`
--
INSERT INTO `news_cate` (`categories_id`, `sort_order`, `date_added`, `categories_status`) VALUES
(1, 1, '2012-06-19 10:28:02', 1),
(2, 2, '2012-06-19 10:28:10', 1);
-- --------------------------------------------------------
--
-- 表的结构 `news_cate_name`
--
CREATE TABLE IF NOT EXISTS `news_cate_name` (
`categories_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`categories_name` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `news_cate_name`
--
INSERT INTO `news_cate_name` (`categories_id`, `language_id`, `categories_name`) VALUES
(1, 1, '公告'),
(1, 2, '公告'),
(2, 1, '活动资讯'),
(2, 2, '活动资讯');
-- --------------------------------------------------------
--
-- 表的结构 `orders`
--
CREATE TABLE IF NOT EXISTS `orders` (
`orders_id` bigint(20) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL DEFAULT '0',
`customers_name` varchar(64) NOT NULL DEFAULT '',
`customers_company` varchar(64) DEFAULT NULL,
`customers_street_address` varchar(64) NOT NULL DEFAULT '',
`customers_suburb` varchar(32) DEFAULT NULL,
`customers_city` varchar(32) NOT NULL DEFAULT '',
`customers_postcode` varchar(10) NOT NULL DEFAULT '',
`customers_state` varchar(32) DEFAULT NULL,
`customers_country` varchar(32) NOT NULL DEFAULT '',
`customers_telephone` varchar(32) NOT NULL DEFAULT '',
`customers_email_address` varchar(96) NOT NULL DEFAULT '',
`customers_address_format_id` int(5) NOT NULL DEFAULT '0',
`delivery_name` varchar(64) NOT NULL DEFAULT '',
`delivery_company` varchar(64) DEFAULT NULL,
`delivery_street_address` varchar(64) NOT NULL DEFAULT '',
`delivery_suburb` varchar(32) DEFAULT NULL,
`delivery_city` varchar(32) NOT NULL DEFAULT '',
`delivery_postcode` varchar(10) NOT NULL DEFAULT '',
`delivery_state` varchar(32) DEFAULT NULL,
`delivery_country` varchar(32) NOT NULL DEFAULT '',
`delivery_address_format_id` int(5) NOT NULL DEFAULT '0',
`billing_name` varchar(64) NOT NULL DEFAULT '',
`billing_company` varchar(64) DEFAULT NULL,
`billing_street_address` varchar(64) NOT NULL DEFAULT '',
`billing_suburb` varchar(32) DEFAULT NULL,
`billing_city` varchar(32) NOT NULL DEFAULT '',
`billing_postcode` varchar(10) NOT NULL DEFAULT '',
`billing_state` varchar(32) DEFAULT NULL,
`billing_country` varchar(32) NOT NULL DEFAULT '',
`billing_address_format_id` int(5) NOT NULL DEFAULT '0',
`payment_method` varchar(128) NOT NULL DEFAULT '',
`payment_module_code` varchar(32) NOT NULL DEFAULT '',
`shipping_method` varchar(128) NOT NULL DEFAULT '',
`shipping_module_code` varchar(32) NOT NULL DEFAULT '',
`coupon_code` varchar(32) NOT NULL DEFAULT '',
`cc_type` varchar(20) DEFAULT NULL,
`cc_owner` varchar(64) DEFAULT NULL,
`cc_number` varchar(32) DEFAULT NULL,
`cc_expires` varchar(4) DEFAULT NULL,
`cc_cvv` blob,
`last_modified` datetime DEFAULT NULL,
`date_purchased` datetime DEFAULT NULL,
`orders_status` int(5) NOT NULL DEFAULT '0',
`orders_date_finished` datetime DEFAULT NULL,
`currency` char(3) DEFAULT NULL,
`currency_value` decimal(14,6) DEFAULT NULL,
`order_total` decimal(14,2) DEFAULT NULL,
`order_tax` decimal(14,2) DEFAULT NULL,
`paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
`ip_address` varchar(96) NOT NULL DEFAULT '',
`send_forecast_status` int(2) NOT NULL,
PRIMARY KEY (`orders_id`),
KEY `idx_status_orders_cust_zen` (`orders_status`,`orders_id`,`customers_id`),
KEY `idx_date_purchased_zen` (`date_purchased`),
KEY `idx_cust_id_orders_id_zen` (`customers_id`,`orders_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_collocation`
--
CREATE TABLE IF NOT EXISTS `orders_collocation` (
`orders_collocation_id` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL,
`collocation_id` int(11) NOT NULL,
`orders_collocation_discount_mode` tinyint(1) NOT NULL DEFAULT '1',
`orders_collocation_discount_value` decimal(15,4) NOT NULL,
`orders_collocation_discount_value_prefix` char(1) NOT NULL DEFAULT '-',
`orders_collocation_price` decimal(15,4) NOT NULL,
`orders_collocation_final_price` decimal(15,4) NOT NULL,
`orders_collocation_quantity` int(11) NOT NULL,
PRIMARY KEY (`orders_collocation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_collocation_products`
--
CREATE TABLE IF NOT EXISTS `orders_collocation_products` (
`orders_collocation_products_id` bigint(20) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL,
`collocation_id` int(11) NOT NULL,
`products_id` int(11) NOT NULL,
`products_model` varchar(32) NOT NULL,
`products_name` varchar(64) NOT NULL,
`products_price` decimal(15,4) NOT NULL,
`products_final_price` decimal(15,4) NOT NULL,
`products_tax` decimal(7,4) NOT NULL DEFAULT '0.0000',
`products_is_free` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`orders_collocation_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_collocation_products_attributes`
--
CREATE TABLE IF NOT EXISTS `orders_collocation_products_attributes` (
`orders_collocation_products_attributes_id` bigint(20) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL,
`collocation_id` int(11) NOT NULL,
`products_id` bigint(20) NOT NULL,
`products_options` varchar(32) NOT NULL,
`products_options_values` text NOT NULL,
`options_values_price` decimal(15,4) NOT NULL,
`price_prefix` char(1) NOT NULL,
PRIMARY KEY (`orders_collocation_products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_products`
--
CREATE TABLE IF NOT EXISTS `orders_products` (
`orders_products_id` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`products_id` int(11) NOT NULL DEFAULT '0',
`products_model` varchar(32) DEFAULT NULL,
`products_name` varchar(64) NOT NULL DEFAULT '',
`products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`products_tax` decimal(7,4) NOT NULL DEFAULT '0.0000',
`products_quantity` float NOT NULL DEFAULT '0',
`onetime_charges` decimal(15,4) NOT NULL DEFAULT '0.0000',
`products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
`product_is_free` tinyint(1) NOT NULL DEFAULT '0',
`products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
`products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
`products_prid` tinytext NOT NULL,
PRIMARY KEY (`orders_products_id`),
KEY `idx_orders_id_prod_id_zen` (`orders_id`,`products_id`),
KEY `idx_prod_id_orders_id_zen` (`products_id`,`orders_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_products_attributes`
--
CREATE TABLE IF NOT EXISTS `orders_products_attributes` (
`orders_products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`orders_products_id` int(11) NOT NULL DEFAULT '0',
`products_options` varchar(32) NOT NULL DEFAULT '',
`products_options_values` text NOT NULL,
`options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`price_prefix` char(1) NOT NULL DEFAULT '',
`product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
`products_attributes_weight` float NOT NULL DEFAULT '0',
`products_attributes_weight_prefix` char(1) NOT NULL DEFAULT '',
`attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
`attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
`attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_qty_prices` text,
`attributes_qty_prices_onetime` text,
`attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
`attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
`products_options_id` int(11) NOT NULL DEFAULT '0',
`products_options_values_id` int(11) NOT NULL DEFAULT '0',
`products_prid` tinytext NOT NULL,
PRIMARY KEY (`orders_products_attributes_id`),
KEY `idx_orders_id_prod_id_zen` (`orders_id`,`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_products_download`
--
CREATE TABLE IF NOT EXISTS `orders_products_download` (
`orders_products_download_id` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`orders_products_id` int(11) NOT NULL DEFAULT '0',
`orders_products_filename` varchar(255) NOT NULL DEFAULT '',
`download_maxdays` int(2) NOT NULL DEFAULT '0',
`download_count` int(2) NOT NULL DEFAULT '0',
`products_prid` tinytext NOT NULL,
PRIMARY KEY (`orders_products_download_id`),
KEY `idx_orders_id_zen` (`orders_id`),
KEY `idx_orders_products_id_zen` (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_status`
--
CREATE TABLE IF NOT EXISTS `orders_status` (
`orders_status_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`orders_status_name` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`orders_status_id`,`language_id`),
KEY `idx_orders_status_name_zen` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `orders_status`
--
INSERT INTO `orders_status` (`orders_status_id`, `language_id`, `orders_status_name`) VALUES
(1, 1, 'Pending'),
(2, 1, 'Processing'),
(3, 1, 'Delivered'),
(4, 1, 'Update'),
(5, 1, 'Not Pay'),
(11, 1, 'Processed on Moneybookers'),
(12, 1, 'Scheduled on Moneybookers'),
(13, 1, 'Pending on Moneybookers'),
(14, 1, 'Cancelled on Moneybookers'),
(15, 1, 'Declined on Moneybookers'),
(16, 1, 'Chargedback on Moneybookers'),
(17, 1, 'Awaiting Update');
-- --------------------------------------------------------
--
-- 表的结构 `orders_status_history`
--
CREATE TABLE IF NOT EXISTS `orders_status_history` (
`orders_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`orders_status_id` int(5) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`customer_notified` int(1) DEFAULT '0',
`comments` text,
PRIMARY KEY (`orders_status_history_id`),
KEY `idx_orders_id_status_id_zen` (`orders_id`,`orders_status_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `orders_total`
--
CREATE TABLE IF NOT EXISTS `orders_total` (
`orders_total_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`text` varchar(255) NOT NULL DEFAULT '',
`value` decimal(15,4) NOT NULL DEFAULT '0.0000',
`class` varchar(32) NOT NULL DEFAULT '',
`sort_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`orders_total_id`),
KEY `idx_ot_orders_id_zen` (`orders_id`),
KEY `idx_ot_class_zen` (`class`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `payment_check`
--
CREATE TABLE IF NOT EXISTS `payment_check` (
`check_index` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`check_number` varchar(32) DEFAULT NULL,
`check_name` varchar(40) DEFAULT NULL,
`check_amount` decimal(14,2) DEFAULT NULL,
`date_posted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`balance_status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`check_index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `payment_check_balance`
--
CREATE TABLE IF NOT EXISTS `payment_check_balance` (
`check_index` int(11) NOT NULL DEFAULT '0',
`orders_id` int(11) NOT NULL DEFAULT '0',
`check_number` varchar(32) NOT NULL DEFAULT '',
`check_name` varchar(40) NOT NULL DEFAULT '',
`check_amount` decimal(14,2) NOT NULL DEFAULT '0.00',
`check_direction` tinyint(2) NOT NULL DEFAULT '0',
`date_posted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`orders_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `payment_purchase_order`
--
CREATE TABLE IF NOT EXISTS `payment_purchase_order` (
`po_index` int(11) NOT NULL AUTO_INCREMENT,
`orders_id` int(11) NOT NULL DEFAULT '0',
`po_number` varchar(32) DEFAULT NULL,
`date_invoiced` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`po_index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `paypal`
--
CREATE TABLE IF NOT EXISTS `paypal` (
`paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(11) unsigned NOT NULL DEFAULT '0',
`txn_type` varchar(40) NOT NULL DEFAULT '',
`module_name` varchar(40) NOT NULL DEFAULT '',
`module_mode` varchar(40) NOT NULL DEFAULT '',
`reason_code` varchar(40) DEFAULT NULL,
`payment_type` varchar(40) NOT NULL DEFAULT '',
`payment_status` varchar(32) NOT NULL DEFAULT '',
`pending_reason` varchar(32) DEFAULT NULL,
`invoice` varchar(128) DEFAULT NULL,
`mc_currency` char(3) NOT NULL DEFAULT '',
`first_name` varchar(32) NOT NULL DEFAULT '',
`last_name` varchar(32) NOT NULL DEFAULT '',
`payer_business_name` varchar(128) DEFAULT NULL,
`address_name` varchar(64) DEFAULT NULL,
`address_street` varchar(254) DEFAULT NULL,
`address_city` varchar(120) DEFAULT NULL,
`address_state` varchar(120) DEFAULT NULL,
`address_zip` varchar(10) DEFAULT NULL,
`address_country` varchar(64) DEFAULT NULL,
`address_status` varchar(11) DEFAULT NULL,
`payer_email` varchar(128) NOT NULL DEFAULT '',
`payer_id` varchar(32) NOT NULL DEFAULT '',
`payer_status` varchar(10) NOT NULL DEFAULT '',
`payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`business` varchar(128) NOT NULL DEFAULT '',
`receiver_email` varchar(128) NOT NULL DEFAULT '',
`receiver_id` varchar(32) NOT NULL DEFAULT '',
`txn_id` varchar(20) NOT NULL DEFAULT '',
`parent_txn_id` varchar(20) DEFAULT NULL,
`num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
`mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
`mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
`payment_gross` decimal(7,2) DEFAULT NULL,
`payment_fee` decimal(7,2) DEFAULT NULL,
`settle_amount` decimal(7,2) DEFAULT NULL,
`settle_currency` char(3) DEFAULT NULL,
`exchange_rate` decimal(4,2) DEFAULT NULL,
`notify_version` varchar(6) NOT NULL DEFAULT '',
`verify_sign` varchar(128) NOT NULL DEFAULT '',
`last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`memo` text,
PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `paypal_order_need_pay`
--
CREATE TABLE IF NOT EXISTS `paypal_order_need_pay` (
`order_id` int(11) NOT NULL,
`order_status` tinyint(1) NOT NULL,
`securitytoken` varchar(255) NOT NULL,
`lc` varchar(20) NOT NULL,
`page_style` varchar(10) NOT NULL,
`custom` varchar(255) NOT NULL,
`first_name` varchar(100) NOT NULL,
`last_name` varchar(100) NOT NULL,
`address1` varchar(100) NOT NULL,
`city` varchar(100) NOT NULL,
`state` varchar(10) NOT NULL,
`zip` varchar(10) NOT NULL,
`country` varchar(50) NOT NULL,
`email` varchar(100) NOT NULL,
`address2` varchar(100) NOT NULL,
`H_PhoneNumber` varchar(20) NOT NULL,
`night_phone_a` varchar(20) NOT NULL,
`night_phone_b` varchar(20) NOT NULL,
`night_phone_c` varchar(20) NOT NULL,
`day_phone_a` varchar(20) NOT NULL,
`day_phone_b` varchar(20) NOT NULL,
`day_phone_c` varchar(20) NOT NULL,
`no_shipping` tinyint(1) NOT NULL,
`address_override` tinyint(1) NOT NULL,
`upload` varchar(10) NOT NULL,
`currency_code` varchar(10) NOT NULL,
`item_number` varchar(255) NOT NULL,
`amount` varchar(10) NOT NULL,
`tax` varchar(10) NOT NULL,
`tax_cart` varchar(10) NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `paypal_payment_status`
--
CREATE TABLE IF NOT EXISTS `paypal_payment_status` (
`payment_status_id` int(11) NOT NULL AUTO_INCREMENT,
`payment_status_name` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`payment_status_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- 转存表中的数据 `paypal_payment_status`
--
INSERT INTO `paypal_payment_status` (`payment_status_id`, `payment_status_name`) VALUES
(1, 'Completed'),
(2, 'Pending'),
(3, 'Failed'),
(4, 'Denied'),
(5, 'Refunded'),
(6, 'Canceled_Reversal'),
(7, 'Reversed');
-- --------------------------------------------------------
--
-- 表的结构 `paypal_payment_status_history`
--
CREATE TABLE IF NOT EXISTS `paypal_payment_status_history` (
`payment_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
`paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
`txn_id` varchar(64) NOT NULL DEFAULT '',
`parent_txn_id` varchar(64) NOT NULL DEFAULT '',
`payment_status` varchar(17) NOT NULL DEFAULT '',
`pending_reason` varchar(14) DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`payment_status_history_id`),
KEY `idx_paypal_ipn_id_zen` (`paypal_ipn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `paypal_session`
--
CREATE TABLE IF NOT EXISTS `paypal_session` (
`unique_id` int(11) NOT NULL AUTO_INCREMENT,
`session_id` text NOT NULL,
`saved_session` mediumblob NOT NULL,
`expiry` int(17) NOT NULL DEFAULT '0',
PRIMARY KEY (`unique_id`),
KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `paypal_testing`
--
CREATE TABLE IF NOT EXISTS `paypal_testing` (
`paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(11) unsigned NOT NULL DEFAULT '0',
`custom` varchar(255) NOT NULL DEFAULT '',
`txn_type` varchar(40) NOT NULL DEFAULT '',
`module_name` varchar(40) NOT NULL DEFAULT '',
`module_mode` varchar(40) NOT NULL DEFAULT '',
`reason_code` varchar(40) DEFAULT NULL,
`payment_type` varchar(40) NOT NULL DEFAULT '',
`payment_status` varchar(32) NOT NULL DEFAULT '',
`pending_reason` varchar(32) DEFAULT NULL,
`invoice` varchar(128) DEFAULT NULL,
`mc_currency` char(3) NOT NULL DEFAULT '',
`first_name` varchar(32) NOT NULL DEFAULT '',
`last_name` varchar(32) NOT NULL DEFAULT '',
`payer_business_name` varchar(128) DEFAULT NULL,
`address_name` varchar(64) DEFAULT NULL,
`address_street` varchar(254) DEFAULT NULL,
`address_city` varchar(120) DEFAULT NULL,
`address_state` varchar(120) DEFAULT NULL,
`address_zip` varchar(10) DEFAULT NULL,
`address_country` varchar(64) DEFAULT NULL,
`address_status` varchar(11) DEFAULT NULL,
`payer_email` varchar(128) NOT NULL DEFAULT '',
`payer_id` varchar(32) NOT NULL DEFAULT '',
`payer_status` varchar(10) NOT NULL DEFAULT '',
`payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`business` varchar(128) NOT NULL DEFAULT '',
`receiver_email` varchar(128) NOT NULL DEFAULT '',
`receiver_id` varchar(32) NOT NULL DEFAULT '',
`txn_id` varchar(20) NOT NULL DEFAULT '',
`parent_txn_id` varchar(20) DEFAULT NULL,
`num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
`mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
`mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
`payment_gross` decimal(7,2) DEFAULT NULL,
`payment_fee` decimal(7,2) DEFAULT NULL,
`settle_amount` decimal(7,2) DEFAULT NULL,
`settle_currency` char(3) DEFAULT NULL,
`exchange_rate` decimal(4,2) DEFAULT NULL,
`notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
`verify_sign` varchar(128) NOT NULL DEFAULT '',
`last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`memo` text,
PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products`
--
CREATE TABLE IF NOT EXISTS `products` (
`products_id` int(11) NOT NULL AUTO_INCREMENT,
`products_type` int(11) NOT NULL DEFAULT '1',
`products_quantity` float NOT NULL DEFAULT '0',
`products_model` varchar(32) DEFAULT NULL,
`products_image` text,
`products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`products_virtual` tinyint(1) NOT NULL DEFAULT '0',
`products_date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`products_last_modified` datetime DEFAULT NULL,
`products_date_available` datetime DEFAULT NULL,
`products_weight` float NOT NULL DEFAULT '0',
`products_status` tinyint(1) NOT NULL DEFAULT '0',
`products_tax_class_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) DEFAULT NULL,
`products_ordered` float NOT NULL DEFAULT '0',
`products_quantity_order_min` float NOT NULL DEFAULT '1',
`products_quantity_order_units` float NOT NULL DEFAULT '1',
`products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
`product_is_free` tinyint(1) NOT NULL DEFAULT '0',
`product_is_call` tinyint(1) NOT NULL DEFAULT '0',
`products_quantity_mixed` tinyint(1) NOT NULL DEFAULT '0',
`product_is_always_free_shipping` tinyint(1) NOT NULL DEFAULT '0',
`products_qty_box_status` tinyint(1) NOT NULL DEFAULT '1',
`products_quantity_order_max` float NOT NULL DEFAULT '0',
`products_sort_order` int(11) NOT NULL DEFAULT '0',
`products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
`products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
`products_price_sorter` decimal(15,4) NOT NULL DEFAULT '0.0000',
`master_categories_id` int(11) NOT NULL DEFAULT '0',
`products_mixed_discount_quantity` tinyint(1) NOT NULL DEFAULT '1',
`metatags_title_status` tinyint(1) NOT NULL DEFAULT '0',
`metatags_products_name_status` tinyint(1) NOT NULL DEFAULT '0',
`metatags_model_status` tinyint(1) NOT NULL DEFAULT '0',
`metatags_price_status` tinyint(1) NOT NULL DEFAULT '0',
`metatags_title_tagline_status` tinyint(1) NOT NULL DEFAULT '0',
`related_products_id` varchar(2000) NOT NULL,
PRIMARY KEY (`products_id`),
KEY `idx_products_date_added_zen` (`products_date_added`),
KEY `idx_products_status_zen` (`products_status`),
KEY `idx_products_date_available_zen` (`products_date_available`),
KEY `idx_products_ordered_zen` (`products_ordered`),
KEY `idx_products_model_zen` (`products_model`),
KEY `idx_products_price_sorter_zen` (`products_price_sorter`),
KEY `idx_master_categories_id_zen` (`master_categories_id`),
KEY `idx_products_sort_order_zen` (`products_sort_order`),
KEY `idx_manufacturers_id_zen` (`manufacturers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_attributes`
--
CREATE TABLE IF NOT EXISTS `products_attributes` (
`products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL DEFAULT '0',
`options_id` int(11) NOT NULL DEFAULT '0',
`options_values_id` int(11) NOT NULL DEFAULT '0',
`options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`price_prefix` char(1) NOT NULL DEFAULT '',
`products_options_sort_order` int(11) NOT NULL DEFAULT '0',
`product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
`products_attributes_weight` float NOT NULL DEFAULT '0',
`products_attributes_weight_prefix` char(1) NOT NULL DEFAULT '',
`attributes_display_only` tinyint(1) NOT NULL DEFAULT '0',
`attributes_default` tinyint(1) NOT NULL DEFAULT '0',
`attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
`attributes_image` varchar(64) DEFAULT NULL,
`attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
`attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_qty_prices` text,
`attributes_qty_prices_onetime` text,
`attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
`attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
`attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
`attributes_required` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`products_attributes_id`),
KEY `idx_id_options_id_values_zen` (`products_id`,`options_id`,`options_values_id`),
KEY `idx_opt_sort_order_zen` (`products_options_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_attributes_download`
--
CREATE TABLE IF NOT EXISTS `products_attributes_download` (
`products_attributes_id` int(11) NOT NULL DEFAULT '0',
`products_attributes_filename` varchar(255) NOT NULL DEFAULT '',
`products_attributes_maxdays` int(2) DEFAULT '0',
`products_attributes_maxcount` int(2) DEFAULT '0',
PRIMARY KEY (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_customers_images`
--
CREATE TABLE IF NOT EXISTS `products_customers_images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL,
`products_id` int(11) NOT NULL,
`image_url` varchar(2000) NOT NULL,
`title` varchar(200) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_description`
--
CREATE TABLE IF NOT EXISTS `products_description` (
`products_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '1',
`products_name` varchar(64) NOT NULL DEFAULT '',
`products_description` text,
`products_url` varchar(255) DEFAULT NULL,
`products_viewed` int(5) DEFAULT '0',
PRIMARY KEY (`products_id`,`language_id`),
KEY `idx_products_name_zen` (`products_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_discount_quantity`
--
CREATE TABLE IF NOT EXISTS `products_discount_quantity` (
`discount_id` int(4) NOT NULL DEFAULT '0',
`products_id` int(11) NOT NULL DEFAULT '0',
`discount_qty` float NOT NULL DEFAULT '0',
`discount_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
KEY `idx_id_qty_zen` (`products_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_notifications`
--
CREATE TABLE IF NOT EXISTS `products_notifications` (
`products_id` int(11) NOT NULL DEFAULT '0',
`customers_id` int(11) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_options`
--
CREATE TABLE IF NOT EXISTS `products_options` (
`products_options_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`products_options_name` varchar(32) NOT NULL DEFAULT '',
`products_options_sort_order` int(11) NOT NULL DEFAULT '0',
`products_options_type` int(5) NOT NULL DEFAULT '0',
`products_options_group` int(11) DEFAULT NULL,
`products_options_length` smallint(2) NOT NULL DEFAULT '32',
`products_options_comment` varchar(64) DEFAULT NULL,
`products_options_size` smallint(2) NOT NULL DEFAULT '32',
`products_options_images_per_row` int(2) DEFAULT '5',
`products_options_images_style` int(1) DEFAULT '0',
`products_options_rows` smallint(2) NOT NULL DEFAULT '1',
PRIMARY KEY (`products_options_id`,`language_id`),
KEY `idx_lang_id_zen` (`language_id`),
KEY `idx_products_options_sort_order_zen` (`products_options_sort_order`),
KEY `idx_products_options_name_zen` (`products_options_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_options_groups`
--
CREATE TABLE IF NOT EXISTS `products_options_groups` (
`products_options_groups_id` int(11) NOT NULL AUTO_INCREMENT,
`products_options_groups_display_filter` int(1) NOT NULL DEFAULT '0',
`products_options_groups_sort_order` int(11) NOT NULL DEFAULT '0',
`products_options_groups_status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`products_options_groups_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_options_groups_description`
--
CREATE TABLE IF NOT EXISTS `products_options_groups_description` (
`products_options_groups_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`products_options_groups_name` varchar(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_options_types`
--
CREATE TABLE IF NOT EXISTS `products_options_types` (
`products_options_types_id` int(11) NOT NULL DEFAULT '0',
`products_options_types_name` varchar(32) DEFAULT NULL,
PRIMARY KEY (`products_options_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Track products_options_types';
--
-- 转存表中的数据 `products_options_types`
--
INSERT INTO `products_options_types` (`products_options_types_id`, `products_options_types_name`) VALUES
(0, 'Dropdown'),
(1, 'Text'),
(2, 'Radio'),
(3, 'Checkbox'),
(4, 'File'),
(5, 'Read Only');
-- --------------------------------------------------------
--
-- 表的结构 `products_options_values`
--
CREATE TABLE IF NOT EXISTS `products_options_values` (
`products_options_values_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '1',
`products_options_values_name` varchar(64) NOT NULL DEFAULT '',
`products_options_values_sort_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`products_options_values_id`,`language_id`),
KEY `idx_products_options_values_name_zen` (`products_options_values_name`),
KEY `idx_products_options_values_sort_order_zen` (`products_options_values_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_options_values_to_products_options`
--
CREATE TABLE IF NOT EXISTS `products_options_values_to_products_options` (
`products_options_values_to_products_options_id` int(11) NOT NULL AUTO_INCREMENT,
`products_options_id` int(11) NOT NULL DEFAULT '0',
`products_options_values_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`products_options_values_to_products_options_id`),
KEY `idx_products_options_id_zen` (`products_options_id`),
KEY `idx_products_options_values_id_zen` (`products_options_values_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_subscription`
--
CREATE TABLE IF NOT EXISTS `products_subscription` (
`products_subscription_id` bigint(20) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL,
`products_id` int(11) NOT NULL,
`products_subscription_language_id` int(11) NOT NULL,
`products_subscription_type` varchar(50) NOT NULL,
`products_subscription_value` decimal(15,4) NOT NULL,
`products_subscription_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`products_subscription_status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`products_subscription_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_template`
--
CREATE TABLE IF NOT EXISTS `products_template` (
`products_template_id` int(11) NOT NULL AUTO_INCREMENT,
`categories_id` int(11) NOT NULL,
`products_template_name` varchar(64) NOT NULL,
`products_template_model` varchar(32) DEFAULT NULL,
`products_template_price` decimal(15,4) DEFAULT NULL,
`products_template_date_last` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`products_template_status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`products_template_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_template_description`
--
CREATE TABLE IF NOT EXISTS `products_template_description` (
`products_template_description_id` int(11) NOT NULL AUTO_INCREMENT,
`products_template_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`products_template_name` varchar(64) NOT NULL,
`products_template_description` text NOT NULL,
PRIMARY KEY (`products_template_description_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `products_to_categories`
--
CREATE TABLE IF NOT EXISTS `products_to_categories` (
`products_id` int(11) NOT NULL DEFAULT '0',
`categories_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`products_id`,`categories_id`),
KEY `idx_cat_prod_id_zen` (`categories_id`,`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `products_to_ezpages`
--
CREATE TABLE IF NOT EXISTS `products_to_ezpages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL,
`pages_id` int(11) NOT NULL,
`pages_type` tinyint(2) NOT NULL DEFAULT '0',
`status` tinyint(2) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
--
-- 转存表中的数据 `products_to_ezpages`
--
INSERT INTO `products_to_ezpages` (`id`, `products_id`, `pages_id`, `pages_type`, `status`) VALUES
(10, 222, 26, 0, 1);
-- --------------------------------------------------------
--
-- 表的结构 `products_to_videos`
--
CREATE TABLE IF NOT EXISTS `products_to_videos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL,
`video_url` varchar(2000) NOT NULL,
`title` varchar(249) NOT NULL,
`video_id` varchar(2000) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `product_music_extra`
--
CREATE TABLE IF NOT EXISTS `product_music_extra` (
`products_id` int(11) NOT NULL DEFAULT '0',
`artists_id` int(11) NOT NULL DEFAULT '0',
`record_company_id` int(11) NOT NULL DEFAULT '0',
`music_genre_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`products_id`),
KEY `idx_music_genre_id_zen` (`music_genre_id`),
KEY `idx_artists_id_zen` (`artists_id`),
KEY `idx_record_company_id_zen` (`record_company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `product_types`
--
CREATE TABLE IF NOT EXISTS `product_types` (
`type_id` int(11) NOT NULL AUTO_INCREMENT,
`type_name` varchar(255) NOT NULL DEFAULT '',
`type_handler` varchar(255) NOT NULL DEFAULT '',
`type_master_type` int(11) NOT NULL DEFAULT '1',
`allow_add_to_cart` char(1) NOT NULL DEFAULT 'Y',
`default_image` varchar(255) NOT NULL DEFAULT '',
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`type_id`),
KEY `idx_type_master_type_zen` (`type_master_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- 转存表中的数据 `product_types`
--
INSERT INTO `product_types` (`type_id`, `type_name`, `type_handler`, `type_master_type`, `allow_add_to_cart`, `default_image`, `date_added`, `last_modified`) VALUES
(1, 'Product - General', 'product', 1, 'Y', '', '2012-05-10 16:53:21', '2012-05-10 16:53:21'),
(2, 'Product - Music', 'product_music', 1, 'Y', '', '2012-05-10 16:53:21', '2012-05-10 16:53:21'),
(3, 'Document - General', 'document_general', 3, 'N', '', '2012-05-10 16:53:21', '2012-05-10 16:53:21'),
(4, 'Document - Product', 'document_product', 3, 'Y', '', '2012-05-10 16:53:21', '2012-05-10 16:53:21'),
(5, 'Product - Free Shipping', 'product_free_shipping', 1, 'Y', '', '2012-05-10 16:53:21', '2012-05-10 16:53:21');
-- --------------------------------------------------------
--
-- 表的结构 `product_types_to_category`
--
CREATE TABLE IF NOT EXISTS `product_types_to_category` (
`product_type_id` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL DEFAULT '0',
KEY `idx_category_id_zen` (`category_id`),
KEY `idx_product_type_id_zen` (`product_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `product_type_layout`
--
CREATE TABLE IF NOT EXISTS `product_type_layout` (
`configuration_id` int(11) NOT NULL AUTO_INCREMENT,
`configuration_title` text NOT NULL,
`configuration_key` varchar(255) NOT NULL DEFAULT '',
`configuration_value` text NOT NULL,
`configuration_description` text NOT NULL,
`product_type_id` int(11) NOT NULL DEFAULT '0',
`sort_order` int(5) DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`use_function` text,
`set_function` text,
PRIMARY KEY (`configuration_id`),
UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
KEY `idx_type_id_sort_order_zen` (`product_type_id`,`sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=139 ;
--
-- 转存表中的数据 `product_type_layout`
--
INSERT INTO `product_type_layout` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `product_type_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(1, 'Show Model Number', 'SHOW_PRODUCT_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 1, 1, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(2, 'Show Weight', 'SHOW_PRODUCT_INFO_WEIGHT', '1', 'Display Weight on Product Info 0= off 1= on', 1, 2, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(3, 'Show Attribute Weight', 'SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 1, 3, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(4, 'Show Manufacturer', 'SHOW_PRODUCT_INFO_MANUFACTURER', '1', 'Display Manufacturer Name on Product Info 0= off 1= on', 1, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(5, 'Show Quantity in Shopping Cart', 'SHOW_PRODUCT_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 1, 5, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(6, 'Show Quantity in Stock', 'SHOW_PRODUCT_INFO_QUANTITY', '1', 'Display Quantity in Stock on Product Info 0= off 1= on', 1, 6, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(7, 'Show Product Reviews Count', 'SHOW_PRODUCT_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 1, 7, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(8, 'Show Product Reviews Button', 'SHOW_PRODUCT_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 1, 8, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(9, 'Show Date Available', 'SHOW_PRODUCT_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 1, 9, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(10, 'Show Date Added', 'SHOW_PRODUCT_INFO_DATE_ADDED', '0', 'Display Date Added on Product Info 0= off 1= on', 1, 10, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(11, 'Show Product URL', 'SHOW_PRODUCT_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 1, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(12, 'Show Product Additional Images', 'SHOW_PRODUCT_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 1, 13, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(13, 'Show Starting At text on Price', 'SHOW_PRODUCT_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 1, 12, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(14, 'Product Free Shipping Image Status - Catalog', 'SHOW_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '0', 'Show the Free Shipping image/text in the catalog?', 1, 16, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(15, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_PRODUCT_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 1, 100, NULL, '2012-05-10 16:53:21', '', ''),
(16, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_PRODUCT_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 1, 101, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(17, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '0', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 1, 102, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(18, 'Show Model Number', 'SHOW_PRODUCT_MUSIC_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 2, 1, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(19, 'Show Weight', 'SHOW_PRODUCT_MUSIC_INFO_WEIGHT', '0', 'Display Weight on Product Info 0= off 1= on', 2, 2, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(20, 'Show Attribute Weight', 'SHOW_PRODUCT_MUSIC_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 2, 3, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(21, 'Show Artist', 'SHOW_PRODUCT_MUSIC_INFO_ARTIST', '1', 'Display Artists Name on Product Info 0= off 1= on', 2, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(22, 'Show Music Genre', 'SHOW_PRODUCT_MUSIC_INFO_GENRE', '1', 'Display Music Genre on Product Info 0= off 1= on', 2, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(23, 'Show Record Company', 'SHOW_PRODUCT_MUSIC_INFO_RECORD_COMPANY', '1', 'Display Record Company on Product Info 0= off 1= on', 2, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(24, 'Show Quantity in Shopping Cart', 'SHOW_PRODUCT_MUSIC_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 2, 5, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(25, 'Show Quantity in Stock', 'SHOW_PRODUCT_MUSIC_INFO_QUANTITY', '0', 'Display Quantity in Stock on Product Info 0= off 1= on', 2, 6, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(26, 'Show Product Reviews Count', 'SHOW_PRODUCT_MUSIC_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 2, 7, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(27, 'Show Product Reviews Button', 'SHOW_PRODUCT_MUSIC_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 2, 8, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(28, 'Show Date Available', 'SHOW_PRODUCT_MUSIC_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 2, 9, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(29, 'Show Date Added', 'SHOW_PRODUCT_MUSIC_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 2, 10, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(30, 'Show Starting At text on Price', 'SHOW_PRODUCT_MUSIC_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 2, 12, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(31, 'Show Product Additional Images', 'SHOW_PRODUCT_MUSIC_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 2, 13, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(32, 'Product Free Shipping Image Status - Catalog', 'SHOW_PRODUCT_MUSIC_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '0', 'Show the Free Shipping image/text in the catalog?', 2, 16, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(33, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_PRODUCT_MUSIC_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 2, 100, NULL, '2012-05-10 16:53:21', '', ''),
(34, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_PRODUCT_MUSIC_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 2, 101, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(35, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_PRODUCT_MUSIC_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '0', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 2, 102, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(36, 'Show Product Reviews Count', 'SHOW_DOCUMENT_GENERAL_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 3, 7, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(37, 'Show Product Reviews Button', 'SHOW_DOCUMENT_GENERAL_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 3, 8, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(38, 'Show Date Available', 'SHOW_DOCUMENT_GENERAL_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 3, 9, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(39, 'Show Date Added', 'SHOW_DOCUMENT_GENERAL_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 3, 10, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(40, 'Show Product URL', 'SHOW_DOCUMENT_GENERAL_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 3, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(41, 'Show Product Additional Images', 'SHOW_DOCUMENT_GENERAL_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 3, 13, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(42, 'Show Model Number', 'SHOW_DOCUMENT_PRODUCT_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 4, 1, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(43, 'Show Weight', 'SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT', '0', 'Display Weight on Product Info 0= off 1= on', 4, 2, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(44, 'Show Attribute Weight', 'SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 4, 3, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(45, 'Show Manufacturer', 'SHOW_DOCUMENT_PRODUCT_INFO_MANUFACTURER', '1', 'Display Manufacturer Name on Product Info 0= off 1= on', 4, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(46, 'Show Quantity in Shopping Cart', 'SHOW_DOCUMENT_PRODUCT_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 4, 5, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(47, 'Show Quantity in Stock', 'SHOW_DOCUMENT_PRODUCT_INFO_QUANTITY', '0', 'Display Quantity in Stock on Product Info 0= off 1= on', 4, 6, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(48, 'Show Product Reviews Count', 'SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 4, 7, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(49, 'Show Product Reviews Button', 'SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 4, 8, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(50, 'Show Date Available', 'SHOW_DOCUMENT_PRODUCT_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 4, 9, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(51, 'Show Date Added', 'SHOW_DOCUMENT_PRODUCT_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 4, 10, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(52, 'Show Product URL', 'SHOW_DOCUMENT_PRODUCT_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 4, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(53, 'Show Product Additional Images', 'SHOW_DOCUMENT_PRODUCT_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 4, 13, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(54, 'Show Starting At text on Price', 'SHOW_DOCUMENT_PRODUCT_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 4, 12, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(55, 'Product Free Shipping Image Status - Catalog', 'SHOW_DOCUMENT_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '0', 'Show the Free Shipping image/text in the catalog?', 4, 16, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(56, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_DOCUMENT_PRODUCT_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 4, 100, NULL, '2012-05-10 16:53:21', '', ''),
(57, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 4, 101, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(58, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '0', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 4, 102, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(59, 'Show Model Number', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 5, 1, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(60, 'Show Weight', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT', '0', 'Display Weight on Product Info 0= off 1= on', 5, 2, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(61, 'Show Attribute Weight', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 5, 3, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(62, 'Show Manufacturer', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_MANUFACTURER', '1', 'Display Manufacturer Name on Product Info 0= off 1= on', 5, 4, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(63, 'Show Quantity in Shopping Cart', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 5, 5, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(64, 'Show Quantity in Stock', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_QUANTITY', '1', 'Display Quantity in Stock on Product Info 0= off 1= on', 5, 6, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(65, 'Show Product Reviews Count', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 5, 7, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(66, 'Show Product Reviews Button', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 5, 8, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(67, 'Show Date Available', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_AVAILABLE', '0', 'Display Date Available on Product Info 0= off 1= on', 5, 9, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(68, 'Show Date Added', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 5, 10, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(69, 'Show Product URL', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 5, 11, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(70, 'Show Product Additional Images', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 5, 13, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(71, 'Show Starting At text on Price', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 5, 12, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(72, 'Product Free Shipping Image Status - Catalog', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '1', 'Show the Free Shipping image/text in the catalog?', 5, 16, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(73, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_PRODUCT_FREE_SHIPPING_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 5, 100, NULL, '2012-05-10 16:53:21', '', ''),
(74, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 5, 101, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(75, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '1', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 5, 102, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(76, 'Show Metatags Title Default - Product Title', 'SHOW_PRODUCT_INFO_METATAGS_TITLE_STATUS', '1', 'Display Product Title in Meta Tags Title 0= off 1= on', 1, 50, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(77, 'Show Metatags Title Default - Product Name', 'SHOW_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Product Name in Meta Tags Title 0= off 1= on', 1, 51, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(78, 'Show Metatags Title Default - Product Model', 'SHOW_PRODUCT_INFO_METATAGS_MODEL_STATUS', '1', 'Display Product Model in Meta Tags Title 0= off 1= on', 1, 52, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(79, 'Show Metatags Title Default - Product Price', 'SHOW_PRODUCT_INFO_METATAGS_PRICE_STATUS', '1', 'Display Product Price in Meta Tags Title 0= off 1= on', 1, 53, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(80, 'Show Metatags Title Default - Product Tagline', 'SHOW_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Product Tagline in Meta Tags Title 0= off 1= on', 1, 54, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(81, 'Show Metatags Title Default - Product Title', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_STATUS', '1', 'Display Product Title in Meta Tags Title 0= off 1= on', 2, 50, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(82, 'Show Metatags Title Default - Product Name', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Product Name in Meta Tags Title 0= off 1= on', 2, 51, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(83, 'Show Metatags Title Default - Product Model', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_MODEL_STATUS', '1', 'Display Product Model in Meta Tags Title 0= off 1= on', 2, 52, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(84, 'Show Metatags Title Default - Product Price', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRICE_STATUS', '1', 'Display Product Price in Meta Tags Title 0= off 1= on', 2, 53, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(85, 'Show Metatags Title Default - Product Tagline', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Product Tagline in Meta Tags Title 0= off 1= on', 2, 54, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(86, 'Show Metatags Title Default - Document Title', 'SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_STATUS', '1', 'Display Document Title in Meta Tags Title 0= off 1= on', 3, 50, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(87, 'Show Metatags Title Default - Document Name', 'SHOW_DOCUMENT_GENERAL_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Document Name in Meta Tags Title 0= off 1= on', 3, 51, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(88, 'Show Metatags Title Default - Document Tagline', 'SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Document Tagline in Meta Tags Title 0= off 1= on', 3, 54, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(89, 'Show Metatags Title Default - Document Title', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_STATUS', '1', 'Display Document Title in Meta Tags Title 0= off 1= on', 4, 50, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(90, 'Show Metatags Title Default - Document Name', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Document Name in Meta Tags Title 0= off 1= on', 4, 51, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(91, 'Show Metatags Title Default - Document Model', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_MODEL_STATUS', '1', 'Display Document Model in Meta Tags Title 0= off 1= on', 4, 52, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(92, 'Show Metatags Title Default - Document Price', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRICE_STATUS', '1', 'Display Document Price in Meta Tags Title 0= off 1= on', 4, 53, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(93, 'Show Metatags Title Default - Document Tagline', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Document Tagline in Meta Tags Title 0= off 1= on', 4, 54, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(94, 'Show Metatags Title Default - Product Title', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_STATUS', '1', 'Display Product Title in Meta Tags Title 0= off 1= on', 5, 50, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(95, 'Show Metatags Title Default - Product Name', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Product Name in Meta Tags Title 0= off 1= on', 5, 51, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(96, 'Show Metatags Title Default - Product Model', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_MODEL_STATUS', '1', 'Display Product Model in Meta Tags Title 0= off 1= on', 5, 52, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(97, 'Show Metatags Title Default - Product Price', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRICE_STATUS', '1', 'Display Product Price in Meta Tags Title 0= off 1= on', 5, 53, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(98, 'Show Metatags Title Default - Product Tagline', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Product Tagline in Meta Tags Title 0= off 1= on', 5, 54, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(99, 'PRODUCT Attribute is Display Only - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY', '0', 'PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 1, 200, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(100, 'PRODUCT Attribute is Free - Default', 'DEFAULT_PRODUCT_ATTRIBUTE_IS_FREE', '1', 'PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 1, 201, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(101, 'PRODUCT Attribute is Default - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_DEFAULT', '0', 'PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 1, 202, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(102, 'PRODUCT Attribute is Discounted - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_DISCOUNTED', '1', 'PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 1, 203, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(103, 'PRODUCT Attribute is Included in Base Price - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 1, 204, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(104, 'PRODUCT Attribute is Required - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_REQUIRED', '0', 'PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 1, 205, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(105, 'PRODUCT Attribute Price Prefix - Default', 'DEFAULT_PRODUCT_PRICE_PREFIX', '1', 'PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 1, 206, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(106, 'PRODUCT Attribute Weight Prefix - Default', 'DEFAULT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 1, 207, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(107, 'MUSIC Attribute is Display Only - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISPLAY_ONLY', '0', 'MUSIC Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 2, 200, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(108, 'MUSIC Attribute is Free - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTE_IS_FREE', '1', 'MUSIC Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 2, 201, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(109, 'MUSIC Attribute is Default - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DEFAULT', '0', 'MUSIC Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 2, 202, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(110, 'MUSIC Attribute is Discounted - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISCOUNTED', '1', 'MUSIC Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 2, 203, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(111, 'MUSIC Attribute is Included in Base Price - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'MUSIC Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 2, 204, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(112, 'MUSIC Attribute is Required - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_REQUIRED', '0', 'MUSIC Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 2, 205, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(113, 'MUSIC Attribute Price Prefix - Default', 'DEFAULT_PRODUCT_MUSIC_PRICE_PREFIX', '1', 'MUSIC Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 2, 206, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(114, 'MUSIC Attribute Weight Prefix - Default', 'DEFAULT_PRODUCT_MUSIC_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'MUSIC Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 2, 207, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(115, 'DOCUMENT GENERAL Attribute is Display Only - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISPLAY_ONLY', '0', 'DOCUMENT GENERAL Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 3, 200, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(116, 'DOCUMENT GENERAL Attribute is Free - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTE_IS_FREE', '1', 'DOCUMENT GENERAL Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 3, 201, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(117, 'DOCUMENT GENERAL Attribute is Default - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DEFAULT', '0', 'DOCUMENT GENERAL Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 3, 202, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(118, 'DOCUMENT GENERAL Attribute is Discounted - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISCOUNTED', '1', 'DOCUMENT GENERAL Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 3, 203, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(119, 'DOCUMENT GENERAL Attribute is Included in Base Price - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'DOCUMENT GENERAL Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 3, 204, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(120, 'DOCUMENT GENERAL Attribute is Required - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_REQUIRED', '0', 'DOCUMENT GENERAL Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 3, 205, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(121, 'DOCUMENT GENERAL Attribute Price Prefix - Default', 'DEFAULT_DOCUMENT_GENERAL_PRICE_PREFIX', '1', 'DOCUMENT GENERAL Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 3, 206, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(122, 'DOCUMENT GENERAL Attribute Weight Prefix - Default', 'DEFAULT_DOCUMENT_GENERAL_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'DOCUMENT GENERAL Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 3, 207, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(123, 'DOCUMENT PRODUCT Attribute is Display Only - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY', '0', 'DOCUMENT PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 4, 200, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(124, 'DOCUMENT PRODUCT Attribute is Free - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTE_IS_FREE', '1', 'DOCUMENT PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 4, 201, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(125, 'DOCUMENT PRODUCT Attribute is Default - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DEFAULT', '0', 'DOCUMENT PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 4, 202, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(126, 'DOCUMENT PRODUCT Attribute is Discounted - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISCOUNTED', '1', 'DOCUMENT PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 4, 203, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(127, 'DOCUMENT PRODUCT Attribute is Included in Base Price - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'DOCUMENT PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 4, 204, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(128, 'DOCUMENT PRODUCT Attribute is Required - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_REQUIRED', '0', 'DOCUMENT PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 4, 205, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(129, 'DOCUMENT PRODUCT Attribute Price Prefix - Default', 'DEFAULT_DOCUMENT_PRODUCT_PRICE_PREFIX', '1', 'DOCUMENT PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 4, 206, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(130, 'DOCUMENT PRODUCT Attribute Weight Prefix - Default', 'DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'DOCUMENT PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 4, 207, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(131, 'PRODUCT FREE SHIPPING Attribute is Display Only - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISPLAY_ONLY', '0', 'PRODUCT FREE SHIPPING Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 5, 201, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(132, 'PRODUCT FREE SHIPPING Attribute is Free - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTE_IS_FREE', '1', 'PRODUCT FREE SHIPPING Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 5, 201, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(133, 'PRODUCT FREE SHIPPING Attribute is Default - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DEFAULT', '0', 'PRODUCT FREE SHIPPING Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 5, 202, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(134, 'PRODUCT FREE SHIPPING Attribute is Discounted - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISCOUNTED', '1', 'PRODUCT FREE SHIPPING Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 5, 203, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(135, 'PRODUCT FREE SHIPPING Attribute is Included in Base Price - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'PRODUCT FREE SHIPPING Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 5, 204, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(136, 'PRODUCT FREE SHIPPING Attribute is Required - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_REQUIRED', '0', 'PRODUCT FREE SHIPPING Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 5, 205, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(137, 'PRODUCT FREE SHIPPING Attribute Price Prefix - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRICE_PREFIX', '1', 'PRODUCT FREE SHIPPING Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 5, 206, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(138, 'PRODUCT FREE SHIPPING Attribute Weight Prefix - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'PRODUCT FREE SHIPPING Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 5, 207, NULL, '2012-05-10 16:53:21', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), ');
-- --------------------------------------------------------
--
-- 表的结构 `project_version`
--
CREATE TABLE IF NOT EXISTS `project_version` (
`project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
`project_version_key` varchar(40) NOT NULL DEFAULT '',
`project_version_major` varchar(20) NOT NULL DEFAULT '',
`project_version_minor` varchar(20) NOT NULL DEFAULT '',
`project_version_patch1` varchar(20) NOT NULL DEFAULT '',
`project_version_patch2` varchar(20) NOT NULL DEFAULT '',
`project_version_patch1_source` varchar(20) NOT NULL DEFAULT '',
`project_version_patch2_source` varchar(20) NOT NULL DEFAULT '',
`project_version_comment` varchar(250) NOT NULL DEFAULT '',
`project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
PRIMARY KEY (`project_version_id`),
UNIQUE KEY `idx_project_version_key_zen` (`project_version_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Database Version Tracking' AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `project_version`
--
INSERT INTO `project_version` (`project_version_id`, `project_version_key`, `project_version_major`, `project_version_minor`, `project_version_patch1`, `project_version_patch2`, `project_version_patch1_source`, `project_version_patch2_source`, `project_version_comment`, `project_version_date_applied`) VALUES
(1, 'Zen-Cart Main', '1', '5.0', '', '', '', '', 'Fresh Installation', '2012-05-10 16:53:21'),
(2, 'Zen-Cart Database', '1', '5.0', '', '', '', '', 'Fresh Installation', '2012-05-10 16:53:21');
-- --------------------------------------------------------
--
-- 表的结构 `project_version_history`
--
CREATE TABLE IF NOT EXISTS `project_version_history` (
`project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
`project_version_key` varchar(40) NOT NULL DEFAULT '',
`project_version_major` varchar(20) NOT NULL DEFAULT '',
`project_version_minor` varchar(20) NOT NULL DEFAULT '',
`project_version_patch` varchar(20) NOT NULL DEFAULT '',
`project_version_comment` varchar(250) NOT NULL DEFAULT '',
`project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
PRIMARY KEY (`project_version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Database Version Tracking History' AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `project_version_history`
--
INSERT INTO `project_version_history` (`project_version_id`, `project_version_key`, `project_version_major`, `project_version_minor`, `project_version_patch`, `project_version_comment`, `project_version_date_applied`) VALUES
(1, 'Zen-Cart Main', '1', '5.0', '', 'Fresh Installation', '2012-05-10 16:53:21'),
(2, 'Zen-Cart Database', '1', '5.0', '', 'Fresh Installation', '2012-05-10 16:53:21');
-- --------------------------------------------------------
--
-- 表的结构 `query_builder`
--
CREATE TABLE IF NOT EXISTS `query_builder` (
`query_id` int(11) NOT NULL AUTO_INCREMENT,
`query_category` varchar(40) NOT NULL DEFAULT '',
`query_name` varchar(80) NOT NULL DEFAULT '',
`query_description` text NOT NULL,
`query_string` text NOT NULL,
`query_keys_list` text NOT NULL,
PRIMARY KEY (`query_id`),
UNIQUE KEY `query_name` (`query_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores queries for re-use in Admin email and report modules' AUTO_INCREMENT=12 ;
--
-- 转存表中的数据 `query_builder`
--
INSERT INTO `query_builder` (`query_id`, `query_category`, `query_name`, `query_description`, `query_string`, `query_keys_list`) VALUES
(1, 'email', 'All Customers', 'Returns all customers name and email address for sending mass emails (ie: for newsletters, coupons, GVs, messages, etc).', 'select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS order by customers_lastname, customers_firstname, customers_email_address', ''),
(2, 'email,newsletters', 'Customer Account Newsletter Subscribers', 'Returns name and email address of newsletter subscribers who have a customer account.', 'select customers_firstname, customers_lastname, customers_email_address from TABLE_CUSTOMERS where customers_newsletter = ''1''', ''),
(3, 'email,newsletters', 'Dormant Customers (>3months) (Subscribers)', 'Subscribers who HAVE purchased something, but have NOT purchased for at least three months.', 'select o.date_purchased, c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id AND c.customers_newsletter = 1 GROUP BY c.customers_email_address HAVING max(o.date_purchased) <= subdate(now(),INTERVAL 3 MONTH) ORDER BY c.customers_lastname, c.customers_firstname ASC', ''),
(4, 'email,newsletters', 'Active customers in past 3 months (Subscribers)', 'Newsletter subscribers who are also active customers (purchased something) in last 3 months.', 'select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o where c.customers_newsletter = ''1'' AND c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC', ''),
(5, 'email,newsletters', 'Active customers in past 3 months (Regardless of subscription status)', 'All active customers (purchased something) in last 3 months, ignoring newsletter-subscription status.', 'select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC', ''),
(6, 'email,newsletters', 'Administrator', 'Just the email account of the current administrator', 'select ''ADMIN'' as customers_firstname, admin_name as customers_lastname, admin_email as customers_email_address from TABLE_ADMIN where admin_id = $SESSION:admin_id', ''),
(7, 'email,newsletters', 'Customers who have never completed a purchase', 'For sending newsletter to all customers who registered but have never completed a purchase', 'SELECT DISTINCT c.customers_email_address as customers_email_address, c.customers_lastname as customers_lastname, c.customers_firstname as customers_firstname FROM TABLE_CUSTOMERS c LEFT JOIN TABLE_ORDERS o ON c.customers_id=o.customers_id WHERE o.date_purchased IS NULL', ''),
(8, 'email,newsletters', 'All Newsletter Subscribers', 'Returns name and email address of all Customer Account subscribers and all Newsletter-Only subscribers.', 'select c.customers_firstname, c.customers_lastname, s.email_address as customers_email_address from TABLE_SUBSCRIBERS as s left join TABLE_CUSTOMERS as c on c.customers_id = s.customers_id ', ''),
(9, 'email,newsletters', 'Newsletter-only Subscribers', 'Returns email address of all confirmed Newsletter-Only subscribers.', 'SELECT email_address as customers_email_address FROM TABLE_SUBSCRIBERS WHERE email_format != ''NONE'' and confirmed = 1 and (customers_id IS NULL or customers_id = 0) order by email_address', ''),
(10, 'email,newsletters', 'Email Test Group - Newsletter-only subscribers', 'Returns name and email address of Newsletter-only subscribers designated in Email test group configuration.', 'SELECT s.email_address as customers_email_address FROM TABLE_SUBSCRIBERS as s LEFT JOIN TABLE_CONFIGURATION as q on LOCATE( s.email_address, q.configuration_value) >= 1 WHERE configuration_key = ''NEWSONLY_SUBSCRIPTION_TEST_GROUP'' ', ''),
(11, 'email,newsletters', 'Email Test Group - Customers', 'Returns name and email address of Newsletter-only subscribers designated in Email test group configuration.', 'SELECT c.customers_email_address as customers_email_address FROM TABLE_CUSTOMERS as c LEFT JOIN TABLE_CONFIGURATION as q on LOCATE( c.customers_email_address, q.configuration_value) >= 1 WHERE configuration_key = ''NEWSONLY_SUBSCRIPTION_TEST_GROUP'' ', '');
-- --------------------------------------------------------
--
-- 表的结构 `record_artists`
--
CREATE TABLE IF NOT EXISTS `record_artists` (
`artists_id` int(11) NOT NULL AUTO_INCREMENT,
`artists_name` varchar(32) NOT NULL DEFAULT '',
`artists_image` varchar(64) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
PRIMARY KEY (`artists_id`),
KEY `idx_rec_artists_name_zen` (`artists_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `record_artists_info`
--
CREATE TABLE IF NOT EXISTS `record_artists_info` (
`artists_id` int(11) NOT NULL DEFAULT '0',
`languages_id` int(11) NOT NULL DEFAULT '0',
`artists_url` varchar(255) NOT NULL DEFAULT '',
`url_clicked` int(5) NOT NULL DEFAULT '0',
`date_last_click` datetime DEFAULT NULL,
PRIMARY KEY (`artists_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `record_company`
--
CREATE TABLE IF NOT EXISTS `record_company` (
`record_company_id` int(11) NOT NULL AUTO_INCREMENT,
`record_company_name` varchar(32) NOT NULL DEFAULT '',
`record_company_image` varchar(64) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
PRIMARY KEY (`record_company_id`),
KEY `idx_rec_company_name_zen` (`record_company_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `record_company_info`
--
CREATE TABLE IF NOT EXISTS `record_company_info` (
`record_company_id` int(11) NOT NULL DEFAULT '0',
`languages_id` int(11) NOT NULL DEFAULT '0',
`record_company_url` varchar(255) NOT NULL DEFAULT '',
`url_clicked` int(5) NOT NULL DEFAULT '0',
`date_last_click` datetime DEFAULT NULL,
PRIMARY KEY (`record_company_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `reviews`
--
CREATE TABLE IF NOT EXISTS `reviews` (
`reviews_id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL DEFAULT '0',
`customers_id` int(11) DEFAULT NULL,
`customers_name` varchar(64) NOT NULL DEFAULT '',
`reviews_rating` int(1) DEFAULT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`reviews_read` int(5) NOT NULL DEFAULT '0',
`status` int(1) NOT NULL DEFAULT '1',
`reply_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`reviews_id`),
KEY `idx_products_id_zen` (`products_id`),
KEY `idx_customers_id_zen` (`customers_id`),
KEY `idx_status_zen` (`status`),
KEY `idx_date_added_zen` (`date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `reviews_description`
--
CREATE TABLE IF NOT EXISTS `reviews_description` (
`reviews_id` int(11) NOT NULL DEFAULT '0',
`languages_id` int(11) NOT NULL DEFAULT '0',
`reviews_text` text NOT NULL,
PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `reward_customer_points`
--
CREATE TABLE IF NOT EXISTS `reward_customer_points` (
`customers_id` int(11) NOT NULL,
`reward_points` double(15,4) NOT NULL DEFAULT '0.0000',
`pending_points` double(15,4) NOT NULL DEFAULT '0.0000',
`account_get_points_status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `reward_master`
--
CREATE TABLE IF NOT EXISTS `reward_master` (
`rewards_products_id` int(11) NOT NULL AUTO_INCREMENT,
`scope` int(1) NOT NULL DEFAULT '0',
`scope_id` int(11) NOT NULL DEFAULT '0',
`point_ratio` double(15,4) NOT NULL DEFAULT '1.0000',
`bonus_points` double(15,4) DEFAULT NULL,
`redeem_ratio` double(15,4) DEFAULT NULL,
`redeem_points` double(15,4) DEFAULT NULL,
PRIMARY KEY (`rewards_products_id`),
UNIQUE KEY `unique_id` (`scope`,`scope_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `reward_status_track`
--
CREATE TABLE IF NOT EXISTS `reward_status_track` (
`rewards_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL,
`orders_id` int(11) NOT NULL,
`date` datetime NOT NULL,
`reward_points` double(15,4) NOT NULL,
`status` tinyint(1) NOT NULL,
PRIMARY KEY (`rewards_id`),
UNIQUE KEY `orders_id` (`orders_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `salemaker_sales`
--
CREATE TABLE IF NOT EXISTS `salemaker_sales` (
`sale_id` int(11) NOT NULL AUTO_INCREMENT,
`sale_status` tinyint(4) NOT NULL DEFAULT '0',
`sale_name` varchar(30) NOT NULL DEFAULT '',
`sale_deduction_value` decimal(15,4) NOT NULL DEFAULT '0.0000',
`sale_deduction_type` tinyint(4) NOT NULL DEFAULT '0',
`sale_pricerange_from` decimal(15,4) NOT NULL DEFAULT '0.0000',
`sale_pricerange_to` decimal(15,4) NOT NULL DEFAULT '0.0000',
`sale_specials_condition` tinyint(4) NOT NULL DEFAULT '0',
`sale_categories_selected` text,
`sale_categories_all` text,
`sale_date_start` date NOT NULL DEFAULT '0001-01-01',
`sale_date_end` date NOT NULL DEFAULT '0001-01-01',
`sale_date_added` date NOT NULL DEFAULT '0001-01-01',
`sale_date_last_modified` date NOT NULL DEFAULT '0001-01-01',
`sale_date_status_change` date NOT NULL DEFAULT '0001-01-01',
PRIMARY KEY (`sale_id`),
KEY `idx_sale_status_zen` (`sale_status`),
KEY `idx_sale_date_start_zen` (`sale_date_start`),
KEY `idx_sale_date_end_zen` (`sale_date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
-- --------------------------------------------------------
--
-- 表的结构 `search_record`
--
CREATE TABLE IF NOT EXISTS `search_record` (
`id` double DEFAULT NULL,
`keywords` varchar(600) DEFAULT NULL,
`counter` double DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `seo_cache`
--
CREATE TABLE IF NOT EXISTS `seo_cache` (
`cache_id` varchar(32) NOT NULL DEFAULT '',
`cache_language_id` tinyint(1) NOT NULL DEFAULT '0',
`cache_name` varchar(255) NOT NULL DEFAULT '',
`cache_data` mediumtext NOT NULL,
`cache_global` tinyint(1) NOT NULL DEFAULT '1',
`cache_gzip` tinyint(1) NOT NULL DEFAULT '1',
`cache_method` varchar(20) NOT NULL DEFAULT 'RETURN',
`cache_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`cache_expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`cache_id`,`cache_language_id`),
KEY `cache_id` (`cache_id`),
KEY `cache_language_id` (`cache_language_id`),
KEY `cache_global` (`cache_global`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `sessions`
--
CREATE TABLE IF NOT EXISTS `sessions` (
`sesskey` varchar(64) NOT NULL DEFAULT '',
`expiry` int(11) unsigned NOT NULL DEFAULT '0',
`value` mediumblob NOT NULL,
PRIMARY KEY (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `sessions`
--
INSERT INTO `sessions` (`sesskey`, `expiry`, `value`) VALUES
('4cirm7ckkl92hnlht9c3csb646', 1371570222, 0x6332566a64584a7064486c556232746c626e787a4f6a4d794f694a6b5a5463344e44686a5a47453159544a6a4d5451345a474d334f446c6d5a6a4d795a6a597a4e7a63314d7949375933567a644739745a584a7a58326876633352665957526b636d567a6333787a4f6a6b36496d7876593246736147397a644349375932467964456c4566484d364d446f69496a746a59584a30664538364d544936496e4e6f623342776157356e51324679644349364d54493665334d364f446f69593239756447567564484d694f3245364d44703766584d364e546f6964473930595777694f326b364d44747a4f6a5936496e646c6157646f6443493761546f774f334d364d544936496d4e76626e526c626e526664486c775a534937596a6f774f334d364d546736496d5a795a5756666332687063484270626d64666158526c6253493761546f774f334d364d6a4136496d5a795a5756666332687063484270626d6466643256705a326830496a74704f6a4137637a6f784f546f695a6e4a6c5a56397a61476c7763476c755a313977636d6c6a5a53493761546f774f334d364d544936496d4e7662477876593246306157397563794937546a747a4f6a45344f694a6a6232787362324e6864476c76626e4e6659584a7959586b694f3245364d44703766584d364d546336496d4e766247787659324630615739755833527664474673496a746b4f6a4137637a6f794d7a6f69593239736247396a595852706232356664473930595778666158526c62584d694f326b364d44747a4f6a49304f694a6a6232787362324e6864476c76626c393062335268624639335a576c6e614851694f326b364d447439626d46326157646864476c76626e78504f6a45334f694a7559585a705a3246306157397553476c7a64473979655349364d6a7037637a6f304f694a775958526f496a74684f6a453665326b364d4474684f6a513665334d364e446f696347466e5a534937637a6f314f694a70626d526c65434937637a6f304f694a746232526c496a747a4f6a5936496b3550546c4e5454434937637a6f7a4f694a6e5a5851694f334d364d446f69496a747a4f6a5136496e4276633351694f3245364d44703766583139637a6f344f694a7a626d4677633268766443493759546f774f6e743966574e6f5a574e7258335a6862476c6b66484d364e446f6964484a315a534937624746755a3356685a325638637a6f334f694a6c626d647361584e6f496a74735957356e6457466e5a584e6661575238637a6f784f694978496a74735957356e6457466e5a584e665932396b5a58787a4f6a4936496d5675496a746a64584a795a57356a6558787a4f6a4d36496c5654524349376447396b59586c6661584e38637a6f784d446f694d6a41784d7930774e6930784f4349376458426b5958526c5258687761584a6864476c76626e4e38596a6f784f334e6c63334e706232356659323931626e526c636e78694f6a45375933567a644739745a584a7a58326c775832466b5a484a6c63334e38637a6f354f6949784d6a63754d4334774c6a45694f773d3d),
('tq6qmdosumn6aeq2a5fr19jmm3', 1371569702, 0x6332566a64584a7064486c556232746c626e787a4f6a4d794f6949315a4467345a47526d4d7a5978593251354d4751784e575a6a4d574534596a4a685a4467794d7a59314f534937624746755a3356685a325638637a6f334f694a6c626d647361584e6f496a74735957356e6457466e5a584e6661575238637a6f784f694978496a74735957356e6457466e5a584e665932396b5a58787a4f6a4936496d5675496a747a5a57786c5933526c5a46396962336838637a6f784d7a6f69593239755a6d6c6e64584a6864476c7662694937614852746246396c5a476c3062334a6663484a6c5a6d56795a57356a5a56397a6447463064584e38637a6f334f694a555355355a54554e46496a74685a473170626c39705a48787a4f6a4536496a45694f773d3d);
-- --------------------------------------------------------
--
-- 表的结构 `shipping_country`
--
CREATE TABLE IF NOT EXISTS `shipping_country` (
`countries_id` int(11) NOT NULL AUTO_INCREMENT,
`country_code` varchar(2) NOT NULL,
`countries_name` varchar(100) NOT NULL,
`countries_cn_name` varchar(100) NOT NULL,
`created` timestamp NULL DEFAULT NULL,
`modified` timestamp NULL DEFAULT NULL,
`status` int(11) DEFAULT NULL,
PRIMARY KEY (`countries_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=223 ;
--
-- 转存表中的数据 `shipping_country`
--
INSERT INTO `shipping_country` (`countries_id`, `country_code`, `countries_name`, `countries_cn_name`, `created`, `modified`, `status`) VALUES
(1, 'CN', 'China', '中华人民共和国', NULL, NULL, NULL),
(2, 'US', 'USA', '美国', NULL, NULL, NULL),
(3, 'AF', 'Afghanistan', '阿富汗', NULL, NULL, NULL),
(4, 'AL', 'Albania', '阿尔巴尼亚', NULL, NULL, NULL),
(5, 'AO', 'Angola', '安哥拉', NULL, NULL, NULL),
(6, 'AG', 'Antigua ', '安提瓜', NULL, NULL, NULL),
(7, 'AW', 'Aruba ', '阿鲁巴岛', NULL, NULL, NULL),
(8, 'AU', 'Australia', '澳大利亚', NULL, NULL, NULL),
(9, 'AT', 'Austria', '奥地利', NULL, NULL, NULL),
(10, 'DZ', 'Algeria', '阿尔及利亚', NULL, NULL, NULL),
(11, 'AS', 'American Samoa', '美属萨摩亚群岛', NULL, NULL, NULL),
(12, 'AD', 'Andorra', '安道尔', NULL, NULL, NULL),
(13, 'AI', 'Anguilla ', '安圭拉', NULL, NULL, NULL),
(14, 'AR', 'Argentina', '阿根廷', NULL, NULL, NULL),
(15, 'AM', 'Armenia(c.i.s.)', '亚美尼亚(独联体)', NULL, NULL, NULL),
(16, 'AZ', 'Azerbaijan', '阿塞拜疆(独联体)', NULL, NULL, NULL),
(17, 'BS', 'Bahamas', '巴哈马', NULL, NULL, NULL),
(18, 'BH', 'Bahrain ', '巴林', NULL, NULL, NULL),
(19, 'BD', 'Bangladesh', '孟加拉国', NULL, NULL, NULL),
(20, 'BZ', 'Belize ', '伯利兹', NULL, NULL, NULL),
(21, 'BT', 'Bhutan', '不丹', NULL, NULL, NULL),
(22, 'XB', 'Bonaire', '波内尔岛', NULL, NULL, NULL),
(23, 'BW', 'Botswana ', '博茨瓦纳', NULL, NULL, NULL),
(24, 'BN', 'Brunei ', '文莱', NULL, NULL, NULL),
(25, 'BG', 'Bulgaria', '保加利亚', NULL, NULL, NULL),
(26, 'BF', 'Burkina Faso', '布基纳法索', NULL, NULL, NULL),
(27, 'BB', 'Barbados ', '巴巴多斯', NULL, NULL, NULL),
(28, 'BY', 'Belarus', '白俄罗斯(独联体)', NULL, NULL, NULL),
(29, 'BE', 'Belgium', '比利时', NULL, NULL, NULL),
(30, 'BJ', 'Benin', '贝宁', NULL, NULL, NULL),
(31, 'BM', 'Bermuda ', '百慕大', NULL, NULL, NULL),
(32, 'BO', 'Bolivia ', '波利维亚', NULL, NULL, NULL),
(33, 'BA', 'Bosnia & Herzegovia', '波黑共合国', NULL, NULL, NULL),
(34, 'BR', 'Brazil', '巴西', NULL, NULL, NULL),
(35, 'BI', 'Burundi', '布隆迪', NULL, NULL, NULL),
(36, 'CV', 'Cape Verde', '维德角群岛', NULL, NULL, NULL),
(37, 'KY', 'Cayman Islands', '开曼群岛', NULL, NULL, NULL),
(38, 'CF', 'Central African Rep', '中非共和国', NULL, NULL, NULL),
(39, 'TD', 'Chad', '乍得', NULL, NULL, NULL),
(40, 'CO', 'Colombia', '哥伦比亚', NULL, NULL, NULL),
(41, 'KM', 'Comoros', '科摩罗', NULL, NULL, NULL),
(42, 'CG', 'Congo', '刚果', NULL, NULL, NULL),
(43, 'CD', 'Congo,the Democratic Republic Of Cd', '刚果共和国', NULL, NULL, NULL),
(44, 'CK', 'Cook Island', '库克群岛', NULL, NULL, NULL),
(45, 'CR', 'Costa Rica', '哥斯达黎加', NULL, NULL, NULL),
(46, 'HR', 'Croatia', '克罗地亚', NULL, NULL, NULL),
(47, 'CU', 'Cuba', '古巴', NULL, NULL, NULL),
(48, 'XC', 'Curacao', '库拉索岛(荷兰)', NULL, NULL, NULL),
(49, 'CY', 'Cyprus', '塞浦路斯', NULL, NULL, NULL),
(50, 'CZ', 'Czech,republic', '捷克共和国', NULL, NULL, NULL),
(51, 'KH', 'Cambodia', '柬埔寨', NULL, NULL, NULL),
(52, 'CM', 'Cameroon', '喀麦隆', NULL, NULL, NULL),
(53, 'CA', 'Canada ', '加拿大', NULL, NULL, NULL),
(54, 'IC', 'Canary Islands,the', '西班牙加那利群岛', NULL, NULL, NULL),
(55, 'CL', 'Chile', '智利', NULL, NULL, NULL),
(56, 'CI', '', '科特迪瓦', NULL, NULL, NULL),
(57, 'DJ', 'Djibouti ', '吉布提', NULL, NULL, NULL),
(58, 'DK', 'Denmark', '丹麦', NULL, NULL, NULL),
(59, 'DM', 'Dominica', '多米尼加', NULL, NULL, NULL),
(60, 'DO', 'Dominican Republic', '多米尼加共合国', NULL, NULL, NULL),
(61, 'TP', 'East Timor', '东帝汶', NULL, NULL, NULL),
(62, 'SV', 'El Salvador', '萨尔瓦多', NULL, NULL, NULL),
(63, 'ER', 'Eritrea ', '厄里特立亚', NULL, NULL, NULL),
(64, 'EE', 'Estonia', '爱沙尼亚', NULL, NULL, NULL),
(65, 'ET', 'Ethiopia', '埃塞俄比亚', NULL, NULL, NULL),
(66, 'EC', 'Ecuador', '厄瓜多尔', NULL, NULL, NULL),
(67, 'EG', 'Egypt', '埃及', NULL, NULL, NULL),
(68, 'GQ', 'Equatorial Guinea ', '赤道几内亚', NULL, NULL, NULL),
(69, 'FK', 'Falkland Island', '福克兰群岛', NULL, NULL, NULL),
(70, 'FO', 'Faroe Islands ', '法鲁群岛', NULL, NULL, NULL),
(71, 'FI', 'Finland', '芬兰', NULL, NULL, NULL),
(72, 'GF', 'French Guiana', '法属圭亚那', NULL, NULL, NULL),
(73, 'FJ', 'Fiji ', '菲济', NULL, NULL, NULL),
(74, 'FR', 'France', '法国', NULL, NULL, NULL),
(75, 'DE', 'Germany', '德国', NULL, NULL, NULL),
(76, 'GR', 'Greece', '希腊', NULL, NULL, NULL),
(77, 'GP', 'Guadeloupe', '瓜德罗普', NULL, NULL, NULL),
(78, 'GT', 'Guatemala ', '危地马拉', NULL, NULL, NULL),
(79, 'GY', 'Guyana(british)', '圭亚那', NULL, NULL, NULL),
(80, 'GA', 'Gabon', '加蓬', NULL, NULL, NULL),
(81, 'GM', 'Gambia', '冈比亚', NULL, NULL, NULL),
(82, 'GE', 'Georgia', '格鲁吉亚', NULL, NULL, NULL),
(83, 'GH', 'Ghana', '加纳', NULL, NULL, NULL),
(84, 'GI', 'Gibraltar ', '直布罗陀', NULL, NULL, NULL),
(85, 'GL', 'Greeland', '格陵兰', NULL, NULL, NULL),
(86, 'GD', 'Grenada', '格林纳达', NULL, NULL, NULL),
(87, 'GU', 'Guam ', '关岛', NULL, NULL, NULL),
(88, 'GG', 'Guernsey', '根西岛', NULL, NULL, NULL),
(89, 'GN', 'Guinea', '几内亚', NULL, NULL, NULL),
(90, 'GW', 'Guinea Bissau', '几内亚-比绍', NULL, NULL, NULL),
(91, 'HT', 'Haiti', '海地', NULL, NULL, NULL),
(92, 'HN', 'Honduras', '洪都拉斯', NULL, NULL, NULL),
(93, 'HK', 'Hong Kong ', '香港', NULL, NULL, NULL),
(94, 'HU', 'Hungary', '匈牙利', NULL, NULL, NULL),
(95, 'IS', 'Iceland', '冰岛', NULL, NULL, NULL),
(96, 'IN', 'India ', '印度', NULL, NULL, NULL),
(97, 'ID', 'Indonesia', '印度尼西亚', NULL, NULL, NULL),
(98, 'IR', 'Iran(islamic Rep.)', '伊朗', NULL, NULL, NULL),
(99, 'IQ', 'Iraq', '伊拉克', NULL, NULL, NULL),
(100, 'IL', 'Israel', '以色列', NULL, NULL, NULL),
(101, 'IT', 'Italy', '意大利', NULL, NULL, NULL),
(102, 'IE', 'Ireland', '爱尔兰', NULL, NULL, NULL),
(103, 'JO', 'Jordan', '约旦', NULL, NULL, NULL),
(104, 'JM', 'Jamaica(savanna)', '牙买加', NULL, NULL, NULL),
(105, 'JP', 'Japan', '日本', NULL, NULL, NULL),
(106, 'JE', 'Jersey', '英国(属)', NULL, NULL, NULL),
(107, 'KE', 'Kenya', '肯尼亚', NULL, NULL, NULL),
(108, 'KZ', 'Kazakhstan', '哈萨克斯坦', NULL, NULL, NULL),
(109, 'KG', 'Kyrgyzstan', '吉尔吉斯斯坦', NULL, NULL, NULL),
(110, 'KI', 'Kiribati Repubilc', '基利巴提共和国', NULL, NULL, NULL),
(111, 'KP', 'Korea,democratic Peop', '北朝鲜', NULL, NULL, NULL),
(112, 'KW', 'Kuwait', '科威特', NULL, NULL, NULL),
(113, 'LV', 'Latvia', '拉脱维亚', NULL, NULL, NULL),
(114, 'LS', 'Lesotho', '来索托', NULL, NULL, NULL),
(115, 'LY', 'Libya', '利比亚', NULL, NULL, NULL),
(116, 'LI', 'Liechtenstein', '列支敦士登', NULL, NULL, NULL),
(117, 'LU', 'Luxembourg', '卢森堡', NULL, NULL, NULL),
(118, 'LA', 'Laos', '老挝', NULL, NULL, NULL),
(119, 'LB', 'Lebanon', '黎巴嫩', NULL, NULL, NULL),
(120, 'LR', 'Liberia', '利比里亚', NULL, NULL, NULL),
(121, 'LT', 'Lithuania', '立陶宛', NULL, NULL, NULL),
(122, 'MG', 'Madagascar', '马达加斯加', NULL, NULL, NULL),
(123, 'MY', 'Malaysia', '马来西亚', NULL, NULL, NULL),
(124, 'MT', 'Malta', '马尔他', NULL, NULL, NULL),
(125, 'MH', 'Marshall Islands', '马绍尔群岛', NULL, NULL, NULL),
(126, 'MQ', 'Martinique', '马提尼克岛', NULL, NULL, NULL),
(127, 'MR', 'Mauritania', '毛里塔尼亚', NULL, NULL, NULL),
(128, 'MX', 'Mexico', '墨西哥', NULL, NULL, NULL),
(129, 'MC', 'Monaco', '摩纳哥', NULL, NULL, NULL),
(130, 'MM', 'Myanmar', '缅甸', NULL, NULL, NULL),
(131, 'MO', 'Macau', '澳门', NULL, NULL, NULL),
(132, 'MK', 'Macedonia,ygsl.rep.', '马其顿', NULL, NULL, NULL),
(133, 'MW', 'Malawi', '马拉韦', NULL, NULL, NULL),
(134, 'MV', 'Maldives', '马尔代夫', NULL, NULL, NULL),
(135, 'ML', 'Mali', '马里', NULL, NULL, NULL),
(136, 'MU', 'Mauritius', '毛里求斯', NULL, NULL, NULL),
(137, 'YT', 'Mayotte', '马约特', NULL, NULL, NULL),
(138, 'MD', 'Moldova', '摩尔多瓦', NULL, NULL, NULL),
(139, 'MN', 'Mongolia', '蒙古', NULL, NULL, NULL),
(140, 'MA', 'Morocco', '摩洛哥', NULL, NULL, NULL),
(141, 'MZ', 'Mozambique', '莫桑比克', NULL, NULL, NULL),
(142, 'NR', 'Nauru Repubilc', '瑙鲁共和国', NULL, NULL, NULL),
(143, 'XN', 'Nevis', '尼维斯岛', NULL, NULL, NULL),
(144, 'NC', 'New Caledonia', '新喀里多尼亚', NULL, NULL, NULL),
(145, 'NI', 'Nicaragua', '尼加拉瓜', NULL, NULL, NULL),
(146, 'NG', 'Nigeria', '尼日利亚\r', NULL, NULL, NULL),
(147, 'NO', 'Norway', '挪威\r', NULL, NULL, NULL),
(148, 'NA', 'Namibia', '纳米比亚\r', NULL, NULL, NULL),
(149, 'NP', 'Nepal', '尼泊尔\r', NULL, NULL, NULL),
(150, 'NL', 'Netherlands', '荷兰\r', NULL, NULL, NULL),
(151, 'NZ', 'New Zealand', '新西兰', NULL, NULL, NULL),
(152, 'NE', 'Niger', '尼日尔\r', NULL, NULL, NULL),
(153, 'OM', 'Oman', '安曼\r', NULL, NULL, NULL),
(154, 'PK', 'Pakistan', '巴基斯坦\r', NULL, NULL, NULL),
(155, 'PG', 'Papua New Guinea', '巴布亚新几内亚\r', NULL, NULL, NULL),
(156, 'PY', 'Paraguay ', '巴拉圭\r', NULL, NULL, NULL),
(157, 'PH', 'Philippines', '菲律宾', NULL, NULL, NULL),
(158, 'PL', 'Poland', '波兰\r', NULL, NULL, NULL),
(159, 'PR', 'Puerto Rico', '波多黎各\r', NULL, NULL, NULL),
(160, 'PA', 'Panama', '巴拿马\r', NULL, NULL, NULL),
(161, 'PE', 'Peru', '秘鲁\r', NULL, NULL, NULL),
(162, 'PT', 'Portugal', '葡萄牙\r', NULL, NULL, NULL),
(163, 'QA', 'Qatar', '卡塔尔\r', NULL, NULL, NULL),
(164, 'RU', 'Russian Federation', '俄罗斯联邦\r', NULL, NULL, NULL),
(165, 'RW', 'Rwanda', '卢旺达\r', NULL, NULL, NULL),
(166, 'RE', 'Reunion Island', '留尼旺\r', NULL, NULL, NULL),
(167, 'RO', 'Romania', '罗马尼亚\r', NULL, NULL, NULL),
(168, 'SA', 'Saudi Arabia', '沙特阿拉伯\r', NULL, NULL, NULL),
(169, 'SC', 'Seychelles, Rep.', '塞舌尔\r', NULL, NULL, NULL),
(170, 'SG', 'Singapore', '新加坡', NULL, NULL, NULL),
(171, 'SB', 'Solomon Islands', '所罗门群岛\r', NULL, NULL, NULL),
(172, 'ZA', 'South Africa', '南非\r', NULL, NULL, NULL),
(173, 'KR', 'South Korea', '南韩\r', NULL, NULL, NULL),
(174, 'ES', 'Spain', '西班牙\r', NULL, NULL, NULL),
(175, 'LC', 'St.lucia', '圣路西亚\r', NULL, NULL, NULL),
(176, 'XM', 'St.maarten', '圣马丁岛\r', NULL, NULL, NULL),
(177, 'SD', 'Sudan', '苏丹\r', NULL, NULL, NULL),
(178, 'SZ', 'Swaziland', '斯威士兰\r', NULL, NULL, NULL),
(179, 'SE', 'Sweden', '瑞典\r', NULL, NULL, NULL),
(180, 'CH', 'Switzerland', '瑞士\r', NULL, NULL, NULL),
(181, 'MP', 'Saipan', '塞班\r', NULL, NULL, NULL),
(182, 'ST', 'Sao Tome And Principe', '圣多美和普林西比\r', NULL, NULL, NULL),
(183, 'SN', 'Senegal', '塞内加尔\r', NULL, NULL, NULL),
(184, 'CS', 'Serbia And Montenegro', '塞尔维亚和黑山\r', NULL, NULL, NULL),
(185, 'SL', 'Sierra Leone', '塞拉利昂\r', NULL, NULL, NULL),
(186, 'SK', 'Slovak Republic', '斯洛伐克共和国\r', NULL, NULL, NULL),
(187, 'SI', 'Slovenia', '斯洛文尼亚\r', NULL, NULL, NULL),
(188, 'SO', 'Somalia', '索马里\r', NULL, NULL, NULL),
(189, 'XS', 'Somaliland,rep (north Somali)', '索马里共和国\r', NULL, NULL, NULL),
(190, 'LK', 'Sri Lanka', '斯里兰卡\r', NULL, NULL, NULL),
(191, 'XY', 'St.banthelemy', '圣巴特勒米岛\r', NULL, NULL, NULL),
(192, 'XE', 'St.eustatius', '圣尤斯塔提马斯岛\r', NULL, NULL, NULL),
(193, 'VC', 'St.vincent', '圣云仙\r', NULL, NULL, NULL),
(194, 'SR', 'Suriname', '苏里南\r', NULL, NULL, NULL),
(195, 'SY', 'Syria', '叙利亚\r', NULL, NULL, NULL),
(196, 'TW', 'Taiwan', '台湾(台北市以外)\r', NULL, NULL, NULL),
(197, 'TZ', 'Tanzania', '坦桑尼亚\r', NULL, NULL, NULL),
(198, 'TH', 'Thailand', '泰国\r', NULL, NULL, NULL),
(199, 'TG', 'Togo', '多哥\r', NULL, NULL, NULL),
(200, 'TT', 'Trinidad And Tobago', '特立尼达和多巴哥\r', NULL, NULL, NULL),
(201, 'TN', 'Tunisia', '突尼斯\r', NULL, NULL, NULL),
(202, 'TR', 'Turkey', '土耳其\r', NULL, NULL, NULL),
(203, 'TM', 'Turkmenistan', '土库曼斯坦\r', NULL, NULL, NULL),
(204, 'PF', 'Tahiti', '塔希堤岛\r', NULL, NULL, NULL),
(205, 'TJ', 'Tajikistan', '塔吉克斯坦\r', NULL, NULL, NULL),
(206, 'TO', 'Tonga', '汤加\r', NULL, NULL, NULL),
(207, 'UG', 'Uganda', '乌干达\r', NULL, NULL, NULL),
(208, 'UA', 'Ukraine', '乌克兰\r', NULL, NULL, NULL),
(209, 'AE', 'United Arab Emirates', '阿拉伯联合酋长国\r', NULL, NULL, NULL),
(210, 'GB', 'United Kingdom ', '英国', NULL, NULL, NULL),
(211, 'UY', 'Uruguay', '乌拉圭\r', NULL, NULL, NULL),
(212, 'UZ', 'Uzbekistan', '乌兹别克斯坦\r', NULL, NULL, NULL),
(213, 'VU', 'Vanuatu', '瓦努阿图\r', NULL, NULL, NULL),
(214, 'VN', 'Vietnam', '越南\r', NULL, NULL, NULL),
(215, 'VG', 'Virgin Island (gb)', '英属处女岛群岛\r', NULL, NULL, NULL),
(216, 'VI', 'Virgin Island (us)', '美属处女岛群岛\r', NULL, NULL, NULL),
(217, 'VE', 'Venezuela', '委内瑞拉\r', NULL, NULL, NULL),
(218, 'WS', 'Western Samoa', '西萨摩亚\r', NULL, NULL, NULL),
(219, 'YE', 'Yemen, Republic Of.', '也门阿拉伯共合国\r', NULL, NULL, NULL),
(220, 'ZR', 'Zaire', '扎伊尔\r', NULL, NULL, NULL),
(221, 'ZM', 'Zambia', '赞比亚\r', NULL, NULL, NULL),
(222, 'ZW', 'Zimbabwe', '津巴布韦', NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- 表的结构 `shipping_country_regional`
--
CREATE TABLE IF NOT EXISTS `shipping_country_regional` (
`country_regional_id` int(11) NOT NULL AUTO_INCREMENT,
`pr_id` int(11) NOT NULL,
`country_regional_name` varchar(32) NOT NULL,
`created` timestamp NULL DEFAULT NULL,
`modified` timestamp NULL DEFAULT NULL,
`status` int(11) DEFAULT NULL,
PRIMARY KEY (`country_regional_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=38 ;
--
-- 转存表中的数据 `shipping_country_regional`
--
INSERT INTO `shipping_country_regional` (`country_regional_id`, `pr_id`, `country_regional_name`, `created`, `modified`, `status`) VALUES
(1, 1, '12', '2011-05-11 01:00:22', '2011-05-19 02:05:57', 1),
(2, 1, '4', '2011-05-11 01:01:13', '2011-05-19 02:00:08', 1),
(3, 1, '9 10', '2011-05-11 17:32:47', '2011-05-19 01:37:33', 1),
(4, 3, 'zone1', '2011-05-17 22:32:48', '2011-05-18 00:39:30', 1),
(5, 3, 'zone2', '2011-05-17 23:12:36', '2011-05-17 23:12:36', 1),
(6, 3, 'zone3', '2011-05-17 23:14:20', '2011-05-17 23:14:20', 1),
(7, 3, 'zone4', '2011-05-17 23:14:29', '2011-05-17 23:14:29', 1),
(8, 3, 'zone5', '2011-05-17 23:14:41', '2011-05-17 23:14:41', 1),
(9, 3, 'zone6', '2011-05-17 23:14:52', '2011-05-17 23:14:52', 1),
(10, 3, 'zone7', '2011-05-17 23:15:01', '2011-05-17 23:15:01', 1),
(11, 3, 'zone8', '2011-05-17 23:15:11', '2011-05-17 23:15:11', 1),
(12, 3, 'zone10', '2011-05-17 23:15:23', '2011-05-17 23:15:58', 1),
(13, 3, 'zone9', '2011-05-17 23:15:30', '2011-05-17 23:15:30', 1),
(14, 2, '5', '2011-05-19 01:34:19', '2011-05-19 01:34:19', 1),
(15, 2, '4', '2011-05-19 01:39:12', '2011-05-19 01:39:12', 1),
(16, 2, '2', '2011-05-19 01:42:18', '2011-05-19 01:42:18', 1),
(17, 2, '3', '2011-05-19 01:49:37', '2011-05-19 02:58:40', 1),
(18, 2, '1', '2011-05-19 01:53:51', '2011-05-19 01:53:51', 1),
(19, 2, '6', '2011-05-19 01:55:01', '2011-05-19 01:55:01', 1),
(20, 1, '24 25', '2011-05-19 02:00:37', '2011-05-19 02:00:37', 1),
(21, 1, '6', '2011-05-19 02:06:45', '2011-05-19 02:06:45', 1),
(22, 2, '7', '2011-05-19 02:07:52', '2011-05-19 02:07:52', 1),
(23, 2, '8', '2011-05-19 02:09:48', '2011-05-19 02:09:48', 1),
(24, 2, '9', '2011-05-19 02:15:20', '2011-05-19 02:15:20', 1),
(25, 1, '16 17', '2011-05-19 02:16:40', '2011-05-19 02:16:40', 1),
(26, 1, '21 22 23', '2011-05-19 02:18:12', '2011-05-19 02:18:12', 1),
(27, 1, '27 28 29', '2011-05-19 02:18:23', '2011-05-19 02:18:23', 1),
(28, 1, '26', '2011-05-19 02:18:30', '2011-05-19 02:18:30', 1),
(29, 1, '8 18 19 20', '2011-05-19 02:18:49', '2011-05-19 02:18:49', 1),
(30, 1, '11', '2011-05-19 02:38:21', '2011-05-19 02:38:21', 1),
(31, 1, '3', '2011-05-19 02:41:22', '2011-05-19 02:41:22', 1),
(32, 1, '7', '2011-05-19 02:42:27', '2011-05-19 02:42:27', 1),
(33, 1, '1', '2011-05-19 02:43:52', '2011-09-01 00:16:20', 1),
(34, 1, '2', '2011-05-19 02:44:51', '2011-05-19 02:44:51', 1),
(35, 1, '5', '2011-05-19 02:49:40', '2011-05-19 02:49:40', 1),
(36, 1, '12 13 14 15', '2011-05-19 02:56:29', '2011-05-19 02:56:29', 1),
(37, 3, 'q123123', '2011-05-20 17:37:59', '2011-05-20 17:37:59', 1);
-- --------------------------------------------------------
--
-- 表的结构 `shipping_freightpricearea`
--
CREATE TABLE IF NOT EXISTS `shipping_freightpricearea` (
`pr_id` int(10) NOT NULL,
`countries_id` varchar(10) NOT NULL,
`area_id` varchar(50) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` int(2) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `shipping_freightpricearea`
--
INSERT INTO `shipping_freightpricearea` (`pr_id`, `countries_id`, `area_id`, `created`, `modified`, `status`) VALUES
(2, '210', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '179', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '174', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '147', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '124', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '117', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '101', '19', '2011-05-19 02:00:32', '2011-05-19 02:00:32', 1),
(2, '180', '19', '2011-05-19 02:04:54', '2011-05-19 02:04:54', 1),
(2, '76', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '75', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '74', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '71', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '58', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '53', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '29', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '9', '19', '2011-05-19 02:00:31', '2011-05-19 02:00:31', 1),
(2, '196', '18', '2011-05-19 01:54:40', '2011-05-19 01:54:40', 1),
(1, '12', '25', '2011-05-26 17:15:34', '2011-05-26 17:15:34', 1),
(2, '1', '1', '2011-05-12 17:43:13', '0000-00-00 00:00:00', 1),
(2, '131', '18', '2011-05-19 01:54:40', '2011-05-19 01:54:40', 1),
(2, '93', '18', '2011-05-19 01:54:40', '2011-05-19 01:54:40', 1),
(0, '214', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '198', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '170', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '157', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '139', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '123', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '97', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(0, '51', '17', '2011-05-19 01:52:34', '2011-05-19 01:52:34', 1),
(2, '111', '16', '2011-05-19 01:48:59', '2011-05-19 01:48:59', 1),
(2, '105', '16', '2011-05-19 01:48:59', '2011-05-19 01:48:59', 1),
(1, '53', '3', '2011-05-19 01:41:16', '2011-05-19 01:41:16', 1),
(2, '155', '15', '2011-05-19 01:40:41', '2011-05-19 01:40:41', 1),
(2, '151', '15', '2011-05-19 01:40:41', '2011-05-19 01:40:41', 1),
(2, '8', '15', '2011-05-19 01:40:41', '2011-05-19 01:40:41', 1),
(3, '198', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '196', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '170', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '157', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(1, '26', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(1, '151', '2', '2011-05-19 02:01:34', '2011-05-19 02:01:34', 1),
(1, '8', '2', '2011-05-19 02:01:34', '2011-05-19 02:01:34', 1),
(3, '123', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '131', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '111', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '24', '4', '2011-05-17 22:55:42', '2011-05-17 22:55:42', 1),
(3, '105', '5', '2011-05-26 00:04:12', '2011-05-26 00:04:12', 1),
(3, '8', '6', '2011-05-17 23:22:49', '2011-05-17 23:22:49', 1),
(3, '97', '6', '2011-05-17 23:22:49', '2011-05-17 23:22:49', 1),
(3, '151', '6', '2011-05-17 23:22:49', '2011-05-17 23:22:49', 1),
(3, '96', '7', '2011-05-17 23:24:59', '2011-05-17 23:24:59', 1),
(3, '214', '7', '2011-05-17 23:24:59', '2011-05-17 23:24:59', 1),
(3, '53', '8', '2011-05-17 23:26:29', '2011-05-17 23:26:29', 1),
(3, '128', '8', '2011-05-17 23:26:29', '2011-05-17 23:26:29', 1),
(3, '159', '8', '2011-05-17 23:26:29', '2011-05-17 23:26:29', 1),
(3, '2', '8', '2011-05-17 23:26:29', '2011-05-17 23:26:29', 1),
(3, '12', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '29', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '54', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '74', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '75', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '101', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '117', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '129', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '150', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '174', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '210', '9', '2011-05-17 23:39:07', '2011-05-17 23:39:07', 1),
(3, '11', '10', '2011-05-17 23:50:23', '2011-05-17 23:50:23', 1),
(3, '9', '10', '2011-05-17 23:50:23', '2011-05-17 23:50:23', 1),
(3, '3', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '4', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '10', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '5', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '13', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '6', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '14', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '15', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '7', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '16', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '17', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '18', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '27', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '28', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '20', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '30', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '31', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '32', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '33', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '23', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '34', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '25', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '26', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '35', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '52', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '37', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '38', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '39', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '55', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '40', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '42', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '43', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '45', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '46', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '48', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '49', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '50', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '57', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '60', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '132', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '122', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '133', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '124', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '126', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '127', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '136', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '138', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '140', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '141', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '148', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '145', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '152', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '146', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '153', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '160', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '156', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '161', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '165', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '168', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '183', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '169', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '185', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '186', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '187', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '172', '13', '2011-05-18 00:24:45', '2011-05-18 00:24:45', 1),
(3, '58', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '61', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '73', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '71', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '87', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '102', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '110', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '116', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '125', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '144', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '147', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '155', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '158', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '181', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '171', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '179', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '180', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '204', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '206', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '213', '10', '2011-05-18 00:28:40', '2011-05-18 00:28:40', 1),
(3, '19', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '21', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '51', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '76', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '88', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '118', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '134', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '139', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '149', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '154', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '162', '11', '2011-05-18 00:38:48', '2011-05-18 00:38:48', 1),
(3, '59', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '66', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '67', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '62', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '68', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '63', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '64', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '65', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '72', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '80', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '81', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '82', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '83', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '84', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '85', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '86', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '77', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '78', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '89', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '90', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '79', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '91', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '92', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '94', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '95', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '99', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '100', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '104', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '103', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '108', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '107', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '112', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '113', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '119', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '114', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '120', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '121', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '175', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '176', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '193', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '194', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '178', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '205', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '197', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '199', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '200', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '201', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '202', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '207', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '211', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '212', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '217', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '219', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '221', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '222', '13', '2011-05-18 00:44:03', '2011-05-18 00:44:03', 1),
(3, '190', '11', '2011-05-18 00:45:41', '2011-05-18 00:45:41', 1),
(3, '166', '13', '2011-05-18 01:01:14', '2011-05-18 01:01:14', 1),
(3, '167', '13', '2011-05-18 01:01:14', '2011-05-18 01:01:14', 1),
(3, '164', '13', '2011-05-18 01:01:14', '2011-05-18 01:01:14', 1),
(3, '208', '13', '2011-05-18 01:01:14', '2011-05-18 01:01:14', 1),
(3, '216', '13', '2011-05-18 01:01:14', '2011-05-18 01:01:14', 1),
(1, '2', '3', '2011-05-19 01:40:49', '2011-05-19 01:40:49', 1),
(1, '38', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(1, '89', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(1, '120', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(1, '135', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(1, '152', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(1, '185', '20', '2011-05-19 02:06:14', '2011-05-19 02:06:14', 1),
(2, '102', '19', '2011-05-19 02:06:29', '2011-05-19 02:06:29', 1),
(2, '19', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '96', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '118', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '149', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '154', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '190', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '202', '22', '2011-05-19 02:09:22', '2011-05-19 02:09:22', 1),
(2, '14', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '34', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '40', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '47', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '50', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '79', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '94', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '100', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '103', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '128', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '160', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '161', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '158', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '164', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '208', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(2, '209', '23', '2011-05-19 02:14:49', '2011-05-19 02:14:49', 1),
(1, '11', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '19', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '21', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '44', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '61', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '73', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '87', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '110', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '116', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '134', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '125', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '130', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '142', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '149', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '144', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '155', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '181', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '171', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '204', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '206', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(1, '213', '21', '2011-05-19 02:16:01', '2011-05-19 02:16:01', 1),
(2, '18', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '23', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '25', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '26', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '37', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '39', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '42', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '43', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '46', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '49', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '57', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '67', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '64', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '65', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '80', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '83', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '89', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '98', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '108', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '107', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '112', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '113', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '122', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '135', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '140', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '141', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '152', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '146', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '153', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '163', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '167', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '165', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '168', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '183', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '195', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '201', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(2, '207', '24', '2011-05-19 02:26:42', '2011-05-19 02:26:42', 1),
(1, '3', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '4', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '15', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '16', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '28', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '33', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '54', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '46', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '69', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '70', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '82', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '84', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '85', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '95', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '108', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '109', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '132', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '138', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '164', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '184', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '205', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '208', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '212', '25', '2011-05-19 02:27:40', '2011-05-19 02:27:40', 1),
(1, '67', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '63', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '65', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '107', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '115', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '172', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '207', '26', '2011-05-19 02:30:40', '2011-05-19 02:30:40', 1),
(1, '10', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '30', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '23', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '35', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '52', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '36', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '39', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '41', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '42', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '57', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '68', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '80', '26', '2011-05-19 02:36:30', '2011-05-19 02:36:30', 1),
(1, '81', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '83', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '90', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '114', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '122', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '133', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '127', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '136', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '137', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '140', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '141', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '148', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '146', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '166', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '165', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '183', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '169', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '188', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '189', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '178', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '197', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '199', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '201', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '221', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '222', '26', '2011-05-19 02:36:31', '2011-05-19 02:36:31', 1),
(1, '25', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '74', '1', '2011-05-19 02:37:31', '2011-05-19 02:37:31', 1),
(1, '75', '1', '2011-05-19 02:37:31', '2011-05-19 02:37:31', 1),
(1, '29', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '9', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '210', '1', '2011-05-19 02:37:31', '2011-05-19 02:37:31', 1),
(1, '128', '30', '2011-05-19 02:40:49', '2011-05-19 02:40:49', 1),
(1, '105', '31', '2011-05-19 02:41:56', '2011-05-19 02:41:56', 1),
(1, '96', '32', '2011-05-19 02:43:25', '2011-05-19 02:43:25', 1),
(1, '190', '32', '2011-05-19 02:43:25', '2011-05-19 02:43:25', 1),
(1, '131', '33', '2011-05-19 02:44:25', '2011-05-19 02:44:25', 1),
(1, '13', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '6', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '14', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '7', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '17', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '27', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '20', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '31', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '32', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '22', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '34', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '37', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '55', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '40', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '45', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '47', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '48', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '60', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '66', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '62', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '72', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '86', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '77', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '78', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '79', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '91', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '104', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '126', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '139', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '143', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '145', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '161', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '159', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '182', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '191', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '192', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '175', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '176', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '193', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '194', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '200', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '211', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '215', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '216', '27', '2011-05-19 02:47:30', '2011-05-19 02:47:30', 1),
(1, '123', '34', '2011-05-19 02:49:07', '2011-05-19 02:49:07', 1),
(1, '157', '34', '2011-05-19 02:49:07', '2011-05-19 02:49:07', 1),
(1, '170', '34', '2011-05-19 02:49:07', '2011-05-19 02:49:07', 1),
(1, '196', '34', '2011-05-19 02:49:07', '2011-05-19 02:49:07', 1),
(1, '198', '34', '2011-05-19 02:49:07', '2011-05-19 02:49:07', 1),
(1, '59', '28', '2011-05-19 02:50:34', '2011-05-19 02:50:34', 1),
(1, '92', '28', '2011-05-19 02:50:34', '2011-05-19 02:50:34', 1),
(1, '160', '28', '2011-05-19 02:50:34', '2011-05-19 02:50:34', 1),
(1, '156', '28', '2011-05-19 02:50:34', '2011-05-19 02:50:34', 1),
(1, '217', '28', '2011-05-19 02:50:34', '2011-05-19 02:50:34', 1),
(1, '51', '35', '2011-05-19 02:55:36', '2011-05-19 02:55:36', 1),
(1, '97', '35', '2011-05-19 02:55:36', '2011-05-19 02:55:36', 1),
(1, '118', '35', '2011-05-19 02:55:36', '2011-05-19 02:55:36', 1),
(1, '214', '35', '2011-05-19 02:55:36', '2011-05-19 02:55:36', 1),
(1, '18', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '98', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '99', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '100', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '103', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '112', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '119', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '154', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '163', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '202', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '209', '29', '2011-05-19 02:55:46', '2011-05-19 02:55:46', 1),
(1, '49', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '50', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '58', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '64', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '71', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '76', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '88', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '94', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '102', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '101', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '106', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '113', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '121', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '117', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '124', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '150', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '147', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '158', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '162', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '167', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '187', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '174', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '179', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(1, '180', '36', '2011-05-19 03:11:43', '2011-05-19 03:11:43', 1),
(2, '51', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '97', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '123', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '139', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '157', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '170', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '214', '17', '2011-05-19 04:38:59', '2011-05-19 04:38:59', 1),
(2, '198', '17', '2011-05-19 04:40:51', '2011-05-19 04:40:51', 1),
(2, '2', '14', '2011-05-26 00:17:47', '2011-05-26 00:17:47', 1),
(1, '173', '34', '2011-05-26 17:18:51', '2011-05-26 17:18:51', 1),
(1, '5', '20', '2011-05-26 17:22:47', '2011-05-26 17:22:47', 1),
(1, '24', '34', '2011-05-26 17:26:49', '2011-05-26 17:26:49', 1),
(1, '43', '26', '2011-05-26 17:28:48', '2011-05-26 17:28:48', 1),
(1, '111', '21', '2011-05-26 17:35:42', '2011-05-26 17:35:42', 1),
(1, '168', '29', '2011-05-26 17:40:38', '2011-05-26 17:40:38', 1),
(1, '177', '29', '2011-05-26 17:41:25', '2011-05-26 17:41:25', 1),
(1, '186', '36', '2011-05-26 17:42:36', '2011-05-26 17:42:36', 1),
(1, '195', '29', '2011-05-26 17:44:11', '2011-05-26 17:44:11', 1),
(1, '219', '29', '2011-05-26 17:48:06', '2011-05-26 17:48:06', 1),
(3, '22', '13', '2011-05-26 18:00:23', '2011-05-26 18:00:23', 1),
(3, '41', '13', '2011-05-26 18:05:25', '2011-05-26 18:05:25', 1),
(3, '44', '10', '2011-05-26 18:06:03', '2011-05-26 18:06:03', 1),
(3, '115', '9', '2011-05-26 18:23:19', '2011-05-26 18:23:19', 1),
(3, '135', '13', '2011-05-26 18:28:24', '2011-05-26 18:28:24', 1),
(3, '137', '13', '2011-05-26 18:29:43', '2011-05-26 18:29:43', 1),
(2, '162', '19', '2011-05-26 18:44:39', '2011-05-26 18:44:39', 1),
(3, '163', '13', '2011-05-26 18:45:25', '2011-05-26 18:45:25', 1),
(3, '184', '13', '2011-05-26 18:55:30', '2011-05-26 18:55:30', 1),
(3, '195', '13', '2011-05-26 19:06:40', '2011-05-26 19:06:40', 1),
(3, '209', '13', '2011-05-26 19:10:37', '2011-05-26 19:10:37', 1);
-- --------------------------------------------------------
--
-- 表的结构 `shipping_freightpricevalue`
--
CREATE TABLE IF NOT EXISTS `shipping_freightpricevalue` (
`pv_id` int(10) NOT NULL AUTO_INCREMENT,
`pr_id` int(10) NOT NULL,
`area_id` varchar(50) NOT NULL,
`wk_code` int(2) NOT NULL,
`fv_unitweight` decimal(9,2) NOT NULL,
`weight_start` decimal(9,3) NOT NULL,
`weight_end` decimal(9,3) NOT NULL,
`price_value` decimal(9,3) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` int(2) NOT NULL,
PRIMARY KEY (`pv_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1823 ;
--
-- 转存表中的数据 `shipping_freightpricevalue`
--
INSERT INTO `shipping_freightpricevalue` (`pv_id`, `pr_id`, `area_id`, `wk_code`, `fv_unitweight`, `weight_start`, `weight_end`, `price_value`, `created`, `modified`, `status`) VALUES
(1, 1, '3', 1, 0.00, 0.000, 0.500, 113.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(2, 1, '2', 1, 0.00, 0.000, 0.500, 95.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(3, 1, '1', 1, 0.00, 0.000, 0.500, 89.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(4, 1, '30', 1, 0.00, 0.000, 0.500, 131.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(5, 1, '31', 1, 0.00, 0.000, 0.500, 103.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(7, 1, '34', 1, 0.00, 0.000, 0.500, 74.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(8, 1, '35', 1, 0.00, 0.000, 0.500, 95.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(9, 1, '36', 1, 0.00, 0.000, 0.500, 89.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(10, 1, '29', 1, 0.00, 0.000, 0.500, 132.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(11, 1, '28', 1, 0.00, 0.000, 0.500, 141.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(12, 1, '27', 1, 0.00, 0.000, 0.500, 141.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(13, 1, '26', 1, 0.00, 0.000, 0.500, 146.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(14, 1, '25', 1, 0.00, 0.000, 0.500, 159.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(15, 1, '21', 1, 0.00, 0.000, 0.500, 177.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(16, 1, '32', 1, 0.00, 0.000, 0.500, 177.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(17, 1, '20', 1, 0.00, 0.000, 0.500, 249.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(18, 1, '3', 1, 0.00, 0.500, 1.000, 129.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(19, 1, '2', 1, 0.00, 0.500, 1.000, 126.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(20, 1, '1', 1, 0.00, 0.500, 1.000, 114.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(21, 1, '30', 1, 0.00, 0.500, 1.000, 157.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(22, 1, '31', 1, 0.00, 0.500, 1.000, 136.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(24, 1, '34', 1, 0.00, 0.500, 1.000, 96.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(25, 1, '35', 1, 0.00, 0.500, 1.000, 131.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(26, 1, '36', 1, 0.00, 0.500, 1.000, 114.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(27, 1, '29', 1, 0.00, 0.500, 1.000, 162.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(28, 1, '28', 1, 0.00, 0.500, 1.000, 173.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(29, 1, '27', 1, 0.00, 0.500, 1.000, 183.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(30, 1, '26', 1, 0.00, 0.500, 1.000, 181.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(31, 1, '25', 1, 0.00, 0.500, 1.000, 195.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(32, 1, '21', 1, 0.00, 0.500, 1.000, 223.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(33, 1, '32', 1, 0.00, 0.500, 1.000, 223.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(34, 1, '20', 1, 0.00, 0.500, 1.000, 319.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(35, 1, '3', 1, 0.00, 1.000, 1.500, 146.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(36, 1, '2', 1, 0.00, 1.000, 1.500, 157.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(37, 1, '1', 1, 0.00, 1.000, 1.500, 139.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(38, 1, '30', 1, 0.00, 1.000, 1.500, 183.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(39, 1, '31', 1, 0.00, 1.000, 1.500, 168.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(41, 1, '34', 1, 0.00, 1.000, 1.500, 118.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(42, 1, '35', 1, 0.00, 1.000, 1.500, 166.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(43, 1, '36', 1, 0.00, 1.000, 1.500, 139.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(44, 1, '29', 1, 0.00, 1.000, 1.500, 193.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(45, 1, '28', 1, 0.00, 1.000, 1.500, 205.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(46, 1, '27', 1, 0.00, 1.000, 1.500, 226.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(47, 1, '26', 1, 0.00, 1.000, 1.500, 216.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(48, 1, '25', 1, 0.00, 1.000, 1.500, 232.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(49, 1, '21', 1, 0.00, 1.000, 1.500, 269.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(50, 1, '32', 1, 0.00, 1.000, 1.500, 269.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(51, 1, '20', 1, 0.00, 1.000, 1.500, 390.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(52, 1, '3', 1, 0.00, 1.500, 2.000, 163.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(53, 1, '2', 1, 0.00, 1.500, 2.000, 188.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(54, 1, '1', 1, 0.00, 1.500, 2.000, 163.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(55, 1, '30', 1, 0.00, 1.500, 2.000, 210.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(56, 1, '31', 1, 0.00, 1.500, 2.000, 200.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(58, 1, '34', 1, 0.00, 1.500, 2.000, 140.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(59, 1, '35', 1, 0.00, 1.500, 2.000, 202.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(60, 1, '36', 1, 0.00, 1.500, 2.000, 163.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(61, 1, '29', 1, 0.00, 1.500, 2.000, 223.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(62, 1, '28', 1, 0.00, 1.500, 2.000, 238.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(63, 1, '27', 1, 0.00, 1.500, 2.000, 268.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(64, 1, '26', 1, 0.00, 1.500, 2.000, 250.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(65, 1, '25', 1, 0.00, 1.500, 2.000, 268.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(66, 1, '21', 1, 0.00, 1.500, 2.000, 315.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(67, 1, '32', 1, 0.00, 1.500, 2.000, 315.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(68, 1, '20', 1, 0.00, 1.500, 2.000, 460.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(69, 1, '3', 1, 0.00, 2.000, 2.500, 180.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(70, 1, '2', 1, 0.00, 2.000, 2.500, 219.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(71, 1, '1', 1, 0.00, 2.000, 2.500, 188.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(72, 1, '30', 1, 0.00, 2.000, 2.500, 236.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(73, 1, '31', 1, 0.00, 2.000, 2.500, 233.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(75, 1, '34', 1, 0.00, 2.000, 2.500, 162.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(76, 1, '35', 1, 0.00, 2.000, 2.500, 238.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(77, 1, '36', 1, 0.00, 2.000, 2.500, 188.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(78, 1, '29', 1, 0.00, 2.000, 2.500, 254.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(79, 1, '28', 1, 0.00, 2.000, 2.500, 270.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(80, 1, '27', 1, 0.00, 2.000, 2.500, 311.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(81, 1, '26', 1, 0.00, 2.000, 2.500, 285.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(82, 1, '25', 1, 0.00, 2.000, 2.500, 305.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(83, 1, '21', 1, 0.00, 2.000, 2.500, 361.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(84, 1, '32', 1, 0.00, 2.000, 2.500, 361.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(85, 1, '20', 1, 0.00, 2.000, 2.500, 531.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(86, 1, '3', 1, 0.00, 2.500, 3.000, 196.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(87, 1, '2', 1, 0.00, 2.500, 3.000, 250.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(88, 1, '1', 1, 0.00, 2.500, 3.000, 212.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(89, 1, '30', 1, 0.00, 2.500, 3.000, 262.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(90, 1, '31', 1, 0.00, 2.500, 3.000, 265.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(92, 1, '34', 1, 0.00, 2.500, 3.000, 184.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(93, 1, '35', 1, 0.00, 2.500, 3.000, 273.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(94, 1, '36', 1, 0.00, 2.500, 3.000, 212.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(95, 1, '29', 1, 0.00, 2.500, 3.000, 285.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(96, 1, '28', 1, 0.00, 2.500, 3.000, 302.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(97, 1, '27', 1, 0.00, 2.500, 3.000, 353.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(98, 1, '26', 1, 0.00, 2.500, 3.000, 320.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(99, 1, '25', 1, 0.00, 2.500, 3.000, 341.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(100, 1, '21', 1, 0.00, 2.500, 3.000, 407.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(101, 1, '32', 1, 0.00, 2.500, 3.000, 407.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(102, 1, '20', 1, 0.00, 2.500, 3.000, 601.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(103, 1, '3', 1, 0.00, 3.000, 3.500, 213.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(104, 1, '2', 1, 0.00, 3.000, 3.500, 281.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(105, 1, '1', 1, 0.00, 3.000, 3.500, 237.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(106, 1, '30', 1, 0.00, 3.000, 3.500, 288.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(107, 1, '31', 1, 0.00, 3.000, 3.500, 297.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(109, 1, '34', 1, 0.00, 3.000, 3.500, 206.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(110, 1, '35', 1, 0.00, 3.000, 3.500, 309.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(111, 1, '36', 1, 0.00, 3.000, 3.500, 237.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(112, 1, '29', 1, 0.00, 3.000, 3.500, 315.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(113, 1, '28', 1, 0.00, 3.000, 3.500, 335.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(114, 1, '27', 1, 0.00, 3.000, 3.500, 396.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(115, 1, '26', 1, 0.00, 3.000, 3.500, 355.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(116, 1, '25', 1, 0.00, 3.000, 3.500, 378.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(117, 1, '21', 1, 0.00, 3.000, 3.500, 453.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(118, 1, '32', 1, 0.00, 3.000, 3.500, 453.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(119, 1, '20', 1, 0.00, 3.000, 3.500, 672.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(120, 1, '3', 1, 0.00, 3.500, 4.000, 230.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(121, 1, '2', 1, 0.00, 3.500, 4.000, 312.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(122, 1, '1', 1, 0.00, 3.500, 4.000, 262.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(123, 1, '30', 1, 0.00, 3.500, 4.000, 315.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(124, 1, '31', 1, 0.00, 3.500, 4.000, 330.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(126, 1, '34', 1, 0.00, 3.500, 4.000, 228.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(127, 1, '35', 1, 0.00, 3.500, 4.000, 345.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(128, 1, '36', 1, 0.00, 3.500, 4.000, 262.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(129, 1, '29', 1, 0.00, 3.500, 4.000, 346.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(130, 1, '28', 1, 0.00, 3.500, 4.000, 367.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(131, 1, '27', 1, 0.00, 3.500, 4.000, 438.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(132, 1, '26', 1, 0.00, 3.500, 4.000, 390.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(133, 1, '25', 1, 0.00, 3.500, 4.000, 414.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(134, 1, '21', 1, 0.00, 3.500, 4.000, 499.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(135, 1, '32', 1, 0.00, 3.500, 4.000, 499.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(136, 1, '20', 1, 0.00, 3.500, 4.000, 742.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(137, 1, '3', 1, 0.00, 4.000, 4.500, 246.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(138, 1, '2', 1, 0.00, 4.000, 4.500, 343.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(139, 1, '1', 1, 0.00, 4.000, 4.500, 286.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(140, 1, '30', 1, 0.00, 4.000, 4.500, 341.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(141, 1, '31', 1, 0.00, 4.000, 4.500, 362.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(143, 1, '34', 1, 0.00, 4.000, 4.500, 251.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(144, 1, '35', 1, 0.00, 4.000, 4.500, 381.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(145, 1, '36', 1, 0.00, 4.000, 4.500, 286.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(146, 1, '29', 1, 0.00, 4.000, 4.500, 376.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(147, 1, '28', 1, 0.00, 4.000, 4.500, 399.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(148, 1, '27', 1, 0.00, 4.000, 4.500, 481.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(149, 1, '26', 1, 0.00, 4.000, 4.500, 424.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(150, 1, '25', 1, 0.00, 4.000, 4.500, 451.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(151, 1, '21', 1, 0.00, 4.000, 4.500, 545.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(152, 1, '32', 1, 0.00, 4.000, 4.500, 545.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(153, 1, '20', 1, 0.00, 4.000, 4.500, 813.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(154, 1, '3', 1, 0.00, 4.500, 5.000, 263.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(155, 1, '2', 1, 0.00, 4.500, 5.000, 374.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(156, 1, '1', 1, 0.00, 4.500, 5.000, 311.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(157, 1, '30', 1, 0.00, 4.500, 5.000, 367.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(158, 1, '31', 1, 0.00, 4.500, 5.000, 394.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(160, 1, '34', 1, 0.00, 4.500, 5.000, 273.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(161, 1, '35', 1, 0.00, 4.500, 5.000, 416.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(162, 1, '36', 1, 0.00, 4.500, 5.000, 311.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(163, 1, '29', 1, 0.00, 4.500, 5.000, 407.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(164, 1, '28', 1, 0.00, 4.500, 5.000, 432.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(165, 1, '27', 1, 0.00, 4.500, 5.000, 523.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(166, 1, '26', 1, 0.00, 4.500, 5.000, 459.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(167, 1, '25', 1, 0.00, 4.500, 5.000, 487.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(168, 1, '21', 1, 0.00, 4.500, 5.000, 591.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(169, 1, '32', 1, 0.00, 4.500, 5.000, 591.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(170, 1, '20', 1, 0.00, 4.500, 5.000, 883.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(171, 1, '3', 1, 0.00, 5.000, 5.500, 280.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(172, 1, '2', 1, 0.00, 5.000, 5.500, 405.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(173, 1, '1', 1, 0.00, 5.000, 5.500, 335.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(174, 1, '30', 1, 0.00, 5.000, 5.500, 394.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(175, 1, '31', 1, 0.00, 5.000, 5.500, 426.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(177, 1, '34', 1, 0.00, 5.000, 5.500, 295.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(178, 1, '35', 1, 0.00, 5.000, 5.500, 452.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(179, 1, '36', 1, 0.00, 5.000, 5.500, 335.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(180, 1, '29', 1, 0.00, 5.000, 5.500, 438.000, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(181, 1, '28', 1, 0.00, 5.000, 5.500, 464.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(182, 1, '27', 1, 0.00, 5.000, 5.500, 566.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(183, 1, '26', 1, 0.00, 5.000, 5.500, 494.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(184, 1, '25', 1, 0.00, 5.000, 5.500, 524.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(185, 1, '21', 1, 0.00, 5.000, 5.500, 636.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(186, 1, '32', 1, 0.00, 5.000, 5.500, 636.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(187, 1, '20', 1, 0.00, 5.000, 5.500, 954.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(188, 1, '3', 1, 0.00, 5.500, 6.000, 296.900, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(189, 1, '2', 1, 0.00, 5.500, 6.000, 436.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(190, 1, '1', 1, 0.00, 5.500, 6.000, 360.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(191, 1, '30', 1, 0.00, 5.500, 6.000, 420.400, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(192, 1, '31', 1, 0.00, 5.500, 6.000, 459.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(194, 1, '34', 1, 0.00, 5.500, 6.000, 317.300, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(195, 1, '35', 1, 0.00, 5.500, 6.000, 488.100, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(196, 1, '36', 1, 0.00, 5.500, 6.000, 360.500, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(197, 1, '29', 1, 0.00, 5.500, 6.000, 468.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(198, 1, '28', 1, 0.00, 5.500, 6.000, 496.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(199, 1, '27', 1, 0.00, 5.500, 6.000, 608.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(200, 1, '26', 1, 0.00, 5.500, 6.000, 529.200, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(201, 1, '25', 1, 0.00, 5.500, 6.000, 560.700, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(202, 1, '21', 1, 0.00, 5.500, 6.000, 682.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(203, 1, '32', 1, 0.00, 5.500, 6.000, 682.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(204, 1, '20', 1, 0.00, 5.500, 6.000, 1024.800, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(205, 1, '3', 1, 0.00, 6.000, 6.500, 313.600, '2011-05-29 17:39:47', '2011-05-29 17:39:47', 1),
(206, 1, '2', 1, 0.00, 6.000, 6.500, 467.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(207, 1, '1', 1, 0.00, 6.000, 6.500, 385.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(208, 1, '30', 1, 0.00, 6.000, 6.500, 446.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(209, 1, '31', 1, 0.00, 6.000, 6.500, 491.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(211, 1, '34', 1, 0.00, 6.000, 6.500, 339.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(212, 1, '35', 1, 0.00, 6.000, 6.500, 523.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(213, 1, '36', 1, 0.00, 6.000, 6.500, 385.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(214, 1, '29', 1, 0.00, 6.000, 6.500, 499.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(215, 1, '28', 1, 0.00, 6.000, 6.500, 528.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(216, 1, '27', 1, 0.00, 6.000, 6.500, 651.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(217, 1, '26', 1, 0.00, 6.000, 6.500, 564.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(218, 1, '25', 1, 0.00, 6.000, 6.500, 597.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(219, 1, '21', 1, 0.00, 6.000, 6.500, 728.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(220, 1, '32', 1, 0.00, 6.000, 6.500, 728.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(221, 1, '20', 1, 0.00, 6.000, 6.500, 1095.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(222, 1, '3', 1, 0.00, 6.500, 7.000, 330.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(223, 1, '2', 1, 0.00, 6.500, 7.000, 498.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(224, 1, '1', 1, 0.00, 6.500, 7.000, 409.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(225, 1, '30', 1, 0.00, 6.500, 7.000, 473.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(226, 1, '31', 1, 0.00, 6.500, 7.000, 523.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(228, 1, '34', 1, 0.00, 6.500, 7.000, 361.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(229, 1, '35', 1, 0.00, 6.500, 7.000, 559.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(230, 1, '36', 1, 0.00, 6.500, 7.000, 409.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(231, 1, '29', 1, 0.00, 6.500, 7.000, 529.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(232, 1, '28', 1, 0.00, 6.500, 7.000, 561.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(233, 1, '27', 1, 0.00, 6.500, 7.000, 693.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(234, 1, '26', 1, 0.00, 6.500, 7.000, 598.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(235, 1, '25', 1, 0.00, 6.500, 7.000, 633.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(236, 1, '21', 1, 0.00, 6.500, 7.000, 774.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(237, 1, '32', 1, 0.00, 6.500, 7.000, 774.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(238, 1, '20', 1, 0.00, 6.500, 7.000, 1165.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(239, 1, '3', 1, 0.00, 7.000, 7.500, 347.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(240, 1, '2', 1, 0.00, 7.000, 7.500, 529.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(241, 1, '1', 1, 0.00, 7.000, 7.500, 434.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(242, 1, '30', 1, 0.00, 7.000, 7.500, 499.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(243, 1, '31', 1, 0.00, 7.000, 7.500, 556.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(245, 1, '34', 1, 0.00, 7.000, 7.500, 383.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(246, 1, '35', 1, 0.00, 7.000, 7.500, 595.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(247, 1, '36', 1, 0.00, 7.000, 7.500, 434.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(248, 1, '29', 1, 0.00, 7.000, 7.500, 560.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(249, 1, '28', 1, 0.00, 7.000, 7.500, 593.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(250, 1, '27', 1, 0.00, 7.000, 7.500, 736.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(251, 1, '26', 1, 0.00, 7.000, 7.500, 633.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(252, 1, '25', 1, 0.00, 7.000, 7.500, 670.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(253, 1, '21', 1, 0.00, 7.000, 7.500, 820.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(254, 1, '32', 1, 0.00, 7.000, 7.500, 820.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(255, 1, '20', 1, 0.00, 7.000, 7.500, 1236.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(256, 1, '3', 1, 0.00, 7.500, 8.000, 363.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(257, 1, '2', 1, 0.00, 7.500, 8.000, 560.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(258, 1, '1', 1, 0.00, 7.500, 8.000, 458.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(259, 1, '30', 1, 0.00, 7.500, 8.000, 525.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(260, 1, '31', 1, 0.00, 7.500, 8.000, 588.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(262, 1, '34', 1, 0.00, 7.500, 8.000, 405.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(263, 1, '35', 1, 0.00, 7.500, 8.000, 630.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(264, 1, '36', 1, 0.00, 7.500, 8.000, 458.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(265, 1, '29', 1, 0.00, 7.500, 8.000, 591.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(266, 1, '28', 1, 0.00, 7.500, 8.000, 625.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(267, 1, '27', 1, 0.00, 7.500, 8.000, 778.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(268, 1, '26', 1, 0.00, 7.500, 8.000, 668.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(269, 1, '25', 1, 0.00, 7.500, 8.000, 706.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(270, 1, '21', 1, 0.00, 7.500, 8.000, 866.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(271, 1, '32', 1, 0.00, 7.500, 8.000, 866.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(272, 1, '20', 1, 0.00, 7.500, 8.000, 1306.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(273, 1, '3', 1, 0.00, 8.000, 8.500, 380.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(274, 1, '2', 1, 0.00, 8.000, 8.500, 591.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(275, 1, '1', 1, 0.00, 8.000, 8.500, 483.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(276, 1, '30', 1, 0.00, 8.000, 8.500, 551.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(277, 1, '31', 1, 0.00, 8.000, 8.500, 620.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(279, 1, '34', 1, 0.00, 8.000, 8.500, 427.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(280, 1, '35', 1, 0.00, 8.000, 8.500, 666.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(281, 1, '36', 1, 0.00, 8.000, 8.500, 483.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(282, 1, '29', 1, 0.00, 8.000, 8.500, 621.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(283, 1, '28', 1, 0.00, 8.000, 8.500, 658.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(284, 1, '27', 1, 0.00, 8.000, 8.500, 821.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(285, 1, '26', 1, 0.00, 8.000, 8.500, 703.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(286, 1, '25', 1, 0.00, 8.000, 8.500, 743.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(287, 1, '21', 1, 0.00, 8.000, 8.500, 912.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(288, 1, '32', 1, 0.00, 8.000, 8.500, 912.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(289, 1, '20', 1, 0.00, 8.000, 8.500, 1377.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(290, 1, '3', 1, 0.00, 8.500, 9.000, 397.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(291, 1, '2', 1, 0.00, 8.500, 9.000, 622.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(292, 1, '1', 1, 0.00, 8.500, 9.000, 508.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(293, 1, '30', 1, 0.00, 8.500, 9.000, 578.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(294, 1, '31', 1, 0.00, 8.500, 9.000, 653.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(296, 1, '34', 1, 0.00, 8.500, 9.000, 449.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(297, 1, '35', 1, 0.00, 8.500, 9.000, 702.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(298, 1, '36', 1, 0.00, 8.500, 9.000, 508.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(299, 1, '29', 1, 0.00, 8.500, 9.000, 652.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(300, 1, '28', 1, 0.00, 8.500, 9.000, 690.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(301, 1, '27', 1, 0.00, 8.500, 9.000, 863.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(302, 1, '26', 1, 0.00, 8.500, 9.000, 738.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(303, 1, '25', 1, 0.00, 8.500, 9.000, 779.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(304, 1, '21', 1, 0.00, 8.500, 9.000, 958.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(305, 1, '32', 1, 0.00, 8.500, 9.000, 958.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(306, 1, '20', 1, 0.00, 8.500, 9.000, 1447.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(307, 1, '3', 1, 0.00, 9.000, 9.500, 413.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(308, 1, '2', 1, 0.00, 9.000, 9.500, 653.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(309, 1, '1', 1, 0.00, 9.000, 9.500, 532.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(310, 1, '30', 1, 0.00, 9.000, 9.500, 604.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(311, 1, '31', 1, 0.00, 9.000, 9.500, 685.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(313, 1, '34', 1, 0.00, 9.000, 9.500, 472.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(314, 1, '35', 1, 0.00, 9.000, 9.500, 738.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(315, 1, '36', 1, 0.00, 9.000, 9.500, 532.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(316, 1, '29', 1, 0.00, 9.000, 9.500, 682.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(317, 1, '28', 1, 0.00, 9.000, 9.500, 722.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(318, 1, '27', 1, 0.00, 9.000, 9.500, 906.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(319, 1, '26', 1, 0.00, 9.000, 9.500, 772.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(320, 1, '25', 1, 0.00, 9.000, 9.500, 816.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(321, 1, '21', 1, 0.00, 9.000, 9.500, 1004.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(322, 1, '32', 1, 0.00, 9.000, 9.500, 1004.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(323, 1, '20', 1, 0.00, 9.000, 9.500, 1518.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(324, 1, '3', 1, 0.00, 9.500, 10.000, 430.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(325, 1, '2', 1, 0.00, 9.500, 10.000, 684.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(326, 1, '1', 1, 0.00, 9.500, 10.000, 557.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(327, 1, '30', 1, 0.00, 9.500, 10.000, 630.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(328, 1, '31', 1, 0.00, 9.500, 10.000, 717.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(330, 1, '34', 1, 0.00, 9.500, 10.000, 494.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(331, 1, '35', 1, 0.00, 9.500, 10.000, 773.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(332, 1, '36', 1, 0.00, 9.500, 10.000, 557.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(333, 1, '29', 1, 0.00, 9.500, 10.000, 713.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(334, 1, '28', 1, 0.00, 9.500, 10.000, 755.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(335, 1, '27', 1, 0.00, 9.500, 10.000, 948.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(336, 1, '26', 1, 0.00, 9.500, 10.000, 807.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(337, 1, '25', 1, 0.00, 9.500, 10.000, 852.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(338, 1, '21', 1, 0.00, 9.500, 10.000, 1050.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(339, 1, '32', 1, 0.00, 9.500, 10.000, 1050.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(340, 1, '20', 1, 0.00, 9.500, 10.000, 1588.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(341, 1, '3', 1, 0.00, 10.000, 10.500, 447.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(342, 1, '2', 1, 0.00, 10.000, 10.500, 715.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(343, 1, '1', 1, 0.00, 10.000, 10.500, 581.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(344, 1, '30', 1, 0.00, 10.000, 10.500, 657.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(345, 1, '31', 1, 0.00, 10.000, 10.500, 749.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(347, 1, '34', 1, 0.00, 10.000, 10.500, 516.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(348, 1, '35', 1, 0.00, 10.000, 10.500, 809.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(349, 1, '36', 1, 0.00, 10.000, 10.500, 581.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(350, 1, '29', 1, 0.00, 10.000, 10.500, 744.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(351, 1, '28', 1, 0.00, 10.000, 10.500, 787.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(352, 1, '27', 1, 0.00, 10.000, 10.500, 991.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(353, 1, '26', 1, 0.00, 10.000, 10.500, 842.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(354, 1, '25', 1, 0.00, 10.000, 10.500, 889.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(355, 1, '21', 1, 0.00, 10.000, 10.500, 1095.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(356, 1, '32', 1, 0.00, 10.000, 10.500, 1095.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(357, 1, '20', 1, 0.00, 10.000, 10.500, 1659.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(358, 1, '3', 1, 0.00, 10.500, 11.000, 463.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(359, 1, '2', 1, 0.00, 10.500, 11.000, 746.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(360, 1, '1', 1, 0.00, 10.500, 11.000, 606.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(361, 1, '30', 1, 0.00, 10.500, 11.000, 683.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(362, 1, '31', 1, 0.00, 10.500, 11.000, 782.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(364, 1, '34', 1, 0.00, 10.500, 11.000, 538.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(365, 1, '35', 1, 0.00, 10.500, 11.000, 845.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(366, 1, '36', 1, 0.00, 10.500, 11.000, 606.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(367, 1, '29', 1, 0.00, 10.500, 11.000, 774.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(368, 1, '28', 1, 0.00, 10.500, 11.000, 819.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(369, 1, '27', 1, 0.00, 10.500, 11.000, 1033.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(370, 1, '26', 1, 0.00, 10.500, 11.000, 877.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(371, 1, '25', 1, 0.00, 10.500, 11.000, 925.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(372, 1, '21', 1, 0.00, 10.500, 11.000, 1141.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(373, 1, '32', 1, 0.00, 10.500, 11.000, 1141.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(374, 1, '20', 1, 0.00, 10.500, 11.000, 1729.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(375, 1, '3', 1, 0.00, 11.000, 11.500, 480.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(376, 1, '2', 1, 0.00, 11.000, 11.500, 777.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(377, 1, '1', 1, 0.00, 11.000, 11.500, 631.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(378, 1, '30', 1, 0.00, 11.000, 11.500, 709.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(379, 1, '31', 1, 0.00, 11.000, 11.500, 814.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(381, 1, '34', 1, 0.00, 11.000, 11.500, 560.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(382, 1, '35', 1, 0.00, 11.000, 11.500, 880.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(383, 1, '36', 1, 0.00, 11.000, 11.500, 631.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(384, 1, '29', 1, 0.00, 11.000, 11.500, 805.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(385, 1, '28', 1, 0.00, 11.000, 11.500, 851.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(386, 1, '27', 1, 0.00, 11.000, 11.500, 1076.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(387, 1, '26', 1, 0.00, 11.000, 11.500, 912.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(388, 1, '25', 1, 0.00, 11.000, 11.500, 962.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(389, 1, '21', 1, 0.00, 11.000, 11.500, 1187.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(390, 1, '32', 1, 0.00, 11.000, 11.500, 1187.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(391, 1, '20', 1, 0.00, 11.000, 11.500, 1800.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(392, 1, '3', 1, 0.00, 11.500, 12.000, 497.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(393, 1, '2', 1, 0.00, 11.500, 12.000, 808.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(394, 1, '1', 1, 0.00, 11.500, 12.000, 655.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(395, 1, '30', 1, 0.00, 11.500, 12.000, 736.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(396, 1, '31', 1, 0.00, 11.500, 12.000, 846.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(398, 1, '34', 1, 0.00, 11.500, 12.000, 582.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(399, 1, '35', 1, 0.00, 11.500, 12.000, 916.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(400, 1, '36', 1, 0.00, 11.500, 12.000, 655.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(401, 1, '29', 1, 0.00, 11.500, 12.000, 835.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(402, 1, '28', 1, 0.00, 11.500, 12.000, 884.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(403, 1, '27', 1, 0.00, 11.500, 12.000, 1118.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(404, 1, '26', 1, 0.00, 11.500, 12.000, 946.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(405, 1, '25', 1, 0.00, 11.500, 12.000, 998.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(406, 1, '21', 1, 0.00, 11.500, 12.000, 1233.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(407, 1, '32', 1, 0.00, 11.500, 12.000, 1233.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(408, 1, '20', 1, 0.00, 11.500, 12.000, 1870.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(409, 1, '3', 1, 0.00, 12.000, 12.500, 514.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(410, 1, '2', 1, 0.00, 12.000, 12.500, 839.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(411, 1, '1', 1, 0.00, 12.000, 12.500, 680.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(412, 1, '30', 1, 0.00, 12.000, 12.500, 762.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(413, 1, '31', 1, 0.00, 12.000, 12.500, 879.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(415, 1, '34', 1, 0.00, 12.000, 12.500, 604.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(416, 1, '35', 1, 0.00, 12.000, 12.500, 952.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(417, 1, '36', 1, 0.00, 12.000, 12.500, 680.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(418, 1, '29', 1, 0.00, 12.000, 12.500, 866.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(419, 1, '28', 1, 0.00, 12.000, 12.500, 916.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(420, 1, '27', 1, 0.00, 12.000, 12.500, 1161.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(421, 1, '26', 1, 0.00, 12.000, 12.500, 981.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(422, 1, '25', 1, 0.00, 12.000, 12.500, 1035.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(423, 1, '21', 1, 0.00, 12.000, 12.500, 1279.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(424, 1, '32', 1, 0.00, 12.000, 12.500, 1279.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(425, 1, '20', 1, 0.00, 12.000, 12.500, 1941.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(426, 1, '3', 1, 0.00, 12.500, 13.000, 530.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(427, 1, '2', 1, 0.00, 12.500, 13.000, 870.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(428, 1, '1', 1, 0.00, 12.500, 13.000, 704.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(429, 1, '30', 1, 0.00, 12.500, 13.000, 788.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(430, 1, '31', 1, 0.00, 12.500, 13.000, 911.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(432, 1, '34', 1, 0.00, 12.500, 13.000, 626.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(433, 1, '35', 1, 0.00, 12.500, 13.000, 987.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(434, 1, '36', 1, 0.00, 12.500, 13.000, 704.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(435, 1, '29', 1, 0.00, 12.500, 13.000, 897.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(436, 1, '28', 1, 0.00, 12.500, 13.000, 948.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(437, 1, '27', 1, 0.00, 12.500, 13.000, 1203.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(438, 1, '26', 1, 0.00, 12.500, 13.000, 1016.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(439, 1, '25', 1, 0.00, 12.500, 13.000, 1071.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(440, 1, '21', 1, 0.00, 12.500, 13.000, 1325.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(441, 1, '32', 1, 0.00, 12.500, 13.000, 1325.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(442, 1, '20', 1, 0.00, 12.500, 13.000, 2011.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(443, 1, '3', 1, 0.00, 13.000, 13.500, 547.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(444, 1, '2', 1, 0.00, 13.000, 13.500, 901.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(445, 1, '1', 1, 0.00, 13.000, 13.500, 729.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(446, 1, '30', 1, 0.00, 13.000, 13.500, 814.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(447, 1, '31', 1, 0.00, 13.000, 13.500, 943.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(449, 1, '34', 1, 0.00, 13.000, 13.500, 648.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(450, 1, '35', 1, 0.00, 13.000, 13.500, 1023.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(451, 1, '36', 1, 0.00, 13.000, 13.500, 729.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(452, 1, '29', 1, 0.00, 13.000, 13.500, 927.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(453, 1, '28', 1, 0.00, 13.000, 13.500, 981.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(454, 1, '27', 1, 0.00, 13.000, 13.500, 1246.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(455, 1, '26', 1, 0.00, 13.000, 13.500, 1051.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(456, 1, '25', 1, 0.00, 13.000, 13.500, 1108.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(457, 1, '21', 1, 0.00, 13.000, 13.500, 1371.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(458, 1, '32', 1, 0.00, 13.000, 13.500, 1371.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(459, 1, '20', 1, 0.00, 13.000, 13.500, 2082.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(460, 1, '3', 1, 0.00, 13.500, 14.000, 564.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(461, 1, '2', 1, 0.00, 13.500, 14.000, 932.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(462, 1, '1', 1, 0.00, 13.500, 14.000, 754.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(463, 1, '30', 1, 0.00, 13.500, 14.000, 841.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(464, 1, '31', 1, 0.00, 13.500, 14.000, 976.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(466, 1, '34', 1, 0.00, 13.500, 14.000, 670.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(467, 1, '35', 1, 0.00, 13.500, 14.000, 1059.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(468, 1, '36', 1, 0.00, 13.500, 14.000, 754.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(469, 1, '29', 1, 0.00, 13.500, 14.000, 958.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(470, 1, '28', 1, 0.00, 13.500, 14.000, 1013.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(471, 1, '27', 1, 0.00, 13.500, 14.000, 1288.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(472, 1, '26', 1, 0.00, 13.500, 14.000, 1086.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(473, 1, '25', 1, 0.00, 13.500, 14.000, 1144.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(474, 1, '21', 1, 0.00, 13.500, 14.000, 1417.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(475, 1, '32', 1, 0.00, 13.500, 14.000, 1417.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(476, 1, '20', 1, 0.00, 13.500, 14.000, 2152.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(477, 1, '3', 1, 0.00, 14.000, 14.500, 580.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(478, 1, '2', 1, 0.00, 14.000, 14.500, 963.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(479, 1, '1', 1, 0.00, 14.000, 14.500, 778.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(480, 1, '30', 1, 0.00, 14.000, 14.500, 867.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(481, 1, '31', 1, 0.00, 14.000, 14.500, 1008.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(483, 1, '34', 1, 0.00, 14.000, 14.500, 693.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(484, 1, '35', 1, 0.00, 14.000, 14.500, 1095.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(485, 1, '36', 1, 0.00, 14.000, 14.500, 778.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(486, 1, '29', 1, 0.00, 14.000, 14.500, 988.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(487, 1, '28', 1, 0.00, 14.000, 14.500, 1045.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(488, 1, '27', 1, 0.00, 14.000, 14.500, 1331.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(489, 1, '26', 1, 0.00, 14.000, 14.500, 1120.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(490, 1, '25', 1, 0.00, 14.000, 14.500, 1181.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(491, 1, '21', 1, 0.00, 14.000, 14.500, 1463.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(492, 1, '32', 1, 0.00, 14.000, 14.500, 1463.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(493, 1, '20', 1, 0.00, 14.000, 14.500, 2223.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(494, 1, '3', 1, 0.00, 14.500, 15.000, 597.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(495, 1, '2', 1, 0.00, 14.500, 15.000, 994.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(496, 1, '1', 1, 0.00, 14.500, 15.000, 803.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(497, 1, '30', 1, 0.00, 14.500, 15.000, 893.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(498, 1, '31', 1, 0.00, 14.500, 15.000, 1040.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(500, 1, '34', 1, 0.00, 14.500, 15.000, 715.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(501, 1, '35', 1, 0.00, 14.500, 15.000, 1130.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(502, 1, '36', 1, 0.00, 14.500, 15.000, 803.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(503, 1, '29', 1, 0.00, 14.500, 15.000, 1019.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(504, 1, '28', 1, 0.00, 14.500, 15.000, 1078.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(505, 1, '27', 1, 0.00, 14.500, 15.000, 1373.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(506, 1, '26', 1, 0.00, 14.500, 15.000, 1155.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(507, 1, '25', 1, 0.00, 14.500, 15.000, 1217.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(508, 1, '21', 1, 0.00, 14.500, 15.000, 1509.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(509, 1, '32', 1, 0.00, 14.500, 15.000, 1509.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(510, 1, '20', 1, 0.00, 14.500, 15.000, 2293.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(511, 1, '3', 1, 0.00, 15.000, 15.500, 614.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(512, 1, '2', 1, 0.00, 15.000, 15.500, 1025.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(513, 1, '1', 1, 0.00, 15.000, 15.500, 827.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(514, 1, '30', 1, 0.00, 15.000, 15.500, 920.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(515, 1, '31', 1, 0.00, 15.000, 15.500, 1072.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(517, 1, '34', 1, 0.00, 15.000, 15.500, 737.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(518, 1, '35', 1, 0.00, 15.000, 15.500, 1166.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(519, 1, '36', 1, 0.00, 15.000, 15.500, 827.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(520, 1, '29', 1, 0.00, 15.000, 15.500, 1050.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(521, 1, '28', 1, 0.00, 15.000, 15.500, 1110.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(522, 1, '27', 1, 0.00, 15.000, 15.500, 1416.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(523, 1, '26', 1, 0.00, 15.000, 15.500, 1190.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(524, 1, '25', 1, 0.00, 15.000, 15.500, 1254.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(525, 1, '21', 1, 0.00, 15.000, 15.500, 1554.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(526, 1, '32', 1, 0.00, 15.000, 15.500, 1554.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(527, 1, '20', 1, 0.00, 15.000, 15.500, 2364.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(528, 1, '3', 1, 0.00, 15.500, 16.000, 630.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(529, 1, '2', 1, 0.00, 15.500, 16.000, 1056.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(530, 1, '1', 1, 0.00, 15.500, 16.000, 852.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(531, 1, '30', 1, 0.00, 15.500, 16.000, 946.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(532, 1, '31', 1, 0.00, 15.500, 16.000, 1105.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(534, 1, '34', 1, 0.00, 15.500, 16.000, 759.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(535, 1, '35', 1, 0.00, 15.500, 16.000, 1202.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(536, 1, '36', 1, 0.00, 15.500, 16.000, 852.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(537, 1, '29', 1, 0.00, 15.500, 16.000, 1080.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(538, 1, '28', 1, 0.00, 15.500, 16.000, 1142.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(539, 1, '27', 1, 0.00, 15.500, 16.000, 1458.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(540, 1, '26', 1, 0.00, 15.500, 16.000, 1225.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(541, 1, '25', 1, 0.00, 15.500, 16.000, 1290.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(542, 1, '21', 1, 0.00, 15.500, 16.000, 1600.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(543, 1, '32', 1, 0.00, 15.500, 16.000, 1600.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(544, 1, '20', 1, 0.00, 15.500, 16.000, 2434.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(545, 1, '3', 1, 0.00, 16.000, 16.500, 647.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(546, 1, '2', 1, 0.00, 16.000, 16.500, 1087.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(547, 1, '1', 1, 0.00, 16.000, 16.500, 877.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(548, 1, '30', 1, 0.00, 16.000, 16.500, 972.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(549, 1, '31', 1, 0.00, 16.000, 16.500, 1137.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(551, 1, '34', 1, 0.00, 16.000, 16.500, 781.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(552, 1, '35', 1, 0.00, 16.000, 16.500, 1237.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(553, 1, '36', 1, 0.00, 16.000, 16.500, 877.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(554, 1, '29', 1, 0.00, 16.000, 16.500, 1111.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1);
INSERT INTO `shipping_freightpricevalue` (`pv_id`, `pr_id`, `area_id`, `wk_code`, `fv_unitweight`, `weight_start`, `weight_end`, `price_value`, `created`, `modified`, `status`) VALUES
(555, 1, '28', 1, 0.00, 16.000, 16.500, 1174.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(556, 1, '27', 1, 0.00, 16.000, 16.500, 1501.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(557, 1, '26', 1, 0.00, 16.000, 16.500, 1260.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(558, 1, '25', 1, 0.00, 16.000, 16.500, 1327.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(559, 1, '21', 1, 0.00, 16.000, 16.500, 1646.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(560, 1, '32', 1, 0.00, 16.000, 16.500, 1646.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(561, 1, '20', 1, 0.00, 16.000, 16.500, 2505.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(562, 1, '3', 1, 0.00, 16.500, 17.000, 664.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(563, 1, '2', 1, 0.00, 16.500, 17.000, 1118.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(564, 1, '1', 1, 0.00, 16.500, 17.000, 901.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(565, 1, '30', 1, 0.00, 16.500, 17.000, 999.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(566, 1, '31', 1, 0.00, 16.500, 17.000, 1169.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(568, 1, '34', 1, 0.00, 16.500, 17.000, 803.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(569, 1, '35', 1, 0.00, 16.500, 17.000, 1273.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(570, 1, '36', 1, 0.00, 16.500, 17.000, 901.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(571, 1, '29', 1, 0.00, 16.500, 17.000, 1141.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(572, 1, '28', 1, 0.00, 16.500, 17.000, 1207.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(573, 1, '27', 1, 0.00, 16.500, 17.000, 1543.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(574, 1, '26', 1, 0.00, 16.500, 17.000, 1294.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(575, 1, '25', 1, 0.00, 16.500, 17.000, 1363.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(576, 1, '21', 1, 0.00, 16.500, 17.000, 1692.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(577, 1, '32', 1, 0.00, 16.500, 17.000, 1692.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(578, 1, '20', 1, 0.00, 16.500, 17.000, 2575.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(579, 1, '3', 1, 0.00, 17.000, 17.500, 681.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(580, 1, '2', 1, 0.00, 17.000, 17.500, 1149.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(581, 1, '1', 1, 0.00, 17.000, 17.500, 926.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(582, 1, '30', 1, 0.00, 17.000, 17.500, 1025.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(583, 1, '31', 1, 0.00, 17.000, 17.500, 1202.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(585, 1, '34', 1, 0.00, 17.000, 17.500, 825.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(586, 1, '35', 1, 0.00, 17.000, 17.500, 1309.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(587, 1, '36', 1, 0.00, 17.000, 17.500, 926.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(588, 1, '29', 1, 0.00, 17.000, 17.500, 1172.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(589, 1, '28', 1, 0.00, 17.000, 17.500, 1239.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(590, 1, '27', 1, 0.00, 17.000, 17.500, 1586.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(591, 1, '26', 1, 0.00, 17.000, 17.500, 1329.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(592, 1, '25', 1, 0.00, 17.000, 17.500, 1400.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(593, 1, '21', 1, 0.00, 17.000, 17.500, 1738.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(594, 1, '32', 1, 0.00, 17.000, 17.500, 1738.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(595, 1, '20', 1, 0.00, 17.000, 17.500, 2646.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(596, 1, '3', 1, 0.00, 17.500, 18.000, 697.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(597, 1, '2', 1, 0.00, 17.500, 18.000, 1180.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(598, 1, '1', 1, 0.00, 17.500, 18.000, 950.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(599, 1, '30', 1, 0.00, 17.500, 18.000, 1051.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(600, 1, '31', 1, 0.00, 17.500, 18.000, 1234.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(602, 1, '34', 1, 0.00, 17.500, 18.000, 847.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(603, 1, '35', 1, 0.00, 17.500, 18.000, 1344.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(604, 1, '36', 1, 0.00, 17.500, 18.000, 950.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(605, 1, '29', 1, 0.00, 17.500, 18.000, 1203.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(606, 1, '28', 1, 0.00, 17.500, 18.000, 1271.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(607, 1, '27', 1, 0.00, 17.500, 18.000, 1628.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(608, 1, '26', 1, 0.00, 17.500, 18.000, 1364.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(609, 1, '25', 1, 0.00, 17.500, 18.000, 1436.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(610, 1, '21', 1, 0.00, 17.500, 18.000, 1784.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(611, 1, '32', 1, 0.00, 17.500, 18.000, 1784.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(612, 1, '20', 1, 0.00, 17.500, 18.000, 2716.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(613, 1, '3', 1, 0.00, 18.000, 18.500, 714.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(614, 1, '2', 1, 0.00, 18.000, 18.500, 1211.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(615, 1, '1', 1, 0.00, 18.000, 18.500, 975.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(616, 1, '30', 1, 0.00, 18.000, 18.500, 1077.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(617, 1, '31', 1, 0.00, 18.000, 18.500, 1266.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(619, 1, '34', 1, 0.00, 18.000, 18.500, 869.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(620, 1, '35', 1, 0.00, 18.000, 18.500, 1380.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(621, 1, '36', 1, 0.00, 18.000, 18.500, 975.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(622, 1, '29', 1, 0.00, 18.000, 18.500, 1233.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(623, 1, '28', 1, 0.00, 18.000, 18.500, 1304.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(624, 1, '27', 1, 0.00, 18.000, 18.500, 1671.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(625, 1, '26', 1, 0.00, 18.000, 18.500, 1399.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(626, 1, '25', 1, 0.00, 18.000, 18.500, 1473.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(627, 1, '21', 1, 0.00, 18.000, 18.500, 1830.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(628, 1, '32', 1, 0.00, 18.000, 18.500, 1830.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(629, 1, '20', 1, 0.00, 18.000, 18.500, 2787.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(630, 1, '3', 1, 0.00, 18.500, 19.000, 731.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(631, 1, '2', 1, 0.00, 18.500, 19.000, 1242.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(632, 1, '1', 1, 0.00, 18.500, 19.000, 1000.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(633, 1, '30', 1, 0.00, 18.500, 19.000, 1104.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(634, 1, '31', 1, 0.00, 18.500, 19.000, 1299.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(636, 1, '34', 1, 0.00, 18.500, 19.000, 891.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(637, 1, '35', 1, 0.00, 18.500, 19.000, 1416.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(638, 1, '36', 1, 0.00, 18.500, 19.000, 1000.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(639, 1, '29', 1, 0.00, 18.500, 19.000, 1264.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(640, 1, '28', 1, 0.00, 18.500, 19.000, 1336.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(641, 1, '27', 1, 0.00, 18.500, 19.000, 1713.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(642, 1, '26', 1, 0.00, 18.500, 19.000, 1434.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(643, 1, '25', 1, 0.00, 18.500, 19.000, 1509.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(644, 1, '21', 1, 0.00, 18.500, 19.000, 1876.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(645, 1, '32', 1, 0.00, 18.500, 19.000, 1876.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(646, 1, '20', 1, 0.00, 18.500, 19.000, 2857.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(647, 1, '3', 1, 0.00, 19.000, 19.500, 747.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(648, 1, '2', 1, 0.00, 19.000, 19.500, 1273.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(649, 1, '1', 1, 0.00, 19.000, 19.500, 1024.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(650, 1, '30', 1, 0.00, 19.000, 19.500, 1130.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(651, 1, '31', 1, 0.00, 19.000, 19.500, 1331.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(653, 1, '34', 1, 0.00, 19.000, 19.500, 914.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(654, 1, '35', 1, 0.00, 19.000, 19.500, 1452.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(655, 1, '36', 1, 0.00, 19.000, 19.500, 1024.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(656, 1, '29', 1, 0.00, 19.000, 19.500, 1294.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(657, 1, '28', 1, 0.00, 19.000, 19.500, 1368.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(658, 1, '27', 1, 0.00, 19.000, 19.500, 1756.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(659, 1, '26', 1, 0.00, 19.000, 19.500, 1468.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(660, 1, '25', 1, 0.00, 19.000, 19.500, 1546.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(661, 1, '21', 1, 0.00, 19.000, 19.500, 1922.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(662, 1, '32', 1, 0.00, 19.000, 19.500, 1922.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(663, 1, '20', 1, 0.00, 19.000, 19.500, 2928.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(664, 1, '3', 1, 0.00, 19.500, 20.000, 764.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(665, 1, '2', 1, 0.00, 19.500, 20.000, 1304.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(666, 1, '1', 1, 0.00, 19.500, 20.000, 1049.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(667, 1, '30', 1, 0.00, 19.500, 20.000, 1156.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(668, 1, '31', 1, 0.00, 19.500, 20.000, 1363.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(670, 1, '34', 1, 0.00, 19.500, 20.000, 936.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(671, 1, '35', 1, 0.00, 19.500, 20.000, 1487.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(672, 1, '36', 1, 0.00, 19.500, 20.000, 1049.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(673, 1, '29', 1, 0.00, 19.500, 20.000, 1325.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(674, 1, '28', 1, 0.00, 19.500, 20.000, 1401.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(675, 1, '27', 1, 0.00, 19.500, 20.000, 1798.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(676, 1, '26', 1, 0.00, 19.500, 20.000, 1503.600, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(677, 1, '25', 1, 0.00, 19.500, 20.000, 1582.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(678, 1, '21', 1, 0.00, 19.500, 20.000, 1968.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(679, 1, '32', 1, 0.00, 19.500, 20.000, 1968.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(680, 1, '20', 1, 0.00, 19.500, 20.000, 2998.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(681, 1, '3', 1, 0.00, 20.000, 20.500, 781.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(682, 1, '2', 1, 0.00, 20.000, 20.500, 1335.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(683, 1, '1', 1, 0.00, 20.000, 20.500, 1073.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(684, 1, '30', 1, 0.00, 20.000, 20.500, 1183.100, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(685, 1, '31', 1, 0.00, 20.000, 20.500, 1395.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(687, 1, '34', 1, 0.00, 20.000, 20.500, 958.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(688, 1, '35', 1, 0.00, 20.000, 20.500, 1523.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(689, 1, '36', 1, 0.00, 20.000, 20.500, 1073.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(690, 1, '29', 1, 0.00, 20.000, 20.500, 1356.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(691, 1, '28', 1, 0.00, 20.000, 20.500, 1433.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(692, 1, '27', 1, 0.00, 20.000, 20.500, 1841.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(693, 1, '26', 1, 0.00, 20.000, 20.500, 1538.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(694, 1, '25', 1, 0.00, 20.000, 20.500, 1619.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(695, 1, '21', 1, 0.00, 20.000, 20.500, 2013.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(696, 1, '32', 1, 0.00, 20.000, 20.500, 2013.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(697, 1, '20', 1, 0.00, 20.000, 20.500, 3069.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(698, 1, '3', 2, 1.00, 20.500, 30.000, 31.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(699, 1, '2', 2, 1.00, 20.500, 30.000, 47.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(700, 1, '1', 2, 1.00, 20.500, 30.000, 36.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(701, 1, '30', 2, 1.00, 20.500, 30.000, 39.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(702, 1, '31', 2, 1.00, 20.500, 30.000, 27.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(704, 1, '34', 2, 1.00, 20.500, 30.000, 28.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(705, 1, '35', 2, 1.00, 20.500, 30.000, 47.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(706, 1, '36', 2, 1.00, 20.500, 30.000, 36.900, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(707, 1, '29', 2, 1.00, 20.500, 30.000, 45.700, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(708, 1, '28', 2, 1.00, 20.500, 30.000, 47.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(709, 1, '27', 2, 1.00, 20.500, 30.000, 61.800, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(710, 1, '26', 2, 1.00, 20.500, 30.000, 63.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(711, 1, '25', 2, 1.00, 20.500, 30.000, 54.200, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(712, 1, '21', 2, 1.00, 20.500, 30.000, 64.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(713, 1, '32', 2, 1.00, 20.500, 30.000, 47.400, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(714, 1, '20', 2, 1.00, 20.500, 30.000, 89.000, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(715, 1, '3', 2, 1.00, 30.000, 50.000, 31.500, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(716, 1, '2', 2, 1.00, 30.000, 50.000, 45.700, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(717, 1, '1', 2, 1.00, 30.000, 50.000, 35.300, '2011-05-29 17:39:48', '2011-05-29 17:39:48', 1),
(718, 1, '30', 2, 1.00, 30.000, 50.000, 38.000, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(719, 1, '31', 2, 1.00, 30.000, 50.000, 26.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(721, 1, '34', 2, 1.00, 30.000, 50.000, 27.000, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(722, 1, '35', 2, 1.00, 30.000, 50.000, 45.700, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(723, 1, '36', 2, 1.00, 30.000, 50.000, 35.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(724, 1, '29', 2, 1.00, 30.000, 50.000, 45.700, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(725, 1, '28', 2, 1.00, 30.000, 50.000, 47.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(726, 1, '27', 2, 1.00, 30.000, 50.000, 61.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(727, 1, '26', 2, 1.00, 30.000, 50.000, 61.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(728, 1, '25', 2, 1.00, 30.000, 50.000, 53.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(729, 1, '21', 2, 1.00, 30.000, 50.000, 62.700, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(730, 1, '32', 2, 1.00, 30.000, 50.000, 47.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(731, 1, '20', 2, 1.00, 30.000, 50.000, 89.000, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(732, 1, '3', 2, 1.00, 50.000, 70.000, 29.600, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(733, 1, '2', 2, 1.00, 50.000, 70.000, 45.500, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(734, 1, '1', 2, 1.00, 50.000, 70.000, 33.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(735, 1, '30', 2, 1.00, 50.000, 70.000, 35.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(736, 1, '31', 2, 1.00, 50.000, 70.000, 25.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(738, 1, '34', 2, 1.00, 50.000, 70.000, 26.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(739, 1, '35', 2, 1.00, 50.000, 70.000, 45.500, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(740, 1, '36', 2, 1.00, 50.000, 70.000, 33.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(741, 1, '29', 2, 1.00, 50.000, 70.000, 42.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(742, 1, '28', 2, 1.00, 50.000, 70.000, 42.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(743, 1, '27', 2, 1.00, 50.000, 70.000, 58.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(744, 1, '26', 2, 1.00, 50.000, 70.000, 61.600, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(745, 1, '25', 2, 1.00, 50.000, 70.000, 53.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(746, 1, '21', 2, 1.00, 50.000, 70.000, 62.500, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(747, 1, '32', 2, 1.00, 50.000, 70.000, 42.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(748, 1, '20', 2, 1.00, 50.000, 70.000, 82.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(749, 1, '3', 2, 1.00, 70.000, 100.000, 29.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(750, 1, '2', 2, 1.00, 70.000, 100.000, 43.500, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(751, 1, '1', 2, 1.00, 70.000, 100.000, 31.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(752, 1, '30', 2, 1.00, 70.000, 100.000, 35.000, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(753, 1, '31', 2, 1.00, 70.000, 100.000, 24.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(755, 1, '34', 2, 1.00, 70.000, 100.000, 24.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(756, 1, '35', 2, 1.00, 70.000, 100.000, 43.500, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(757, 1, '36', 2, 1.00, 70.000, 100.000, 31.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(758, 1, '29', 2, 1.00, 70.000, 100.000, 41.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(759, 1, '28', 2, 1.00, 70.000, 100.000, 42.700, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(760, 1, '27', 2, 1.00, 70.000, 100.000, 58.000, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(761, 1, '26', 2, 1.00, 70.000, 100.000, 61.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(762, 1, '25', 2, 1.00, 70.000, 100.000, 51.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(763, 1, '21', 2, 1.00, 70.000, 100.000, 61.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(764, 1, '32', 2, 1.00, 70.000, 100.000, 42.700, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(765, 1, '20', 2, 1.00, 70.000, 100.000, 73.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(766, 1, '3', 2, 1.00, 100.000, 500.000, 28.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(767, 1, '2', 2, 1.00, 100.000, 500.000, 40.400, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(768, 1, '1', 2, 1.00, 100.000, 500.000, 31.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(769, 1, '30', 2, 1.00, 100.000, 500.000, 33.600, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(770, 1, '31', 2, 1.00, 100.000, 500.000, 20.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(772, 1, '34', 2, 1.00, 100.000, 500.000, 20.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(773, 1, '35', 2, 1.00, 100.000, 500.000, 40.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(774, 1, '36', 2, 1.00, 100.000, 500.000, 31.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(775, 1, '29', 2, 1.00, 100.000, 500.000, 39.600, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(776, 1, '28', 2, 1.00, 100.000, 500.000, 39.600, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(777, 1, '27', 2, 1.00, 100.000, 500.000, 54.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(778, 1, '26', 2, 1.00, 100.000, 500.000, 58.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(779, 1, '25', 2, 1.00, 100.000, 500.000, 49.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(780, 1, '21', 2, 1.00, 100.000, 500.000, 58.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(781, 1, '32', 2, 1.00, 100.000, 500.000, 39.600, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(782, 1, '20', 2, 1.00, 100.000, 500.000, 71.900, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(783, 1, '3', 2, 1.00, 500.000, 10000.000, 28.500, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(784, 1, '2', 2, 1.00, 500.000, 10000.000, 39.100, '2011-07-26 22:08:09', '2011-07-26 22:08:09', 1),
(785, 1, '1', 2, 1.00, 500.000, 10000.000, 37.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(786, 1, '30', 2, 1.00, 500.000, 10000.000, 33.200, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(787, 1, '31', 2, 1.00, 500.000, 10000.000, 18.700, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(789, 1, '34', 2, 1.00, 500.000, 10000.000, 20.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(790, 1, '35', 2, 1.00, 500.000, 10000.000, 39.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(791, 1, '36', 2, 1.00, 500.000, 10000.000, 37.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(792, 1, '29', 2, 1.00, 500.000, 10000.000, 39.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(793, 1, '28', 2, 1.00, 500.000, 10000.000, 39.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(794, 1, '27', 2, 1.00, 500.000, 10000.000, 54.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(795, 1, '26', 2, 1.00, 500.000, 10000.000, 57.800, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(796, 1, '25', 2, 1.00, 500.000, 10000.000, 49.300, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(797, 1, '21', 2, 1.00, 500.000, 10000.000, 54.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(798, 1, '32', 2, 1.00, 500.000, 10000.000, 39.100, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(799, 1, '20', 2, 1.00, 500.000, 10000.000, 71.400, '2011-05-29 17:39:49', '2011-05-29 17:39:49', 1),
(800, 2, '14 ', 1, 0.00, 0.000, 0.500, 144.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(801, 2, '15 ', 1, 0.00, 0.000, 0.500, 105.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(802, 2, '19 ', 1, 0.00, 0.000, 0.500, 168.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(803, 2, '17 ', 1, 0.00, 0.000, 0.500, 114.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(804, 2, '18 ', 1, 0.00, 0.000, 0.500, 78.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(805, 2, '16 ', 1, 0.00, 0.000, 0.500, 108.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(806, 2, '22 ', 1, 0.00, 0.000, 0.500, 180.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(807, 2, '23 ', 1, 0.00, 0.000, 0.500, 201.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(808, 2, '24 ', 1, 0.00, 0.000, 0.500, 267.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(809, 2, '', 1, 0.00, 0.000, 0.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(810, 2, '14 ', 1, 0.00, 0.500, 1.000, 189.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(811, 2, '15 ', 1, 0.00, 0.500, 1.000, 132.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(812, 2, '19 ', 1, 0.00, 0.500, 1.000, 213.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(813, 2, '17 ', 1, 0.00, 0.500, 1.000, 141.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(814, 2, '18 ', 1, 0.00, 0.500, 1.000, 96.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(815, 2, '16 ', 1, 0.00, 0.500, 1.000, 132.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(816, 2, '22 ', 1, 0.00, 0.500, 1.000, 228.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(817, 2, '23 ', 1, 0.00, 0.500, 1.000, 261.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(818, 2, '24 ', 1, 0.00, 0.500, 1.000, 339.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(819, 2, '', 1, 0.00, 0.500, 1.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(820, 2, '14 ', 1, 0.00, 1.000, 1.500, 234.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(821, 2, '15 ', 1, 0.00, 1.000, 1.500, 160.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(822, 2, '19 ', 1, 0.00, 1.000, 1.500, 258.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(823, 2, '17 ', 1, 0.00, 1.000, 1.500, 168.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(824, 2, '18 ', 1, 0.00, 1.000, 1.500, 114.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(825, 2, '16 ', 1, 0.00, 1.000, 1.500, 156.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(826, 2, '22 ', 1, 0.00, 1.000, 1.500, 276.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(827, 2, '23 ', 1, 0.00, 1.000, 1.500, 321.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(828, 2, '24 ', 1, 0.00, 1.000, 1.500, 411.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(829, 2, '', 1, 0.00, 1.000, 1.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(830, 2, '14 ', 1, 0.00, 1.500, 2.000, 279.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(831, 2, '15 ', 1, 0.00, 1.500, 2.000, 187.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(832, 2, '19 ', 1, 0.00, 1.500, 2.000, 303.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(833, 2, '17 ', 1, 0.00, 1.500, 2.000, 195.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(834, 2, '18 ', 1, 0.00, 1.500, 2.000, 132.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(835, 2, '16 ', 1, 0.00, 1.500, 2.000, 180.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(836, 2, '22 ', 1, 0.00, 1.500, 2.000, 324.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(837, 2, '23 ', 1, 0.00, 1.500, 2.000, 381.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(838, 2, '24 ', 1, 0.00, 1.500, 2.000, 483.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(839, 2, '', 1, 0.00, 1.500, 2.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(840, 2, '14 ', 1, 0.00, 2.000, 2.500, 324.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(841, 2, '15 ', 1, 0.00, 2.000, 2.500, 215.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(842, 2, '19 ', 1, 0.00, 2.000, 2.500, 348.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(843, 2, '17 ', 1, 0.00, 2.000, 2.500, 222.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(844, 2, '18 ', 1, 0.00, 2.000, 2.500, 150.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(845, 2, '16 ', 1, 0.00, 2.000, 2.500, 204.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(846, 2, '22 ', 1, 0.00, 2.000, 2.500, 372.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(847, 2, '23 ', 1, 0.00, 2.000, 2.500, 441.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(848, 2, '24 ', 1, 0.00, 2.000, 2.500, 555.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(849, 2, '', 1, 0.00, 2.000, 2.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(850, 2, '14 ', 1, 0.00, 2.500, 3.000, 369.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(851, 2, '15 ', 1, 0.00, 2.500, 3.000, 242.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(852, 2, '19 ', 1, 0.00, 2.500, 3.000, 393.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(853, 2, '17 ', 1, 0.00, 2.500, 3.000, 249.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(854, 2, '18 ', 1, 0.00, 2.500, 3.000, 168.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(855, 2, '16 ', 1, 0.00, 2.500, 3.000, 228.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(856, 2, '22 ', 1, 0.00, 2.500, 3.000, 420.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(857, 2, '23 ', 1, 0.00, 2.500, 3.000, 501.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(858, 2, '24 ', 1, 0.00, 2.500, 3.000, 627.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(859, 2, '', 1, 0.00, 2.500, 3.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(860, 2, '14 ', 1, 0.00, 3.000, 3.500, 414.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(861, 2, '15 ', 1, 0.00, 3.000, 3.500, 270.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(862, 2, '19 ', 1, 0.00, 3.000, 3.500, 438.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(863, 2, '17 ', 1, 0.00, 3.000, 3.500, 276.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(864, 2, '18 ', 1, 0.00, 3.000, 3.500, 186.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(865, 2, '16 ', 1, 0.00, 3.000, 3.500, 252.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(866, 2, '22 ', 1, 0.00, 3.000, 3.500, 468.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(867, 2, '23 ', 1, 0.00, 3.000, 3.500, 561.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(868, 2, '24 ', 1, 0.00, 3.000, 3.500, 699.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(869, 2, '', 1, 0.00, 3.000, 3.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(870, 2, '14 ', 1, 0.00, 3.500, 4.000, 459.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(871, 2, '15 ', 1, 0.00, 3.500, 4.000, 297.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(872, 2, '19 ', 1, 0.00, 3.500, 4.000, 483.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(873, 2, '17 ', 1, 0.00, 3.500, 4.000, 303.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(874, 2, '18 ', 1, 0.00, 3.500, 4.000, 204.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(875, 2, '16 ', 1, 0.00, 3.500, 4.000, 276.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(876, 2, '22 ', 1, 0.00, 3.500, 4.000, 516.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(877, 2, '23 ', 1, 0.00, 3.500, 4.000, 621.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(878, 2, '24 ', 1, 0.00, 3.500, 4.000, 771.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(879, 2, '', 1, 0.00, 3.500, 4.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(880, 2, '14 ', 1, 0.00, 4.000, 4.500, 504.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(881, 2, '15 ', 1, 0.00, 4.000, 4.500, 325.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(882, 2, '19 ', 1, 0.00, 4.000, 4.500, 528.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(883, 2, '17 ', 1, 0.00, 4.000, 4.500, 330.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(884, 2, '18 ', 1, 0.00, 4.000, 4.500, 222.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(885, 2, '16 ', 1, 0.00, 4.000, 4.500, 300.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(886, 2, '22 ', 1, 0.00, 4.000, 4.500, 564.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(887, 2, '23 ', 1, 0.00, 4.000, 4.500, 681.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(888, 2, '24 ', 1, 0.00, 4.000, 4.500, 843.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(889, 2, '', 1, 0.00, 4.000, 4.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(890, 2, '14 ', 1, 0.00, 4.500, 5.000, 549.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(891, 2, '15 ', 1, 0.00, 4.500, 5.000, 352.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(892, 2, '19 ', 1, 0.00, 4.500, 5.000, 573.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(893, 2, '17 ', 1, 0.00, 4.500, 5.000, 357.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(894, 2, '18 ', 1, 0.00, 4.500, 5.000, 240.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(895, 2, '16 ', 1, 0.00, 4.500, 5.000, 324.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(896, 2, '22 ', 1, 0.00, 4.500, 5.000, 612.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(897, 2, '23 ', 1, 0.00, 4.500, 5.000, 741.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(898, 2, '24 ', 1, 0.00, 4.500, 5.000, 915.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(899, 2, '', 1, 0.00, 4.500, 5.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(900, 2, '14 ', 1, 0.00, 5.000, 5.500, 594.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(901, 2, '15 ', 1, 0.00, 5.000, 5.500, 380.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(902, 2, '19 ', 1, 0.00, 5.000, 5.500, 618.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(903, 2, '17 ', 1, 0.00, 5.000, 5.500, 384.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(904, 2, '18 ', 1, 0.00, 5.000, 5.500, 258.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(905, 2, '16 ', 1, 0.00, 5.000, 5.500, 348.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(906, 2, '22 ', 1, 0.00, 5.000, 5.500, 660.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(907, 2, '23 ', 1, 0.00, 5.000, 5.500, 801.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(908, 2, '24 ', 1, 0.00, 5.000, 5.500, 987.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(909, 2, '', 1, 0.00, 5.000, 5.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(910, 2, '14 ', 1, 0.00, 5.500, 6.000, 639.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(911, 2, '15 ', 1, 0.00, 5.500, 6.000, 407.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(912, 2, '19 ', 1, 0.00, 5.500, 6.000, 663.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(913, 2, '17 ', 1, 0.00, 5.500, 6.000, 411.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(914, 2, '18 ', 1, 0.00, 5.500, 6.000, 276.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(915, 2, '16 ', 1, 0.00, 5.500, 6.000, 372.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(916, 2, '22 ', 1, 0.00, 5.500, 6.000, 708.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(917, 2, '23 ', 1, 0.00, 5.500, 6.000, 861.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(918, 2, '24 ', 1, 0.00, 5.500, 6.000, 1059.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(919, 2, '', 1, 0.00, 5.500, 6.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(920, 2, '14 ', 1, 0.00, 6.000, 6.500, 684.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(921, 2, '15 ', 1, 0.00, 6.000, 6.500, 435.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(922, 2, '19 ', 1, 0.00, 6.000, 6.500, 708.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(923, 2, '17 ', 1, 0.00, 6.000, 6.500, 438.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(924, 2, '18 ', 1, 0.00, 6.000, 6.500, 294.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(925, 2, '16 ', 1, 0.00, 6.000, 6.500, 396.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(926, 2, '22 ', 1, 0.00, 6.000, 6.500, 756.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(927, 2, '23 ', 1, 0.00, 6.000, 6.500, 921.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(928, 2, '24 ', 1, 0.00, 6.000, 6.500, 1131.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(929, 2, '', 1, 0.00, 6.000, 6.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(930, 2, '14 ', 1, 0.00, 6.500, 7.000, 729.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(931, 2, '15 ', 1, 0.00, 6.500, 7.000, 462.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(932, 2, '19 ', 1, 0.00, 6.500, 7.000, 753.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(933, 2, '17 ', 1, 0.00, 6.500, 7.000, 465.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(934, 2, '18 ', 1, 0.00, 6.500, 7.000, 312.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(935, 2, '16 ', 1, 0.00, 6.500, 7.000, 420.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(936, 2, '22 ', 1, 0.00, 6.500, 7.000, 804.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(937, 2, '23 ', 1, 0.00, 6.500, 7.000, 981.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(938, 2, '24 ', 1, 0.00, 6.500, 7.000, 1203.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(939, 2, '', 1, 0.00, 6.500, 7.000, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(940, 2, '14 ', 1, 0.00, 7.000, 7.500, 774.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(941, 2, '15 ', 1, 0.00, 7.000, 7.500, 490.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(942, 2, '19 ', 1, 0.00, 7.000, 7.500, 798.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(943, 2, '17 ', 1, 0.00, 7.000, 7.500, 492.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(944, 2, '18 ', 1, 0.00, 7.000, 7.500, 330.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(945, 2, '16 ', 1, 0.00, 7.000, 7.500, 444.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(946, 2, '22 ', 1, 0.00, 7.000, 7.500, 852.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(947, 2, '23 ', 1, 0.00, 7.000, 7.500, 1041.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(948, 2, '24 ', 1, 0.00, 7.000, 7.500, 1275.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(949, 2, '', 1, 0.00, 7.000, 7.500, 0.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(950, 2, '14 ', 1, 0.00, 7.500, 8.000, 819.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(951, 2, '15 ', 1, 0.00, 7.500, 8.000, 517.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(952, 2, '19 ', 1, 0.00, 7.500, 8.000, 843.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(953, 2, '17 ', 1, 0.00, 7.500, 8.000, 519.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(954, 2, '18 ', 1, 0.00, 7.500, 8.000, 348.000, '2011-05-29 17:39:53', '2011-05-29 17:39:53', 1),
(955, 2, '16 ', 1, 0.00, 7.500, 8.000, 468.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(956, 2, '22 ', 1, 0.00, 7.500, 8.000, 900.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(957, 2, '23 ', 1, 0.00, 7.500, 8.000, 1101.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(958, 2, '24 ', 1, 0.00, 7.500, 8.000, 1347.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(959, 2, '', 1, 0.00, 7.500, 8.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(960, 2, '14 ', 1, 0.00, 8.000, 8.500, 864.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(961, 2, '15 ', 1, 0.00, 8.000, 8.500, 545.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(962, 2, '19 ', 1, 0.00, 8.000, 8.500, 888.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(963, 2, '17 ', 1, 0.00, 8.000, 8.500, 546.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(964, 2, '18 ', 1, 0.00, 8.000, 8.500, 366.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(965, 2, '16 ', 1, 0.00, 8.000, 8.500, 492.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(966, 2, '22 ', 1, 0.00, 8.000, 8.500, 948.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(967, 2, '23 ', 1, 0.00, 8.000, 8.500, 1161.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(968, 2, '24 ', 1, 0.00, 8.000, 8.500, 1419.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(969, 2, '', 1, 0.00, 8.000, 8.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(970, 2, '14 ', 1, 0.00, 8.500, 9.000, 909.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(971, 2, '15 ', 1, 0.00, 8.500, 9.000, 572.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(972, 2, '19 ', 1, 0.00, 8.500, 9.000, 933.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(973, 2, '17 ', 1, 0.00, 8.500, 9.000, 573.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(974, 2, '18 ', 1, 0.00, 8.500, 9.000, 384.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(975, 2, '16 ', 1, 0.00, 8.500, 9.000, 516.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(976, 2, '22 ', 1, 0.00, 8.500, 9.000, 996.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(977, 2, '23 ', 1, 0.00, 8.500, 9.000, 1221.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(978, 2, '24 ', 1, 0.00, 8.500, 9.000, 1491.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(979, 2, '', 1, 0.00, 8.500, 9.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(980, 2, '14 ', 1, 0.00, 9.000, 9.500, 954.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(981, 2, '15 ', 1, 0.00, 9.000, 9.500, 600.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(982, 2, '19 ', 1, 0.00, 9.000, 9.500, 978.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(983, 2, '17 ', 1, 0.00, 9.000, 9.500, 600.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(984, 2, '18 ', 1, 0.00, 9.000, 9.500, 402.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(985, 2, '16 ', 1, 0.00, 9.000, 9.500, 540.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(986, 2, '22 ', 1, 0.00, 9.000, 9.500, 1044.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(987, 2, '23 ', 1, 0.00, 9.000, 9.500, 1281.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(988, 2, '24 ', 1, 0.00, 9.000, 9.500, 1563.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(989, 2, '', 1, 0.00, 9.000, 9.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(990, 2, '14 ', 1, 0.00, 9.500, 10.000, 999.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(991, 2, '15 ', 1, 0.00, 9.500, 10.000, 627.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(992, 2, '19 ', 1, 0.00, 9.500, 10.000, 1023.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(993, 2, '17 ', 1, 0.00, 9.500, 10.000, 627.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(994, 2, '18 ', 1, 0.00, 9.500, 10.000, 420.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(995, 2, '16 ', 1, 0.00, 9.500, 10.000, 564.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(996, 2, '22 ', 1, 0.00, 9.500, 10.000, 1092.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(997, 2, '23 ', 1, 0.00, 9.500, 10.000, 1341.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(998, 2, '24 ', 1, 0.00, 9.500, 10.000, 1635.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(999, 2, '', 1, 0.00, 9.500, 10.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1000, 2, '14 ', 1, 0.00, 10.000, 10.500, 1044.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1001, 2, '15 ', 1, 0.00, 10.000, 10.500, 655.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1002, 2, '19 ', 1, 0.00, 10.000, 10.500, 1068.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1003, 2, '17 ', 1, 0.00, 10.000, 10.500, 654.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1004, 2, '18 ', 1, 0.00, 10.000, 10.500, 438.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1005, 2, '16 ', 1, 0.00, 10.000, 10.500, 588.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1006, 2, '22 ', 1, 0.00, 10.000, 10.500, 1140.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1007, 2, '23 ', 1, 0.00, 10.000, 10.500, 1401.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1008, 2, '24 ', 1, 0.00, 10.000, 10.500, 1707.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1009, 2, '', 1, 0.00, 10.000, 10.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1010, 2, '14 ', 1, 0.00, 10.500, 11.000, 1089.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1011, 2, '15 ', 1, 0.00, 10.500, 11.000, 682.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1012, 2, '19 ', 1, 0.00, 10.500, 11.000, 1113.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1013, 2, '17 ', 1, 0.00, 10.500, 11.000, 681.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1014, 2, '18 ', 1, 0.00, 10.500, 11.000, 456.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1015, 2, '16 ', 1, 0.00, 10.500, 11.000, 612.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1016, 2, '22 ', 1, 0.00, 10.500, 11.000, 1188.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1017, 2, '23 ', 1, 0.00, 10.500, 11.000, 1461.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1018, 2, '24 ', 1, 0.00, 10.500, 11.000, 1779.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1019, 2, '', 1, 0.00, 10.500, 11.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1020, 2, '14 ', 1, 0.00, 11.000, 11.500, 1134.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1021, 2, '15 ', 1, 0.00, 11.000, 11.500, 710.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1022, 2, '19 ', 1, 0.00, 11.000, 11.500, 1158.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1023, 2, '17 ', 1, 0.00, 11.000, 11.500, 708.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1024, 2, '18 ', 1, 0.00, 11.000, 11.500, 474.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1025, 2, '16 ', 1, 0.00, 11.000, 11.500, 636.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1026, 2, '22 ', 1, 0.00, 11.000, 11.500, 1236.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1027, 2, '23 ', 1, 0.00, 11.000, 11.500, 1521.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1028, 2, '24 ', 1, 0.00, 11.000, 11.500, 1851.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1029, 2, '', 1, 0.00, 11.000, 11.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1030, 2, '14 ', 1, 0.00, 11.500, 12.000, 1179.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1031, 2, '15 ', 1, 0.00, 11.500, 12.000, 737.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1032, 2, '19 ', 1, 0.00, 11.500, 12.000, 1203.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1033, 2, '17 ', 1, 0.00, 11.500, 12.000, 735.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1034, 2, '18 ', 1, 0.00, 11.500, 12.000, 492.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1035, 2, '16 ', 1, 0.00, 11.500, 12.000, 660.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1036, 2, '22 ', 1, 0.00, 11.500, 12.000, 1284.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1037, 2, '23 ', 1, 0.00, 11.500, 12.000, 1581.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1038, 2, '24 ', 1, 0.00, 11.500, 12.000, 1923.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1039, 2, '', 1, 0.00, 11.500, 12.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1040, 2, '14 ', 1, 0.00, 12.000, 12.500, 1224.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1041, 2, '15 ', 1, 0.00, 12.000, 12.500, 765.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1042, 2, '19 ', 1, 0.00, 12.000, 12.500, 1248.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1043, 2, '17 ', 1, 0.00, 12.000, 12.500, 762.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1044, 2, '18 ', 1, 0.00, 12.000, 12.500, 510.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1045, 2, '16 ', 1, 0.00, 12.000, 12.500, 684.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1046, 2, '22 ', 1, 0.00, 12.000, 12.500, 1332.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1047, 2, '23 ', 1, 0.00, 12.000, 12.500, 1641.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1048, 2, '24 ', 1, 0.00, 12.000, 12.500, 1995.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1049, 2, '', 1, 0.00, 12.000, 12.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1050, 2, '14 ', 1, 0.00, 12.500, 13.000, 1269.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1051, 2, '15 ', 1, 0.00, 12.500, 13.000, 792.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1052, 2, '19 ', 1, 0.00, 12.500, 13.000, 1293.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1053, 2, '17 ', 1, 0.00, 12.500, 13.000, 789.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1054, 2, '18 ', 1, 0.00, 12.500, 13.000, 528.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1055, 2, '16 ', 1, 0.00, 12.500, 13.000, 708.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1056, 2, '22 ', 1, 0.00, 12.500, 13.000, 1380.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1057, 2, '23 ', 1, 0.00, 12.500, 13.000, 1701.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1058, 2, '24 ', 1, 0.00, 12.500, 13.000, 2067.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1059, 2, '', 1, 0.00, 12.500, 13.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1060, 2, '14 ', 1, 0.00, 13.000, 13.500, 1314.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1061, 2, '15 ', 1, 0.00, 13.000, 13.500, 820.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1062, 2, '19 ', 1, 0.00, 13.000, 13.500, 1338.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1063, 2, '17 ', 1, 0.00, 13.000, 13.500, 816.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1064, 2, '18 ', 1, 0.00, 13.000, 13.500, 546.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1065, 2, '16 ', 1, 0.00, 13.000, 13.500, 732.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1066, 2, '22 ', 1, 0.00, 13.000, 13.500, 1428.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1067, 2, '23 ', 1, 0.00, 13.000, 13.500, 1761.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1068, 2, '24 ', 1, 0.00, 13.000, 13.500, 2139.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1069, 2, '', 1, 0.00, 13.000, 13.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1070, 2, '14 ', 1, 0.00, 13.500, 14.000, 1359.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1071, 2, '15 ', 1, 0.00, 13.500, 14.000, 847.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1072, 2, '19 ', 1, 0.00, 13.500, 14.000, 1383.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1073, 2, '17 ', 1, 0.00, 13.500, 14.000, 843.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1074, 2, '18 ', 1, 0.00, 13.500, 14.000, 564.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1075, 2, '16 ', 1, 0.00, 13.500, 14.000, 756.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1076, 2, '22 ', 1, 0.00, 13.500, 14.000, 1476.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1077, 2, '23 ', 1, 0.00, 13.500, 14.000, 1821.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1078, 2, '24 ', 1, 0.00, 13.500, 14.000, 2211.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1079, 2, '', 1, 0.00, 13.500, 14.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1080, 2, '14 ', 1, 0.00, 14.000, 14.500, 1404.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1081, 2, '15 ', 1, 0.00, 14.000, 14.500, 875.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1);
INSERT INTO `shipping_freightpricevalue` (`pv_id`, `pr_id`, `area_id`, `wk_code`, `fv_unitweight`, `weight_start`, `weight_end`, `price_value`, `created`, `modified`, `status`) VALUES
(1082, 2, '19 ', 1, 0.00, 14.000, 14.500, 1428.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1083, 2, '17 ', 1, 0.00, 14.000, 14.500, 870.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1084, 2, '18 ', 1, 0.00, 14.000, 14.500, 582.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1085, 2, '16 ', 1, 0.00, 14.000, 14.500, 780.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1086, 2, '22 ', 1, 0.00, 14.000, 14.500, 1524.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1087, 2, '23 ', 1, 0.00, 14.000, 14.500, 1881.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1088, 2, '24 ', 1, 0.00, 14.000, 14.500, 2283.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1089, 2, '', 1, 0.00, 14.000, 14.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1090, 2, '14 ', 1, 0.00, 14.500, 15.000, 1449.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1091, 2, '15 ', 1, 0.00, 14.500, 15.000, 902.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1092, 2, '19 ', 1, 0.00, 14.500, 15.000, 1473.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1093, 2, '17 ', 1, 0.00, 14.500, 15.000, 897.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1094, 2, '18 ', 1, 0.00, 14.500, 15.000, 600.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1095, 2, '16 ', 1, 0.00, 14.500, 15.000, 804.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1096, 2, '22 ', 1, 0.00, 14.500, 15.000, 1572.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1097, 2, '23 ', 1, 0.00, 14.500, 15.000, 1941.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1098, 2, '24 ', 1, 0.00, 14.500, 15.000, 2355.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1099, 2, '', 1, 0.00, 14.500, 15.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1100, 2, '14 ', 1, 0.00, 15.000, 15.500, 1494.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1101, 2, '15 ', 1, 0.00, 15.000, 15.500, 930.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1102, 2, '19 ', 1, 0.00, 15.000, 15.500, 1518.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1103, 2, '17 ', 1, 0.00, 15.000, 15.500, 924.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1104, 2, '18 ', 1, 0.00, 15.000, 15.500, 618.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1105, 2, '16 ', 1, 0.00, 15.000, 15.500, 828.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1106, 2, '22 ', 1, 0.00, 15.000, 15.500, 1620.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1107, 2, '23 ', 1, 0.00, 15.000, 15.500, 2001.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1108, 2, '24 ', 1, 0.00, 15.000, 15.500, 2427.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1109, 2, '', 1, 0.00, 15.000, 15.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1110, 2, '14 ', 1, 0.00, 15.500, 16.000, 1539.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1111, 2, '15 ', 1, 0.00, 15.500, 16.000, 957.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1112, 2, '19 ', 1, 0.00, 15.500, 16.000, 1563.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1113, 2, '17 ', 1, 0.00, 15.500, 16.000, 951.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1114, 2, '18 ', 1, 0.00, 15.500, 16.000, 636.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1115, 2, '16 ', 1, 0.00, 15.500, 16.000, 852.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1116, 2, '22 ', 1, 0.00, 15.500, 16.000, 1668.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1117, 2, '23 ', 1, 0.00, 15.500, 16.000, 2061.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1118, 2, '24 ', 1, 0.00, 15.500, 16.000, 2499.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1119, 2, '', 1, 0.00, 15.500, 16.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1120, 2, '14 ', 1, 0.00, 16.000, 16.500, 1584.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1121, 2, '15 ', 1, 0.00, 16.000, 16.500, 985.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1122, 2, '19 ', 1, 0.00, 16.000, 16.500, 1608.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1123, 2, '17 ', 1, 0.00, 16.000, 16.500, 978.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1124, 2, '18 ', 1, 0.00, 16.000, 16.500, 654.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1125, 2, '16 ', 1, 0.00, 16.000, 16.500, 876.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1126, 2, '22 ', 1, 0.00, 16.000, 16.500, 1716.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1127, 2, '23 ', 1, 0.00, 16.000, 16.500, 2121.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1128, 2, '24 ', 1, 0.00, 16.000, 16.500, 2571.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1129, 2, '', 1, 0.00, 16.000, 16.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1130, 2, '14 ', 1, 0.00, 16.500, 17.000, 1629.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1131, 2, '15 ', 1, 0.00, 16.500, 17.000, 1012.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1132, 2, '19 ', 1, 0.00, 16.500, 17.000, 1653.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1133, 2, '17 ', 1, 0.00, 16.500, 17.000, 1005.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1134, 2, '18 ', 1, 0.00, 16.500, 17.000, 672.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1135, 2, '16 ', 1, 0.00, 16.500, 17.000, 900.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1136, 2, '22 ', 1, 0.00, 16.500, 17.000, 1764.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1137, 2, '23 ', 1, 0.00, 16.500, 17.000, 2181.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1138, 2, '24 ', 1, 0.00, 16.500, 17.000, 2643.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1139, 2, '', 1, 0.00, 16.500, 17.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1140, 2, '14 ', 1, 0.00, 17.000, 17.500, 1674.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1141, 2, '15 ', 1, 0.00, 17.000, 17.500, 1040.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1142, 2, '19 ', 1, 0.00, 17.000, 17.500, 1698.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1143, 2, '17 ', 1, 0.00, 17.000, 17.500, 1032.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1144, 2, '18 ', 1, 0.00, 17.000, 17.500, 690.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1145, 2, '16 ', 1, 0.00, 17.000, 17.500, 924.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1146, 2, '22 ', 1, 0.00, 17.000, 17.500, 1812.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1147, 2, '23 ', 1, 0.00, 17.000, 17.500, 2241.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1148, 2, '24 ', 1, 0.00, 17.000, 17.500, 2715.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1149, 2, '', 1, 0.00, 17.000, 17.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1150, 2, '14 ', 1, 0.00, 17.500, 18.000, 1719.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1151, 2, '15 ', 1, 0.00, 17.500, 18.000, 1067.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1152, 2, '19 ', 1, 0.00, 17.500, 18.000, 1743.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1153, 2, '17 ', 1, 0.00, 17.500, 18.000, 1059.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1154, 2, '18 ', 1, 0.00, 17.500, 18.000, 708.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1155, 2, '16 ', 1, 0.00, 17.500, 18.000, 948.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1156, 2, '22 ', 1, 0.00, 17.500, 18.000, 1860.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1157, 2, '23 ', 1, 0.00, 17.500, 18.000, 2301.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1158, 2, '24 ', 1, 0.00, 17.500, 18.000, 2787.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1159, 2, '', 1, 0.00, 17.500, 18.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1160, 2, '14 ', 1, 0.00, 18.000, 18.500, 1764.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1161, 2, '15 ', 1, 0.00, 18.000, 18.500, 1095.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1162, 2, '19 ', 1, 0.00, 18.000, 18.500, 1788.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1163, 2, '17 ', 1, 0.00, 18.000, 18.500, 1086.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1164, 2, '18 ', 1, 0.00, 18.000, 18.500, 726.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1165, 2, '16 ', 1, 0.00, 18.000, 18.500, 972.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1166, 2, '22 ', 1, 0.00, 18.000, 18.500, 1908.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1167, 2, '23 ', 1, 0.00, 18.000, 18.500, 2361.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1168, 2, '24 ', 1, 0.00, 18.000, 18.500, 2859.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1169, 2, '', 1, 0.00, 18.000, 18.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1170, 2, '14 ', 1, 0.00, 18.500, 19.000, 1809.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1171, 2, '15 ', 1, 0.00, 18.500, 19.000, 1122.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1172, 2, '19 ', 1, 0.00, 18.500, 19.000, 1833.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1173, 2, '17 ', 1, 0.00, 18.500, 19.000, 1113.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1174, 2, '18 ', 1, 0.00, 18.500, 19.000, 744.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1175, 2, '16 ', 1, 0.00, 18.500, 19.000, 996.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1176, 2, '22 ', 1, 0.00, 18.500, 19.000, 1956.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1177, 2, '23 ', 1, 0.00, 18.500, 19.000, 2421.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1178, 2, '24 ', 1, 0.00, 18.500, 19.000, 2931.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1179, 2, '', 1, 0.00, 18.500, 19.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1180, 2, '14 ', 1, 0.00, 19.000, 19.500, 1854.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1181, 2, '15 ', 1, 0.00, 19.000, 19.500, 1150.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1182, 2, '19 ', 1, 0.00, 19.000, 19.500, 1878.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1183, 2, '17 ', 1, 0.00, 19.000, 19.500, 1140.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1184, 2, '18 ', 1, 0.00, 19.000, 19.500, 762.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1185, 2, '16 ', 1, 0.00, 19.000, 19.500, 1020.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1186, 2, '22 ', 1, 0.00, 19.000, 19.500, 2004.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1187, 2, '23 ', 1, 0.00, 19.000, 19.500, 2481.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1188, 2, '24 ', 1, 0.00, 19.000, 19.500, 3003.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1189, 2, '', 1, 0.00, 19.000, 19.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1190, 2, '14 ', 1, 0.00, 19.500, 20.000, 1899.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1191, 2, '15 ', 1, 0.00, 19.500, 20.000, 1177.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1192, 2, '19 ', 1, 0.00, 19.500, 20.000, 1923.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1193, 2, '17 ', 1, 0.00, 19.500, 20.000, 1167.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1194, 2, '18 ', 1, 0.00, 19.500, 20.000, 780.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1195, 2, '16 ', 1, 0.00, 19.500, 20.000, 1044.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1196, 2, '22 ', 1, 0.00, 19.500, 20.000, 2052.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1197, 2, '23 ', 1, 0.00, 19.500, 20.000, 2541.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1198, 2, '24 ', 1, 0.00, 19.500, 20.000, 3075.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1199, 2, '', 1, 0.00, 19.500, 20.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1200, 2, '14 ', 1, 0.00, 20.000, 20.500, 1944.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1201, 2, '15 ', 1, 0.00, 20.000, 20.500, 1205.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1202, 2, '19 ', 1, 0.00, 20.000, 20.500, 1968.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1203, 2, '17 ', 1, 0.00, 20.000, 20.500, 1194.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1204, 2, '18 ', 1, 0.00, 20.000, 20.500, 798.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1205, 2, '16 ', 1, 0.00, 20.000, 20.500, 1068.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1206, 2, '22 ', 1, 0.00, 20.000, 20.500, 2100.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1207, 2, '23 ', 1, 0.00, 20.000, 20.500, 2601.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1208, 2, '24 ', 1, 0.00, 20.000, 20.500, 3147.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1209, 2, '', 1, 0.00, 20.000, 20.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1210, 2, '14 ', 1, 0.00, 20.500, 21.000, 1989.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1211, 2, '15 ', 1, 0.00, 20.500, 21.000, 1232.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1212, 2, '19 ', 1, 0.00, 20.500, 21.000, 2013.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1213, 2, '17 ', 1, 0.00, 20.500, 21.000, 1221.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1214, 2, '18 ', 1, 0.00, 20.500, 21.000, 816.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1215, 2, '16 ', 1, 0.00, 20.500, 21.000, 1092.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1216, 2, '22 ', 1, 0.00, 20.500, 21.000, 2148.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1217, 2, '23 ', 1, 0.00, 20.500, 21.000, 2661.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1218, 2, '24 ', 1, 0.00, 20.500, 21.000, 3219.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1219, 2, '', 1, 0.00, 20.500, 21.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1220, 2, '14 ', 1, 0.00, 21.000, 21.500, 2034.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1221, 2, '15 ', 1, 0.00, 21.000, 21.500, 1260.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1222, 2, '19 ', 1, 0.00, 21.000, 21.500, 2058.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1223, 2, '17 ', 1, 0.00, 21.000, 21.500, 1248.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1224, 2, '18 ', 1, 0.00, 21.000, 21.500, 834.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1225, 2, '16 ', 1, 0.00, 21.000, 21.500, 1116.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1226, 2, '22 ', 1, 0.00, 21.000, 21.500, 2196.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1227, 2, '23 ', 1, 0.00, 21.000, 21.500, 2721.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1228, 2, '24 ', 1, 0.00, 21.000, 21.500, 3291.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1229, 2, '', 1, 0.00, 21.000, 21.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1230, 2, '14 ', 1, 0.00, 21.500, 22.000, 2079.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1231, 2, '15 ', 1, 0.00, 21.500, 22.000, 1287.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1232, 2, '19 ', 1, 0.00, 21.500, 22.000, 2103.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1233, 2, '17 ', 1, 0.00, 21.500, 22.000, 1275.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1234, 2, '18 ', 1, 0.00, 21.500, 22.000, 852.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1235, 2, '16 ', 1, 0.00, 21.500, 22.000, 1140.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1236, 2, '22 ', 1, 0.00, 21.500, 22.000, 2244.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1237, 2, '23 ', 1, 0.00, 21.500, 22.000, 2781.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1238, 2, '24 ', 1, 0.00, 21.500, 22.000, 3363.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1239, 2, '', 1, 0.00, 21.500, 22.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1240, 2, '14 ', 1, 0.00, 22.000, 22.500, 2124.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1241, 2, '15 ', 1, 0.00, 22.000, 22.500, 1315.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1242, 2, '19 ', 1, 0.00, 22.000, 22.500, 2148.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1243, 2, '17 ', 1, 0.00, 22.000, 22.500, 1302.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1244, 2, '18 ', 1, 0.00, 22.000, 22.500, 870.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1245, 2, '16 ', 1, 0.00, 22.000, 22.500, 1164.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1246, 2, '22 ', 1, 0.00, 22.000, 22.500, 2292.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1247, 2, '23 ', 1, 0.00, 22.000, 22.500, 2841.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1248, 2, '24 ', 1, 0.00, 22.000, 22.500, 3435.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1249, 2, '', 1, 0.00, 22.000, 22.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1250, 2, '14 ', 1, 0.00, 22.500, 23.000, 2169.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1251, 2, '15 ', 1, 0.00, 22.500, 23.000, 1342.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1252, 2, '19 ', 1, 0.00, 22.500, 23.000, 2193.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1253, 2, '17 ', 1, 0.00, 22.500, 23.000, 1329.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1254, 2, '18 ', 1, 0.00, 22.500, 23.000, 888.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1255, 2, '16 ', 1, 0.00, 22.500, 23.000, 1188.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1256, 2, '22 ', 1, 0.00, 22.500, 23.000, 2340.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1257, 2, '23 ', 1, 0.00, 22.500, 23.000, 2901.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1258, 2, '24 ', 1, 0.00, 22.500, 23.000, 3507.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1259, 2, '', 1, 0.00, 22.500, 23.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1260, 2, '14 ', 1, 0.00, 23.000, 23.500, 2214.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1261, 2, '15 ', 1, 0.00, 23.000, 23.500, 1370.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1262, 2, '19 ', 1, 0.00, 23.000, 23.500, 2238.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1263, 2, '17 ', 1, 0.00, 23.000, 23.500, 1356.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1264, 2, '18 ', 1, 0.00, 23.000, 23.500, 906.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1265, 2, '16 ', 1, 0.00, 23.000, 23.500, 1212.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1266, 2, '22 ', 1, 0.00, 23.000, 23.500, 2388.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1267, 2, '23 ', 1, 0.00, 23.000, 23.500, 2961.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1268, 2, '24 ', 1, 0.00, 23.000, 23.500, 3579.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1269, 2, '', 1, 0.00, 23.000, 23.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1270, 2, '14 ', 1, 0.00, 23.500, 24.000, 2259.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1271, 2, '15 ', 1, 0.00, 23.500, 24.000, 1397.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1272, 2, '19 ', 1, 0.00, 23.500, 24.000, 2283.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1273, 2, '17 ', 1, 0.00, 23.500, 24.000, 1383.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1274, 2, '18 ', 1, 0.00, 23.500, 24.000, 924.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1275, 2, '16 ', 1, 0.00, 23.500, 24.000, 1236.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1276, 2, '22 ', 1, 0.00, 23.500, 24.000, 2436.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1277, 2, '23 ', 1, 0.00, 23.500, 24.000, 3021.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1278, 2, '24 ', 1, 0.00, 23.500, 24.000, 3651.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1279, 2, '', 1, 0.00, 23.500, 24.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1280, 2, '14 ', 1, 0.00, 24.000, 24.500, 2304.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1281, 2, '15 ', 1, 0.00, 24.000, 24.500, 1425.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1282, 2, '19 ', 1, 0.00, 24.000, 24.500, 2328.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1283, 2, '17 ', 1, 0.00, 24.000, 24.500, 1410.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1284, 2, '18 ', 1, 0.00, 24.000, 24.500, 942.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1285, 2, '16 ', 1, 0.00, 24.000, 24.500, 1260.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1286, 2, '22 ', 1, 0.00, 24.000, 24.500, 2484.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1287, 2, '23 ', 1, 0.00, 24.000, 24.500, 3081.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1288, 2, '24 ', 1, 0.00, 24.000, 24.500, 3723.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1289, 2, '', 1, 0.00, 24.000, 24.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1290, 2, '14 ', 1, 0.00, 24.500, 25.000, 2349.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1291, 2, '15 ', 1, 0.00, 24.500, 25.000, 1452.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1292, 2, '19 ', 1, 0.00, 24.500, 25.000, 2373.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1293, 2, '17 ', 1, 0.00, 24.500, 25.000, 1437.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1294, 2, '18 ', 1, 0.00, 24.500, 25.000, 960.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1295, 2, '16 ', 1, 0.00, 24.500, 25.000, 1284.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1296, 2, '22 ', 1, 0.00, 24.500, 25.000, 2532.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1297, 2, '23 ', 1, 0.00, 24.500, 25.000, 3141.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1298, 2, '24 ', 1, 0.00, 24.500, 25.000, 3795.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1299, 2, '', 1, 0.00, 24.500, 25.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1300, 2, '14 ', 1, 0.00, 25.000, 25.500, 2394.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1301, 2, '15 ', 1, 0.00, 25.000, 25.500, 1480.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1302, 2, '19 ', 1, 0.00, 25.000, 25.500, 2418.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1303, 2, '17 ', 1, 0.00, 25.000, 25.500, 1464.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1304, 2, '18 ', 1, 0.00, 25.000, 25.500, 978.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1305, 2, '16 ', 1, 0.00, 25.000, 25.500, 1308.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1306, 2, '22 ', 1, 0.00, 25.000, 25.500, 2580.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1307, 2, '23 ', 1, 0.00, 25.000, 25.500, 3201.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1308, 2, '24 ', 1, 0.00, 25.000, 25.500, 3867.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1309, 2, '', 1, 0.00, 25.000, 25.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1310, 2, '14 ', 1, 0.00, 25.500, 26.000, 2439.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1311, 2, '15 ', 1, 0.00, 25.500, 26.000, 1507.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1312, 2, '19 ', 1, 0.00, 25.500, 26.000, 2463.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1313, 2, '17 ', 1, 0.00, 25.500, 26.000, 1491.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1314, 2, '18 ', 1, 0.00, 25.500, 26.000, 996.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1315, 2, '16 ', 1, 0.00, 25.500, 26.000, 1332.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1316, 2, '22 ', 1, 0.00, 25.500, 26.000, 2628.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1317, 2, '23 ', 1, 0.00, 25.500, 26.000, 3261.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1318, 2, '24 ', 1, 0.00, 25.500, 26.000, 3939.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1319, 2, '', 1, 0.00, 25.500, 26.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1320, 2, '14 ', 1, 0.00, 26.000, 26.500, 2484.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1321, 2, '15 ', 1, 0.00, 26.000, 26.500, 1535.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1322, 2, '19 ', 1, 0.00, 26.000, 26.500, 2508.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1323, 2, '17 ', 1, 0.00, 26.000, 26.500, 1518.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1324, 2, '18 ', 1, 0.00, 26.000, 26.500, 1014.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1325, 2, '16 ', 1, 0.00, 26.000, 26.500, 1356.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1326, 2, '22 ', 1, 0.00, 26.000, 26.500, 2676.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1327, 2, '23 ', 1, 0.00, 26.000, 26.500, 3321.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1328, 2, '24 ', 1, 0.00, 26.000, 26.500, 4011.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1329, 2, '', 1, 0.00, 26.000, 26.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1330, 2, '14 ', 1, 0.00, 26.500, 27.000, 2529.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1331, 2, '15 ', 1, 0.00, 26.500, 27.000, 1562.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1332, 2, '19 ', 1, 0.00, 26.500, 27.000, 2553.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1333, 2, '17 ', 1, 0.00, 26.500, 27.000, 1545.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1334, 2, '18 ', 1, 0.00, 26.500, 27.000, 1032.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1335, 2, '16 ', 1, 0.00, 26.500, 27.000, 1380.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1336, 2, '22 ', 1, 0.00, 26.500, 27.000, 2724.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1337, 2, '23 ', 1, 0.00, 26.500, 27.000, 3381.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1338, 2, '24 ', 1, 0.00, 26.500, 27.000, 4083.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1339, 2, '', 1, 0.00, 26.500, 27.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1340, 2, '14 ', 1, 0.00, 27.000, 27.500, 2574.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1341, 2, '15 ', 1, 0.00, 27.000, 27.500, 1590.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1342, 2, '19 ', 1, 0.00, 27.000, 27.500, 2598.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1343, 2, '17 ', 1, 0.00, 27.000, 27.500, 1572.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1344, 2, '18 ', 1, 0.00, 27.000, 27.500, 1050.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1345, 2, '16 ', 1, 0.00, 27.000, 27.500, 1404.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1346, 2, '22 ', 1, 0.00, 27.000, 27.500, 2772.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1347, 2, '23 ', 1, 0.00, 27.000, 27.500, 3441.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1348, 2, '24 ', 1, 0.00, 27.000, 27.500, 4155.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1349, 2, '', 1, 0.00, 27.000, 27.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1350, 2, '14 ', 1, 0.00, 27.500, 28.000, 2619.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1351, 2, '15 ', 1, 0.00, 27.500, 28.000, 1617.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1352, 2, '19 ', 1, 0.00, 27.500, 28.000, 2643.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1353, 2, '17 ', 1, 0.00, 27.500, 28.000, 1599.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1354, 2, '18 ', 1, 0.00, 27.500, 28.000, 1068.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1355, 2, '16 ', 1, 0.00, 27.500, 28.000, 1428.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1356, 2, '22 ', 1, 0.00, 27.500, 28.000, 2820.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1357, 2, '23 ', 1, 0.00, 27.500, 28.000, 3501.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1358, 2, '24 ', 1, 0.00, 27.500, 28.000, 4227.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1359, 2, '', 1, 0.00, 27.500, 28.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1360, 2, '14 ', 1, 0.00, 28.000, 28.500, 2664.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1361, 2, '15 ', 1, 0.00, 28.000, 28.500, 1645.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1362, 2, '19 ', 1, 0.00, 28.000, 28.500, 2688.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1363, 2, '17 ', 1, 0.00, 28.000, 28.500, 1626.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1364, 2, '18 ', 1, 0.00, 28.000, 28.500, 1086.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1365, 2, '16 ', 1, 0.00, 28.000, 28.500, 1452.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1366, 2, '22 ', 1, 0.00, 28.000, 28.500, 2868.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1367, 2, '23 ', 1, 0.00, 28.000, 28.500, 3561.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1368, 2, '24 ', 1, 0.00, 28.000, 28.500, 4299.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1369, 2, '', 1, 0.00, 28.000, 28.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1370, 2, '14 ', 1, 0.00, 28.500, 29.000, 2709.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1371, 2, '15 ', 1, 0.00, 28.500, 29.000, 1672.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1372, 2, '19 ', 1, 0.00, 28.500, 29.000, 2733.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1373, 2, '17 ', 1, 0.00, 28.500, 29.000, 1653.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1374, 2, '18 ', 1, 0.00, 28.500, 29.000, 1104.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1375, 2, '16 ', 1, 0.00, 28.500, 29.000, 1476.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1376, 2, '22 ', 1, 0.00, 28.500, 29.000, 2916.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1377, 2, '23 ', 1, 0.00, 28.500, 29.000, 3621.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1378, 2, '24 ', 1, 0.00, 28.500, 29.000, 4371.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1379, 2, '', 1, 0.00, 28.500, 29.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1380, 2, '14 ', 1, 0.00, 29.000, 29.500, 2754.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1381, 2, '15 ', 1, 0.00, 29.000, 29.500, 1700.000, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1382, 2, '19 ', 1, 0.00, 29.000, 29.500, 2778.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1383, 2, '17 ', 1, 0.00, 29.000, 29.500, 1680.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1384, 2, '18 ', 1, 0.00, 29.000, 29.500, 1122.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1385, 2, '16 ', 1, 0.00, 29.000, 29.500, 1500.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1386, 2, '22 ', 1, 0.00, 29.000, 29.500, 2964.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1387, 2, '23 ', 1, 0.00, 29.000, 29.500, 3681.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1388, 2, '24 ', 1, 0.00, 29.000, 29.500, 4443.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1389, 2, '', 1, 0.00, 29.000, 29.500, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1390, 2, '14 ', 1, 0.00, 29.500, 30.000, 2799.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1391, 2, '15 ', 1, 0.00, 29.500, 30.000, 1727.500, '2011-07-26 21:59:27', '2011-07-26 21:59:27', 1),
(1392, 2, '19 ', 1, 0.00, 29.500, 30.000, 2823.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1393, 2, '17 ', 1, 0.00, 29.500, 30.000, 1707.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1394, 2, '18 ', 1, 0.00, 29.500, 30.000, 1140.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1395, 2, '16 ', 1, 0.00, 29.500, 30.000, 1524.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1396, 2, '22 ', 1, 0.00, 29.500, 30.000, 3012.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1397, 2, '23 ', 1, 0.00, 29.500, 30.000, 3741.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1398, 2, '24 ', 1, 0.00, 29.500, 30.000, 4515.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1399, 2, '', 1, 0.00, 29.500, 30.000, 0.000, '2011-05-29 17:39:54', '2011-05-29 17:39:54', 1),
(1400, 3, '8', 1, 0.00, 0.000, 0.500, 133.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1401, 3, '6', 1, 0.00, 0.000, 0.500, 131.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1402, 3, '9', 1, 0.00, 0.000, 0.500, 166.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1403, 3, '4', 1, 0.00, 0.000, 0.500, 80.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1404, 3, '5', 1, 0.00, 0.000, 0.500, 106.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1405, 3, '10', 1, 0.00, 0.000, 0.500, 166.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1406, 3, '7', 1, 0.00, 0.000, 0.500, 211.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1407, 3, '11', 1, 0.00, 0.000, 0.500, 204.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1408, 3, '13', 1, 0.00, 0.000, 0.500, 269.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1409, 3, '8', 1, 0.00, 0.500, 1.000, 153.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1410, 3, '6', 1, 0.00, 0.500, 1.000, 155.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1411, 3, '9', 1, 0.00, 0.500, 1.000, 196.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1412, 3, '4', 1, 0.00, 0.500, 1.000, 94.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1413, 3, '5', 1, 0.00, 0.500, 1.000, 126.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1414, 3, '10', 1, 0.00, 0.500, 1.000, 199.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1415, 3, '7', 1, 0.00, 0.500, 1.000, 239.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1416, 3, '11', 1, 0.00, 0.500, 1.000, 239.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1417, 3, '13', 1, 0.00, 0.500, 1.000, 343.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1418, 3, '8', 1, 0.00, 1.000, 1.500, 175.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1419, 3, '6', 1, 0.00, 1.000, 1.500, 178.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1420, 3, '9', 1, 0.00, 1.000, 1.500, 226.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1421, 3, '4', 1, 0.00, 1.000, 1.500, 109.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1422, 3, '5', 1, 0.00, 1.000, 1.500, 146.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1423, 3, '10', 1, 0.00, 1.000, 1.500, 228.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1424, 3, '7', 1, 0.00, 1.000, 1.500, 267.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1425, 3, '11', 1, 0.00, 1.000, 1.500, 273.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1426, 3, '13', 1, 0.00, 1.000, 1.500, 418.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1427, 3, '8', 1, 0.00, 1.500, 2.000, 196.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1428, 3, '6', 1, 0.00, 1.500, 2.000, 202.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1429, 3, '9', 1, 0.00, 1.500, 2.000, 256.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1430, 3, '4', 1, 0.00, 1.500, 2.000, 123.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1431, 3, '5', 1, 0.00, 1.500, 2.000, 166.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1432, 3, '10', 1, 0.00, 1.500, 2.000, 257.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1433, 3, '7', 1, 0.00, 1.500, 2.000, 296.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1434, 3, '11', 1, 0.00, 1.500, 2.000, 308.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1435, 3, '13', 1, 0.00, 1.500, 2.000, 492.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1436, 3, '8', 1, 0.00, 2.000, 2.500, 218.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1437, 3, '6', 1, 0.00, 2.000, 2.500, 227.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1438, 3, '9', 1, 0.00, 2.000, 2.500, 287.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1439, 3, '4', 1, 0.00, 2.000, 2.500, 137.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1440, 3, '5', 1, 0.00, 2.000, 2.500, 185.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1441, 3, '10', 1, 0.00, 2.000, 2.500, 290.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1442, 3, '7', 1, 0.00, 2.000, 2.500, 324.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1443, 3, '11', 1, 0.00, 2.000, 2.500, 342.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1444, 3, '13', 1, 0.00, 2.000, 2.500, 567.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1445, 3, '8', 1, 0.00, 2.500, 3.000, 240.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1446, 3, '6', 1, 0.00, 2.500, 3.000, 250.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1447, 3, '9', 1, 0.00, 2.500, 3.000, 309.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1448, 3, '4', 1, 0.00, 2.500, 3.000, 152.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1449, 3, '5', 1, 0.00, 2.500, 3.000, 206.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1450, 3, '10', 1, 0.00, 2.500, 3.000, 319.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1451, 3, '7', 1, 0.00, 2.500, 3.000, 352.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1452, 3, '11', 1, 0.00, 2.500, 3.000, 377.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1453, 3, '13', 1, 0.00, 2.500, 3.000, 641.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1454, 3, '8', 1, 0.00, 3.000, 3.500, 261.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1455, 3, '6', 1, 0.00, 3.000, 3.500, 274.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1456, 3, '9', 1, 0.00, 3.000, 3.500, 331.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1457, 3, '4', 1, 0.00, 3.000, 3.500, 166.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1458, 3, '5', 1, 0.00, 3.000, 3.500, 225.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1459, 3, '10', 1, 0.00, 3.000, 3.500, 340.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1460, 3, '7', 1, 0.00, 3.000, 3.500, 380.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1461, 3, '11', 1, 0.00, 3.000, 3.500, 411.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1462, 3, '13', 1, 0.00, 3.000, 3.500, 715.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1463, 3, '8', 1, 0.00, 3.500, 4.000, 283.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1464, 3, '6', 1, 0.00, 3.500, 4.000, 298.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1465, 3, '9', 1, 0.00, 3.500, 4.000, 353.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1466, 3, '4', 1, 0.00, 3.500, 4.000, 180.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1467, 3, '5', 1, 0.00, 3.500, 4.000, 245.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1468, 3, '10', 1, 0.00, 3.500, 4.000, 360.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1469, 3, '7', 1, 0.00, 3.500, 4.000, 409.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1470, 3, '11', 1, 0.00, 3.500, 4.000, 446.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1471, 3, '13', 1, 0.00, 3.500, 4.000, 789.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1472, 3, '8', 1, 0.00, 4.000, 4.500, 305.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1473, 3, '6', 1, 0.00, 4.000, 4.500, 322.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1474, 3, '9', 1, 0.00, 4.000, 4.500, 375.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1475, 3, '4', 1, 0.00, 4.000, 4.500, 194.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1476, 3, '5', 1, 0.00, 4.000, 4.500, 264.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1477, 3, '10', 1, 0.00, 4.000, 4.500, 381.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1478, 3, '7', 1, 0.00, 4.000, 4.500, 437.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1479, 3, '11', 1, 0.00, 4.000, 4.500, 479.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1480, 3, '13', 1, 0.00, 4.000, 4.500, 863.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1481, 3, '8', 1, 0.00, 4.500, 5.000, 327.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1482, 3, '6', 1, 0.00, 4.500, 5.000, 347.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1483, 3, '9', 1, 0.00, 4.500, 5.000, 398.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1484, 3, '4', 1, 0.00, 4.500, 5.000, 209.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1485, 3, '5', 1, 0.00, 4.500, 5.000, 285.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1486, 3, '10', 1, 0.00, 4.500, 5.000, 401.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1487, 3, '7', 1, 0.00, 4.500, 5.000, 466.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1488, 3, '11', 1, 0.00, 4.500, 5.000, 513.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1489, 3, '13', 1, 0.00, 4.500, 5.000, 936.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1490, 3, '8', 1, 0.00, 5.000, 5.500, 345.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1491, 3, '6', 1, 0.00, 5.000, 5.500, 370.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1492, 3, '9', 1, 0.00, 5.000, 5.500, 416.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1493, 3, '4', 1, 0.00, 5.000, 5.500, 217.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1494, 3, '5', 1, 0.00, 5.000, 5.500, 304.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1495, 3, '10', 1, 0.00, 5.000, 5.500, 419.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1496, 3, '7', 1, 0.00, 5.000, 5.500, 489.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1497, 3, '11', 1, 0.00, 5.000, 5.500, 544.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1498, 3, '13', 1, 0.00, 5.000, 5.500, 988.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1499, 3, '8', 1, 0.00, 5.500, 6.000, 364.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1500, 3, '6', 1, 0.00, 5.500, 6.000, 395.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1501, 3, '9', 1, 0.00, 5.500, 6.000, 435.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1502, 3, '4', 1, 0.00, 5.500, 6.000, 224.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1503, 3, '5', 1, 0.00, 5.500, 6.000, 324.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1504, 3, '10', 1, 0.00, 5.500, 6.000, 437.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1505, 3, '7', 1, 0.00, 5.500, 6.000, 512.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1506, 3, '11', 1, 0.00, 5.500, 6.000, 574.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1507, 3, '13', 1, 0.00, 5.500, 6.000, 1040.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1508, 3, '8', 1, 0.00, 6.000, 6.500, 382.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1509, 3, '6', 1, 0.00, 6.000, 6.500, 419.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1510, 3, '9', 1, 0.00, 6.000, 6.500, 453.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1511, 3, '4', 1, 0.00, 6.000, 6.500, 231.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1512, 3, '5', 1, 0.00, 6.000, 6.500, 344.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1513, 3, '10', 1, 0.00, 6.000, 6.500, 455.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1514, 3, '7', 1, 0.00, 6.000, 6.500, 536.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1515, 3, '11', 1, 0.00, 6.000, 6.500, 604.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1516, 3, '13', 1, 0.00, 6.000, 6.500, 1092.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1517, 3, '8', 1, 0.00, 6.500, 7.000, 400.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1518, 3, '6', 1, 0.00, 6.500, 7.000, 444.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1519, 3, '9', 1, 0.00, 6.500, 7.000, 472.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1520, 3, '4', 1, 0.00, 6.500, 7.000, 239.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1521, 3, '5', 1, 0.00, 6.500, 7.000, 365.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1522, 3, '10', 1, 0.00, 6.500, 7.000, 474.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1523, 3, '7', 1, 0.00, 6.500, 7.000, 559.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1524, 3, '11', 1, 0.00, 6.500, 7.000, 634.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1525, 3, '13', 1, 0.00, 6.500, 7.000, 1144.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1526, 3, '8', 1, 0.00, 7.000, 7.500, 419.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1527, 3, '6', 1, 0.00, 7.000, 7.500, 468.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1528, 3, '9', 1, 0.00, 7.000, 7.500, 491.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1529, 3, '4', 1, 0.00, 7.000, 7.500, 246.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1530, 3, '5', 1, 0.00, 7.000, 7.500, 384.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1531, 3, '10', 1, 0.00, 7.000, 7.500, 492.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1532, 3, '7', 1, 0.00, 7.000, 7.500, 582.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1533, 3, '11', 1, 0.00, 7.000, 7.500, 664.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1534, 3, '13', 1, 0.00, 7.000, 7.500, 1195.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1535, 3, '8', 1, 0.00, 7.500, 8.000, 438.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1536, 3, '6', 1, 0.00, 7.500, 8.000, 492.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1537, 3, '9', 1, 0.00, 7.500, 8.000, 508.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1538, 3, '4', 1, 0.00, 7.500, 8.000, 255.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1539, 3, '5', 1, 0.00, 7.500, 8.000, 405.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1540, 3, '10', 1, 0.00, 7.500, 8.000, 512.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1541, 3, '7', 1, 0.00, 7.500, 8.000, 606.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1542, 3, '11', 1, 0.00, 7.500, 8.000, 689.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1543, 3, '13', 1, 0.00, 7.500, 8.000, 1247.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1544, 3, '8', 1, 0.00, 8.000, 8.500, 457.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1545, 3, '6', 1, 0.00, 8.000, 8.500, 516.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1546, 3, '9', 1, 0.00, 8.000, 8.500, 526.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1547, 3, '4', 1, 0.00, 8.000, 8.500, 263.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1548, 3, '5', 1, 0.00, 8.000, 8.500, 424.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1549, 3, '10', 1, 0.00, 8.000, 8.500, 533.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1550, 3, '7', 1, 0.00, 8.000, 8.500, 629.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1551, 3, '11', 1, 0.00, 8.000, 8.500, 718.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1552, 3, '13', 1, 0.00, 8.000, 8.500, 1299.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1553, 3, '8', 1, 0.00, 8.500, 9.000, 476.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1554, 3, '6', 1, 0.00, 8.500, 9.000, 540.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1555, 3, '9', 1, 0.00, 8.500, 9.000, 544.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1556, 3, '4', 1, 0.00, 8.500, 9.000, 271.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1557, 3, '5', 1, 0.00, 8.500, 9.000, 444.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1558, 3, '10', 1, 0.00, 8.500, 9.000, 552.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1559, 3, '7', 1, 0.00, 8.500, 9.000, 653.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1560, 3, '11', 1, 0.00, 8.500, 9.000, 748.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1561, 3, '13', 1, 0.00, 8.500, 9.000, 1351.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1562, 3, '8', 1, 0.00, 9.000, 9.500, 495.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1563, 3, '6', 1, 0.00, 9.000, 9.500, 564.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1564, 3, '9', 1, 0.00, 9.000, 9.500, 563.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1565, 3, '4', 1, 0.00, 9.000, 9.500, 279.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1566, 3, '5', 1, 0.00, 9.000, 9.500, 464.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1567, 3, '10', 1, 0.00, 9.000, 9.500, 573.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1568, 3, '7', 1, 0.00, 9.000, 9.500, 676.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1569, 3, '11', 1, 0.00, 9.000, 9.500, 777.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1570, 3, '13', 1, 0.00, 9.000, 9.500, 1403.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1571, 3, '8', 1, 0.00, 9.500, 10.000, 514.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1572, 3, '6', 1, 0.00, 9.500, 10.000, 588.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1573, 3, '9', 1, 0.00, 9.500, 10.000, 581.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1574, 3, '4', 1, 0.00, 9.500, 10.000, 287.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1575, 3, '5', 1, 0.00, 9.500, 10.000, 483.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1576, 3, '10', 1, 0.00, 9.500, 10.000, 593.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1577, 3, '7', 1, 0.00, 9.500, 10.000, 699.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1578, 3, '11', 1, 0.00, 9.500, 10.000, 806.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1579, 3, '13', 1, 0.00, 9.500, 10.000, 1454.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1580, 3, '8', 1, 0.00, 10.000, 10.500, 530.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1581, 3, '6', 1, 0.00, 10.000, 10.500, 608.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1582, 3, '9', 1, 0.00, 10.000, 10.500, 599.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1583, 3, '4', 1, 0.00, 10.000, 10.500, 297.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1584, 3, '5', 1, 0.00, 10.000, 10.500, 500.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1585, 3, '10', 1, 0.00, 10.000, 10.500, 612.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1586, 3, '7', 1, 0.00, 10.000, 10.500, 718.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1587, 3, '11', 1, 0.00, 10.000, 10.500, 829.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1588, 3, '13', 1, 0.00, 10.000, 10.500, 1506.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1589, 3, '8', 1, 0.00, 10.500, 11.000, 546.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1590, 3, '6', 1, 0.00, 10.500, 11.000, 628.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1);
INSERT INTO `shipping_freightpricevalue` (`pv_id`, `pr_id`, `area_id`, `wk_code`, `fv_unitweight`, `weight_start`, `weight_end`, `price_value`, `created`, `modified`, `status`) VALUES
(1591, 3, '9', 1, 0.00, 10.500, 11.000, 617.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1592, 3, '4', 1, 0.00, 10.500, 11.000, 308.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1593, 3, '5', 1, 0.00, 10.500, 11.000, 516.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1594, 3, '10', 1, 0.00, 10.500, 11.000, 630.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1595, 3, '7', 1, 0.00, 10.500, 11.000, 737.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1596, 3, '11', 1, 0.00, 10.500, 11.000, 851.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1597, 3, '13', 1, 0.00, 10.500, 11.000, 1558.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1598, 3, '8', 1, 0.00, 11.000, 11.500, 562.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1599, 3, '6', 1, 0.00, 11.000, 11.500, 649.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1600, 3, '9', 1, 0.00, 11.000, 11.500, 636.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1601, 3, '4', 1, 0.00, 11.000, 11.500, 318.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1602, 3, '5', 1, 0.00, 11.000, 11.500, 533.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1603, 3, '10', 1, 0.00, 11.000, 11.500, 648.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1604, 3, '7', 1, 0.00, 11.000, 11.500, 756.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1605, 3, '11', 1, 0.00, 11.000, 11.500, 874.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1606, 3, '13', 1, 0.00, 11.000, 11.500, 1610.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1607, 3, '8', 1, 0.00, 11.500, 12.000, 578.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1608, 3, '6', 1, 0.00, 11.500, 12.000, 669.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1609, 3, '9', 1, 0.00, 11.500, 12.000, 655.100, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1610, 3, '4', 1, 0.00, 11.500, 12.000, 328.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1611, 3, '5', 1, 0.00, 11.500, 12.000, 549.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1612, 3, '10', 1, 0.00, 11.500, 12.000, 667.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1613, 3, '7', 1, 0.00, 11.500, 12.000, 775.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1614, 3, '11', 1, 0.00, 11.500, 12.000, 896.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1615, 3, '13', 1, 0.00, 11.500, 12.000, 1661.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1616, 3, '8', 1, 0.00, 12.000, 12.500, 593.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1617, 3, '6', 1, 0.00, 12.000, 12.500, 690.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1618, 3, '9', 1, 0.00, 12.000, 12.500, 673.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1619, 3, '4', 1, 0.00, 12.000, 12.500, 339.300, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1620, 3, '5', 1, 0.00, 12.000, 12.500, 565.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1621, 3, '10', 1, 0.00, 12.000, 12.500, 685.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1622, 3, '7', 1, 0.00, 12.000, 12.500, 794.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1623, 3, '11', 1, 0.00, 12.000, 12.500, 919.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1624, 3, '13', 1, 0.00, 12.000, 12.500, 1713.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1625, 3, '8', 1, 0.00, 12.500, 13.000, 610.700, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1626, 3, '6', 1, 0.00, 12.500, 13.000, 711.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1627, 3, '9', 1, 0.00, 12.500, 13.000, 692.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1628, 3, '4', 1, 0.00, 12.500, 13.000, 350.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1629, 3, '5', 1, 0.00, 12.500, 13.000, 582.500, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1630, 3, '10', 1, 0.00, 12.500, 13.000, 703.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1631, 3, '7', 1, 0.00, 12.500, 13.000, 817.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1632, 3, '11', 1, 0.00, 12.500, 13.000, 942.000, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1633, 3, '13', 1, 0.00, 12.500, 13.000, 1754.800, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1634, 3, '8', 1, 0.00, 13.000, 13.500, 626.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1635, 3, '6', 1, 0.00, 13.000, 13.500, 731.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1636, 3, '9', 1, 0.00, 13.000, 13.500, 710.600, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1637, 3, '4', 1, 0.00, 13.000, 13.500, 360.200, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1638, 3, '5', 1, 0.00, 13.000, 13.500, 598.900, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1639, 3, '10', 1, 0.00, 13.000, 13.500, 722.400, '2011-05-29 17:39:58', '2011-05-29 17:39:58', 1),
(1640, 3, '7', 1, 0.00, 13.000, 13.500, 840.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1641, 3, '11', 1, 0.00, 13.000, 13.500, 964.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1642, 3, '13', 1, 0.00, 13.000, 13.500, 1795.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1643, 3, '8', 1, 0.00, 13.500, 14.000, 642.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1644, 3, '6', 1, 0.00, 13.500, 14.000, 751.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1645, 3, '9', 1, 0.00, 13.500, 14.000, 728.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1646, 3, '4', 1, 0.00, 13.500, 14.000, 371.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1647, 3, '5', 1, 0.00, 13.500, 14.000, 615.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1648, 3, '10', 1, 0.00, 13.500, 14.000, 740.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1649, 3, '7', 1, 0.00, 13.500, 14.000, 863.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1650, 3, '11', 1, 0.00, 13.500, 14.000, 987.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1651, 3, '13', 1, 0.00, 13.500, 14.000, 1836.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1652, 3, '8', 1, 0.00, 14.000, 14.500, 658.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1653, 3, '6', 1, 0.00, 14.000, 14.500, 772.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1654, 3, '9', 1, 0.00, 14.000, 14.500, 747.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1655, 3, '4', 1, 0.00, 14.000, 14.500, 381.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1656, 3, '5', 1, 0.00, 14.000, 14.500, 631.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1657, 3, '10', 1, 0.00, 14.000, 14.500, 758.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1658, 3, '7', 1, 0.00, 14.000, 14.500, 886.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1659, 3, '11', 1, 0.00, 14.000, 14.500, 1010.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1660, 3, '13', 1, 0.00, 14.000, 14.500, 1878.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1661, 3, '8', 1, 0.00, 14.500, 15.000, 674.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1662, 3, '6', 1, 0.00, 14.500, 15.000, 792.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1663, 3, '9', 1, 0.00, 14.500, 15.000, 766.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1664, 3, '4', 1, 0.00, 14.500, 15.000, 392.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1665, 3, '5', 1, 0.00, 14.500, 15.000, 647.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1666, 3, '10', 1, 0.00, 14.500, 15.000, 776.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1667, 3, '7', 1, 0.00, 14.500, 15.000, 909.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1668, 3, '11', 1, 0.00, 14.500, 15.000, 1032.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1669, 3, '13', 1, 0.00, 14.500, 15.000, 1919.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1670, 3, '8', 1, 0.00, 15.000, 15.500, 691.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1671, 3, '6', 1, 0.00, 15.000, 15.500, 810.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1672, 3, '9', 1, 0.00, 15.000, 15.500, 777.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1673, 3, '4', 1, 0.00, 15.000, 15.500, 401.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1674, 3, '5', 1, 0.00, 15.000, 15.500, 662.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1675, 3, '10', 1, 0.00, 15.000, 15.500, 791.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1676, 3, '7', 1, 0.00, 15.000, 15.500, 931.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1677, 3, '11', 1, 0.00, 15.000, 15.500, 1051.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1678, 3, '13', 1, 0.00, 15.000, 15.500, 1960.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1679, 3, '8', 1, 0.00, 15.500, 16.000, 709.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1680, 3, '6', 1, 0.00, 15.500, 16.000, 827.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1681, 3, '9', 1, 0.00, 15.500, 16.000, 789.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1682, 3, '4', 1, 0.00, 15.500, 16.000, 410.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1683, 3, '5', 1, 0.00, 15.500, 16.000, 676.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1684, 3, '10', 1, 0.00, 15.500, 16.000, 807.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1685, 3, '7', 1, 0.00, 15.500, 16.000, 955.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1686, 3, '11', 1, 0.00, 15.500, 16.000, 1070.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1687, 3, '13', 1, 0.00, 15.500, 16.000, 2002.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1688, 3, '8', 1, 0.00, 16.000, 16.500, 726.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1689, 3, '6', 1, 0.00, 16.000, 16.500, 844.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1690, 3, '9', 1, 0.00, 16.000, 16.500, 800.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1691, 3, '4', 1, 0.00, 16.000, 16.500, 419.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1692, 3, '5', 1, 0.00, 16.000, 16.500, 689.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1693, 3, '10', 1, 0.00, 16.000, 16.500, 823.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1694, 3, '7', 1, 0.00, 16.000, 16.500, 977.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1695, 3, '11', 1, 0.00, 16.000, 16.500, 1090.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1696, 3, '13', 1, 0.00, 16.000, 16.500, 2043.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1697, 3, '8', 1, 0.00, 16.500, 17.000, 743.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1698, 3, '6', 1, 0.00, 16.500, 17.000, 862.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1699, 3, '9', 1, 0.00, 16.500, 17.000, 812.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1700, 3, '4', 1, 0.00, 16.500, 17.000, 428.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1701, 3, '5', 1, 0.00, 16.500, 17.000, 703.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1702, 3, '10', 1, 0.00, 16.500, 17.000, 838.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1703, 3, '7', 1, 0.00, 16.500, 17.000, 1000.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1704, 3, '11', 1, 0.00, 16.500, 17.000, 1109.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1705, 3, '13', 1, 0.00, 16.500, 17.000, 2085.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1706, 3, '8', 1, 0.00, 17.000, 17.500, 760.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1707, 3, '6', 1, 0.00, 17.000, 17.500, 879.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1708, 3, '9', 1, 0.00, 17.000, 17.500, 823.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1709, 3, '4', 1, 0.00, 17.000, 17.500, 437.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1710, 3, '5', 1, 0.00, 17.000, 17.500, 717.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1711, 3, '10', 1, 0.00, 17.000, 17.500, 854.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1712, 3, '7', 1, 0.00, 17.000, 17.500, 1023.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1713, 3, '11', 1, 0.00, 17.000, 17.500, 1128.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1714, 3, '13', 1, 0.00, 17.000, 17.500, 2126.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1715, 3, '8', 1, 0.00, 17.500, 18.000, 773.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1716, 3, '6', 1, 0.00, 17.500, 18.000, 897.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1717, 3, '9', 1, 0.00, 17.500, 18.000, 835.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1718, 3, '4', 1, 0.00, 17.500, 18.000, 442.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1719, 3, '5', 1, 0.00, 17.500, 18.000, 731.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1720, 3, '10', 1, 0.00, 17.500, 18.000, 862.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1721, 3, '7', 1, 0.00, 17.500, 18.000, 1024.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1722, 3, '11', 1, 0.00, 17.500, 18.000, 1132.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1723, 3, '13', 1, 0.00, 17.500, 18.000, 2167.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1724, 3, '8', 1, 0.00, 18.000, 18.500, 787.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1725, 3, '6', 1, 0.00, 18.000, 18.500, 914.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1726, 3, '9', 1, 0.00, 18.000, 18.500, 846.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1727, 3, '4', 1, 0.00, 18.000, 18.500, 447.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1728, 3, '5', 1, 0.00, 18.000, 18.500, 744.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1729, 3, '10', 1, 0.00, 18.000, 18.500, 871.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1730, 3, '7', 1, 0.00, 18.000, 18.500, 1026.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1731, 3, '11', 1, 0.00, 18.000, 18.500, 1134.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1732, 3, '13', 1, 0.00, 18.000, 18.500, 2208.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1733, 3, '8', 1, 0.00, 18.500, 19.000, 799.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1734, 3, '6', 1, 0.00, 18.500, 19.000, 932.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1735, 3, '9', 1, 0.00, 18.500, 19.000, 858.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1736, 3, '4', 1, 0.00, 18.500, 19.000, 451.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1737, 3, '5', 1, 0.00, 18.500, 19.000, 750.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1738, 3, '10', 1, 0.00, 18.500, 19.000, 878.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1739, 3, '7', 1, 0.00, 18.500, 19.000, 1030.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1740, 3, '11', 1, 0.00, 18.500, 19.000, 1137.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1741, 3, '13', 1, 0.00, 18.500, 19.000, 2250.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1742, 3, '8', 1, 0.00, 19.000, 19.500, 813.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1743, 3, '6', 1, 0.00, 19.000, 19.500, 937.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1744, 3, '9', 1, 0.00, 19.000, 19.500, 869.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1745, 3, '4', 1, 0.00, 19.000, 19.500, 454.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1746, 3, '5', 1, 0.00, 19.000, 19.500, 756.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1747, 3, '10', 1, 0.00, 19.000, 19.500, 887.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1748, 3, '7', 1, 0.00, 19.000, 19.500, 1035.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1749, 3, '11', 1, 0.00, 19.000, 19.500, 1140.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1750, 3, '13', 1, 0.00, 19.000, 19.500, 2291.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1751, 3, '8', 1, 0.00, 19.500, 20.000, 819.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1752, 3, '6', 1, 0.00, 19.500, 20.000, 942.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1753, 3, '9', 1, 0.00, 19.500, 20.000, 880.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1754, 3, '4', 1, 0.00, 19.500, 20.000, 456.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1755, 3, '5', 1, 0.00, 19.500, 20.000, 759.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1756, 3, '10', 1, 0.00, 19.500, 20.000, 893.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1757, 3, '7', 1, 0.00, 19.500, 20.000, 1038.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1758, 3, '11', 1, 0.00, 19.500, 20.000, 1143.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1759, 3, '13', 1, 0.00, 19.500, 20.000, 2332.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1760, 3, '8', 2, 1.00, 20.000, 44.000, 37.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1761, 3, '6', 2, 1.00, 20.000, 44.000, 43.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1762, 3, '9', 2, 1.00, 20.000, 44.000, 40.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1763, 3, '4', 2, 1.00, 20.000, 44.000, 20.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1764, 3, '5', 2, 1.00, 20.000, 44.000, 34.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1765, 3, '10', 2, 1.00, 20.000, 44.000, 40.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1766, 3, '7', 2, 1.00, 20.000, 44.000, 48.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1767, 3, '11', 2, 1.00, 20.000, 44.000, 52.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1768, 3, '13', 2, 1.00, 20.000, 44.000, 108.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1769, 3, '8', 2, 1.00, 44.000, 70.000, 34.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1770, 3, '6', 2, 1.00, 44.000, 70.000, 37.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1771, 3, '9', 2, 1.00, 44.000, 70.000, 35.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1772, 3, '4', 2, 1.00, 44.000, 70.000, 18.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1773, 3, '5', 2, 1.00, 44.000, 70.000, 30.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1774, 3, '10', 2, 1.00, 44.000, 70.000, 35.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1775, 3, '7', 2, 1.00, 44.000, 70.000, 41.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1776, 3, '11', 2, 1.00, 44.000, 70.000, 51.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1777, 3, '13', 2, 1.00, 44.000, 70.000, 101.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1778, 3, '8', 2, 1.00, 70.000, 99.000, 31.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1779, 3, '6', 2, 1.00, 70.000, 99.000, 36.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1780, 3, '9', 2, 1.00, 70.000, 99.000, 31.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1781, 3, '4', 2, 1.00, 70.000, 99.000, 17.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1782, 3, '5', 2, 1.00, 70.000, 99.000, 28.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1783, 3, '10', 2, 1.00, 70.000, 99.000, 32.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1784, 3, '7', 2, 1.00, 70.000, 99.000, 38.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1785, 3, '11', 2, 1.00, 70.000, 99.000, 49.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1786, 3, '13', 2, 1.00, 70.000, 99.000, 88.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1787, 3, '8', 2, 1.00, 99.000, 299.000, 30.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1788, 3, '6', 2, 1.00, 99.000, 299.000, 36.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1789, 3, '9', 2, 1.00, 99.000, 299.000, 31.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1790, 3, '4', 2, 1.00, 99.000, 299.000, 17.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1791, 3, '5', 2, 1.00, 99.000, 299.000, 28.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1792, 3, '10', 2, 1.00, 99.000, 299.000, 31.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1793, 3, '7', 2, 1.00, 99.000, 299.000, 38.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1794, 3, '11', 2, 1.00, 99.000, 299.000, 49.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1795, 3, '13', 2, 1.00, 99.000, 299.000, 88.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1796, 3, '8', 2, 1.00, 299.000, 499.000, 30.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1797, 3, '6', 2, 1.00, 299.000, 499.000, 36.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1798, 3, '9', 2, 1.00, 299.000, 499.000, 31.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1799, 3, '4', 2, 1.00, 299.000, 499.000, 16.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1800, 3, '5', 2, 1.00, 299.000, 499.000, 28.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1801, 3, '10', 2, 1.00, 299.000, 499.000, 31.500, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1802, 3, '7', 2, 1.00, 299.000, 499.000, 38.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1803, 3, '11', 2, 1.00, 299.000, 499.000, 48.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1804, 3, '13', 2, 1.00, 299.000, 499.000, 86.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1805, 3, '8', 2, 1.00, 499.000, 999.000, 29.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1806, 3, '6', 2, 1.00, 499.000, 999.000, 36.000, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1807, 3, '9', 2, 1.00, 499.000, 999.000, 30.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1808, 3, '4', 2, 1.00, 499.000, 999.000, 16.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1809, 3, '5', 2, 1.00, 499.000, 999.000, 27.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1810, 3, '10', 2, 1.00, 499.000, 999.000, 31.100, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1811, 3, '7', 2, 1.00, 499.000, 999.000, 37.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1812, 3, '11', 2, 1.00, 499.000, 999.000, 47.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1813, 3, '13', 2, 1.00, 499.000, 999.000, 86.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1814, 3, '8', 2, 1.00, 999.000, 10000.000, 29.200, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1815, 3, '6', 2, 1.00, 999.000, 10000.000, 35.600, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1816, 3, '9', 2, 1.00, 999.000, 10000.000, 30.300, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1817, 3, '4', 2, 1.00, 999.000, 10000.000, 15.900, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1818, 3, '5', 2, 1.00, 999.000, 10000.000, 27.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1819, 3, '10', 2, 1.00, 999.000, 10000.000, 30.700, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1820, 3, '7', 2, 1.00, 999.000, 10000.000, 37.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1821, 3, '11', 2, 1.00, 999.000, 10000.000, 47.400, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1),
(1822, 3, '13', 2, 1.00, 999.000, 10000.000, 85.800, '2011-05-29 17:39:59', '2011-05-29 17:39:59', 1);
-- --------------------------------------------------------
--
-- 表的结构 `shipping_incidentalprice`
--
CREATE TABLE IF NOT EXISTS `shipping_incidentalprice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pr_id` int(11) NOT NULL,
`fk_code` int(11) NOT NULL,
`ut_code` int(11) NOT NULL,
`pricevalue` decimal(9,3) NOT NULL,
`max_value` decimal(9,3) NOT NULL,
`min_value` decimal(9,3) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` int(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- 转存表中的数据 `shipping_incidentalprice`
--
INSERT INTO `shipping_incidentalprice` (`id`, `pr_id`, `fk_code`, `ut_code`, `pricevalue`, `max_value`, `min_value`, `created`, `modified`, `status`) VALUES
(2, 3, 1, 1, 23.000, 999999.999, 1.000, '2011-09-06 01:14:09', '2011-09-06 01:14:09', 1),
(3, 1, 1, 1, 24.000, 999999.999, 1.000, '2011-08-31 19:16:30', '2011-08-31 19:16:30', 1),
(4, 2, 1, 1, 12.000, 42.000, 0.000, '2012-07-17 01:20:10', '2012-07-17 01:20:10', 0);
-- --------------------------------------------------------
--
-- 表的结构 `shipping_pricerule`
--
CREATE TABLE IF NOT EXISTS `shipping_pricerule` (
`pr_id` int(10) NOT NULL AUTO_INCREMENT,
`pk_code` varchar(15) NOT NULL,
`pr_name` varchar(50) NOT NULL,
`perc_price` decimal(9,2) DEFAULT NULL,
`incr_price` decimal(9,2) DEFAULT NULL,
`weight_type` int(11) NOT NULL,
`shipping_logo` varchar(255) NOT NULL,
`sort_index` int(11) DEFAULT NULL,
`remark` varchar(256) DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` int(2) NOT NULL,
PRIMARY KEY (`pr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- 转存表中的数据 `shipping_pricerule`
--
INSERT INTO `shipping_pricerule` (`pr_id`, `pk_code`, `pr_name`, `perc_price`, `incr_price`, `weight_type`, `shipping_logo`, `sort_index`, `remark`, `created`, `modified`, `status`) VALUES
(1, 'A0191', '4PX DHL', 100.00, 0.00, 0, '', 1, 'DHL', '2012-06-05 06:54:35', '2012-06-05 06:54:35', 1),
(2, 'A3012', '4PX EMS', 100.00, 0.00, 1, '', 3, 'EMS', '2012-09-19 07:36:00', '2012-07-13 03:07:37', 1),
(3, 'A0161', '4PX UPS', 100.00, 0.00, 0, '', 2, 'UPS', '2012-06-05 06:54:29', '2012-06-05 06:54:29', 1);
-- --------------------------------------------------------
--
-- 表的结构 `specials`
--
CREATE TABLE IF NOT EXISTS `specials` (
`specials_id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL DEFAULT '0',
`specials_new_products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`specials_date_added` datetime DEFAULT NULL,
`specials_last_modified` datetime DEFAULT NULL,
`expires_date` date NOT NULL DEFAULT '0001-01-01',
`date_status_change` datetime DEFAULT NULL,
`status` int(1) NOT NULL DEFAULT '1',
`specials_date_available` date NOT NULL DEFAULT '0001-01-01',
PRIMARY KEY (`specials_id`),
KEY `idx_status_zen` (`status`),
KEY `idx_products_id_zen` (`products_id`),
KEY `idx_date_avail_zen` (`specials_date_available`),
KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `subscribers`
--
CREATE TABLE IF NOT EXISTS `subscribers` (
`subscriber_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) DEFAULT NULL,
`email_address` varchar(96) NOT NULL DEFAULT '',
`email_format` varchar(4) NOT NULL DEFAULT 'TEXT',
`confirmed` varchar(8) DEFAULT NULL,
`subscribed_date` date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`subscriber_id`),
UNIQUE KEY `email_address` (`email_address`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `tax_class`
--
CREATE TABLE IF NOT EXISTS `tax_class` (
`tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
`tax_class_title` varchar(32) NOT NULL DEFAULT '',
`tax_class_description` varchar(255) NOT NULL DEFAULT '',
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `tax_rates`
--
CREATE TABLE IF NOT EXISTS `tax_rates` (
`tax_rates_id` int(11) NOT NULL AUTO_INCREMENT,
`tax_zone_id` int(11) NOT NULL DEFAULT '0',
`tax_class_id` int(11) NOT NULL DEFAULT '0',
`tax_priority` int(5) DEFAULT '1',
`tax_rate` decimal(7,4) NOT NULL DEFAULT '0.0000',
`tax_description` varchar(255) NOT NULL DEFAULT '',
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`tax_rates_id`),
KEY `idx_tax_zone_id_zen` (`tax_zone_id`),
KEY `idx_tax_class_id_zen` (`tax_class_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `template_select`
--
CREATE TABLE IF NOT EXISTS `template_select` (
`template_id` int(11) NOT NULL AUTO_INCREMENT,
`template_dir` varchar(64) NOT NULL DEFAULT '',
`template_language` varchar(64) NOT NULL DEFAULT '0',
PRIMARY KEY (`template_id`),
KEY `idx_tpl_lang_zen` (`template_language`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- 转存表中的数据 `template_select`
--
INSERT INTO `template_select` (`template_id`, `template_dir`, `template_language`) VALUES
(4, 'atopk', '1');
-- --------------------------------------------------------
--
-- 表的结构 `upgrade_exceptions`
--
CREATE TABLE IF NOT EXISTS `upgrade_exceptions` (
`upgrade_exception_id` smallint(5) NOT NULL AUTO_INCREMENT,
`sql_file` varchar(50) DEFAULT NULL,
`reason` varchar(200) DEFAULT NULL,
`errordate` datetime DEFAULT '0001-01-01 00:00:00',
`sqlstatement` text,
PRIMARY KEY (`upgrade_exception_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `whos_online`
--
CREATE TABLE IF NOT EXISTS `whos_online` (
`customer_id` int(11) DEFAULT NULL,
`full_name` varchar(64) NOT NULL DEFAULT '',
`session_id` varchar(128) NOT NULL DEFAULT '',
`ip_address` varchar(20) NOT NULL DEFAULT '',
`time_entry` varchar(14) NOT NULL DEFAULT '',
`time_last_click` varchar(14) NOT NULL DEFAULT '',
`last_page_url` varchar(255) NOT NULL DEFAULT '',
`host_address` text NOT NULL,
`user_agent` varchar(255) NOT NULL DEFAULT '',
KEY `idx_ip_address_zen` (`ip_address`),
KEY `idx_session_id_zen` (`session_id`),
KEY `idx_customer_id_zen` (`customer_id`),
KEY `idx_time_entry_zen` (`time_entry`),
KEY `idx_time_last_click_zen` (`time_last_click`),
KEY `idx_last_page_url_zen` (`last_page_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `whos_online`
--
INSERT INTO `whos_online` (`customer_id`, `full_name`, `session_id`, `ip_address`, `time_entry`, `time_last_click`, `last_page_url`, `host_address`, `user_agent`) VALUES
(0, '&yen;Guest', '4cirm7ckkl92hnlht9c3csb646', '127.0.0.1', '1371568782', '1371568782', '/atopk/index.php?main_page=index', 'localhost', 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.97 Safari/537.22');
-- --------------------------------------------------------
--
-- 表的结构 `wishlists`
--
CREATE TABLE IF NOT EXISTS `wishlists` (
`wishlists_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(125) NOT NULL,
`image` varchar(125) NOT NULL,
`description` text NOT NULL,
`owner_id` int(11) NOT NULL,
`created_on` datetime NOT NULL,
`authkey` varchar(125) DEFAULT NULL,
`access` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`wishlists_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wishlists_products_attributes`
--
CREATE TABLE IF NOT EXISTS `wishlists_products_attributes` (
`wishlists_to_products_id` int(11) unsigned NOT NULL,
`products_attributes` varchar(255) DEFAULT NULL,
UNIQUE KEY `wishlists_to_products_id` (`wishlists_to_products_id`,`products_attributes`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `wishlists_to_customers`
--
CREATE TABLE IF NOT EXISTS `wishlists_to_customers` (
`wishlists_id` int(11) NOT NULL,
`customers_id` int(11) unsigned NOT NULL,
UNIQUE KEY `wishlists_id` (`wishlists_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `wishlists_to_products`
--
CREATE TABLE IF NOT EXISTS `wishlists_to_products` (
`wishlists_to_products_id` int(11) NOT NULL AUTO_INCREMENT,
`wishlists_id` int(11) NOT NULL,
`products_id` int(11) NOT NULL,
`products_price` decimal(15,4) NOT NULL,
`description` text NOT NULL,
`products_qty` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`wishlists_to_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wishlists_to_unregistered_customers`
--
CREATE TABLE IF NOT EXISTS `wishlists_to_unregistered_customers` (
`wishlists_id` int(11) unsigned NOT NULL,
`customers_email_address` varchar(255) NOT NULL,
UNIQUE KEY `wishlists_id` (`wishlists_id`,`customers_email_address`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `zones`
--
CREATE TABLE IF NOT EXISTS `zones` (
`zone_id` int(11) NOT NULL AUTO_INCREMENT,
`zone_country_id` int(11) NOT NULL DEFAULT '0',
`zone_code` varchar(32) NOT NULL DEFAULT '',
`zone_name` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`zone_id`),
KEY `idx_zone_country_id_zen` (`zone_country_id`),
KEY `idx_zone_code_zen` (`zone_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=300 ;
--
-- 转存表中的数据 `zones`
--
INSERT INTO `zones` (`zone_id`, `zone_country_id`, `zone_code`, `zone_name`) VALUES
(1, 223, 'AL', 'Alabama'),
(2, 223, 'AK', 'Alaska'),
(3, 223, 'AS', 'American Samoa'),
(4, 223, 'AZ', 'Arizona'),
(5, 223, 'AR', 'Arkansas'),
(7, 223, 'AA', 'Armed Forces Americas'),
(9, 223, 'AE', 'Armed Forces Europe'),
(11, 223, 'AP', 'Armed Forces Pacific'),
(12, 223, 'CA', 'California'),
(13, 223, 'CO', 'Colorado'),
(14, 223, 'CT', 'Connecticut'),
(15, 223, 'DE', 'Delaware'),
(16, 223, 'DC', 'District of Columbia'),
(17, 223, 'FM', 'Federated States Of Micronesia'),
(18, 223, 'FL', 'Florida'),
(19, 223, 'GA', 'Georgia'),
(20, 223, 'GU', 'Guam'),
(21, 223, 'HI', 'Hawaii'),
(22, 223, 'ID', 'Idaho'),
(23, 223, 'IL', 'Illinois'),
(24, 223, 'IN', 'Indiana'),
(25, 223, 'IA', 'Iowa'),
(26, 223, 'KS', 'Kansas'),
(27, 223, 'KY', 'Kentucky'),
(28, 223, 'LA', 'Louisiana'),
(29, 223, 'ME', 'Maine'),
(30, 223, 'MH', 'Marshall Islands'),
(31, 223, 'MD', 'Maryland'),
(32, 223, 'MA', 'Massachusetts'),
(33, 223, 'MI', 'Michigan'),
(34, 223, 'MN', 'Minnesota'),
(35, 223, 'MS', 'Mississippi'),
(36, 223, 'MO', 'Missouri'),
(37, 223, 'MT', 'Montana'),
(38, 223, 'NE', 'Nebraska'),
(39, 223, 'NV', 'Nevada'),
(40, 223, 'NH', 'New Hampshire'),
(41, 223, 'NJ', 'New Jersey'),
(42, 223, 'NM', 'New Mexico'),
(43, 223, 'NY', 'New York'),
(44, 223, 'NC', 'North Carolina'),
(45, 223, 'ND', 'North Dakota'),
(46, 223, 'MP', 'Northern Mariana Islands'),
(47, 223, 'OH', 'Ohio'),
(48, 223, 'OK', 'Oklahoma'),
(49, 223, 'OR', 'Oregon'),
(50, 163, 'PW', 'Palau'),
(51, 223, 'PA', 'Pennsylvania'),
(52, 223, 'PR', 'Puerto Rico'),
(53, 223, 'RI', 'Rhode Island'),
(54, 223, 'SC', 'South Carolina'),
(55, 223, 'SD', 'South Dakota'),
(56, 223, 'TN', 'Tennessee'),
(57, 223, 'TX', 'Texas'),
(58, 223, 'UT', 'Utah'),
(59, 223, 'VT', 'Vermont'),
(60, 223, 'VI', 'Virgin Islands'),
(61, 223, 'VA', 'Virginia'),
(62, 223, 'WA', 'Washington'),
(63, 223, 'WV', 'West Virginia'),
(64, 223, 'WI', 'Wisconsin'),
(65, 223, 'WY', 'Wyoming'),
(66, 38, 'AB', 'Alberta'),
(67, 38, 'BC', 'British Columbia'),
(68, 38, 'MB', 'Manitoba'),
(69, 38, 'NL', 'Newfoundland'),
(70, 38, 'NB', 'New Brunswick'),
(71, 38, 'NS', 'Nova Scotia'),
(72, 38, 'NT', 'Northwest Territories'),
(73, 38, 'NU', 'Nunavut'),
(74, 38, 'ON', 'Ontario'),
(75, 38, 'PE', 'Prince Edward Island'),
(76, 38, 'QC', 'Quebec'),
(77, 38, 'SK', 'Saskatchewan'),
(78, 38, 'YT', 'Yukon Territory'),
(79, 81, 'NDS', 'Niedersachsen'),
(80, 81, 'BAW', 'Baden Württemberg'),
(81, 81, 'BAY', 'Bayern'),
(82, 81, 'BER', 'Berlin'),
(83, 81, 'BRG', 'Brandenburg'),
(84, 81, 'BRE', 'Bremen'),
(85, 81, 'HAM', 'Hamburg'),
(86, 81, 'HES', 'Hessen'),
(87, 81, 'MEC', 'Mecklenburg-Vorpommern'),
(88, 81, 'NRW', 'Nordrhein-Westfalen'),
(89, 81, 'RHE', 'Rheinland-Pfalz'),
(90, 81, 'SAR', 'Saarland'),
(91, 81, 'SAS', 'Sachsen'),
(92, 81, 'SAC', 'Sachsen-Anhalt'),
(93, 81, 'SCN', 'Schleswig-Holstein'),
(94, 81, 'THE', 'Thüringen'),
(95, 14, 'WI', 'Wien'),
(96, 14, 'NO', 'Niederösterreich'),
(97, 14, 'OO', 'Oberösterreich'),
(98, 14, 'SB', 'Salzburg'),
(99, 14, 'KN', 'Kärnten'),
(100, 14, 'ST', 'Steiermark'),
(101, 14, 'TI', 'Tirol'),
(102, 14, 'BL', 'Burgenland'),
(103, 14, 'VB', 'Voralberg'),
(104, 204, 'AG', 'Aargau'),
(105, 204, 'AI', 'Appenzell Innerrhoden'),
(106, 204, 'AR', 'Appenzell Ausserrhoden'),
(107, 204, 'BE', 'Bern'),
(108, 204, 'BL', 'Basel-Landschaft'),
(109, 204, 'BS', 'Basel-Stadt'),
(110, 204, 'FR', 'Freiburg'),
(111, 204, 'GE', 'Genf'),
(112, 204, 'GL', 'Glarus'),
(113, 204, 'JU', 'Graubnden'),
(114, 204, 'JU', 'Jura'),
(115, 204, 'LU', 'Luzern'),
(116, 204, 'NE', 'Neuenburg'),
(117, 204, 'NW', 'Nidwalden'),
(118, 204, 'OW', 'Obwalden'),
(119, 204, 'SG', 'St. Gallen'),
(120, 204, 'SH', 'Schaffhausen'),
(121, 204, 'SO', 'Solothurn'),
(122, 204, 'SZ', 'Schwyz'),
(123, 204, 'TG', 'Thurgau'),
(124, 204, 'TI', 'Tessin'),
(125, 204, 'UR', 'Uri'),
(126, 204, 'VD', 'Waadt'),
(127, 204, 'VS', 'Wallis'),
(128, 204, 'ZG', 'Zug'),
(129, 204, 'ZH', 'Zürich'),
(130, 195, 'A Coruña', 'A Coruña'),
(131, 195, 'Álava', 'Álava'),
(132, 195, 'Albacete', 'Albacete'),
(133, 195, 'Alicante', 'Alicante'),
(134, 195, 'Almería', 'Almería'),
(135, 195, 'Asturias', 'Asturias'),
(136, 195, 'Ávila', 'Ávila'),
(137, 195, 'Badajoz', 'Badajoz'),
(138, 195, 'Baleares', 'Baleares'),
(139, 195, 'Barcelona', 'Barcelona'),
(140, 195, 'Burgos', 'Burgos'),
(141, 195, 'Cáceres', 'Cáceres'),
(142, 195, 'Cádiz', 'Cádiz'),
(143, 195, 'Cantabria', 'Cantabria'),
(144, 195, 'Castellón', 'Castellón'),
(145, 195, 'Ceuta', 'Ceuta'),
(146, 195, 'Ciudad Real', 'Ciudad Real'),
(147, 195, 'Córdoba', 'Córdoba'),
(148, 195, 'Cuenca', 'Cuenca'),
(149, 195, 'Girona', 'Girona'),
(150, 195, 'Granada', 'Granada'),
(151, 195, 'Guadalajara', 'Guadalajara'),
(152, 195, 'Guipúzcoa', 'Guipúzcoa'),
(153, 195, 'Huelva', 'Huelva'),
(154, 195, 'Huesca', 'Huesca'),
(155, 195, 'Jaén', 'Jaén'),
(156, 195, 'La Rioja', 'La Rioja'),
(157, 195, 'Las Palmas', 'Las Palmas'),
(158, 195, 'León', 'León'),
(159, 195, 'Lérida', 'Lérida'),
(160, 195, 'Lugo', 'Lugo'),
(161, 195, 'Madrid', 'Madrid'),
(162, 195, 'Málaga', 'Málaga'),
(163, 195, 'Melilla', 'Melilla'),
(164, 195, 'Murcia', 'Murcia'),
(165, 195, 'Navarra', 'Navarra'),
(166, 195, 'Ourense', 'Ourense'),
(167, 195, 'Palencia', 'Palencia'),
(168, 195, 'Pontevedra', 'Pontevedra'),
(169, 195, 'Salamanca', 'Salamanca'),
(170, 195, 'Santa Cruz de Tenerife', 'Santa Cruz de Tenerife'),
(171, 195, 'Segovia', 'Segovia'),
(172, 195, 'Sevilla', 'Sevilla'),
(173, 195, 'Soria', 'Soria'),
(174, 195, 'Tarragona', 'Tarragona'),
(175, 195, 'Teruel', 'Teruel'),
(176, 195, 'Toledo', 'Toledo'),
(177, 195, 'Valencia', 'Valencia'),
(178, 195, 'Valladolid', 'Valladolid'),
(179, 195, 'Vizcaya', 'Vizcaya'),
(180, 195, 'Zamora', 'Zamora'),
(181, 195, 'Zaragoza', 'Zaragoza'),
(182, 13, 'ACT', 'Australian Capital Territory'),
(183, 13, 'NSW', 'New South Wales'),
(184, 13, 'NT', 'Northern Territory'),
(185, 13, 'QLD', 'Queensland'),
(186, 13, 'SA', 'South Australia'),
(187, 13, 'TAS', 'Tasmania'),
(188, 13, 'VIC', 'Victoria'),
(189, 13, 'WA', 'Western Australia'),
(190, 105, 'AG', 'Agrigento'),
(191, 105, 'AL', 'Alessandria'),
(192, 105, 'AN', 'Ancona'),
(193, 105, 'AO', 'Aosta'),
(194, 105, 'AR', 'Arezzo'),
(195, 105, 'AP', 'Ascoli Piceno'),
(196, 105, 'AT', 'Asti'),
(197, 105, 'AV', 'Avellino'),
(198, 105, 'BA', 'Bari'),
(199, 105, 'BT', 'Barletta Andria Trani'),
(200, 105, 'BL', 'Belluno'),
(201, 105, 'BN', 'Benevento'),
(202, 105, 'BG', 'Bergamo'),
(203, 105, 'BI', 'Biella'),
(204, 105, 'BO', 'Bologna'),
(205, 105, 'BZ', 'Bolzano'),
(206, 105, 'BS', 'Brescia'),
(207, 105, 'BR', 'Brindisi'),
(208, 105, 'CA', 'Cagliari'),
(209, 105, 'CL', 'Caltanissetta'),
(210, 105, 'CB', 'Campobasso'),
(211, 105, 'CI', 'Carbonia-Iglesias'),
(212, 105, 'CE', 'Caserta'),
(213, 105, 'CT', 'Catania'),
(214, 105, 'CZ', 'Catanzaro'),
(215, 105, 'CH', 'Chieti'),
(216, 105, 'CO', 'Como'),
(217, 105, 'CS', 'Cosenza'),
(218, 105, 'CR', 'Cremona'),
(219, 105, 'KR', 'Crotone'),
(220, 105, 'CN', 'Cuneo'),
(221, 105, 'EN', 'Enna'),
(222, 105, 'FM', 'Fermo'),
(223, 105, 'FE', 'Ferrara'),
(224, 105, 'FI', 'Firenze'),
(225, 105, 'FG', 'Foggia'),
(226, 105, 'FC', 'Forlì Cesena'),
(227, 105, 'FR', 'Frosinone'),
(228, 105, 'GE', 'Genova'),
(229, 105, 'GO', 'Gorizia'),
(230, 105, 'GR', 'Grosseto'),
(231, 105, 'IM', 'Imperia'),
(232, 105, 'IS', 'Isernia'),
(233, 105, 'AQ', 'Aquila'),
(234, 105, 'SP', 'La Spezia'),
(235, 105, 'LT', 'Latina'),
(236, 105, 'LE', 'Lecce'),
(237, 105, 'LC', 'Lecco'),
(238, 105, 'LI', 'Livorno'),
(239, 105, 'LO', 'Lodi'),
(240, 105, 'LU', 'Lucca'),
(241, 105, 'MC', 'Macerata'),
(242, 105, 'MN', 'Mantova'),
(243, 105, 'MS', 'Massa Carrara'),
(244, 105, 'MT', 'Matera'),
(245, 105, 'VS', 'Medio Campidano'),
(246, 105, 'ME', 'Messina'),
(247, 105, 'MI', 'Milano'),
(248, 105, 'MO', 'Modena'),
(249, 105, 'MB', 'Monza e Brianza'),
(250, 105, 'NA', 'Napoli'),
(251, 105, 'NO', 'Novara'),
(252, 105, 'NU', 'Nuoro'),
(253, 105, 'OG', 'Ogliastra'),
(254, 105, 'OT', 'Olbia-Tempio'),
(255, 105, 'OR', 'Oristano'),
(256, 105, 'PD', 'Padova'),
(257, 105, 'PA', 'Palermo'),
(258, 105, 'PR', 'Parma'),
(259, 105, 'PG', 'Perugia'),
(260, 105, 'PV', 'Pavia'),
(261, 105, 'PU', 'Pesaro Urbino'),
(262, 105, 'PE', 'Pescara'),
(263, 105, 'PC', 'Piacenza'),
(264, 105, 'PI', 'Pisa'),
(265, 105, 'PT', 'Pistoia'),
(266, 105, 'PN', 'Pordenone'),
(267, 105, 'PZ', 'Potenza'),
(268, 105, 'PO', 'Prato'),
(269, 105, 'RG', 'Ragusa'),
(270, 105, 'RA', 'Ravenna'),
(271, 105, 'RC', 'Reggio Calabria'),
(272, 105, 'RE', 'Reggio Emilia'),
(273, 105, 'RI', 'Rieti'),
(274, 105, 'RN', 'Rimini'),
(275, 105, 'RM', 'Roma'),
(276, 105, 'RO', 'Rovigo'),
(277, 105, 'SA', 'Salerno'),
(278, 105, 'SS', 'Sassari'),
(279, 105, 'SV', 'Savona'),
(280, 105, 'SI', 'Siena'),
(281, 105, 'SR', 'Siracusa'),
(282, 105, 'SO', 'Sondrio'),
(283, 105, 'TA', 'Taranto'),
(284, 105, 'TE', 'Teramo'),
(285, 105, 'TR', 'Terni'),
(286, 105, 'TO', 'Torino'),
(287, 105, 'TP', 'Trapani'),
(288, 105, 'TN', 'Trento'),
(289, 105, 'TV', 'Treviso'),
(290, 105, 'TS', 'Trieste'),
(291, 105, 'UD', 'Udine'),
(292, 105, 'VA', 'Varese'),
(293, 105, 'VE', 'Venezia'),
(294, 105, 'VB', 'Verbania'),
(295, 105, 'VC', 'Vercelli'),
(296, 105, 'VR', 'Verona'),
(297, 105, 'VV', 'Vibo Valentia'),
(298, 105, 'VI', 'Vicenza'),
(299, 105, 'VT', 'Viterbo');
-- --------------------------------------------------------
--
-- 表的结构 `zones_to_geo_zones`
--
CREATE TABLE IF NOT EXISTS `zones_to_geo_zones` (
`association_id` int(11) NOT NULL AUTO_INCREMENT,
`zone_country_id` int(11) NOT NULL DEFAULT '0',
`zone_id` int(11) DEFAULT NULL,
`geo_zone_id` int(11) DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY (`association_id`),
KEY `idx_zones_zen` (`geo_zone_id`,`zone_country_id`,`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `zones_to_geo_zones`
--
INSERT INTO `zones_to_geo_zones` (`association_id`, `zone_country_id`, `zone_id`, `geo_zone_id`, `last_modified`, `date_added`) VALUES
(1, 223, 18, 1, NULL, '2012-05-10 16:53:21');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment