#
# TABLE STRUCTURE FOR: exp_accessories
#

DROP TABLE IF EXISTS `exp_accessories`;

CREATE TABLE `exp_accessories` (
  `accessory_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(75) NOT NULL DEFAULT '',
  `member_groups` varchar(255) NOT NULL DEFAULT 'all',
  `controllers` text,
  `accessory_version` varchar(12) NOT NULL,
  PRIMARY KEY (`accessory_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `exp_accessories` (`accessory_id`, `class`, `member_groups`, `controllers`, `accessory_version`) VALUES (1, 'Expressionengine_info_acc', '1|5', 'addons|addons_accessories|addons_extensions|addons_fieldtypes|addons_modules|addons_plugins|admin_content|admin_system|content|content_edit|content_files|content_files_modal|content_publish|design|homepage|members|myaccount|tools|tools_communicate|tools_data|tools_logs|tools_utilities', '1.0');


#
# TABLE STRUCTURE FOR: exp_actions
#

DROP TABLE IF EXISTS `exp_actions`;

CREATE TABLE `exp_actions` (
  `action_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(50) NOT NULL,
  `method` varchar(50) NOT NULL,
  `csrf_exempt` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`action_id`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;

INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (1, 'Comment', 'insert_new_comment', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (2, 'Comment_mcp', 'delete_comment_notification', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (3, 'Comment', 'comment_subscribe', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (4, 'Comment', 'edit_comment', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (5, 'Email', 'send_email', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (6, 'Search', 'do_search', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (7, 'Channel', 'submit_entry', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (8, 'Channel', 'filemanager_endpoint', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (9, 'Channel', 'smiley_pop', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (10, 'Channel', 'combo_loader', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (11, 'Member', 'registration_form', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (12, 'Member', 'register_member', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (13, 'Member', 'activate_member', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (14, 'Member', 'member_login', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (15, 'Member', 'member_logout', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (16, 'Member', 'send_reset_token', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (17, 'Member', 'process_reset_password', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (18, 'Member', 'send_member_email', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (19, 'Member', 'update_un_pw', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (20, 'Member', 'member_search', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (21, 'Member', 'member_delete', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (22, 'Rte', 'get_js', 0);
INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES (23, 'Updater', 'actionGeneralRouter', 0);


#
# TABLE STRUCTURE FOR: exp_captcha
#

DROP TABLE IF EXISTS `exp_captcha`;

CREATE TABLE `exp_captcha` (
  `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,
  `date` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `word` varchar(20) NOT NULL,
  PRIMARY KEY (`captcha_id`),
  KEY `word` (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_categories
#

DROP TABLE IF EXISTS `exp_categories`;

CREATE TABLE `exp_categories` (
  `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(6) unsigned NOT NULL,
  `parent_id` int(4) unsigned NOT NULL,
  `cat_name` varchar(100) NOT NULL,
  `cat_url_title` varchar(75) NOT NULL,
  `cat_description` text,
  `cat_image` varchar(120) DEFAULT NULL,
  `cat_order` int(4) unsigned NOT NULL,
  PRIMARY KEY (`cat_id`),
  KEY `group_id` (`group_id`),
  KEY `cat_name` (`cat_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8;

INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (1, 1, 1, 0, 'Occasions', 'occasions', '', '', 2);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (2, 1, 1, 0, 'Holidays', 'holidays', '', '', 1);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (3, 1, 1, 0, 'Roses', 'roses', '', '', 4);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (4, 1, 1, 0, 'Sympathy', 'sympathy', '', '', 6);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (5, 1, 1, 0, 'Seasonal', 'seasonal', '', '', 5);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (6, 1, 1, 1, 'Just Because Flowers', 'just-because-flowers', '', '', 4);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (7, 1, 1, 1, 'Anniversary Flowers', 'anniversary-flowers', '', '', 1);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (8, 1, 1, 1, 'Birthday Flowers', 'birthday-flowers', '', '', 2);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (9, 1, 1, 1, 'New Baby Flowers', 'new-baby-flowers', '', '', 5);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (10, 1, 1, 1, 'Graduation Flowers', 'graduation-flowers', '', '', 3);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (11, 1, 1, 2, 'Valentine\'s Day', 'valentines-day', '', '', 12);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (12, 1, 1, 2, 'Passover', 'passover', '', '', 9);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (13, 1, 1, 2, 'Easter', 'easter', '', '', 3);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (14, 1, 1, 2, 'Administrative Professional Day', 'administrative-professional-day', '', '', 1);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (15, 1, 1, 2, 'Mother\'s Day', 'mothers-day', '', '', 7);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (16, 1, 1, 2, 'Father\'s Day', 'fathers-day', '', '', 4);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (17, 1, 1, 2, 'Grandparent\'s Day', 'grandparents-day', '', '', 5);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (18, 1, 1, 2, 'Rosh Hashanah', 'rosh-hashanah', '', '', 10);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (19, 1, 1, 2, 'Thanksgiving', 'thanksgiving', '', '', 11);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (20, 1, 1, 2, 'National Boss Day', 'national-boss-day', '', '', 8);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (21, 1, 1, 2, 'Halloween', 'halloween', '', '', 6);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (22, 1, 1, 2, 'Christmas', 'christmas', '', '', 2);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (23, 1, 1, 4, 'Funeral Flowers', 'funeral-flowers', '', '', 2);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (24, 1, 1, 4, 'Standing Sprays', 'standing-sprays', '', '', 3);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (25, 1, 1, 4, 'Casket Flowers', 'casket-flowers', '', '', 1);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (26, 1, 1, 4, 'Sympathy Arrangements', 'sympathy-arrangements', '', '', 4);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (27, 1, 1, 5, 'Winter', 'winter', '', '', 4);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (28, 1, 1, 5, 'Spring', 'spring', '', '', 2);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (29, 1, 1, 5, 'Summer', 'summer', '', '', 3);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (30, 1, 1, 5, 'Fall', 'fall', '', '', 1);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (31, 1, 1, 0, 'Prom', 'prom', '', '', 3);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (32, 1, 1, 31, 'Corsages', 'corsages', '', '', 2);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (33, 1, 1, 31, 'Boutonniers', 'boutonniers', '', '', 1);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (34, 1, 1, 31, 'Hairpieces', 'hairpieces', '', '', 3);
INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES (35, 1, 1, 31, 'Handheld Bouquets', 'handheld-bouquets', '', '', 4);


#
# TABLE STRUCTURE FOR: exp_category_field_data
#

DROP TABLE IF EXISTS `exp_category_field_data`;

CREATE TABLE `exp_category_field_data` (
  `cat_id` int(4) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  PRIMARY KEY (`cat_id`),
  KEY `site_id` (`site_id`),
  KEY `group_id` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (1, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (2, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (3, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (4, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (5, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (6, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (7, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (8, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (9, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (10, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (11, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (12, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (13, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (14, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (15, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (16, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (17, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (18, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (19, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (20, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (21, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (22, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (23, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (24, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (25, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (26, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (27, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (28, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (29, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (30, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (31, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (32, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (33, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (34, 1, 1);
INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES (35, 1, 1);


#
# TABLE STRUCTURE FOR: exp_category_fields
#

DROP TABLE IF EXISTS `exp_category_fields`;

CREATE TABLE `exp_category_fields` (
  `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  `field_name` varchar(32) NOT NULL DEFAULT '',
  `field_label` varchar(50) NOT NULL DEFAULT '',
  `field_type` varchar(12) NOT NULL DEFAULT 'text',
  `field_list_items` text NOT NULL,
  `field_maxl` smallint(3) NOT NULL DEFAULT '128',
  `field_ta_rows` tinyint(2) NOT NULL DEFAULT '8',
  `field_default_fmt` varchar(40) NOT NULL DEFAULT 'none',
  `field_show_fmt` char(1) NOT NULL DEFAULT 'y',
  `field_text_direction` char(3) NOT NULL DEFAULT 'ltr',
  `field_required` char(1) NOT NULL DEFAULT 'n',
  `field_order` int(3) unsigned NOT NULL,
  PRIMARY KEY (`field_id`),
  KEY `site_id` (`site_id`),
  KEY `group_id` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_category_groups
#

DROP TABLE IF EXISTS `exp_category_groups`;

CREATE TABLE `exp_category_groups` (
  `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  `sort_order` char(1) NOT NULL DEFAULT 'a',
  `exclude_group` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `field_html_formatting` char(4) NOT NULL DEFAULT 'all',
  `can_edit_categories` text,
  `can_delete_categories` text,
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `exp_category_groups` (`group_id`, `site_id`, `group_name`, `sort_order`, `exclude_group`, `field_html_formatting`, `can_edit_categories`, `can_delete_categories`) VALUES (1, 1, 'Arrangements', 'a', 0, 'all', '', '');


#
# TABLE STRUCTURE FOR: exp_category_posts
#

DROP TABLE IF EXISTS `exp_category_posts`;

CREATE TABLE `exp_category_posts` (
  `entry_id` int(10) unsigned NOT NULL,
  `cat_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`entry_id`,`cat_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_channel_data
#

DROP TABLE IF EXISTS `exp_channel_data`;

CREATE TABLE `exp_channel_data` (
  `entry_id` int(10) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `field_id_1` text,
  `field_ft_1` tinytext,
  `field_id_2` text,
  `field_ft_2` tinytext,
  `field_id_3` text,
  `field_ft_3` tinytext,
  `field_id_4` text,
  `field_ft_4` tinytext,
  `field_id_5` text,
  `field_ft_5` tinytext,
  `field_id_6` text,
  `field_ft_6` tinytext,
  `field_id_9` text,
  `field_ft_9` tinytext,
  `field_id_10` text,
  `field_ft_10` tinytext,
  `field_id_11` text,
  `field_ft_11` tinytext,
  `field_id_12` text,
  `field_ft_12` tinytext,
  `field_id_13` text,
  `field_ft_13` tinytext,
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (5, 1, 1, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}bldg.gif\" style=\"float:right; height:225px; width:300px\" />Hello and welcome to all our friends and neighbors in Calloway County, Kentucky. We are located&nbsp; in a beautiful section of extreme Western Kentucky near Kentucky and Barkley Lakes. Our dream of owning our own business began<em> </em>several years ago and became a reality in May of 2001. We started our business at our farm on Bethel Road in a small sales building with 3 small retail greenhouses.&nbsp; We moved our retail operation over to Highway 94 East in 2011 to a much larger garden center and greenhouses in order to better serve our customers.&nbsp; We still maintain and grow all our produce at our farm which is just minutes away from the garden center.&nbsp;</p>\n\n<h2>How We Grow</h2>\n\n<p>We grow almost everything we sell ourselves and strive to bring you the highest quality product with the least amount of stress or damage to the environment.&nbsp; All our produce and edible herbs are grown naturally without any chemical fertilizer or pesticides.&nbsp; You can be sure that our produce will be the freshest and safest produce that you can serve to your family.&nbsp; Our produce is available in season at our retail operation generally from March to October.&nbsp; Check out our <a href=\"http://www.beanstoblossoms.com/produce/produce-lineup\" target=\"_self\">produce page</a> for the latest availability list or <a href=\"http://www.beanstoblossoms.com/about/social-media\" target=\"_self\">sign up</a> to receive our e-mail updates for the latest information.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (6, 1, 1, '<p>Our retail operation is located at 2397 State Route 94 East which is only about 1 1/2 miles from the Murray Court Square.&nbsp; You don&#39;t have to fight traffic or search for a parking spot when you shop with us.&nbsp; Of course, we still have our farm, which is located on Bethel Road, where we start all our beautiful flowers and delicious vegetables.&nbsp;</p>\n\n<p>\n<iframe width=\"640\" height=\"480\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2397+State+Route+94+East+murray+ky&amp;ie=UTF8&amp;hq=&amp;hnear=2397+Kentucky+94,+Murray,+Kentucky+42071&amp;gl=us&amp;t=m&amp;ll=36.627721,-88.277721&amp;spn=0.033063,0.054932&amp;z=14&amp;iwloc=lyrftr:m,2606045950094270253,36.618886,-88.274052&amp;output=embed\"></iframe><br /><small><a href=\"https://maps.google.com/maps?q=2397+State+Route+94+East+murray+ky&amp;ie=UTF8&amp;hq=&amp;hnear=2397+Kentucky+94,+Murray,+Kentucky+42071&amp;gl=us&amp;t=m&amp;ll=36.627721,-88.277721&amp;spn=0.033063,0.054932&amp;z=14&amp;iwloc=lyrftr:m,2606045950094270253,36.618886,-88.274052&amp;source=embed\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\n</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (7, 1, 1, '<p>Our farm is located in a beautiful section of extreme Western Kentucky near Kentucky and Barkely Lakes.&nbsp; We started our business at the farm back in May of 2001 beginning with a small sales building and 3 small greenhouses.&nbsp; We have since moved our retail operation over to the Highway 94 East location but still utilize our farm for growing all our naturally grown produce and starting most of our plants we sell.&nbsp; We feel blessed to own this farm and to have a place for our children and grandchildren to come and have fun and learn about life on the farm.&nbsp;&nbsp; There are any number of activities that our grandchildren get to experience that gives them hands on experience in learning about nature and gardening.&nbsp; Fishing in the pond, gathering eggs, feeding the chickens, picking a bouquet of flowers, scavenger hunts and picking vegetables are just a few of the activities they enjoy when they come for a visit.&nbsp; We wish every child could learn about life on the farm and how their food is grown.&nbsp;</p>\n\n<h2>HELPING THE COMMUNITY</h2>\n\n<p>Over the years, we have been able to reach out to the local community and get them involved in the \"Farm to Table\" movement.&nbsp; We think it is important for people to get interested in how and where their food is grown.&nbsp; To have a personal relationship with the person who grows the food you serve to your family is very important today considering the fraility of our food system.&nbsp; We have welcomed students for the Govenors Scholar Program, home school students, students from Murray State University environmental classes, elementary school students, preschool children and womens&#39; civic groups to our farm to educate them on a number of subjects.</p>\n\n<h2>Fun on the Farm</h2>\n\n<p><img alt=\"\" class=\"left\" src=\"{filedir_3}Lindys_Pictures_1479.jpg\" style=\"float:left; height:150px; width:200px\" /> <img alt=\"\" class=\"right\" src=\"{filedir_3}Lindys_Pictures_2624.jpg\" style=\"height:151px; width:200px\" /> <img alt=\"\" class=\"right\" src=\"{filedir_3}Lindys_Pictures_2579.jpg\" style=\"float:left; height:150px; width:200px\" /> <img alt=\"\" class=\"left\" src=\"{filedir_3}Lindys_Pictures_2669.jpg\" style=\"float:left; height:200px; width:150px\" /> <img alt=\"\" class=\"left\" src=\"{filedir_3}Lindys_Pictures_2672.jpg\" style=\"height:200px; width:150px\" /></p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (8, 1, 1, '<p><strong>Beans to Blossoms</strong><br />\n2397 State Route 94 East<br />\nMurray, KY 42071<br />\n270.753.4050<br />\n270.753.4050 (fax)<br />\n<a href=\"mailto:info@beanstoblossoms.com\">info@beanstoblossoms.com</a></p>\n\n<p><a href=\"https://www.facebook.com/pages/Beans-to-Blossoms/112231572135485\" target=\"_blank\">Beans to Blossoms on Facebook</a></p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (9, 1, 1, '<h2>Facebook</h2>\n\n<p>Be sure and check us out on Facebook.&nbsp; We frequently post to our Facebook feed to keep all our customers updated on what&#39;s going on at the farm, new products, stock availability, and much more.</p>\n\n<p><a href=\"https://www.facebook.com/pages/Beans-to-Blossoms/112231572135485\" target=\"_blank\">Find Us On Facebook</a></p>\n\n<h2>Subscribe To Our Mailing List</h2>\n\n<p>Receive timely news and updates about sales, new arrivals, upcoming classes, and much more.</p>\n\n<!-- Begin MailChimp Signup Form -->\n<link href=\"http://cdn-images.mailchimp.com/embedcode/slim-081711.css\" rel=\"stylesheet\" type=\"text/css\">\n<style type=\"text/css\">\n  #mc_embed_signup{clear:left; font:14px Helvetica,Arial,sans-serif; }\n  /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.\n     We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */\n</style>\n<div id=\"mc_embed_signup\" style=\"padding:0;margin:0;\">\n<form action=\"http://beanstoblossoms.us4.list-manage2.com/subscribe/post?u=793b221bd88851d6a004b8843&amp;id=cc896b4210\" method=\"post\" id=\"mc-embedded-subscribe-form\" name=\"mc-embedded-subscribe-form\" class=\"validate\" target=\"_blank\" novalidate>\n  <label for=\"mce-EMAIL\">Subscribe to our mailing list</label>\n  <input type=\"email\" value=\"\" name=\"EMAIL\" class=\"email\" id=\"mce-EMAIL\" placeholder=\"email address\" required>\n  <div class=\"clear\"><input type=\"submit\" value=\"Subscribe\" name=\"subscribe\" id=\"mc-embedded-subscribe\" class=\"button\"></div>\n</form>\n</div>\n\n<!--End mc_embed_signup-->', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (10, 1, 3, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}annualsad1.jpg\" style=\"float:right; height:225px; width:300px\" />Welcome to our Annuals Section. In doing research in the types of flowers we wanted to grow our interest was directed toward antique and heirloom flowers. In other words, the types of flowers your grandma used to grow in her flower garden. In this fast-paced world there are a lot of things being left behind in the shuffle and one of them is the older varieties of flowers. We have learned that one of the reasons these flowers have stood the test of time is because of their hardiness. They tend to have a natural disease resistance, are very adaptable to most conditions and they most definitely have a much more intense fragrance than the modern hybrids. We hope you learn something about the past and who knows, you might just see that flower you remember growing in your grandmother&rsquo;s garden!!!</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (11, 1, 3, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}perennialsad1.jpg\" style=\"float:right; height:225px; width:300px\" />Welcome to our Perennials Section.&nbsp; Beans to Blossoms prides ourself in the fact that we carry one of the largest selections of perennials of any nursery in this area.&nbsp; From deciduous to evergreen, we know you will find a perennial to fit in any area of your landscape or container plantings.&nbsp; Perennials are considered the &#39;workhorse&#39; of the plant world as they reliably come back year after year with very little care or maintenance.&nbsp; Perennials come in just about every size and color and you can find one to bloom for every season including winter!&nbsp; Put our knowledge and experience to work if you need help designing a new flower bed or if you want to refurbish one.&nbsp; We also can help you choose the right plants for your container plantings or window boxes.&nbsp; Using a base of perennials in your containers can save you money, as you can leave them year after year and you do not have to replant them like you do annuals.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (12, 1, 3, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}herbsad1.jpg\" style=\"float:right; height:225px; width:300px\" />Welcome to our Herb Section.&nbsp; With the increased interest in using fresh herbs for culinary purposes and for alternative medicine, Beans to Blossoms is known for growing one of the most extensive varieties of herbs in this area.&nbsp; All our herbs are grown using only natural products so you can safely use them for culinary or in your herbal recipes.&nbsp; In addition to herb plants we carry a large number of Certified Organic dried herbs and spices in our garden center.</p>\n\n<h2>HERBAL SOAPS</h2>\n\n<p>There is nothing more soothing to your skin than herbal soaps made from pure plant glycerin infused with aromatic essential oils and healing fresh or dried herbs.&nbsp; Beans to Blossoms makes their soaps using several different bases including aloe, goats milk and coconut oil.&nbsp; We then add our own fresh or dried organic herbs, essential oils and other ingredients to our own special recipes.&nbsp; Our soaps are especially kind to troubled skin and can be benefial to you and your family.&nbsp; You can purchase your herbal soaps in our gift shop year round.</p>\n\n<p><a href=\"http://www.beanstoblossoms.com/gift-shop/herbal-soaps\" target=\"_self\">Check out our herbal soaps....</a></p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (13, 1, 3, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}rosesad1.jpg\" style=\"float:right; height:225px; width:300px\" />Welcome to our Roses Section.&nbsp; Our interest in heirloom flowers has led us to carry a line of antique roses as well.&nbsp; A rose has to be discovered before 1867 to be classified as an antique, as that is the year the first hybridized roses came on the scene.&nbsp; Antique roses tend to have natural disease and pest resistance and they have much more fragrance than the modern hybrids.&nbsp; These roses have stood the test of time and are still around which proves their hardiness!&nbsp; You can find antique roses in shrub form or climbers in a myriad of colors.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (14, 1, 3, '<p>Welcome to our Tropicals Section.&nbsp; Tropicals are a wonderful way to incorporate seasonal color and interesting foliage into your landscape and containers.&nbsp; They tend to thrive in our hot, humid weather and are generally carefree.&nbsp; We carry a number of different tropicals including cannas, elephant ears, dipladenia, bougainvillea, ferns, brugmansia and many more.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (15, 1, 3, '<p>Welcome to our Grasses Section.&nbsp; For all season interest, include some grasses in your landscape or container plantings.&nbsp; From spring all the way through winter, you can depend on ornamental grasses to add that special touch.&nbsp; From dwarf to over 10&#39; tall you can find a grass in any size to fit your needs.&nbsp; Grasses are easy to grow and care for and require a minimum of care to keep them looking good for years to come.&nbsp; They provide winter interest if left in your landscape and some even provide food for the birds with their seed heads.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (16, 1, 3, '<p>Welcome to our Hostas Section.&nbsp; Hostas are a wonderful way to provide foliage interest in the shady areas of your&nbsp; landscape or containers.&nbsp; Hostas are easy to care for and require little maintenance to keep them going for years to come.&nbsp; From miniature varieties like &#39;Cameo&#39; to the largest such as &#39;Empress Wu&#39;, you can find a hosta to fit every situation you come across in your gardening adventures.</p>\n\n<p><a href=\"{filedir_3}2013_HOSTA_LIST.pdf\" target=\"_blank\">Download/Print Hosta List</a></p>\n\n<h2>Available This Season</h2>\n\n<p><strong>ALBOMARGINATA</strong>-<em>GREEN WITH WHITE MARGINS-16-20&rdquo; T X 12- 18W</em></p>\n\n<p><strong>BLUE ANGEL</strong>-<em>LARGE HOSTA WITH BLUE/GREEN LEAVES-3&rsquo;T X 4&rsquo;W</em></p>\n\n<p><strong>BRESSINGHAM BLUE</strong>-<em>INTENSELY BLUE/GREEN LARGE LEAF-24&rdquo;T-SPACE 24-36&rdquo;</em></p>\n\n<p><strong>DANCING STARS</strong><em>-CRISP WHITE CENTERS WITH SHARPLY CONTRASTING BLUE/GREEN MARGINS-24\"T X 36\"W</em></p>\n\n<p><strong>FIREWORKS</strong><em>-STIFF, NARROW STRONGLY VERTICAL LEAVES REACH UPWARD WITH MOSTLY WHITE LEAVES-8 TO 10\" T</em></p>\n\n<p><strong>FRANCES WILLIAMS</strong>-<em>ROUND BLUE/GREEN LEAVES 22&rsquo;T- SPACE 24&rdquo;</em></p>\n\n<p><strong>FROSTED JADE</strong>-<em>JADE GREEN LEAVES WITH CREAMY WHITE MARGINS-28&rdquo;T X 36&rdquo; W</em></p>\n\n<p><strong>GOLD STANDARD</strong>-<em>DK GREEN MARGINS AND LIGHT GREEN CENTERS-12-24&rdquo; T-SPACE 24-36&rdquo;</em></p>\n\n<p><strong>GREEN AND GOLD</strong>-<em>GREEN LEAVES WITH GOLD EDGES-18&rdquo;T</em></p>\n\n<p><strong>ON STAGE</strong><em>-CASCADING YELLOW LEAVES WITH 2-TONE MED GREEN EDGE-36&rdquo; T &ndash;SPACE 20&rdquo;</em></p>\n\n<p><strong>PARTY FAVOR</strong>-<em>MED BLUE GREEN LEAVES-10-18&rdquo; T-SPACE 36-48&rdquo;</em></p>\n\n<p><strong>PATRIOT</strong><em>-LARGE VARIEGATED OVAL LEAVES GREEN/CREAM-12 TO 20\"T</em></p>\n\n<p><strong>SUM AND SUBSTANCE</strong>-<em>LARGE HOSTA WITH LT GREEN/CHARTREUSE/GOLD-3&rsquo;T X 4&rsquo;W</em></p>\n\n<p><strong>SURFRIDER</strong><em>-ROUND SHAPED, SLIGHTLY BLUE/GREEN LEAVES-38\"T X 66\"W</em></p>\n\n<p><strong>SWEET SUSAN</strong>-<em>DARK GREEN LEAVES VERY FRAGRANT FLOWERS-18&rdquo;T X 28&rdquo;W</em></p>\n\n<p><strong>TOKUDAMA FLAVOCIRCINALIS</strong>-<em>HEART SHAPED BLUE/GREEN WITH GOLD MARGINS-17&rdquo;T &ndash;SPACE 48&rdquo;</em></p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (17, 1, 4, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}produce-working.jpg\" style=\"float:right; height:267px; width:200px\" />Our produce is grown by us on our own farm on Bethel Road.&nbsp; You can be sure that when you buy our produce that it hasn&#39;t been shipped from miles away and it is grown with the highest regard for your health and for the health of the environment.&nbsp; We grow only the finest and freshest produce, free from any pesticides or chemical fertilizers.&nbsp; Most of our produce is picked daily, assuring you receive the freshest produce possible.&nbsp; We grow a large variety of produce with an emphasis on heirloom and open-pollinated varieties.&nbsp; We welcome our customers to come to our farm and see for themselves the methods we use and will be glad to answer any questions you might have about growing organically.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (18, 1, 4, '<p>Looking to see what fresh, vine-ripe, produce we currently have in stock? &nbsp; You&#39;ve come to the right place!</p>\n\n<p><img alt=\"\" class=\"right\" src=\"{filedir_3}producead3.png\" style=\"float:right; height:225px; width:300px\" /></p>\n\n<p>After such a long, cold and snowy winter we are ready for some good homegrown vegetables, aren&#39;t you?&nbsp; A good salad with spring mix, spinach, green onions and arugula sounds good!</p>\n\n<p>Coming Soon!</p>\n\n<p>Kale</p>\n\n<p>Green Onions</p>\n\n<p>Spinach</p>\n\n<p>Arugula</p>\n\n<p>Broccoli</p>\n\n<p>Radishes</p>\n\n<p>Mesclun Mix</p>\n\n<h2>Complete List of Produce Offered During the Growning Season</h2>\n\n<p>Produce usually starts in early spring and runs through late fall. You can always call ahead and see<br />\nwhat we have available!&nbsp; 270-753-4050</p>\n\n<ul>\n	<li><img alt=\"\" class=\"right\" src=\"{filedir_3}producepic.gif\" style=\"float:right; height:198px; width:300px\" />Asparagus</li>\n	<li>Beets</li>\n	<li>Blackberries</li>\n	<li>Broccoli</li>\n	<li>Cabbage</li>\n	<li>Cantaloupe</li>\n	<li>Carrots</li>\n	<li>Corn</li>\n	<li>Cucumbers</li>\n	<li>Eggplant</li>\n	<li>Garlic</li>\n	<li>Green Beans</li>\n	<li>Greens, Turnip and Mustard</li>\n	<li>Horticulture Beans</li>\n	<li>Joi Choi</li>\n	<li>Kale, Siberian and Tuscan</li>\n	<li>Lettuce, Romaine</li>\n	<li>Mesclun Mix</li>\n	<li>Okra</li>\n	<li>Onions, Green and Table</li>\n	<li>Peas, Purple Hull</li>\n	<li>Peas, Snow</li>\n	<li>Peppers, Sweet and Hot</li>\n	<li>Potatoes, White, Red and Sweet</li>\n	<li>Pumpkins</li>\n	<li>Radishes</li>\n	<li>Spinach</li>\n	<li>Strawberries</li>\n	<li>Squash, Summer and Winter</li>\n	<li>Swiss Chard</li>\n	<li>Tomatoes (slicers and salad)</li>\n	<li>Watermelon</li>\n	<li>Zucchini</li>\n</ul>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (19, 1, 4, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}tomatoad2.png\" style=\"float:right; height:167px; width:250px\" />Below is a list of our heirloom and hybrid tomatoes for the 2014 season.&nbsp; You may ask why heirloom?&nbsp; Heirlooms are seeds saved from the 18th, 19th and early 20th century that were grown in backyard plots.&nbsp; Many survived only because they have been passed, a few seeds at a time, among family members and friends for generations.</p>\n\n<p>Heirloom plants are not suited to large-scale production because they cannot be harvested mechanically or transported long distances to markets.&nbsp; Many heirloom crops taste better and are tenderer than their hybrid replacements.&nbsp; Heirloom plants are a connection with the past.&nbsp; Like old furniture and antiques, the garden plants of earlier generations draw us close to those who have grown them before us.</p>\n\n<p>Why organic?&nbsp; Many gardeners choose the organic method because they want to be good stewards of the environment.&nbsp; They are concerned about pollution of air, water, and soil and about protecting the health of their families and communities.&nbsp; Simply stated, organic gardening is a method that uses our understanding of nature as a guide for gardening and care of plants without use of synthetic chemical pesticides, herbicides or synthetic fertilizers.</p>\n\n<p><a href=\"{filedir_3}TOMATOES_2014_GROWING_SEASON.pdf\" target=\"_blank\">Download/Print 2014 Tomato List</a></p>\n\n<h2>Tomatoes, Tomatoes, Tomatoes!!</h2>\n\n<p>ABE LINCOLN-Delicious, old-timey flavor with the uniformity and disease resistance of a hybrid.&nbsp; Male parent is an heirloom with a vigorous growth habit.&nbsp; Female parent provides earlier maturity.&nbsp; Globe-shaped, bright red fruits average 8 oz. or more. &nbsp;Indeterminate, 75 days.</p>\n\n<p>AMISH SALAD-These small, pink oval cherries seem to last forever on the vine without rotting or losing flavor.&nbsp; Indeterminate, 80 days.</p>\n\n<p>ARKANSAS TRAVELER-5 to 7 oz. pink heirloom.&nbsp; Incredibly delicious and smooth.&nbsp; Tolerant to heat and humidity, crack and disease resistance.&nbsp; A hillbilly favorite.&nbsp; 5 to 6 ft vines.&nbsp; Indeterminate, 80 to 90 days.</p>\n\n<p>AUNT RUBY&rsquo;S GERMAN GREEN-One of the largest green beefsteaks.&nbsp; Can grow to over 1 pound and are just delicious.&nbsp; They have brilliant, neon-green flesh with a strong, sweet, and fruity flavor.&nbsp; This heirloom came from Germany.&nbsp; Makes the best fried-green tomatoes.&nbsp; Indeterminate, 85 days.</p>\n\n<p>BEEFSTEAK-Extremely large-fruited beefsteak tomato with excellent vigor.&nbsp; An excellent slicing tomato that is popular with home gardeners.&nbsp; Indeterminate, 80 days.</p>\n\n<p>BETTER BOY-This hybrid will produce large, firm red fruit in the 1 lb. range.&nbsp; Indeterminate, 70 days.</p>\n\n<p>BIG BOY-This most popular hybrid tomato produces large, 14-16 oz. bright red fruits.&nbsp; Indeterminate, 80 days.</p>\n\n<p>BIG RAINBOW-If you are looking for an interesting sweet tomato to grow, Big Rainbow is the one.&nbsp; With its huge ribbed shoulders and golden color with red running through the flesh, these delicious tomatoes are perfect for slicing.&nbsp; Indeterminate, 80-102 days.</p>\n\n<p>BIG YELLOW ZEBRA-(PORKCHOP) This tomato also known as Pork Chop is a big, gorgeous, meaty, striped bright yellow beefsteak with fantastic flavors.&nbsp; Very sweet with a touch of citrus flavor.&nbsp; It just might be the best tasting true-yellow tomato in existence. Indeterminate, 80-85 days.</p>\n\n<p>BIG ZAC-Prolific producer of huge beefsteaks with rich, sweet, excellent flavor.&nbsp; Has a family history of large 5 lb. tomatoes. Indeterminate, 80 days.</p>\n\n<p>BLACK KRIM-An old Russian heirloom tomato that is almost black in color with green shoulders.&nbsp; With fruits up to 12 oz., these globe-shaped tomatoes have a salty flavor different from any tomato you have tasted.&nbsp; Indeterminate, 70 days.</p>\n\n<p>BLACK PLUM-Small, elongated oval fruits are deep mahogany, sweet and fruity.&nbsp; Wonderful for snacking off the vine or adding to a salad.&nbsp; Indeterminate, 82 days.</p>\n\n<p>BRANDYWINE-Features one of the finest-flavored large tomatoes ever offered.&nbsp; Vigorous plants look like potato vines with good yields of large, firm, clear skinned, rose-pink fruits weighing up to 1 &frac12; lb.&nbsp; Indeterminate, 90-100 days.</p>\n\n<p>BUSH CELEBRITY-Semi-spreading plants can be mulched and left unsupported, but perform best when staked.&nbsp; Standard for a main crop where multiple disease-resistance is required.&nbsp; Bright red 7 oz. globe-shaped fruit.&nbsp; Semi-determinate, 70 days.</p>\n\n<p>CHEROKEE BLACK-Similar to Cherokee Purple.</p>\n\n<p>CHEROKEE PURPLE-An old Cherokee Indian heirloom pre-1890.&nbsp; Beautiful deep dusky purple-pink color.&nbsp; Large fruit with superb sweet flavor.&nbsp; Indeterminate, relatively short vines.&nbsp; 80 days.</p>\n\n<p>CUORE DE TORO-(Bull&rsquo;s Heart)-Italian sweet oxheart heirloom that can reach up to 2 lbs. Indeterminate.&nbsp; 89 days.&nbsp; Vigorous plant.</p>\n\n<p>CUOSTRALEE-A French beefsteak heirloom that produces heavy quantities of huge (1-2 lbs.), red, blemish-free fruits that have intense, balanced flavors. Fruits are typically 4-inches across.&nbsp; Indeterminate, 85 days.</p>\n\n<p>DINNER PLATE-Good producer of delicious, scarlet red fruit 4\"-6\" across weighing up to 1-2 lbs. Indeterminate, 90 days.</p>\n\n<p>EARLY GIRL-Bears early in the season and continues throughout the summer.&nbsp; One of the earliest slicing varieties, producing 4-6 oz. bright red fruit.&nbsp; Heavy yielder.&nbsp; 57 days.</p>\n\n<p>EARLY GOLIATH-Extra-large harvests of big, 8 oz., red sweet fruits that are deep oblate to globe-shaped.&nbsp; Indeterminate, 58 days.</p>\n\n<p>GERMAN JOHNSON-Large pink heirloom with low acid.&nbsp; It has very few seeds which makes it perfect for slicing or canning.&nbsp; 76-80 days.</p>\n\n<p>GIANT BELGIUM-Average 2 lbs. but known to grow up to 5 lbs.&nbsp; Heavy yields of dark-pink fruit.&nbsp; Delicious sweet flavor.&nbsp; Indeterminate, 90 days.</p>\n\n<p>GIANT OXHEART-Plant produces high yields of large 2-3 lb. pinkish red heart-shaped tomatoes. The tomatoes are firm, meaty and have few seeds. Nice for stuffing or making puree and sauces. Very flavorful. Indeterminate, 89 days.</p>\n\n<p>GOLDEN JUBILEE-A very popular orange variety that is sweet and mild with low acid.&nbsp; Fruits are 6 to 7 oz. with few seeds.&nbsp; Indeterminate, 72 days.</p>\n\n<p>GOLDMANS ITALIAN-AMERICAN-A very high-yielding, blood red, paste tomato that averages about 1 pound. Fruit is fig-shaped and makes a very creamy tomato sauce.&nbsp; Indeterminate, 85 days.</p>\n\n<p>GRANDMA SUZY-Prolific producer of large 1 to 2 lb. beefsteak tomatoes.&nbsp; Was originally brought over from Germany.</p>\n\n<p>GRANNY CANTRELL-Ky. Family heirloom.&nbsp; Won a best taste award in 2006 in over 100 entries! 1-2 lb. slightly-flattened, pink fruit.&nbsp; Great for eating fresh, cooking or canning.&nbsp; Indeterminate, 80 days.</p>\n\n<p>HOMESTEAD-Old favorite dating back to 1954.&nbsp; Sets fruit even in high temperatures and good for hot climates.&nbsp; Resistant to fusarium wilt. Medium size, red. Determinate, 80 days.</p>\n\n<p>JELLY BEAN-Grape like fruits aptly named for their bite-sized sweetness and intense red color.&nbsp; Heavy clusters of up to 30 fruits each mature early on plants that have good disease resistance.&nbsp; Indeterminate, 72 days.</p>\n\n<p>JET STAR-A prolific producer of big, globe-shaped fruits that ripen all the way through and are quite free of cracks and scars.&nbsp; Excellent flavor with low acidity-&nbsp; Indeterminate, 70 days.</p>\n\n<p>JULIET-There will be no lack of Romeos who want to nibble on these and no lack of the delectable little plum-shaped fruits for them to adore. They come in clusters everywhere, 12&ndash;18 1&ndash;2 oz. grapes to each truss and an astounding 50&ndash;80 per plant.&nbsp; 60 days</p>\n\n<p>LARGE RED-Unique fully fluted red tomato that is grown in the garden at the Homeplace in LBL.&nbsp; Average 4-6 oz.&nbsp; Heavy yields.</p>\n\n<p>LITHUANIUM-2 lb. pink, flat, beefsteak.&nbsp; Very meaty, great tasting, very productive.&nbsp; Indeterminate.&nbsp; Potato leaf.&nbsp; 85 days.</p>\n\n<p>MARGLOBE- This old variety was released by USDA in 1925 and has heavy, vigorous vines that produce high yields of large (8-10 oz.), uniform, globe-shaped fruit. It is one of the first disease-resistant varieties and has good resistance to Verticillium and Fusarium wilts.&nbsp; Determinate 73 days.</p>\n\n<p>MORTGAGE LIFTER-Longtime favorite heirloom with large, smooth, pink-skinned fruit.&nbsp; Meaty, mild, sweet flavor with few seeds.&nbsp; The story goes that Radiator Charlie developed this tomato and sold enough plants to pay off his mortgage.&nbsp; Indeterminate, 75 to 80 days.</p>\n\n<p>MOSKVICH-4 TO 6 oz. deep, red fruit, extra-early tomato that is cold tolerant.&nbsp; Heirloom glove-shaped smooth tomato.&nbsp; Rich taste.&nbsp; Indeterminate, 60 days.</p>\n\n<p>MOUNTAIN FRESH-Superior flavor and excellent resistance to cracking and blossom-end rot make this tomato one of the most widely grown in the east and Midwest.&nbsp; Determinate, 79 days.</p>\n\n<p>MR. STRIPEY-This unique heirloom dates back to the 1800&rsquo;s and was brought here by the Virginian Mennonites from the old country.&nbsp; Vigorous indeterminate vines produce large, 1-3 lb. yellow fruit that have red streaks running throughout them.&nbsp; 80 days.</p>\n\n<p>&nbsp;PARKS WHOPPER-Big, juicy, crack-resistant fruit reaching 4&rdquo; across and up to 1+ lbs.&nbsp; Indeterminate.&nbsp; 65 days.</p>\n\n<p>PATIO TOMATO-Excellent hybrid tomato for containers and small gardens.&nbsp; Produces tasty 3-4oz fruit on strong, compact plants that only grow 2&rsquo; tall.&nbsp; Very high yield.&nbsp; Determinate. 70 days.</p>\n\n<p>PERSIMMON ORANGE-Great flavor and eye appeal!&nbsp; Large, plump, golden-orange fruits that average 1 to 2 lbs. and only a few seeds.&nbsp; Indeterminate, 80 days.</p>\n\n<p>PURPLE CALABASH-Deep purple-burgundy.&nbsp; Flattened, fluted fruit is about 3&rdquo; across.&nbsp; Flavor is distinctively winery, rich and intense.&nbsp; Indeterminate, 80-90 days.</p>\n\n<p>ROMA-A quality paste tomato, very thick flesh.&nbsp; Good for sauces and canning.&nbsp; Compact vines with large yields of 3&rdquo; long bright red fruit that is plum-shaped.&nbsp; Determinate, 78 days.</p>\n\n<p>ROSE-Rivals Brandywine for taste.&nbsp; Deep pink, large, smooth heirloom.&nbsp; Meaty and flavorful.&nbsp; Indeterminate, tall vines with normal-leaf plants.&nbsp; 78 days.</p>\n\n<p>RUSSIAN OXHEART-Produces large, thick-walled hear-shaped tomatoes.&nbsp; Good for sauces and pastes.</p>\n\n<p>RUTGERS-A highly productive, open-pollinated heirloom from the early 1930&rsquo;s.&nbsp; Produced a meaty thick-walled bright red tomato suitable for canning or slicing.&nbsp; Determinate.&nbsp; 70-80 days.</p>\n\n<p>SAUSAGE-Unusually shaped fruit, up to 6 inches long that look like red banana peppers.&nbsp; Excellent for making ketchup, paste and sauces.&nbsp; Indeterminate, 78-90 days.</p>\n\n<p>SNOW WHITE-Pale, yellow, ivory colored, small cherry fruit that has a delicious taste.&nbsp; One of the few white cherries.&nbsp; This one you will find yourself snacking on in the garden because it tastes so good.</p>\n\n<p>SUPER CHOICE-Rare and delicious old Ky heirloom. Preserved by Hobart Pearson of Berea who was given the seed from an Amish family of Liberty who had been growing it for over 100 years.&nbsp; Red, beefsteak weighing up to 1-2 lbs.&nbsp; Indeterminate. 85 days.</p>\n\n<p>SUPERSWEET 100-Unique salad type with amazingly high yields of supersweet 1-inch fruit with higher content of Vitamin C than any other tomato.&nbsp; Indeterminate, 65 days.</p>\n\n<p>&nbsp;SYLVAN GAUME-An old heirloom fromCanada which possibly originated in Russia.&nbsp; Red oxheart tomato that can reach up to 3 lbs or more!&nbsp; Wonderfully sweet, rich and meaty with outstanding yields.&nbsp; Does not produce typical oxheart leaves.&nbsp; Indeterminate.&nbsp; 75 days.</p>\n\n<p>TRUE BLACK BRANDYWINE- The &#39;true&#39; Black Brandywine was bred sometime in the late 1920&#39;s by Dr. Harold E. Martin.&nbsp; This tomato is incomparabley sweet.&nbsp; Large, prolific vines produce balck fruit in clusters of 3-5.&nbsp; Outstanding with rich, intense tomato flavor.&nbsp; Indeterminate, 80-90 days.</p>\n\n<p>WALTERS CANDY STRIPE- A fun beefsteak style tomato with large fruits that grow to 1-2 pounds. Fruits are brightly colored, with streaks of red, orange, yellow and pink. Flavor is very good, juicy, with good acidity.&nbsp; Indeterminate.&nbsp;&nbsp; 80-85 days.</p>\n\n<p>YELLOW PEAR-1 oz. yellow pear-shaped heirloom.&nbsp; Grown since the late 1800&rsquo;s. Tender, mild flavor, and low in acid.&nbsp; Delicious in salads or pickled.&nbsp; Popular in specialty markets and restaurant trade.&nbsp; Indeterminate, tall vigorous vines.&nbsp; 70 days.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (20, 1, 4, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}tomatoplants.gif\" style=\"float:right; height:225px; width:300px\" />If you like to grow your own vegetables and fruits, we carry a large line of produce plants in our greenhouse beginning in early spring and extending all the way to the fall growing season.&nbsp; We grow all our own plants using only the highest quality ingredients and natural products.&nbsp;&nbsp; We use these same plants in our own gardens, so you can be sure that we want them to be as healthy as possible. &nbsp; Starting in the spring, you can find onion sets, seed potatoes, asparagus crowns, and other spring plants such as cabbage, broccoli, brussells sprouts, cauliflower and kale.&nbsp;&nbsp;&nbsp; For the summer garden, we carry the largest selection of heirloom and hybrid tomatoes in this area with well over 40 varieties to choose from.&nbsp; You can also find pepper plants, eggplant, cucumber and squash peat pots and tomatillos in our&nbsp;greenhouse.&nbsp; In addition to vegetable plants, we carry a large line of fruits for your garden&nbsp; including strawberries, grapes, blackberries, raspberries and blueberries and fruit trees.</p>\n\n<h3>HEIRLOOM TOMATOES</h3>\n\n<p>There has been a huge surge of interest in heirloom tomatoes in recent years.&nbsp; Heirlooms are vegetables whose seeds are saved from generations past and passed down through the years, a few seeds at a time, among family members and friends.&nbsp; The greatest interest is in heirloom tomatoes but there other heirloom vegetables that are also gaining in popularity.&nbsp; Heirloom crops, especially tomatoes,&nbsp;are not suited&nbsp;for large-scale production because they cannot be harvested mechanically or transported long distances to markets. Most people think heirloom vegetables taste better than their hybrid replacements. Heirloom plants are a connection with the past.&nbsp; Like old furniture and antiques, the garden plants of earlier generations draw us close to those who have grown them before us.</p>\n\n<h3>GROWING YOUR GARDEN ORGANICALLY</h3>\n\n<p>Why organic? Many gardeners choose organic methods because they want to be good stewards of the environment. They are concerned about pollution of our air, water, and soil and about protecting the health of their families and communities. Simply stated, organic gardening is a method that uses our understanding of nature as a guide for gardening and care of plants without use of synthetic chemical pesticides, herbicides or synthetic fertilizers.&nbsp; We carry all the products you need to grow your garden free of chemical fertilizer or pesticides.</p>\n\n<p>Below is a list of Tomato Plants we are offering this growing season.&nbsp; Scroll down past the Tomato list for a list of Pepper Plants and Egg Plants as well.</p>\n\n<h2>Tomato Plants Available This Growing Season</h2>\n\n<p>ABE LINCOLN-Delicious, old-timey flavor with the uniformity and disease resistance of a hybrid.&nbsp; Male parent is an heirloom with a vigorous growth habit.&nbsp; Female parent provides earlier maturity.&nbsp; Globe-shaped, bright red fruits average 8 oz. or more. &nbsp;Indeterminate, 75 days.</p>\n\n<p>AMISH SALAD-These small, pink oval cherries seem to last forever on the vine without rotting or losing flavor.&nbsp; Indeterminate, 80 days.</p>\n\n<p>ARKANSAS TRAVELER-5 to 7 oz. pink heirloom.&nbsp; Incredibly delicious and smooth.&nbsp; Tolerant to heat and humidity, crack and disease resistance.&nbsp; A hillbilly favorite.&nbsp; 5 to 6 ft vines.&nbsp; Indeterminate, 80 to 90 days.</p>\n\n<p>AUNT RUBY&rsquo;S GERMAN GREEN-One of the largest green beefsteaks.&nbsp; Can grow to over 1 pound and are just delicious.&nbsp; They have brilliant, neon-green flesh with a strong, sweet, and fruity flavor.&nbsp; This heirloom came from Germany.&nbsp; Makes the best fried-green tomatoes.&nbsp; Indeterminate, 85 days.</p>\n\n<p>BEEFSTEAK-Extremely large-fruited beefsteak tomato with excellent vigor.&nbsp; An excellent slicing tomato that is popular with home gardeners.&nbsp; Indeterminate, 80 days.</p>\n\n<p>BETTER BOY-This hybrid will produce large, firm red fruit in the 1 lb. range.&nbsp; Indeterminate, 70 days.</p>\n\n<p>BIG BOY-This most popular hybrid tomato produces large, 14-16 oz. bright red fruits.&nbsp; Indeterminate, 80 days.</p>\n\n<p>BIG RAINBOW-If you are looking for an interesting sweet tomato to grow, Big Rainbow is the one.&nbsp; With its huge ribbed shoulders and golden color with red running through the flesh, these delicious tomatoes are perfect for slicing.&nbsp; Indeterminate, 80-102 days.</p>\n\n<p>BIG YELLOW ZEBRA-(PORKCHOP) This tomato also known as Pork Chop is a big, gorgeous, meaty, striped bright yellow beefsteak with fantastic flavors.&nbsp; Very sweet with a touch of citrus flavor.&nbsp; It just might be the best tasting true-yellow tomato in existence</p>\n\n<p>BIG ZAC-Prolific producer of huge beefsteaks with rich, sweet, excellent flavor.&nbsp; Has a family history of large 5 lb. tomatoes. Indeterminate, 80 days.</p>\n\n<p>BLACK KRIM-An old Russian heirloom tomato that is almost black in color with green shoulders.&nbsp; With fruits up to 12 oz., these globe-shaped tomatoes have a salty flavor different from any tomato you have tasted.&nbsp; Indeterminate, 70 days.</p>\n\n<p>BLACK PLUM-Small, elongated oval fruits are deep mahogany, sweet and fruity.&nbsp; Wonderful for snacking off the vine or adding to a salad.&nbsp; Indeterminate, 82 days.</p>\n\n<p>BRANDYWINE-Features one of the finest-flavored large tomatoes ever offered.&nbsp; Vigorous plants look like potato vines with good yields of large, firm, clear skinned, rose-pink fruits weighing up to 1 &frac12; lb.&nbsp; Indeterminate, 90-100 days.</p>\n\n<p>BUSH CELEBRITY-Semi-spreading plants can be mulched and left unsupported, but perform best when staked.&nbsp; Standard for a main crop where multiple disease-resistance is required.&nbsp; Bright red 7 oz. globe-shaped fruit.&nbsp; Semi-determinate, 70 days.</p>\n\n<p>CHEROKEE PURPLE-An old Cherokee Indian heirloom pre-1890.&nbsp; Beautiful deep dusky purple-pink color.&nbsp; Large fruit with superb sweet flavor.&nbsp; Indeterminate, relatively short vines.&nbsp; 80 days.</p>\n\n<p>CUORE DE TORO-(Bull&rsquo;s Heart)-Italian sweet oxheart heirloom that can reach up to 2 lbs. Indeterminate.&nbsp; 89 days.&nbsp; Vigorous plant.</p>\n\n<p>CUOSTRALEE-A French beefsteak heirloom that produces heavy quantities of huge (1-2 lbs.), red, blemish-free fruits that have intense, balanced flavors. Fruits are typically 4-inches across.&nbsp; Indeterminate, 85 days.</p>\n\n<p>EARLY GIRL-Bears early in the season and continues throughout the summer.&nbsp; One of the earliest slicing varieties, producing 4-6 oz. bright red fruit.&nbsp; Heavy yielder.&nbsp; 57 days.</p>\n\n<p>EARLY GOLIATH-Extra-large harvests of big, 8 oz., red sweet fruits that are deep oblate to globe-shaped.&nbsp; Indeterminate, 58 days.</p>\n\n<p>GERMAN JOHNSON-Large pink heirloom with low acid.&nbsp; It has very few seeds which makes it perfect for slicing or canning.&nbsp; 76-80 days.</p>\n\n<p>GIANT BELGIUM-Average 2 lbs. but known to grow up to 5 lbs.&nbsp; Heavy yields of dark-pink fruit.&nbsp; Delicious sweet flavor.&nbsp; Indeterminate, 90 days.</p>\n\n<p>GIANT OXHEART-Large, thick-walled pink tomatoes that are great for sauces.&nbsp; Indeterminate, 89 days.</p>\n\n<p>GOLDEN JUBILEE-A very popular orange variety that is sweet and mild with low acid.&nbsp; Fruits are 6 to 7 oz. with few seeds.&nbsp; Indeterminate, 72 days.</p>\n\n<p>GOLDMANS ITALIAN-AMERICAN-Large, squat, pear-shaped tomato that has a bloody, intense, red color when ripe that is perfect for sauces and preserves.</p>\n\n<p>GRANDMA SUZY-Prolific producer of large 1 to 2 lb. beefsteak tomatoes.&nbsp; Was originally brought over from Germany.</p>\n\n<p>GRANNY CANTRELL-Ky. Family heirloom.&nbsp; Won a best taste award in 2006 in over 100 entries! 1-2 lb. slightly-flattened, pink fruit.&nbsp; Great for eating fresh, cooking or canning.&nbsp; Indeterminate, 80 days.</p>\n\n<p>JELLY BEAN-Grape like fruits aptly named for their bite-sized sweetness and intense red color.&nbsp; Heavy clusters of up to 30 fruits each mature early on plants that have good disease resistance.&nbsp; Indeterminate, 72 days.</p>\n\n<p>JET STAR-A prolific producer of big, globe-shaped fruits that ripen all the way through and are quite free of cracks and scars.&nbsp; Excellent flavor with low acidity-&nbsp; Indeterminate, 70 days.</p>\n\n<p>JULIET-There will be no lack of Romeos who want to nibble on these and no lack of the delectable little plum-shaped fruits for them to adore. They come in clusters everywhere, 12&ndash;18 1&ndash;2 oz. grapes to each truss and an astounding 50&ndash;80 per plant.&nbsp; 60 days</p>\n\n<p>LARGE RED-Unique fully fluted red tomato that is grown in the garden at the Homeplace in LBL.&nbsp; Average 4-6 oz.&nbsp; Heavy yields.</p>\n\n<p>LITHUANIUM-2 lb. pink, flat, beefsteak.&nbsp; Very meaty, great tasting, very productive.&nbsp; Indeterminate.&nbsp; Potato leaf.&nbsp; 85 days.</p>\n\n<p>MARGLOBE- This old variety was released by USDA in 1925 and has heavy, vigorous vines that produce high yields of large (8-10 oz.), uniform, globe-shaped fruit. It is one of the first disease-resistant varieties and has good resistance to Verticillium and Fusarium wilts.&nbsp; Determinate 73 days.</p>\n\n<p>MORTGAGE LIFTER-Longtime favorite heirloom with large, smooth, pink-skinned fruit.&nbsp; Meaty, mild, sweet flavor with few seeds.&nbsp; The story goes that Radiator Charlie developed this tomato and sold enough plants to pay off his mortgage.&nbsp; Indeterminate, 75 to 80 days.</p>\n\n<p>MR. STRIPEY-This unique heirloom dates back to the 1800&rsquo;s and was brought here by the Virginian Mennonites from the old country.&nbsp; Vigorous indeterminate vines produce large, 1-3 lb. yellow fruit that have red streaks running throughout them.&nbsp; 80 days.</p>\n\n<p>OXHEART RUSSIAN-Produces large, thick-walled heart shaped tomatoes.&nbsp; Good for sauces and pastes.</p>\n\n<p>&nbsp;PARKS WHOPPER-Big, juicy, crack-resistant fruit reaching 4&rdquo; across and up to 1+ lbs.&nbsp; Indeterminate.&nbsp; 65 days.</p>\n\n<p>PATIO TOMATO-Excellent hybrid tomato for containers and small gardens.&nbsp; Produces tasty 3-4oz fruit on strong, compact plants that only grow 2&rsquo; tall.&nbsp; Very high yield.&nbsp; Determinate. 70 days.</p>\n\n<p>PERSIMMON ORANGE-Great flavor and eye appeal!&nbsp; Large, plump, golden-orange fruits that average 1 to 2 lbs. and only a few seeds.&nbsp; Indeterminate, 80 days.</p>\n\n<p>PURPLE CALABASH-Deep purple-burgundy.&nbsp; Flattened, fluted fruit is about 3&rdquo; across.&nbsp; Flavor is distinctively winery, rich and intense.&nbsp; Indeterminate, 80-90 days.</p>\n\n<p>ROMA-A quality paste tomato, very thick flesh.&nbsp; Good for sauces and canning.&nbsp; Compact vines with large yields of 3&rdquo; long bright red fruit that is plum-shaped.&nbsp; Determinate, 78 days.</p>\n\n<p>ROSE-Rivals Brandywine for taste.&nbsp; Deep pink, large, smooth heirloom.&nbsp; Meaty and flavorful.&nbsp; Indeterminate, tall vines with normal-leaf plants.&nbsp; 78 days.</p>\n\n<p>RUTGERS-A highly productive, open-pollinated heirloom from the early 1930&rsquo;s.&nbsp; Produced a meaty thick-walled bright red tomato suitable for canning or slicing.&nbsp; Determinate.&nbsp; 70-80 days.</p>\n\n<p>SNOW WHITE-Pale, yellow, ivory colored, small cherry fruit that has a delicious taste.&nbsp; One of the few white cherries.&nbsp; This one you will find yourself snacking on in the garden because it tastes so good.SUPER CHOICE-Rare and delicious old Ky heirloom. Preserved by Hobart Pearson of Berea who was given the seed from an Amish family of Liberty who had been growing it for over 100 years.&nbsp; Red, beefsteak weighing up to 1-2 lbs.&nbsp; Indeterminate. 85 days.</p>\n\n<p>SUPERSWEET 100-Unique salad type with amazingly high yields of supersweet 1-inch fruit with higher content of Vitamin C than any other tomato.&nbsp; Indeterminate, 65 days.</p>\n\n<p>&nbsp;SYLVAN GAUME-An old heirloom fromCanada which possibly originated in Russia.&nbsp; Red oxheart tomato that can reach up to 3 lbs or more!&nbsp; Wonderfully sweet, rich and meaty with outstanding yields.&nbsp; Does not produce typical oxheart leaves.&nbsp; Indeterminate.&nbsp; 75 days.</p>\n\n<p>TRUE BLACK BRANDYWINE- Great-tasting tomato that is extra large in size and full of the deep, earthy and sweet flavor that has made blackish-purple tomatoes so popular.&nbsp; Indeterminate. 80-90 days.</p>\n\n<p>WALTERS CANDY STRIPE- A fun beefsteak style tomato with large fruits that grow to 1-2 pounds. Fruits are brightly colored, with streaks of red, orange, yellow and pink. Flavor is very good, juicy, with good acidity.&nbsp; Indeterminate.&nbsp;&nbsp; 80-85 days.</p>\n\n<p>YELLOW PEAR-1 oz. yellow pear-shaped heirloom.&nbsp; Grown since the late 1800&rsquo;s. Tender, mild flavor, and low in acid.&nbsp; Delicious in salads or pickled.&nbsp; Popular in specialty markets and restaurant trade.&nbsp; Indeterminate, tall vigorous vines.&nbsp; 70 days.</p>\n\n<h2>Pepper Plants</h2>\n\n<p><a href=\"{filedir_3}2014_PEPPERS.pdf\">Download our 2014 Peppers List</a></p>\n\n<p>ANAHEIM CHILI-A mild, medium sized chili pepper that grows to 6-10 inches, often used when green, though it can be used when red. The basic variety ripens to a dark green/reddish color, but other strains ripen to full red. They are one of the most common chilis in the United States and are used in many foods and recipes. 1,000-2,500 scovilles</p>\n\n<p>BIG BERTHA-72 days. The largest elongated bell pepper available! Thick-walled, 7-inch long fruit ripen to red. Plants are disease resistant. Ideal for giant stuffed peppers.&nbsp;</p>\n\n<p>BIG JIM NUMEX-75-80 days. The largest of the Chile peppers, with medium-hot fruits measuring 10-12 inches long and weighing up to 4 ouncdes. Excellent for Chile Rellenos. 1,500-2.500 scoviles.</p>\n\n<p>CALIFORNIA WONDER-75 Days-Still the standard of the sweet bells. &nbsp;Fruits are medium size 4&rdquo; x 4&rdquo; with 3 to 4 lobes.&nbsp; A nice stuffing pepper with high yields.</p>\n\n<p>CAYENNE LONG SLIM RED-70 Days-Long, 6&rdquo; heirloom used for pickles, canning or drying.&nbsp; 5,000 scovilles.</p>\n\n<p>CHOCOLATE BELL-80 days. Medium sized pepper which matures from green to chocolate brown. &nbsp;Peppers are very sweet, have thick walls, and turn from green, to chocolate when mature.</p>\n\n<p>DATIL PEPPER-The Datil pepper is an exceptionally hot pepper that are similar to habaneros but have a sweeter, fruitier flavor.&nbsp; The Minorcan community around St. Augustine, Florida use the Datil is almost all their recipes. &nbsp;100,000-350,000 scoviles</p>\n\n<p>GHOST PEPPER-Bhut jolokia originated in northeastern India and is grown in Assam, Nagaland and Manipur, India and in Sri-Lanka and Bangladesh.&nbsp; Ripe, Ghost chili peppers are around 2 to 3&rdquo; in length and are orange-yellow.&nbsp; It has been determined that Ghost peppers have a Scoville heat unit of over 1,000,000 which makes it one of the hottest peppers in the world. 855,000-1,463,700 scovilles</p>\n\n<p>GOLIATH HYBRID-71 Days-Massive 4 lobed fruits set well under a variety of conditions.&nbsp; Measuring 4&rdquo; x 7&rdquo; with plenty of substance and terrific flavor.</p>\n\n<p>HABANERO-95 Days-1,000 times hotter than a Jalapeno.&nbsp; Tapered, lantern-shaped fruits ripen to a golden orange. 100,000-350,000 scovilles</p>\n\n<p>HUNGARIAN SWEET BANANA-68 Days.&nbsp; Long tapering 6 &ldquo; heirloom.&nbsp; Was an All America winner in 1941. 100-900 scovilles.</p>\n\n<p>HUNGARIAN YELLOW HOT WAX-58 Days.&nbsp; Yellow, hot carrot-shaped pepper with 5 &frac12; by 1 &frac12; smooth waxy fruits tapering to a point.&nbsp; Easy to stuff and to peel after roasting, thick-fleshed for frying.&nbsp; Its sunset-ripening colors from yellow to orange to red make the prettiest pickled pepper.&nbsp; Early and widely adapted. 3,500-8,000 scovilles</p>\n\n<p>JIMMY NARDELLO PEPPER-Originally from Basilicata, this heirloom pepper is sweet and light when eaten raw.&nbsp; As a bonus, it is also considered one the best frying peppers.</p>\n\n<p>JALAPENO GOLIATH-65 days.&nbsp; A record-breaking 6000-8000 scovilles (30% hotter than the average jalapeno) is what sets this pepper apart other jalapenos.&nbsp; Giant 4&rdquo; fruits that are dark, glossy green turning to scarlet red.</p>\n\n<p>ORANGE BLAZE-65-70 days. An early-ripening, orange bell with a very sweet flavor and multiple disease resistances.&nbsp; An AAS Winner.</p>\n\n<p>PEPPERONCINI-65&nbsp; Days.&nbsp; Tapered green fruit is 4 inches long and &frac34; inches wide.&nbsp; This popular, light green pepper has just the right amount of zing to add flavor and zest to Mexican-American cuisine, appetizers and fresh or pasta salads. 100-900 scovilles.</p>\n\n<p>PIMENTO PEPPER-A large, red, heart-shaped sweet pepper 3-4 inches long and 2-3 inches wide. Pimiento is Spanish for \"pepper.\" The flesh is sweet, succulent and more aromatic than that of the red bell pepper. Pimientos are the familiar red stuffing found in green olives.</p>\n\n<p>PURPLE BEAUTY-70 days.&nbsp; A Blocky, 4&rsquo; X 3 &frac12;&rdquo; thick walled, sweet bell that ripens from green to deep purple to red.</p>\n\n<p>RED BEAUTY-68 Days.&nbsp; Early, prolific, sweet bell pepper bears 4 inch by 3 &frac12; inch four-lobed fruits.</p>\n\n<p>THAI HOT-70 Days.&nbsp; These bushy plants produce large numbers of tiny, tapered fruit about 2 inches long by &frac14; inch wide.&nbsp; The fruit are borne upright on the plants and ripen from green to red fairly quickly once they reach full size. 50,000-100,000</p>\n\n<h2>Eggplants</h2>\n\n<p>BLACK BEAUTY-The standard oval, large black fruit of excellent quality although the yield is lower than some other varieties. 90 days.</p>\n\n<p>EARLY LONG PURPLE-A deep rich purple eggplant that is long and slightly bulbous. 75 days.</p>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (24, 1, 2, '', NULL, 'We are happy to announce that we can now fulfill all your Floral needs...', 'none', '<h2>Now Offering Floral Services</h2>\n\n<p>We are excited to announce that we are now a full service florist.&nbsp; We have always had one foot dabbling in the floral industry with our fresh cut flower bouquets we sell along with our beautiful sunflowers and zinnias we offer in the summer.&nbsp; In the past, we supplied all our own flowers which limited us to only seasonal sales.&nbsp; Expanding our floral business and knowledge allows us&nbsp;to offer fresh flowers all year round.&nbsp; Give us a call at 270-753-4050 for your next floral need. We offer free delivery and guarantee each arrangement will have that special Beans to Blossoms touch.&nbsp; Browse through our most recent designs.</p>\n\n<p>We offer the following services:</p>\n\n<ul>\n	<li>Wedding</li>\n	<li>Prom</li>\n	<li>Homecoming</li>\n	<li>Funeral/Bereavement</li>\n	<li>Anniversary</li>\n	<li>Valentine&#39;s Day</li>\n	<li>Birthday</li>\n	<li>Hospital</li>\n	<li>New Baby</li>\n	<li>Christmas</li>\n	<li>Hospital</li>\n</ul>', 'none', '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (25, 1, 6, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}soapad2.jpg\" style=\"float:right; height:225px; width:300px\" />All of our soaps are made from glycerin soap bases with some oils already incorporated. We then add some of our own organic herbs we grow on our farm as well as essential oils that we purchase from health food stores. A glycerin soap base is especially kind to troubled skin, and with a little touch of fresh or dried herbs, essential oils and other ingredients, herbal soaps can be very fun and beneficial.</p>\n\n<h2>Herbal Soaps We Make</h2>\n\n<p><strong>Tea Tree:</strong><br />\nThis clear soap is anti-fungal, antibacterial and antiseptic. Great for sores, ringworm, athlete&rsquo;s foot and toenail fungus.<br />\n<em>CONTAINS: Clear glycerin, Tea tree oil, Water</em><br />\n<br />\n<strong>Calendula Soap:</strong><br />\nA soft yellow soothing soap for sensitive skin. Calendula is anti-inflammatory and helps heal wounds. Effective on rashes, dry, chapped or cracked skin. Especially useful for dry eczema.<br />\n<em>CONTAINS: Goat milk Glycerin, Calendula Flowers, Water</em><br />\n<br />\n<strong>Lavender:</strong><br />\nGreat smelling soft purple soap with antiseptic and healing qualities. Lavender scent helps ease tension and stress. Great for the bath or shower before bedtime to help promote sleepiness.<br />\n<em>CONTAINS:&nbsp;Clear Glycerin, Lavender essential oil, Lavender flowers, Water,</em><br />\n<br />\n<strong>Shea Butter:</strong><br />\nGreat for dry skin!<br />\n<em>CONTAINS: Goats milk Glycerin, Sweet almond oil, Shea butter, Water, Beeswax</em><br />\n<br />\n<strong>Rosemary:</strong><br />\nA wonderful smelling soap that will lift your spirits! Useful as an astringent for cleansing the face and body.<br />\n<em>CONTAINS: Clear glycerin, Rosemary essential oil, Rosemary leaves, Water</em><br />\n<br />\n<strong>Oatmeal, Milk, and Honey:</strong><br />\nGreat for scrubbing and softening the skin!<br />\n<em>CONTAINS: Goats milk Glycerin, Powdered milk, Honey, Oatmeal, Beeswax, Water</em><br />\n<br />\n<strong>Kids Fun Soap:</strong><br />\nNeat fragrant soap that will make a child want to take a bath!<br />\n<em>CONTAINS: Clear Glycerin, Vitamin E, Water, Fragrance,&nbsp; color</em></p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (26, 1, 6, '<p>info</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (33, 1, 9, '<p>Signing your child up for the Little Sprouts Club is fast and easy.&nbsp; Just give us a call at 270-753-4050 and we will take your information over the phone.&nbsp; Then on the first day your child attends an activity, you can fill out the necessary forms.&nbsp; You can also reach us by e-mail at info@beanstoblossoms and we will send you the application by e-mail.&nbsp; We like to keep things simple!&nbsp; Be sure and sign up for our e-mail updates to get all the latest news and Little Sprouts info!</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (34, 1, 4, '<p><img alt=\"\" class=\"left\" src=\"{filedir_3}kyproud.gif\" style=\"float:left; height:73px; margin-bottom:30px; width:150px\" />Kentucky Proud means many things to many people &ndash; delicious blackberry jam, rich-tasting Kentucky country ham, mouth-watering tomatoes and melons, and much more &ndash; all produced with the greatest care to offer a special treat to families throughout Kentucky, the nation and the world. So when you buy Kentucky Proud, you&#39;re giving your family the best. And you&#39;re helping your community by keeping your food dollars at home.</p>\n\n<p>Buying Kentucky Proud is easy. Look for the label at your grocery store, farmers&#39; market, or roadside stand. Our secret ingredient is the hard work and dedication of Kentucky&#39;s farm families. Find out why \"Nothing else is close.\"</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (39, 1, 5, '<p>There are a number of products available to help your garden and plants reach it&#39;s full potential.&nbsp; Whether you are building a new flower bed or just need to amend an existing one, let us help you choose the right product for each project you are working on.&nbsp;</p>\n\n<ul>\n	<li>CYPRESS MULCH</li>\n	<li>PEAT MOSS</li>\n	<li>PERLITE</li>\n	<li>POTTING SOIL</li>\n	<li>RICE HULLS</li>\n	<li>TOP SOIL</li>\n	<li>VERMICULITE</li>\n</ul>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (40, 1, 5, '<p>Landscape fabric is useful in a number of applications in gardening and landscaping.&nbsp; Placing landscape fabric down before planting landscape plants help keep weeds down and conserves moisture.&nbsp; You can also use it in vegetable gardens to cut down on tilling and hoeing between rows.</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (31, 1, 6, '<p><img alt=\"\" class=\"left\" src=\"{filedir_3}giftcertificatead.gif\" style=\"float:left; height:135px; width:170px\" />Just can&#39;t find that special gift for that special someone?&nbsp; We offer gift certificates for any amount that can be applied towards anything we offer here at Beans to Blossoms.&nbsp; Gift certificates come with a special decorative envelope, making it a perfect, hassle-free gift.&nbsp; Give us a call at 270-753-4050 and we can take your order over the phone and mail it for you so you never even have to leave your house.</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (32, 1, 9, '<p>Each year we search high and low for fun, easy, educational activities to include in our Little Sprouts Activity schedule.&nbsp; We try to find activities that are interesting and exciting&nbsp; for every age of our Little Sprouts-from the youngest to the oldest.&nbsp; We hope these activities will enrich you and your childs life and create an interest in gardening and nature to last a lifetime!&nbsp; Happy Gardening!.</p>\n\n<h1>Upcoming Events</h1>\n\n<p>All events are held at 1:00 but are subject to change.&nbsp; Please check one week in advance for final schedule.</p>\n\n<p>Feb 7th-&nbsp; &ldquo;For the Love of Flowers&rdquo;-&nbsp; Kids will make their own Valentines Flower Bouquet for that special person in their lives... or to keep for themselves.&nbsp; Cost $7.00.</p>\n\n<p>March 7th-&nbsp; &ldquo;Very Hairy Caterpillar&rdquo;-&nbsp; Kids will use soil, pantyhose and seed to make a caterpillar that sprouts hair!&nbsp; Cost $3.00.</p>\n\n<p>April 4th-&nbsp; &ldquo;Herbs Galore&rdquo;- Kids will recycle tin cans to make moss covered planters and fill with herbs.&nbsp; Cost $6.00.</p>\n\n<p>May 9th- &ldquo;Mothers Day Hanging Basket&rdquo;-&nbsp; Kids will plant their Mother a hanging basket with flowers to give for Mothers Day.&nbsp; Cost $10.00.</p>\n\n<p>&nbsp;June 6th-&nbsp; &ldquo;Grilling Herbs for Dad&rdquo;-&nbsp; Kids will take dried herb stems and remove the leaves and mix their own special grilling Herb blend.&nbsp; They will put them into a neat jar to give to Dad for Father&rsquo;s Day.&nbsp; Cost $6.00.</p>\n\n<p>July 4th-&nbsp; No activity planned.</p>\n\n<p>August 1st-&nbsp; &ldquo;Fairies among us&rdquo;.&nbsp; Kids will make their own fairy garden complete with fairy, pathway, plants and other neat things a fairy would like.&nbsp; Cost $12.00.</p>\n\n<p>September 5th-&nbsp; &ldquo;Seed Saving 101&rdquo;-&nbsp; Kids will learn how to take those old seed heads from Marigolds and Zinnias and save the seeds for next year,&nbsp; They will make homemade seed packets in which to store the seeds.&nbsp; Cost- $3.00.</p>\n\n<p>October 3rd- &ldquo;Homemade Dried Herb Wreath&rdquo;-&nbsp; Kids will take dried herbs gathered from the summer and turn them into beautiful, fragrant mini- wreaths.&nbsp; Cost- $8.00.</p>\n\n<p>November 7th-&nbsp; &ldquo;Turkey Gourds&rdquo;-&nbsp; Kids will take gourds and turn them into Turkey&rsquo;s!&nbsp; Cost $3.00</p>\n\n<p>December 5th- &ldquo;Homemade Christmas Wreath&rdquo;-&nbsp; Kids will use grapevine, honeysuckle and greenery to make their own Christmas mini- wreath.&nbsp; Cost $10.00.</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (35, 1, 4, '<p><img alt=\"\" class=\"left\" src=\"{filedir_3}organic.gif\" style=\"float:left; height:135px; width:170px\" />Organic Gardening is a term used to describe how one gardens by working in harmony with natural systems that begin within the soil and includes the water supply, wildlife, people, and even insects. It focuses on continually minimizing and replenishing any resources that may have been consumed by plants during the gardening process.and does not include the use of synthetic fertilizers or pesticides.</p>\n\n<p>&nbsp;</p>\n\n<p>Organic Gardening involves using materials that can give something back to the soil to help keep it restored and healthy. Organic matter such as grass clippings, decaying plant waste, fall leaves and vegetable scraps are the building blocks of compost. Adding compost to your soil is a wonderful and sure way of raising a healthy and beautiful garden organically. Another main point to remember when gardening organically includes growing plants that are well suited to the site. Plants that are better adapted to the climate and growing conditions provided will not have to be given much attention. Do not allow plants to become too wet, too dry or too shaded. Plants that are less stressed out will have a better chance of not being attacked by insects.</p>\n\n<p>Encourage beneficial insects to hunt in your garden. The common ladybug, birds, frogs and lizards control pests by eating them. You can make your garden hospitable for your natural allies by keeping a water source (just a dish-full, it that&#39;s all you got) nearby for them and by not wiping out the entire pest population with a pesticide and sending them somewhere else in search of water or food. Grow plants with small blossoms like Sweet Alyssum and Dill, which attract predatory insects who feed on flower nectar between attacks on pests. Sticky traps and pheromone lures are other ways to control pests without hurting other living things in your garden. Horticulture oils, insecticidal soaps and hot pepper sprays also work well against many pests.</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (36, 1, 4, '<p>Looking to make your own compost. Follow these easy steps and you&#39;ll be composting in no time.</p>\n\n<h2>What You&#39;ll Need</h2>\n\n<ol>\n	<li><em>Carbon-rich brown materials, like fall leaves, straw, dead flowers from your garden and shredded newspaper.</em></li>\n	<li><em>Nitrogen-rich \"green\" materials, like grass clippings, plant-based kitchen waste (vegetable peelins and fruit rinds, but no meat scraps), or barnyard animal manure (evem though it&#39;s color is usually brown, it is full of nitrogen like the other \"green\" stuff).</em></li>\n	<li><em>A shovelful or two of garden soil.</em></li>\n	<li><em>A site that is at least 3 feet long by 3 feet wide.</em></li>\n</ol>\n\n<h2>What You Do</h2>\n\n<p><img alt=\"\" class=\"left\" src=\"{filedir_3}compost.gif\" style=\"float:left; height:135px; width:170px\" />Start by spreading a several-inch thick layer of coarse, dry brown stuff, like straw, cornstalks, or leaves, where you want to build your pile. Top that with several inches of green stuff. Add a thin layer of soil and then add a layer of brown stuff. Moisten the three layers. Continue layering the green stuff and brown stuff with a little soil mixed in until the pile is 3 feet high. If it takes a while before you have enough material to build the pile that high, don&#39;t worry -- just keep adding to the pile until it gets to at least 3 feet high. Every couple of weeks, use a garden fork or shovel to turn the pile, moving the stuff at the center of the pile to the outside and working the stuff on the outside to the center of the pile. Keep the pile moist, but not soggy. When you first turn the pile, you may see steam rising from it. This is a sign the pile is heating up as a result of the materials in it decomposing. If the turn the pile every couple weeks and keep it moist, you will see earthworms throughout the pile and the center of the pile turining into a black, crumbly, sweet-smelling soil. When you have enough finished compost in the pile to use in your garden, shovel out the finished compost and start you</p>\n\n<h2>Do You Need A Compost Bin to Compost?</h2>\n\n<p>No. If the pile is at least 3 by 3 by 3 feet, it will have enough mass to decompose in just a pile without a bin. Many gardeners buy or biuld compost bins, however, because they keep the pile neat. Some are designed to make turning the compost easier or to protect it from soaking rains.</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (41, 1, 5, '<p>We pride ourselves in the fact that most of pest and disease control products we carry make very little impact on the environment.&nbsp; Our background in organic gardening will help us to teach you how to grow your food and flowers the natural way which is much better for you and our world.</p>\n\n<ul>\n	<li>Bayer 3 in 1 Pest Control</li>\n	<li>Horticulture Oil</li>\n	<li>Japanese Beetle Traps</li>\n	<li>Milky Spore</li>\n	<li>Safer Soap</li>\n	<li>Serenade</li>\n	<li>Sevin Dust</li>\n	<li>Sluggo</li>\n</ul>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (37, 1, 6, '<p>info asdfasd asd f asdasdfasd fasdf</p>\n\n<h2>Why Use Soy Candles??</h2>\n\n<p><img alt=\"\" class=\"left\" src=\"{filedir_3}soycandles.gif\" style=\"float:left; height:135px; margin-bottom:45px; margin-right:30px; width:170px\" /></p>\n\n<ul>\n	<li><em>Burns cleaner than paraffin wax and virtually soot free</em></li>\n	<li><em>Made with lead-free wicks</em></li>\n	<li><em>Biodegradable which makes it easy to clean up with hot soapy water</em></li>\n	<li><em>Excellent burn time quality and quantity; it will burn 30% longer than paraffin wax</em></li>\n	<li><em>Made from 100% all natural soy beans</em></li>\n	<li><em>This helps support our USA farmers and their families</em></li>\n	<li><em>Non-toxic and non-carcinogenic</em></li>\n	<li><em>Tends to have a molted appearance due to the natural content of the wax and will not alter your candles burning</em></li>\n</ul>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (38, 1, 5, '<p><img alt=\"\" class=\"right\" src=\"{filedir_3}fertilizers.jpg\" style=\"float:right; height:225px; width:300px\" />Plants perform at their peak when they are receiving proper nutrition.&nbsp; This entails making sure the 3 main ingredients in fertilizer which is nitrogen, phosphorus and potassium are&nbsp;balanced.&nbsp; In addition, there are a number of minor nutrients and trace minerals in the soil that a plant needs for maximum nutrition.&nbsp; If your soil is lacking in any of these nutrients you may have to provide them yourself.&nbsp; Below is a list of fertilizer and soil ammendments we carry in our garden center to help your plants grow properly.</p>\n\n<ul>\n	<li>BLOOD MEAL</li>\n	<li>BONE MEAL</li>\n	<li>COTTONBUR COMPOST</li>\n	<li>COW MANURE</li>\n	<li>CHICKEN COMPOST</li>\n	<li>FISH/SEAWEED EMULSION (NEPTUNES HARVEST)</li>\n	<li>GARDEN LIME</li>\n	<li>GREEN SAND</li>\n	<li>GYPSUM</li>\n	<li>WORM CASTINGS</li>\n	<li>10-10-10 CHEMICAL FERTILIZER</li>\n</ul>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (42, 1, 5, '<p>No matter what the season, you can be sure to find the seeds you needs at Beans to Blossoms.&nbsp; Starting in early spring through fall we carry all the varieties you are looking forward and probably some you never even heard of.&nbsp; Whether you need just a few or in bulk quantity, we can accomodate your every need.&nbsp; For those of you that want to make sure you are using the safest seeds possible, we carry seeds from the Hart Seed Company that has pledged to only carry seeds that are GE free.&nbsp; Hart Seed Company has been in business since 1892 and has a reputation for carrying quality seeds at a fair price.</p>\n\n<h2>Learn More Aout GE or GMO seeds</h2>\n\n<p><a href=\"{filedir_3}GMO.pdf\" target=\"_blank\">GE/GMO educational document</a></p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (45, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-3:00 p.m.', 'none', '<p>3 Herb Pots with Markers-Kids will make 3 cute decorated herb pots and markers.&nbsp; They will plant them with little seedlings to keep in a sunny window untill time to bring them outside.&nbsp; Cost $5.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (46, 1, 10, '', NULL, '', NULL, '', NULL, '1:00 p.m.', 'none', '<p>Homemade Christmas Wreath.&nbsp; Kids will use grapevine, honeysuckle and greenery to make theri own Christmas mini-wreath.&nbsp; Cost $10.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (47, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Turkey Gourds.&nbsp; Kids will take gourds and turn them into Turkeys.&nbsp; Cost $3.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (48, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Homemade Dried Herb Wreath.&nbsp; Kids will take dried herbs gathered from the summer and turn them into beautiful, fragrant mini-wreaths.&nbsp; Cost $8.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (49, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Seed Saving 101.&nbsp; Kids will learn how to take those old seed heads from Marigolds and Zinnias and save the seeds for next year.&nbsp; They will make homemade seed packets in which to store the seeds.&nbsp; Cost $3.00.</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (50, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Fairies among us.&nbsp; Kids will make theri own fairy garden complete with a fairy, pathway, plants and other neat things a fairy would like. &nbsp; Cost $12.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (51, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>No activity planned.</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (52, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Grilling Herbs for Dad.&nbsp; Kids will take dried herb stems and remove the leaves and mix their own special grilling herb blend.&nbsp; They will put them into a neat jar to give to Dad for Father&#39;s Day. &nbsp;&nbsp; Cost&nbsp; $6.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (53, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Mother&#39;s Day Hanging Basket.&nbsp; Kids will plant their Mother a hanging basket with flowers to give for Mother&#39;s Day. &nbsp; Cost $10.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (54, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>Herbs Galore!&nbsp; Kids will recycle tin cans to make moss covered planters and fill with herbs. &nbsp; Cost $6.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (55, 1, 10, '', NULL, '', NULL, '', NULL, '1:00-p.m.', 'none', '<p>\"Very Hairy Caterpillar\"- Kids will use soil, pantyhose and seed tomake a caterpilllar that sprouts hair!&nbsp; Cost $3.00</p>', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (62, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>The flowers in this impressive bouquet just pop against this beautiful blue vase.&nbsp; Perfect for Anniversary, Birthday, Get Well, or Mother&#39;s Day.</p>', 'none', '{filedir_4}Beautiful_In_Blue_Large_full.jpg', 'none', '', 'none', '', 'none', '52.00', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (72, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>The bold blue delphiniums mixed with the soft pink roses and white alstromerias make a lovely combination for either a sympathy arrangement or centerpiece for a wedding.&nbsp; Picture shown represents a Small Size.</p>', 'none', '{filedir_4}Sweet_Memories_Standing_Spray_Medium_full.jpg', 'none', '100.00', 'none', '130.00', 'none', '155.00', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (63, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>In lieu of flowers, why not send something from our Bereavement Collection?&nbsp; Choose from several different styles of angels or Memory stones for that special touch.</p>', 'none', '{filedir_4}Bereavement_Collection_full.jpg', 'none', '', 'none', '', 'none', '', 'none', 'Pricing varies', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (64, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This sweet round centerpiece with carnations, pompons, statice and misty will sure to bring a smile to everyone&#39;s face.</p>', 'none', '{filedir_4}Best_Wishes_Small_full.jpg', 'none', '28.00', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (65, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This croton is just one of many beautiful houseplants we can put in a decorative ceramic pot for a lasting bereavement gift, housewarming or birthday gift.</p>', 'none', '{filedir_4}Croton_In_Ceramic_Pot_Large_full.jpg', 'none', '', 'none', '', 'none', '', 'none', 'Various prices', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (66, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This sweet basket arrangement will definitely make someone&#39;s day very happy.&nbsp; Perfect for Anniversary, Get Well or Just Because.</p>', 'none', '{filedir_4}Happy_Day_Small_full.jpg', 'none', '32.00', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (67, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>Just one of many houseplants we can put together for that perfect gift for someone.</p>', 'none', '{filedir_4}houseplant.jpg', 'none', '', 'none', '', 'none', '', 'none', 'Various prices', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (68, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>Congratulate Mommy and Baby with a cute novelty arrangement.&nbsp; Can be designed using pink, blue or yellow.</p>', 'none', '{filedir_4}New_Baby_Small_full.jpg', 'none', '22.00', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (69, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This elongated centerpiece will add a nice touch to any table for whatever the occasion!&nbsp; White for a wedding or blue for a baby shower....we can make it work!</p>', 'none', '{filedir_4}Pretty_In_Pink_full.jpg', 'none', '', 'none', '', 'none', '', 'none', '26.00', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (70, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>Nothing says \"I Love You\" more than flowers.&nbsp; Perfect for Valentine&#39;s Day or for anytime you want to show how much you care.</p>', 'none', '{filedir_4}Sweet_Love_Small_full.jpg', 'none', '20.00', 'none', '', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (71, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This unique red and white design is perfect to add elegance and color to any winter setting.</p>', 'none', '{filedir_4}Winter_Elegance_Medium_full.jpg', 'none', '', 'none', '26.00', 'none', '', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (73, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>The bold blue delphiniums mixed with the soft pink roses and white alstromerias make a lovely combination for either a sympathy arrangement or centerpiece for a wedding.&nbsp; Picture shown represents Small Size.</p>', 'none', '{filedir_4}Sweet_Memories_Urn_Medium_full.jpg', 'none', '100.00', 'none', '130.00', 'none', '155.00', 'none', '', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (74, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>We can custom design a bud vase with the flowers of your choice on site.</p>', 'none', '{filedir_4}msu_bud_vases_josey_2nd_grade_009.JPG', 'none', '', 'none', '', 'none', '', 'none', 'Pricing varies.  ', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (75, 1, 7, '<p><strong>Now Offering Floral Services</strong></p>\n\n<p>We are excited to announce that we are now a full service florist. We have always had one foot dabbling in the floral industry with our fresh cut flower bouquets we sell along with our beautiful sunflowers and zinnias we offer in the summer. In the past, we supplied all our own flowers which limited us to only seasonal sales. Expanding our floral business and knowledge allows us to offer fresh flowers all year round. Give us a call at 270-753-4050 for your next floral need. We offer free delivery and guarantee each arrangement will have that special Beans to Blossoms touch. <a href=\"http://www.beanstoblossoms.com/florist/florist-portfolio\" target=\"_self\">Browse through our most recent designs</a>.</p>\n\n<p><strong>We offer the following services:</strong></p>\n\n<ul>\n	<li>Wedding</li>\n	<li>Prom</li>\n	<li>Homecoming</li>\n	<li>Funeral/Bereavement</li>\n	<li>Anniversary</li>\n	<li>Valentine&#39;s Day</li>\n	<li>Birthday</li>\n	<li>Hospital</li>\n	<li>New Baby</li>\n	<li>Christmas</li>\n	<li>Hospital</li>\n</ul>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL);
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (76, 1, 10, '', NULL, '', NULL, '', NULL, '1:00 p.m.', 'none', '<p>Join us this Saturday for a free seminar about Above Ground Gardening or as some people call it Raised Bed Gardening.&nbsp; Our good friend Tim Cantrell, who has lots of experience in this area, will be the featured speaker and he has a wealth of information on this subject.&nbsp; Gardening in raised beds is becoming ever more popular as it gives the gardener more control with water retention, fertilization, PH levels and seems to produce a higher yield if done correctly.&nbsp; We think this is one seminar you do not want to miss!&nbsp; Hope to see you there!</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL);
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (77, 1, 10, '', NULL, '', NULL, '', NULL, 'November 22, 2014', 'none', '<p>Come join us for our annual Christmas Open House this Saturday!&nbsp; We have unique hand-made Wreaths, Poinsettias, Fresh cut frasir firs, Carson flags, Rustic Tin Ornaments, Homemade Herbal Soap and boutique clothes and accessories.</p>', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL);
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (80, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This pretty bouquet blends pink roses and carnations along with blue delphinium and purple aster and statice.&nbsp; Perfect for a birthday, get well or country wedding.</p>', 'none', '{filedir_4}mixed_pastel_bouquet.jpg', 'none', '', 'none', '', 'none', '', 'none', '$40.00', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (81, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>What a pretty combination to brighten up someone&#39;s day.&nbsp; A gerber daisy, carnations, roses, poms along with foliage and filler in just the right places.</p>', 'none', '{filedir_4}Spring_Beauty.jpg', 'none', '', 'none', '', 'none', '', 'none', '$40.00', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (82, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>The ultimate way to say \"I Love You\" no matter time of year it is.&nbsp;</p>', 'none', '{filedir_4}Dozen_roses.jpg', 'none', '', 'none', '', 'none', '', 'none', 'Call for pricing', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (83, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This bereavement stepping stone easel combination becomes a special keepsake for someone who has lost a loved one.&nbsp; Can be designed with roses, gerber daisies, carnations and other flowers.&nbsp;</p>', 'none', '{filedir_4}Bereavement_stepping_stone_easel.jpg', 'none', '', 'none', '', 'none', '', 'none', '$80 and up. Price depends on flowers used.', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (84, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This country wreath contains hydrangeas, roses and dahlias and is topped with a burlap and lace bow.&nbsp; For your own front door or would be a wonderful ever-lasting bereavement gift.</p>', 'none', '{filedir_4}Country_wreath.jpg', 'none', '', 'none', '', 'none', '', 'none', '$74.00', 'none');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`) VALUES (85, 1, 11, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '<p>This oval grapevine wreath adorned with daisies, roses, larkspur and wisteria will look charming on your front door.</p>', 'none', '{filedir_4}Spring_wreath.jpg', 'none', '', 'none', '', 'none', '', 'none', '$45.00', 'none');


#
# TABLE STRUCTURE FOR: exp_channel_entries_autosave
#

DROP TABLE IF EXISTS `exp_channel_entries_autosave`;

CREATE TABLE `exp_channel_entries_autosave` (
  `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `original_entry_id` int(10) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  `forum_topic_id` int(10) unsigned DEFAULT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `title` varchar(100) NOT NULL,
  `url_title` varchar(75) NOT NULL,
  `status` varchar(50) NOT NULL,
  `versioning_enabled` char(1) NOT NULL DEFAULT 'n',
  `view_count_one` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_two` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_three` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_four` int(10) unsigned NOT NULL DEFAULT '0',
  `allow_comments` varchar(1) NOT NULL DEFAULT 'y',
  `sticky` varchar(1) NOT NULL DEFAULT 'n',
  `entry_date` int(10) NOT NULL,
  `year` char(4) NOT NULL,
  `month` char(2) NOT NULL,
  `day` char(3) NOT NULL,
  `expiration_date` int(10) NOT NULL DEFAULT '0',
  `comment_expiration_date` int(10) NOT NULL DEFAULT '0',
  `edit_date` bigint(14) DEFAULT NULL,
  `recent_comment_date` int(10) DEFAULT NULL,
  `comment_total` int(4) unsigned NOT NULL DEFAULT '0',
  `entry_data` text,
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `author_id` (`author_id`),
  KEY `url_title` (`url_title`),
  KEY `status` (`status`),
  KEY `entry_date` (`entry_date`),
  KEY `expiration_date` (`expiration_date`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_channel_fields
#

DROP TABLE IF EXISTS `exp_channel_fields`;

CREATE TABLE `exp_channel_fields` (
  `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  `field_name` varchar(32) NOT NULL,
  `field_label` varchar(50) NOT NULL,
  `field_instructions` text,
  `field_type` varchar(50) NOT NULL DEFAULT 'text',
  `field_list_items` text NOT NULL,
  `field_pre_populate` char(1) NOT NULL DEFAULT 'n',
  `field_pre_channel_id` int(6) unsigned DEFAULT NULL,
  `field_pre_field_id` int(6) unsigned DEFAULT NULL,
  `field_ta_rows` tinyint(2) DEFAULT '8',
  `field_maxl` smallint(3) DEFAULT NULL,
  `field_required` char(1) NOT NULL DEFAULT 'n',
  `field_text_direction` char(3) NOT NULL DEFAULT 'ltr',
  `field_search` char(1) NOT NULL DEFAULT 'n',
  `field_is_hidden` char(1) NOT NULL DEFAULT 'n',
  `field_fmt` varchar(40) NOT NULL DEFAULT 'xhtml',
  `field_show_fmt` char(1) NOT NULL DEFAULT 'y',
  `field_order` int(3) unsigned NOT NULL,
  `field_content_type` varchar(20) NOT NULL DEFAULT 'any',
  `field_settings` text,
  PRIMARY KEY (`field_id`),
  KEY `group_id` (`group_id`),
  KEY `field_type` (`field_type`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;

INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (1, 1, 1, 'page_content', 'page-content', '', 'wygwam', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'none', 'n', 1, 'any', 'YTo4OntzOjY6ImNvbmZpZyI7czoxOiIyIjtzOjU6ImRlZmVyIjtzOjE6Im4iO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ==');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (2, 1, 2, 'news_teaser_sentence', 'News Teaser Sentence', '', 'text', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'none', 'n', 1, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (3, 1, 2, 'news_content', 'News Content', '', 'wygwam', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'none', 'n', 2, 'any', 'YTo4OntzOjY6ImNvbmZpZyI7czoxOiIyIjtzOjU6ImRlZmVyIjtzOjE6Im4iO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ==');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (4, 1, 3, 'time', 'Time', '', 'text', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'none', 'n', 1, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (5, 1, 3, 'description', 'Description', '', 'wygwam', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'none', 'n', 2, 'any', 'YTo4OntzOjY6ImNvbmZpZyI7czoxOiIyIjtzOjU6ImRlZmVyIjtzOjE6Im4iO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ==');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (6, 1, 5, 'florist_des', 'florist-des', '', 'wygwam', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'none', 'n', 1, 'any', 'YTo4OntzOjY6ImNvbmZpZyI7czoxOiIyIjtzOjU6ImRlZmVyIjtzOjE6Im4iO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ==');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (10, 1, 5, 'florist_price_small', 'florist-price-small', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 5, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (9, 1, 5, 'florist_image_full', 'florist-image-full', '', 'file', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 4, 'any', 'YToxMDp7czoxODoiZmllbGRfY29udGVudF90eXBlIjtzOjM6ImFsbCI7czoxOToiYWxsb3dlZF9kaXJlY3RvcmllcyI7czoxOiI0IjtzOjEzOiJzaG93X2V4aXN0aW5nIjtzOjE6InkiO3M6MTI6Im51bV9leGlzdGluZyI7czoyOiI1MCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (11, 1, 5, 'florist_price_medium', 'florist-price-medium', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 6, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (12, 1, 5, 'florist_price_large', 'florist-price-large', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 7, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');
INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES (13, 1, 5, 'florist_price', 'florist-price', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 4, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');


#
# TABLE STRUCTURE FOR: exp_channel_form_settings
#

DROP TABLE IF EXISTS `exp_channel_form_settings`;

CREATE TABLE `exp_channel_form_settings` (
  `channel_form_settings_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '0',
  `channel_id` int(6) unsigned NOT NULL DEFAULT '0',
  `default_status` varchar(50) NOT NULL DEFAULT 'open',
  `require_captcha` char(1) NOT NULL DEFAULT 'n',
  `allow_guest_posts` char(1) NOT NULL DEFAULT 'n',
  `default_author` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`channel_form_settings_id`),
  KEY `site_id` (`site_id`),
  KEY `channel_id` (`channel_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_channel_member_groups
#

DROP TABLE IF EXISTS `exp_channel_member_groups`;

CREATE TABLE `exp_channel_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `channel_id` int(6) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`channel_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 1);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 2);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 3);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 4);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 5);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 6);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 7);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 8);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 9);
INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES (5, 10);


#
# TABLE STRUCTURE FOR: exp_channel_titles
#

DROP TABLE IF EXISTS `exp_channel_titles`;

CREATE TABLE `exp_channel_titles` (
  `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  `forum_topic_id` int(10) unsigned DEFAULT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `title` varchar(100) NOT NULL,
  `url_title` varchar(75) NOT NULL,
  `status` varchar(50) NOT NULL,
  `versioning_enabled` char(1) NOT NULL DEFAULT 'n',
  `view_count_one` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_two` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_three` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_four` int(10) unsigned NOT NULL DEFAULT '0',
  `allow_comments` varchar(1) NOT NULL DEFAULT 'y',
  `sticky` varchar(1) NOT NULL DEFAULT 'n',
  `entry_date` int(10) NOT NULL,
  `year` char(4) NOT NULL,
  `month` char(2) NOT NULL,
  `day` char(3) NOT NULL,
  `expiration_date` int(10) NOT NULL DEFAULT '0',
  `comment_expiration_date` int(10) NOT NULL DEFAULT '0',
  `edit_date` bigint(14) DEFAULT NULL,
  `recent_comment_date` int(10) DEFAULT NULL,
  `comment_total` int(4) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `author_id` (`author_id`),
  KEY `url_title` (`url_title`),
  KEY `status` (`status`),
  KEY `entry_date` (`entry_date`),
  KEY `expiration_date` (`expiration_date`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=86 DEFAULT CHARSET=utf8;

INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (63, 1, 11, 1, NULL, '72.51.213.37', 'Bereavement Collection', 'bereavement-collection', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391272860, '2014', '02', '01', 0, 0, 20140201164237, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (81, 1, 11, 1, NULL, '104.176.251.97', 'Spring Beauty', 'spring-beauty', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1424544960, '2015', '02', '21', 0, 0, 20150221190235, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (5, 1, 1, 1, NULL, '72.51.213.37', 'Our Story', 'our-story', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383669960, '2013', '11', '05', 0, 0, 20140209171257, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (6, 1, 1, 1, NULL, '72.51.213.37', 'Directions', 'directions', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383670020, '2013', '11', '05', 0, 0, 20131130234831, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (7, 1, 1, 1, NULL, '72.51.213.37', 'Life On The Farm', 'life-on-the-farm', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383670020, '2013', '11', '05', 0, 0, 20140208155227, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (8, 1, 1, 1, NULL, '72.51.213.37', 'Contact Us', 'contact-us', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383670020, '2013', '11', '05', 0, 0, 20131130235639, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (9, 1, 1, 1, NULL, '72.51.213.37', 'Social Media', 'social-media', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383670020, '2013', '11', '05', 0, 0, 20131202043655, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (10, 1, 3, 1, NULL, '72.51.213.37', 'Annuals', 'annuals', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383671820, '2013', '11', '05', 0, 0, 20131110232553, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (11, 1, 3, 1, NULL, '174.241.64.41', 'Perennials', 'perennials', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672480, '2013', '11', '05', 0, 0, 20140107201217, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (12, 1, 3, 1, NULL, '72.51.213.37', 'Herbs', 'herbs', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672540, '2013', '11', '05', 0, 0, 20131201000146, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (13, 1, 3, 1, NULL, '72.51.213.37', 'Roses', 'roses', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672540, '2013', '11', '05', 0, 0, 20131201000224, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (14, 1, 3, 1, NULL, '166.137.248.106', 'Tropicals', 'tropicals', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672540, '2013', '11', '05', 0, 0, 20140107221315, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (15, 1, 3, 1, NULL, '166.147.120.28', 'Grasses', 'grasses', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672540, '2013', '11', '05', 0, 0, 20131129141256, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (16, 1, 3, 1, NULL, '166.137.248.51', 'Hostas', 'hostas', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672540, '2013', '11', '05', 0, 0, 20140127232318, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (17, 1, 4, 1, NULL, '166.147.120.16', 'About Our Produce', 'about-our-produce', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672600, '2013', '11', '05', 0, 0, 20131129152213, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (18, 1, 4, 1, NULL, '104.176.251.97', 'Produce Lineup', 'produce-lineup', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672600, '2013', '11', '05', 0, 0, 20150321201048, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (19, 1, 4, 1, NULL, '72.51.214.186', 'Heirloom Tomatoes', 'heirloom-tomatoes', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672660, '2013', '11', '05', 0, 0, 20140313012848, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (20, 1, 4, 1, NULL, '72.51.214.186', 'Produce Plants', 'produce-plants', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383672660, '2013', '11', '05', 0, 0, 20140313012645, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (80, 1, 11, 1, NULL, '104.176.251.97', 'Mixed Pastel Bouquet', 'mixed-pastel-bouquet', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1424544480, '2015', '02', '21', 0, 0, 20150221185400, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (66, 1, 11, 1, NULL, '104.176.251.97', 'Happy Day', 'happy-day', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273160, '2014', '02', '01', 0, 0, 20150221172438, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (65, 1, 11, 1, NULL, '104.176.251.97', 'Croton in Ceramic Pot', 'croton-in-ceramic-pot', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273100, '2014', '02', '01', 0, 0, 20150221184549, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (62, 1, 11, 1, NULL, '104.176.251.97', 'Beautiful In Blue', 'beautiful-in-blue', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391272380, '2014', '02', '01', 0, 0, 20150218184558, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (24, 1, 2, 1, NULL, '104.176.251.97', 'Floral Services Now Offered', 'floral-services-now-offered', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1420933560, '2015', '01', '10', 0, 0, 20150221195142, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (25, 1, 6, 1, NULL, '107.77.68.86', 'Herbal Soaps', 'herbal-soaps', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384128900, '2013', '11', '10', 0, 0, 20140205213925, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (26, 1, 6, 1, NULL, '166.147.120.44', 'Soy Based Candles', 'soy-based-candles', 'closed', 'y', 0, 0, 0, 0, 'y', 'n', 1384129020, '2013', '11', '10', 0, 0, 20131127140322, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (76, 1, 10, 3, NULL, '166.137.248.59', 'Above Ground Gardening', 'above-ground-gardening', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1393092000, '2014', '02', '22', 1393102800, 0, 20140218020913, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (40, 1, 5, 3, NULL, '166.137.248.106', 'Landscape Fabric', 'landscape-fabric', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1389140820, '2014', '01', '07', 0, 0, 20140108003034, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (39, 1, 5, 3, NULL, '166.137.248.106', 'Potting Soil and More', 'potting-soil-and-more', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1389140460, '2014', '01', '07', 0, 0, 20140108002704, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (38, 1, 5, 3, NULL, '72.51.213.37', 'Fertilizers and Soil Amedments', 'fertilizers', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1389126900, '2014', '01', '07', 0, 0, 20140108023344, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (31, 1, 6, 1, NULL, '72.151.60.2', 'Gift Certificates', 'gift-certificates', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385561100, '2013', '11', '27', 0, 0, 20131129182413, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (32, 1, 9, 1, NULL, '166.137.10.59', '2015 Schedule', '2015-schedule', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1420156260, '2015', '01', '01', 1451605860, 0, 20150222005212, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (33, 1, 9, 1, NULL, '107.77.68.95', 'Enroll Your Child Now', 'enroll-your-child-now', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385686620, '2013', '11', '28', 0, 0, 20140209195817, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (34, 1, 4, 1, NULL, '72.51.213.37', 'Support Your Local Farmers', 'support-your-local-farmers', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385687580, '2013', '11', '28', 0, 0, 20131129011941, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (35, 1, 4, 1, NULL, '72.51.213.37', 'What is Organic Gardening?', 'what-is-organic-gardening', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385688000, '2013', '11', '28', 0, 0, 20131129012142, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (36, 1, 4, 1, NULL, '72.51.213.37', 'How Do I Compost?', 'how-do-i-compost', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385688120, '2013', '11', '28', 0, 0, 20131129012546, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (37, 1, 6, 1, NULL, '174.241.224.121', 'Soy-Based Candles', 'soy-based-candles1', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385700660, '2013', '11', '28', 0, 0, 20131222212951, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (41, 1, 5, 3, NULL, '166.137.248.106', 'Pest and Disease Control', 'pest-and-disease-control', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1389141180, '2014', '01', '07', 0, 0, 20140108004451, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (42, 1, 5, 1, NULL, '72.51.213.37', 'Garden Seeds', 'garden-seeds', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1389146340, '2014', '01', '07', 0, 0, 20140209172217, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (72, 1, 11, 1, NULL, '104.176.251.97', 'Sweet Memories Standing Spray', 'sweet-memories-standing-spray', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391275140, '2014', '02', '01', 0, 0, 20150221184453, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (64, 1, 11, 1, NULL, '104.176.251.97', 'Best Wishes', 'best-wishes', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273040, '2014', '02', '01', 0, 0, 20150221172339, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (45, 1, 10, 3, NULL, '107.77.68.32', 'Little Sprouts Club', 'little-sprouts-class3', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1393696800, '2014', '03', '01', 1393707660, 0, 20140129001017, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (46, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1449345480, '2015', '12', '05', 1449345480, 0, 20150321200008, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (47, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club1', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1446926220, '2015', '11', '07', 1446926220, 0, 20150321200033, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (48, 1, 10, 3, NULL, '104.176.251.97', 'Little Spouts Club', 'little-spouts-club', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1443898500, '2015', '10', '03', 1443898500, 0, 20150321200057, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (49, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club12', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1441479000, '2015', '09', '05', 1441479000, 0, 20150321200123, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (50, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club11', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1438454760, '2015', '08', '01', 1438454760, 0, 20150321200144, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (51, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club4', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1436035500, '2015', '07', '04', 1436035500, 0, 20150321200206, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (52, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club13', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1433616120, '2015', '06', '06', 1433616120, 0, 20150321200233, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (53, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club6', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1431197640, '2015', '05', '09', 1431197640, 0, 20150321200257, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (54, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club9', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1428172560, '2015', '04', '04', 1428172560, 0, 20150321200321, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (55, 1, 10, 3, NULL, '104.176.251.97', 'Little Sprouts Club', 'little-sprouts-club8', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1425748440, '2015', '03', '07', 1425831240, 1425831240, 20150321200340, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (67, 1, 11, 1, NULL, '104.176.251.97', 'Houseplants', 'houseplants', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273280, '2014', '02', '01', 0, 0, 20150221183116, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (68, 1, 11, 1, NULL, '104.176.251.97', 'New Baby', 'new-baby', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273340, '2014', '02', '01', 0, 0, 20150221172540, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (69, 1, 11, 1, NULL, '166.137.10.124', 'Pretty in Pink', 'pretty-in-pink', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273400, '2014', '02', '01', 0, 0, 20140626123311, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (70, 1, 11, 1, NULL, '104.176.251.97', 'Sweet Love', 'sweet-love', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273460, '2014', '02', '01', 0, 0, 20150221172613, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (71, 1, 11, 1, NULL, '166.137.10.124', 'Winter Elegance', 'winter-elegance', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391273520, '2014', '02', '01', 0, 0, 20140626123407, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (73, 1, 11, 1, NULL, '104.176.251.97', 'Sweet Memories Urn', 'sweet-memories-urn', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391275260, '2014', '02', '01', 0, 0, 20150221184346, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (74, 1, 11, 1, NULL, '104.176.251.97', 'Various Bud Vases', 'various-bud-vases', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391275320, '2014', '02', '01', 0, 0, 20150221175734, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (75, 1, 7, 3, NULL, '72.51.213.37', 'Floral Offerings', 'floral-offerings', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1391461080, '2014', '02', '03', 0, 0, 20140209172522, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (77, 1, 10, 3, NULL, '104.176.249.24', 'Christmas Open House', 'christmas-open-house', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1416708000, '2014', '11', '22', 1416693600, 0, 20141120223531, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (83, 1, 11, 1, NULL, '104.176.251.97', 'Bereavement Stepping Stone Arrangement', 'bereavement-stepping-stone-arrangement', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1424546220, '2015', '02', '21', 0, 0, 20150221193539, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (82, 1, 11, 1, NULL, '104.176.251.97', 'One Dozen Roses', 'one-dozen-roses', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1424545800, '2015', '02', '21', 0, 0, 20150221191236, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (84, 1, 11, 1, NULL, '104.176.251.97', 'Country Wreath', 'country-wreath', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1424547360, '2015', '02', '21', 0, 0, 20150221194050, 0, 0);
INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES (85, 1, 11, 1, NULL, '104.176.251.97', 'Pastel Wreath', 'pastel-wreath', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1424547720, '2015', '02', '21', 0, 0, 20150221194800, 0, 0);


#
# TABLE STRUCTURE FOR: exp_channels
#

DROP TABLE IF EXISTS `exp_channels`;

CREATE TABLE `exp_channels` (
  `channel_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_name` varchar(40) NOT NULL,
  `channel_title` varchar(100) NOT NULL,
  `channel_url` varchar(100) NOT NULL,
  `channel_description` varchar(255) DEFAULT NULL,
  `channel_lang` varchar(12) NOT NULL,
  `total_entries` mediumint(8) NOT NULL DEFAULT '0',
  `total_comments` mediumint(8) NOT NULL DEFAULT '0',
  `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `cat_group` varchar(255) DEFAULT NULL,
  `status_group` int(4) unsigned DEFAULT NULL,
  `deft_status` varchar(50) NOT NULL DEFAULT 'open',
  `field_group` int(4) unsigned DEFAULT NULL,
  `search_excerpt` int(4) unsigned DEFAULT NULL,
  `deft_category` varchar(60) DEFAULT NULL,
  `deft_comments` char(1) NOT NULL DEFAULT 'y',
  `channel_require_membership` char(1) NOT NULL DEFAULT 'y',
  `channel_max_chars` int(5) unsigned DEFAULT NULL,
  `channel_html_formatting` char(4) NOT NULL DEFAULT 'all',
  `channel_allow_img_urls` char(1) NOT NULL DEFAULT 'y',
  `channel_auto_link_urls` char(1) NOT NULL DEFAULT 'n',
  `channel_notify` char(1) NOT NULL DEFAULT 'n',
  `channel_notify_emails` varchar(255) DEFAULT NULL,
  `comment_url` varchar(80) DEFAULT NULL,
  `comment_system_enabled` char(1) NOT NULL DEFAULT 'y',
  `comment_require_membership` char(1) NOT NULL DEFAULT 'n',
  `comment_use_captcha` char(1) NOT NULL DEFAULT 'n',
  `comment_moderate` char(1) NOT NULL DEFAULT 'n',
  `comment_max_chars` int(5) unsigned DEFAULT '5000',
  `comment_timelock` int(5) unsigned NOT NULL DEFAULT '0',
  `comment_require_email` char(1) NOT NULL DEFAULT 'y',
  `comment_text_formatting` char(5) NOT NULL DEFAULT 'xhtml',
  `comment_html_formatting` char(4) NOT NULL DEFAULT 'safe',
  `comment_allow_img_urls` char(1) NOT NULL DEFAULT 'n',
  `comment_auto_link_urls` char(1) NOT NULL DEFAULT 'y',
  `comment_notify` char(1) NOT NULL DEFAULT 'n',
  `comment_notify_authors` char(1) NOT NULL DEFAULT 'n',
  `comment_notify_emails` varchar(255) DEFAULT NULL,
  `comment_expiration` int(4) unsigned NOT NULL DEFAULT '0',
  `search_results_url` varchar(80) DEFAULT NULL,
  `show_button_cluster` char(1) NOT NULL DEFAULT 'y',
  `rss_url` varchar(80) DEFAULT NULL,
  `enable_versioning` char(1) NOT NULL DEFAULT 'n',
  `max_revisions` smallint(4) unsigned NOT NULL DEFAULT '10',
  `default_entry_title` varchar(100) DEFAULT NULL,
  `url_title_prefix` varchar(80) DEFAULT NULL,
  `live_look_template` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`channel_id`),
  KEY `cat_group` (`cat_group`),
  KEY `status_group` (`status_group`),
  KEY `field_group` (`field_group`),
  KEY `channel_name` (`channel_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;

INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (1, 1, 'about', 'about', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 5, 0, 1383670020, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (2, 1, 'news', 'news', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 1, 0, 1420933560, 0, '', 1, 'open', 2, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (3, 1, 'flowers', 'flowers', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 7, 0, 1383672540, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (4, 1, 'produce', 'produce', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 7, 0, 1385688120, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (5, 1, 'garden_center', 'garden center', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 5, 0, 1389146340, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (6, 1, 'gift_shop', 'gift shop', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 3, 0, 1385700660, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (7, 1, 'florist', 'florist', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 1, 0, 1391461080, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (8, 1, 'landscaping', 'landscaping', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 0, 0, 0, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (9, 1, 'little_sprouts', 'little sprouts', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 2, 0, 1420156260, 0, '', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (10, 1, 'events', 'events', 'http://localhost/beanstoblossoms.com/index.php', NULL, 'en', 0, 0, 0, 0, '', 1, 'open', 3, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);
INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES (11, 1, 'flower_arrangements', 'Flower Arrangements', 'http://www.beanstoblossoms.com/', NULL, 'en', 19, 0, 1424547720, 0, '1', 1, 'open', 5, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);


#
# TABLE STRUCTURE FOR: exp_comment_subscriptions
#

DROP TABLE IF EXISTS `exp_comment_subscriptions`;

CREATE TABLE `exp_comment_subscriptions` (
  `subscription_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned DEFAULT NULL,
  `member_id` int(10) DEFAULT '0',
  `email` varchar(50) DEFAULT NULL,
  `subscription_date` varchar(10) DEFAULT NULL,
  `notification_sent` char(1) DEFAULT 'n',
  `hash` varchar(15) DEFAULT NULL,
  PRIMARY KEY (`subscription_id`),
  KEY `entry_id` (`entry_id`),
  KEY `member_id` (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_comments
#

DROP TABLE IF EXISTS `exp_comments`;

CREATE TABLE `exp_comments` (
  `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `channel_id` int(4) unsigned DEFAULT '1',
  `author_id` int(10) unsigned DEFAULT '0',
  `status` char(1) DEFAULT '0',
  `name` varchar(50) DEFAULT NULL,
  `email` varchar(50) DEFAULT NULL,
  `url` varchar(75) DEFAULT NULL,
  `location` varchar(50) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `comment_date` int(10) DEFAULT NULL,
  `edit_date` int(10) DEFAULT NULL,
  `comment` text,
  PRIMARY KEY (`comment_id`),
  KEY `entry_id` (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `author_id` (`author_id`),
  KEY `status` (`status`),
  KEY `site_id` (`site_id`),
  KEY `comment_date_idx` (`comment_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_content_types
#

DROP TABLE IF EXISTS `exp_content_types`;

CREATE TABLE `exp_content_types` (
  `content_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`content_type_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `exp_content_types` (`content_type_id`, `name`) VALUES (1, 'grid');
INSERT INTO `exp_content_types` (`content_type_id`, `name`) VALUES (2, 'channel');


#
# TABLE STRUCTURE FOR: exp_cp_log
#

DROP TABLE IF EXISTS `exp_cp_log`;

CREATE TABLE `exp_cp_log` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) unsigned NOT NULL,
  `username` varchar(32) NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `act_date` int(10) NOT NULL,
  `action` varchar(200) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=257 DEFAULT CHARSET=utf8;

INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (1, 1, 1, 'boomer42025', '127.0.0.1', 1383661509, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (2, 1, 1, 'boomer42025', '127.0.0.1', 1383661637, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (3, 1, 1, 'boomer42025', '127.0.0.1', 1383662920, 'Channel Created:&nbsp;&nbsp;about');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (4, 1, 1, 'boomer42025', '127.0.0.1', 1383662932, 'Field Group Created:&nbsp;Basic Entry');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (5, 1, 1, 'boomer42025', '127.0.0.1', 1383664922, 'Channel Created:&nbsp;&nbsp;news');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (6, 1, 1, 'boomer42025', '127.0.0.1', 1383664934, 'Field Group Created:&nbsp;News');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (7, 1, 1, 'boomer42025', '127.0.0.1', 1383670932, 'Channel Created:&nbsp;&nbsp;flowers');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (8, 1, 1, 'boomer42025', '127.0.0.1', 1383670948, 'Channel Created:&nbsp;&nbsp;produce');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (9, 1, 1, 'boomer42025', '127.0.0.1', 1383670958, 'Channel Created:&nbsp;&nbsp;garden center');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (10, 1, 1, 'boomer42025', '127.0.0.1', 1383670980, 'Channel Created:&nbsp;&nbsp;gift shop');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (11, 1, 1, 'boomer42025', '127.0.0.1', 1383670990, 'Channel Created:&nbsp;&nbsp;florist');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (12, 1, 1, 'boomer42025', '127.0.0.1', 1383671001, 'Channel Created:&nbsp;&nbsp;landscaping');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (13, 1, 1, 'boomer42025', '127.0.0.1', 1383671009, 'Channel Created:&nbsp;&nbsp;little sprouts');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (14, 1, 1, 'boomer42025', '127.0.0.1', 1383692640, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (15, 1, 1, 'boomer42025', '127.0.0.1', 1383692665, 'Field Group Created:&nbsp;Events');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (16, 1, 1, 'boomer42025', '127.0.0.1', 1383692776, 'Channel Created:&nbsp;&nbsp;events');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (17, 1, 1, 'boomer42025', '127.0.0.1', 1383695498, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (18, 1, 1, 'boomer42025', '127.0.0.1', 1383702141, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (19, 1, 1, 'boomer42025', '127.0.0.1', 1383707183, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (20, 1, 1, 'boomer42025', '127.0.0.1', 1383713855, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (21, 1, 1, 'boomer42025', '127.0.0.1', 1383782853, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (22, 1, 1, 'boomer42025', '72.51.213.37', 1383786091, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (23, 1, 1, 'boomer42025', '72.51.213.37', 1383788525, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (24, 1, 1, 'boomer42025', '72.51.213.37', 1383794457, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (25, 1, 1, 'boomer42025', '72.51.213.37', 1383801293, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (26, 1, 1, 'boomer42025', '166.147.120.20', 1383831552, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (27, 1, 1, 'boomer42025', '72.151.60.2', 1383837981, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (28, 1, 1, 'boomer42025', '174.225.65.77', 1383843908, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (29, 1, 1, 'boomer42025', '72.151.60.2', 1383861314, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (30, 1, 1, 'boomer42025', '72.51.213.37', 1383964411, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (31, 1, 1, 'boomer42025', '74.82.64.161', 1384022048, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (32, 1, 1, 'boomer42025', '72.51.213.37', 1384124259, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (33, 1, 1, 'boomer42025', '72.51.213.37', 1384124413, 'Member Group Updated:&nbsp;&nbsp;Members');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (34, 1, 1, 'boomer42025', '72.51.213.37', 1384124509, 'Member profile created:&nbsp;&nbsp;Suzanne Cathey');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (35, 1, 1, 'boomer42025', '72.51.213.37', 1384124515, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (36, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384124541, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (37, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384124551, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (38, 1, 1, 'boomer42025', '72.51.213.37', 1384124559, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (39, 1, 1, 'boomer42025', '72.51.213.37', 1384124585, 'Member Group Updated:&nbsp;&nbsp;Members');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (40, 1, 1, 'boomer42025', '72.51.213.37', 1384124588, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (41, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384124598, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (42, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384124633, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (43, 1, 1, 'boomer42025', '72.51.213.37', 1384124643, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (44, 1, 1, 'boomer42025', '72.51.213.37', 1384125307, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (45, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384125322, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (46, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384125405, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (47, 1, 1, 'boomer42025', '72.51.213.37', 1384125412, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (48, 1, 1, 'boomer42025', '72.51.213.37', 1384126196, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (49, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384126326, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (50, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384128075, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (51, 1, 1, 'boomer42025', '72.51.213.37', 1384128080, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (52, 1, 1, 'boomer42025', '72.51.213.37', 1384129243, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (53, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384129252, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (54, 1, 2, 'Suzanne Cathey', '72.51.213.37', 1384129296, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (55, 1, 1, 'boomer42025', '72.51.213.37', 1384129302, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (56, 1, 1, 'boomer42025', '72.51.213.37', 1384129373, 'Member Group Updated:&nbsp;&nbsp;Members');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (57, 1, 1, 'boomer42025', '174.225.65.36', 1384190433, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (58, 1, 1, 'boomer42025', '174.225.65.36', 1384213321, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (59, 1, 1, 'boomer42025', '174.225.65.36', 1384216269, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (60, 1, 2, 'Suzanne Cathey', '166.147.120.48', 1384218962, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (61, 1, 2, 'Suzanne Cathey', '166.147.120.22', 1384220089, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (62, 1, 2, 'Suzanne Cathey', '166.147.120.22', 1384220499, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (63, 1, 1, 'boomer42025', '166.147.120.22', 1384220521, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (64, 1, 1, 'boomer42025', '166.147.120.22', 1384220720, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (65, 1, 1, 'boomer42025', '174.241.225.120', 1384220902, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (66, 1, 1, 'boomer42025', '72.51.213.37', 1384233531, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (67, 1, 1, 'boomer42025', '72.51.213.37', 1384233887, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (68, 1, 1, 'boomer42025', '72.51.213.37', 1384316015, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (69, 1, 1, 'boomer42025', '72.51.213.37', 1384316287, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (70, 1, 1, 'boomer42025', '72.51.213.37', 1384484487, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (71, 1, 1, 'boomer42025', '174.241.225.160', 1384881066, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (72, 1, 1, 'boomer42025', '72.51.213.37', 1384924090, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (73, 1, 2, 'Suzanne Cathey', '166.147.120.48', 1385129566, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (74, 1, 1, 'boomer42025', '72.51.213.37', 1385174873, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (75, 1, 2, 'Suzanne Cathey', '166.147.120.34', 1385210144, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (76, 1, 1, 'boomer42025', '166.147.120.36', 1385212809, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (77, 1, 2, 'Suzanne Cathey', '166.147.120.36', 1385213096, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (78, 1, 2, 'Suzanne Cathey', '166.147.120.36', 1385213603, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (79, 1, 1, 'boomer42025', '166.147.120.36', 1385213623, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (80, 1, 2, 'Suzanne Cathey', '166.147.120.36', 1385213819, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (81, 1, 1, 'boomer42025', '166.147.120.46', 1385214611, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (82, 1, 1, 'boomer42025', '166.147.120.46', 1385214807, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (83, 1, 1, 'boomer42025', '72.51.155.115', 1385253018, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (84, 1, 1, 'boomer42025', '72.51.213.37', 1385267599, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (85, 1, 2, 'Suzanne Cathey', '166.147.120.24', 1385332280, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (86, 1, 1, 'boomer42025', '72.51.213.37', 1385336035, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (87, 1, 2, 'Suzanne Cathey', '166.147.120.36', 1385336632, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (88, 1, 1, 'boomer42025', '72.51.213.37', 1385344431, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (89, 1, 1, 'boomer42025', '72.51.213.37', 1385352057, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (90, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1385395455, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (91, 1, 1, 'boomer42025', '72.51.213.37', 1385430614, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (92, 1, 1, 'boomer42025', '72.51.213.37', 1385435376, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (93, 1, 1, 'boomer42025', '72.51.213.37', 1385435398, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (94, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1385495556, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (95, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1385497979, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (96, 1, 2, 'Suzanne Cathey', '166.147.120.26', 1385552409, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (97, 1, 2, 'Suzanne Cathey', '166.147.120.26', 1385552532, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (98, 1, 2, 'Suzanne Cathey', '166.147.120.17', 1385557436, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (99, 1, 2, 'Suzanne Cathey', '166.147.120.44', 1385558990, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (100, 1, 1, 'boomer42025', '166.147.120.44', 1385560909, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (101, 1, 2, 'Suzanne Cathey', '166.147.120.44', 1385567995, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (102, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1385582859, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (103, 1, 1, 'boomer42025', '72.51.213.37', 1385676168, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (104, 1, 1, 'boomer42025', '72.51.213.37', 1385687513, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (105, 1, 1, 'boomer42025', '72.51.213.37', 1385689185, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (106, 1, 1, 'boomer42025', '72.51.213.37', 1385691480, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (107, 1, 1, 'boomer42025', '72.51.213.37', 1385699805, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (108, 1, 2, 'Suzanne Cathey', '166.147.120.26', 1385729150, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (109, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1385746573, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (110, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1385751990, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (111, 1, 1, 'boomer42025', '72.51.213.37', 1385761714, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (112, 1, 1, 'boomer42025', '72.51.213.37', 1385764480, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (113, 1, 2, 'Suzanne Cathey', '166.147.120.21', 1385823817, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (114, 1, 1, 'boomer42025', '72.51.213.37', 1385854755, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (115, 1, 2, 'Suzanne Cathey', '166.147.120.26', 1385858505, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (116, 1, 2, 'Suzanne Cathey', '166.147.120.30', 1385860010, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (117, 1, 1, 'boomer42025', '72.51.213.37', 1385958879, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (118, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1386020356, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (119, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1386022085, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (120, 1, 2, 'Suzanne Cathey', '72.151.60.2', 1386260118, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (121, 1, 1, 'boomer42025', '174.241.131.113', 1386264004, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (122, 1, 1, 'boomer42025', '72.51.213.37', 1386822955, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (123, 1, 1, 'boomer42025', '72.51.213.37', 1386906970, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (124, 1, 1, 'boomer42025', '72.51.213.37', 1387045079, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (125, 1, 1, 'boomer42025', '174.255.97.102', 1387140690, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (126, 1, 1, 'boomer42025', '72.51.213.37', 1387158416, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (127, 1, 1, 'boomer42025', '72.51.213.37', 1387159214, 'Member profile created:&nbsp;&nbsp;Suzanne Cathey');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (128, 1, 1, 'boomer42025', '72.51.213.37', 1387159219, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (129, 1, 3, 'Suzanne Cathey', '72.51.213.37', 1387159229, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (130, 1, 1, 'boomer42025', '72.51.213.37', 1387344137, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (131, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1387482428, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (132, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1387484874, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (133, 1, 1, 'boomer42025', '174.241.224.121', 1387747632, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (134, 1, 1, 'boomer42025', '72.51.213.37', 1388377815, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (135, 1, 3, 'Suzanne Cathey', '166.137.248.106', 1389120906, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (136, 1, 3, 'Suzanne Cathey', '174.241.64.41', 1389123012, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (137, 1, 3, 'Suzanne Cathey', '166.137.248.106', 1389132518, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (138, 1, 3, 'Suzanne Cathey', '166.137.248.106', 1389137475, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (139, 1, 3, 'Suzanne Cathey', '166.137.248.106', 1389142543, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (140, 1, 1, 'boomer42025', '72.51.213.37', 1389143874, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (141, 1, 3, 'Suzanne Cathey', '166.137.248.106', 1389148408, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (142, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1389809542, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (143, 1, 3, 'Suzanne Cathey', '166.137.248.86', 1389909082, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (144, 1, 3, 'Suzanne Cathey', '166.137.248.86', 1389909168, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (145, 1, 1, 'boomer42025', '166.137.248.86', 1389911963, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (146, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1390063445, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (147, 1, 1, 'boomer42025', '72.51.213.37', 1390066241, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (148, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1390070099, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (149, 1, 1, 'boomer42025', '72.51.213.37', 1390347545, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (150, 1, 3, 'Suzanne Cathey', '166.137.248.127', 1390783399, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (151, 1, 1, 'boomer42025', '166.137.248.127', 1390785913, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (152, 1, 3, 'Suzanne Cathey', '166.137.248.127', 1390786984, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (153, 1, 1, 'boomer42025', '166.137.248.127', 1390787658, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (154, 1, 3, 'Suzanne Cathey', '166.137.248.127', 1390788125, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (155, 1, 1, 'boomer42025', '166.137.248.127', 1390789017, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (156, 1, 3, 'Suzanne Cathey', '166.137.248.127', 1390789193, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (157, 1, 1, 'boomer42025', '166.137.248.127', 1390791122, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (158, 1, 3, 'Suzanne Cathey', '107.77.68.52', 1390827309, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (159, 1, 1, 'boomer42025', '107.77.68.52', 1390829030, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (160, 1, 3, 'Suzanne Cathey', '166.137.248.51', 1390861793, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (161, 1, 1, 'boomer42025', '72.51.213.37', 1390868939, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (162, 1, 1, 'boomer42025', '72.51.213.37', 1390869082, 'Field Group Created:&nbsp;Flowers');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (163, 1, 1, 'boomer42025', '72.51.213.37', 1390869098, 'Field group Deleted:&nbsp;&nbsp;Flowers');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (164, 1, 1, 'boomer42025', '72.51.213.37', 1390869105, 'Field Group Created:&nbsp;Florist');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (165, 1, 3, 'Suzanne Cathey', '166.137.248.51', 1390869179, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (166, 1, 1, 'boomer42025', '72.51.213.37', 1390870685, 'Channel Created:&nbsp;&nbsp;Flower Arrangements');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (167, 1, 3, 'Suzanne Cathey', '166.137.248.51', 1390871139, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (168, 1, 1, 'boomer42025', '72.51.213.37', 1390877056, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (169, 1, 1, 'boomer42025', '72.51.213.37', 1390878378, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (170, 1, 1, 'boomer42025', '72.51.213.37', 1390880185, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (171, 1, 1, 'boomer42025', '72.51.213.37', 1390881389, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (172, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1390936118, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (173, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1390938952, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (174, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1390941736, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (175, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1390942826, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (176, 1, 3, 'Suzanne Cathey', '107.77.68.32', 1390953973, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (177, 1, 3, 'Suzanne Cathey', '107.77.68.32', 1390957394, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (178, 1, 1, 'boomer42025', '72.51.213.37', 1390959813, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (179, 1, 1, 'boomer42025', '72.51.213.37', 1390959977, 'Category Group Created:&nbsp;&nbsp;Arrangements');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (180, 1, 1, 'boomer42025', '72.51.213.37', 1390962196, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (181, 1, 1, 'boomer42025', '72.51.213.37', 1390962412, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (182, 1, 1, 'boomer42025', '72.51.213.37', 1390966259, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (183, 1, 3, 'Suzanne Cathey', '107.77.68.111', 1391002369, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (184, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391018870, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (185, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391020177, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (186, 1, 3, 'Suzanne Cathey', '166.137.248.57', 1391131150, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (187, 1, 3, 'Suzanne Cathey', '166.137.248.57', 1391131579, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (188, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391268236, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (189, 1, 1, 'boomer42025', '72.51.213.37', 1391270448, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (190, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391270823, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (191, 1, 1, 'boomer42025', '72.51.213.37', 1391271757, 'Custom Field Deleted:&nbsp;florist-price');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (192, 1, 1, 'boomer42025', '72.51.213.37', 1391277071, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (193, 1, 1, 'boomer42025', '72.51.213.37', 1391277742, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (194, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391460153, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (195, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391461344, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (196, 1, 1, 'boomer42025', '72.51.213.37', 1391566339, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (197, 1, 1, 'boomer42025', '72.51.213.37', 1391573994, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (198, 1, 3, 'Suzanne Cathey', '107.77.68.86', 1391635531, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (199, 1, 1, 'boomer42025', '72.51.213.37', 1391661913, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (200, 1, 1, 'boomer42025', '72.51.213.37', 1391664338, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (201, 1, 1, 'boomer42025', '72.51.213.37', 1391873776, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (202, 1, 3, 'Suzanne Cathey', '166.137.248.60', 1391955114, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (203, 1, 3, 'Suzanne Cathey', '166.137.248.60', 1391957586, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (204, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391962300, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (205, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391964719, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (206, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1391965401, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (207, 1, 1, 'boomer42025', '72.51.213.37', 1391965750, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (208, 1, 1, 'boomer42025', '72.51.213.37', 1391968154, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (209, 1, 3, 'Suzanne Cathey', '107.77.68.95', 1391975691, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (210, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1392138408, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (211, 1, 1, 'boomer42025', '72.151.60.2', 1392140034, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (212, 1, 1, 'boomer42025', '72.151.60.2', 1392143349, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (213, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1392152336, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (214, 1, 1, 'boomer42025', '72.51.214.186', 1392488631, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (215, 1, 3, 'Suzanne Cathey', '166.137.248.59', 1392680413, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (216, 1, 3, 'Suzanne Cathey', '166.137.248.59', 1392684122, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (217, 1, 3, 'Suzanne Cathey', '166.137.248.59', 1392688554, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (218, 1, 1, 'boomer42025', '72.51.214.186', 1392702198, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (219, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1393260126, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (220, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1393260742, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (221, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1393358362, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (222, 1, 3, 'Suzanne Cathey', '166.137.10.111', 1394060063, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (223, 1, 3, 'Suzanne Cathey', '166.137.10.96', 1394406464, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (224, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1394476708, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (225, 1, 3, 'Suzanne Cathey', '166.137.10.96', 1394492482, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (226, 1, 1, 'boomer42025', '72.51.214.186', 1394673756, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (227, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1396118364, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (228, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1397078976, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (229, 1, 1, 'boomer42025', '72.51.214.186', 1397079508, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (230, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1398795873, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (231, 1, 3, 'Suzanne Cathey', '72.151.60.2', 1398798324, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (232, 1, 1, 'boomer42025', '72.51.214.186', 1398992889, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (233, 1, 3, 'Suzanne Cathey', '166.137.248.99', 1403695623, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (234, 1, 1, 'boomer42025', '166.137.10.124', 1403785895, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (235, 1, 1, 'boomer42025', '166.137.10.124', 1403790228, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (236, 1, 1, 'boomer42025', '72.51.145.224', 1409709870, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (237, 1, 1, 'boomer42025', '72.51.214.186', 1412539819, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (238, 1, 1, 'boomer42025', '107.77.68.89', 1412545525, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (239, 1, 1, 'boomer42025', '107.77.68.89', 1412546873, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (240, 1, 1, 'boomer42025', '107.77.68.89', 1412547207, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (241, 1, 1, 'boomer42025', '72.51.145.224', 1413857543, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (242, 1, 1, 'boomer42025', '72.51.214.186', 1416078533, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (243, 1, 3, 'Suzanne Cathey', '104.176.249.24', 1416521721, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (244, 1, 3, 'Suzanne Cathey', '104.176.249.24', 1416522698, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (245, 1, 3, 'Suzanne Cathey', '104.176.251.97', 1417878066, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (246, 1, 1, 'boomer42025', '72.51.214.186', 1422047114, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (247, 1, 1, 'boomer42025', '104.176.251.97', 1424277783, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (248, 1, 1, 'boomer42025', '104.176.251.97', 1424282453, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (249, 1, 1, 'boomer42025', '104.176.251.97', 1424287585, 'Logged out');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (250, 1, 1, 'boomer42025', '72.51.214.186', 1424538912, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (251, 1, 1, 'boomer42025', '104.176.251.97', 1424539335, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (252, 1, 1, 'boomer42025', '72.51.214.186', 1424540060, 'Custom Field Deleted:&nbsp;florist-image-thumb');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (253, 1, 1, 'boomer42025', '72.51.214.186', 1424541098, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (254, 1, 1, 'boomer42025', '166.137.10.59', 1424566228, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (255, 1, 3, 'Suzanne Cathey', '104.176.251.97', 1426966370, 'Logged in');
INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES (256, 1, 1, 'boomer42025', '72.51.154.186', 1430365105, 'Logged in');


#
# TABLE STRUCTURE FOR: exp_cp_search_index
#

DROP TABLE IF EXISTS `exp_cp_search_index`;

CREATE TABLE `exp_cp_search_index` (
  `search_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `controller` varchar(20) DEFAULT NULL,
  `method` varchar(50) DEFAULT NULL,
  `language` varchar(20) DEFAULT NULL,
  `access` varchar(50) DEFAULT NULL,
  `keywords` text,
  PRIMARY KEY (`search_id`),
  FULLTEXT KEY `keywords` (`keywords`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_developer_log
#

DROP TABLE IF EXISTS `exp_developer_log`;

CREATE TABLE `exp_developer_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(10) unsigned NOT NULL,
  `viewed` char(1) NOT NULL DEFAULT 'n',
  `description` text,
  `function` varchar(100) DEFAULT NULL,
  `line` int(10) unsigned DEFAULT NULL,
  `file` varchar(255) DEFAULT NULL,
  `deprecated_since` varchar(10) DEFAULT NULL,
  `use_instead` varchar(100) DEFAULT NULL,
  `template_id` int(10) unsigned NOT NULL DEFAULT '0',
  `template_name` varchar(100) DEFAULT NULL,
  `template_group` varchar(100) DEFAULT NULL,
  `addon_module` varchar(100) DEFAULT NULL,
  `addon_method` varchar(100) DEFAULT NULL,
  `snippets` text,
  `hash` char(32) NOT NULL,
  PRIMARY KEY (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_email_cache
#

DROP TABLE IF EXISTS `exp_email_cache`;

CREATE TABLE `exp_email_cache` (
  `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `cache_date` int(10) unsigned NOT NULL DEFAULT '0',
  `total_sent` int(6) unsigned NOT NULL,
  `from_name` varchar(70) NOT NULL,
  `from_email` varchar(70) NOT NULL,
  `recipient` text NOT NULL,
  `cc` text NOT NULL,
  `bcc` text NOT NULL,
  `recipient_array` mediumtext NOT NULL,
  `subject` varchar(120) NOT NULL,
  `message` mediumtext NOT NULL,
  `plaintext_alt` mediumtext NOT NULL,
  `mailinglist` char(1) NOT NULL DEFAULT 'n',
  `mailtype` varchar(6) NOT NULL,
  `text_fmt` varchar(40) NOT NULL,
  `wordwrap` char(1) NOT NULL DEFAULT 'y',
  `priority` char(1) NOT NULL DEFAULT '3',
  PRIMARY KEY (`cache_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_email_cache_mg
#

DROP TABLE IF EXISTS `exp_email_cache_mg`;

CREATE TABLE `exp_email_cache_mg` (
  `cache_id` int(6) unsigned NOT NULL,
  `group_id` smallint(4) NOT NULL,
  PRIMARY KEY (`cache_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_email_cache_ml
#

DROP TABLE IF EXISTS `exp_email_cache_ml`;

CREATE TABLE `exp_email_cache_ml` (
  `cache_id` int(6) unsigned NOT NULL,
  `list_id` smallint(4) NOT NULL,
  PRIMARY KEY (`cache_id`,`list_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_email_console_cache
#

DROP TABLE IF EXISTS `exp_email_console_cache`;

CREATE TABLE `exp_email_console_cache` (
  `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `cache_date` int(10) unsigned NOT NULL DEFAULT '0',
  `member_id` int(10) unsigned NOT NULL,
  `member_name` varchar(50) NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `recipient` varchar(70) NOT NULL,
  `recipient_name` varchar(50) NOT NULL,
  `subject` varchar(120) NOT NULL,
  `message` mediumtext NOT NULL,
  PRIMARY KEY (`cache_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_email_tracker
#

DROP TABLE IF EXISTS `exp_email_tracker`;

CREATE TABLE `exp_email_tracker` (
  `email_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_date` int(10) unsigned NOT NULL DEFAULT '0',
  `sender_ip` varchar(45) NOT NULL,
  `sender_email` varchar(75) NOT NULL,
  `sender_username` varchar(50) NOT NULL,
  `number_recipients` int(4) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`email_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_entry_versioning
#

DROP TABLE IF EXISTS `exp_entry_versioning`;

CREATE TABLE `exp_entry_versioning` (
  `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `channel_id` int(4) unsigned NOT NULL,
  `author_id` int(10) unsigned NOT NULL,
  `version_date` int(10) NOT NULL,
  `version_data` mediumtext NOT NULL,
  PRIMARY KEY (`version_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_extensions
#

DROP TABLE IF EXISTS `exp_extensions`;

CREATE TABLE `exp_extensions` (
  `extension_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(50) NOT NULL DEFAULT '',
  `method` varchar(50) NOT NULL DEFAULT '',
  `hook` varchar(50) NOT NULL DEFAULT '',
  `settings` text NOT NULL,
  `priority` int(2) NOT NULL DEFAULT '10',
  `version` varchar(10) NOT NULL DEFAULT '',
  `enabled` char(1) NOT NULL DEFAULT 'y',
  PRIMARY KEY (`extension_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;

INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (1, 'Rte_ext', 'myaccount_nav_setup', 'myaccount_nav_setup', '', 10, '1.0.1', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (2, 'Rte_ext', 'cp_menu_array', 'cp_menu_array', '', 10, '1.0.1', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (3, 'Low_reorder_ext', 'entry_submission_end', 'entry_submission_end', '', 5, '2.2.1', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (4, 'Low_reorder_ext', 'channel_entries_query_result', 'channel_entries_query_result', '', 5, '2.2.1', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (5, 'Low_reorder_ext', 'low_search_post_search', 'low_search_post_search', '', 5, '2.2.1', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (6, 'Low_reorder_ext', 'playa_parse_relationships', 'playa_parse_relationships', '', 5, '2.2.1', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (7, 'Low_variables_ext', 'sessions_end', 'sessions_end', 'a:8:{s:11:\"license_key\";s:36:\"d30a11bc-5711-4a93-ae91-cfb97442043c\";s:10:\"can_manage\";a:1:{i:0;s:1:\"1\";}s:11:\"clear_cache\";s:1:\"n\";s:16:\"register_globals\";s:1:\"n\";s:20:\"register_member_data\";s:1:\"n\";s:13:\"save_as_files\";s:1:\"n\";s:9:\"file_path\";s:0:\"\";s:13:\"enabled_types\";a:16:{i:0;s:12:\"low_checkbox\";i:1;s:18:\"low_checkbox_group\";i:2;s:8:\"low_grid\";i:3;s:14:\"low_reorder_vt\";i:4;s:6:\"matrix\";i:5;s:15:\"low_radio_group\";i:6;s:10:\"low_select\";i:7;s:21:\"low_select_categories\";i:8;s:19:\"low_select_channels\";i:9;s:18:\"low_select_entries\";i:10;s:16:\"low_select_files\";i:11;s:9:\"low_table\";i:12;s:14:\"low_text_input\";i:13;s:7:\"low_rte\";i:14;s:6:\"wygwam\";i:15;s:12:\"low_textarea\";}}', 2, '2.4.0', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (8, 'Low_variables_ext', 'template_fetch_template', 'template_fetch_template', 'a:8:{s:11:\"license_key\";s:36:\"d30a11bc-5711-4a93-ae91-cfb97442043c\";s:10:\"can_manage\";a:1:{i:0;s:1:\"1\";}s:11:\"clear_cache\";s:1:\"n\";s:16:\"register_globals\";s:1:\"n\";s:20:\"register_member_data\";s:1:\"n\";s:13:\"save_as_files\";s:1:\"n\";s:9:\"file_path\";s:0:\"\";s:13:\"enabled_types\";a:16:{i:0;s:12:\"low_checkbox\";i:1;s:18:\"low_checkbox_group\";i:2;s:8:\"low_grid\";i:3;s:14:\"low_reorder_vt\";i:4;s:6:\"matrix\";i:5;s:15:\"low_radio_group\";i:6;s:10:\"low_select\";i:7;s:21:\"low_select_categories\";i:8;s:19:\"low_select_channels\";i:9;s:18:\"low_select_entries\";i:10;s:16:\"low_select_files\";i:11;s:9:\"low_table\";i:12;s:14:\"low_text_input\";i:13;s:7:\"low_rte\";i:14;s:6:\"wygwam\";i:15;s:12:\"low_textarea\";}}', 2, '2.4.0', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (9, 'Matrix_ext', 'channel_entries_tagdata', 'channel_entries_tagdata', '', 10, '2.5.10', 'y');
INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES (10, 'Updater_ext', 'cp_menu_array', 'cp_menu_array', 'a:0:{}', 100, '3.3.0', 'y');


#
# TABLE STRUCTURE FOR: exp_field_formatting
#

DROP TABLE IF EXISTS `exp_field_formatting`;

CREATE TABLE `exp_field_formatting` (
  `formatting_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` int(10) unsigned NOT NULL,
  `field_fmt` varchar(40) NOT NULL,
  PRIMARY KEY (`formatting_id`)
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;

INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (1, 1, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (2, 1, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (3, 1, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (4, 1, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (5, 2, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (6, 2, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (7, 2, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (8, 2, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (9, 3, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (10, 3, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (11, 3, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (12, 3, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (13, 4, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (14, 4, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (15, 4, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (16, 4, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (17, 5, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (18, 5, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (19, 5, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (20, 5, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (21, 6, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (22, 6, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (23, 6, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (24, 6, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (39, 10, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (38, 10, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (37, 10, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (33, 9, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (34, 9, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (35, 9, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (36, 9, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (40, 10, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (41, 11, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (42, 11, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (43, 11, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (44, 11, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (45, 12, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (46, 12, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (47, 12, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (48, 12, 'xhtml');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (49, 13, 'none');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (50, 13, 'br');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (51, 13, 'markdown');
INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES (52, 13, 'xhtml');


#
# TABLE STRUCTURE FOR: exp_field_groups
#

DROP TABLE IF EXISTS `exp_field_groups`;

CREATE TABLE `exp_field_groups` (
  `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES (1, 1, 'Basic Entry');
INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES (2, 1, 'News');
INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES (3, 1, 'Events');
INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES (5, 1, 'Florist');


#
# TABLE STRUCTURE FOR: exp_fieldtypes
#

DROP TABLE IF EXISTS `exp_fieldtypes`;

CREATE TABLE `exp_fieldtypes` (
  `fieldtype_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `version` varchar(12) NOT NULL,
  `settings` text,
  `has_global_settings` char(1) DEFAULT 'n',
  PRIMARY KEY (`fieldtype_id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;

INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (1, 'select', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (2, 'text', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (3, 'textarea', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (4, 'date', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (5, 'file', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (6, 'grid', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (7, 'multi_select', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (8, 'checkboxes', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (9, 'radio', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (10, 'relationship', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (11, 'rte', '1.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (12, 'low_variables', '2.4.0', 'YTowOnt9', 'n');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (13, 'wygwam', '3.2.1', 'YTowOnt9', 'y');
INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES (14, 'matrix', '2.5.10', 'YTowOnt9', 'y');


#
# TABLE STRUCTURE FOR: exp_file_categories
#

DROP TABLE IF EXISTS `exp_file_categories`;

CREATE TABLE `exp_file_categories` (
  `file_id` int(10) unsigned DEFAULT NULL,
  `cat_id` int(10) unsigned DEFAULT NULL,
  `sort` int(10) unsigned DEFAULT '0',
  `is_cover` char(1) DEFAULT 'n',
  KEY `file_id` (`file_id`),
  KEY `cat_id` (`cat_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_file_dimensions
#

DROP TABLE IF EXISTS `exp_file_dimensions`;

CREATE TABLE `exp_file_dimensions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `upload_location_id` int(4) unsigned DEFAULT NULL,
  `title` varchar(255) DEFAULT '',
  `short_name` varchar(255) DEFAULT '',
  `resize_type` varchar(50) DEFAULT '',
  `width` int(10) DEFAULT '0',
  `height` int(10) DEFAULT '0',
  `watermark_id` int(4) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `upload_location_id` (`upload_location_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `exp_file_dimensions` (`id`, `site_id`, `upload_location_id`, `title`, `short_name`, `resize_type`, `width`, `height`, `watermark_id`) VALUES (1, 1, 4, 'thumbpic', 'thumbpic', 'constrain', 150, 0, 0);
INSERT INTO `exp_file_dimensions` (`id`, `site_id`, `upload_location_id`, `title`, `short_name`, `resize_type`, `width`, `height`, `watermark_id`) VALUES (2, 1, 4, 'mainpic', 'mainpic', 'constrain', 350, 0, 0);


#
# TABLE STRUCTURE FOR: exp_file_watermarks
#

DROP TABLE IF EXISTS `exp_file_watermarks`;

CREATE TABLE `exp_file_watermarks` (
  `wm_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `wm_name` varchar(80) DEFAULT NULL,
  `wm_type` varchar(10) DEFAULT 'text',
  `wm_image_path` varchar(100) DEFAULT NULL,
  `wm_test_image_path` varchar(100) DEFAULT NULL,
  `wm_use_font` char(1) DEFAULT 'y',
  `wm_font` varchar(30) DEFAULT NULL,
  `wm_font_size` int(3) unsigned DEFAULT NULL,
  `wm_text` varchar(100) DEFAULT NULL,
  `wm_vrt_alignment` varchar(10) DEFAULT 'top',
  `wm_hor_alignment` varchar(10) DEFAULT 'left',
  `wm_padding` int(3) unsigned DEFAULT NULL,
  `wm_opacity` int(3) unsigned DEFAULT NULL,
  `wm_hor_offset` int(4) unsigned DEFAULT NULL,
  `wm_vrt_offset` int(4) unsigned DEFAULT NULL,
  `wm_x_transp` int(4) DEFAULT NULL,
  `wm_y_transp` int(4) DEFAULT NULL,
  `wm_font_color` varchar(7) DEFAULT NULL,
  `wm_use_drop_shadow` char(1) DEFAULT 'y',
  `wm_shadow_distance` int(3) unsigned DEFAULT NULL,
  `wm_shadow_color` varchar(7) DEFAULT NULL,
  PRIMARY KEY (`wm_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_files
#

DROP TABLE IF EXISTS `exp_files`;

CREATE TABLE `exp_files` (
  `file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned DEFAULT '1',
  `title` varchar(255) DEFAULT NULL,
  `upload_location_id` int(4) unsigned DEFAULT '0',
  `rel_path` varchar(255) DEFAULT NULL,
  `mime_type` varchar(255) DEFAULT NULL,
  `file_name` varchar(255) DEFAULT NULL,
  `file_size` int(10) DEFAULT '0',
  `description` text,
  `credit` varchar(255) DEFAULT NULL,
  `location` varchar(255) DEFAULT NULL,
  `uploaded_by_member_id` int(10) unsigned DEFAULT '0',
  `upload_date` int(10) DEFAULT NULL,
  `modified_by_member_id` int(10) unsigned DEFAULT '0',
  `modified_date` int(10) DEFAULT NULL,
  `file_hw_original` varchar(20) NOT NULL DEFAULT '',
  PRIMARY KEY (`file_id`),
  KEY `upload_location_id` (`upload_location_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=98 DEFAULT CHARSET=utf8;

INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (1, 1, 'bannerpic.jpg', 1, 'C:/wamp/www/beanstoblossoms.com/images/banner-images/bannerpic.jpg', 'image/jpeg', 'bannerpic.jpg', 67011, NULL, NULL, NULL, 1, 1383664158, 1, 1383664158, '242 418');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (2, 1, 'Calendula.jpg', 2, 'C:/wamp/www/beanstoblossoms.com/images/news/Calendula.jpg', 'image/jpeg', 'Calendula.jpg', 43899, NULL, NULL, NULL, 1, 1383667679, 1, 1383667679, '225 300');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (3, 1, 'annualsad1.jpg', 3, 'C:/wamp/www/beanstoblossoms.com/images/content-files/annualsad1.jpg', 'image/jpeg', 'annualsad1.jpg', 56433, NULL, NULL, NULL, 1, 1383672170, 1, 1383672198, '346 461');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (5, 1, '_31_Pink_Chevron_Duffel_Mini_Cosmetic_Bag.jpg', 1, '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/_31_Pink_Chevron_Duffel_Mini_Cosmetic_Bag.jpg', 'image/jpeg', '_31_Pink_Chevron_Duffel_Mini_Cosmetic_Bag.jpg', 36385, NULL, NULL, NULL, 1, 1383799706, 1, 1383800018, '242 418');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (6, 1, 'bldg.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/bldg.gif', 'image/gif', 'bldg.gif', 108063, NULL, NULL, NULL, 2, 1384126743, 2, 1384126799, '450 600');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (11, 1, 'newsletter.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/newsletter.pdf', 'application/pdf', 'newsletter.pdf', 1799076, NULL, NULL, NULL, 1, 1384128195, 1, 1384128195, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (10, 1, 'Fotolia_13199996_XS.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Fotolia_13199996_XS.jpg', 'image/jpeg', 'Fotolia_13199996_XS.jpg', 19648, NULL, NULL, NULL, 2, 1384127603, 2, 1384127676, '297 300');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (13, 1, 'Seaonal-Color-Belair-2-07-19-2007-e1365607220620.jpg', 1, '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/Seaonal-Color-Belair-2-07-19-2007-e1365607220620.jpg', 'image/jpeg', 'Seaonal-Color-Belair-2-07-19-2007-e1365607220620.jpg', 53760, NULL, NULL, NULL, 1, 1384129705, 1, 1384129808, '242 418');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (17, 1, 'produce-working.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/produce-working.jpg', 'image/jpeg', 'produce-working.jpg', 74988, NULL, NULL, NULL, 1, 1385687396, 1, 1385687396, '400 300');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (18, 1, 'kyproud.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/kyproud.gif', 'image/gif', 'kyproud.gif', 7834, NULL, NULL, NULL, 1, 1385687640, 1, 1385687640, '73 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (19, 1, 'organic.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/organic.gif', 'image/gif', 'organic.gif', 9001, NULL, NULL, NULL, 1, 1385688066, 1, 1385688066, '135 170');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (20, 1, 'compost.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/compost.gif', 'image/gif', 'compost.gif', 15073, NULL, NULL, NULL, 1, 1385688315, 1, 1385688315, '135 170');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (21, 1, 'producead3.png', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/producead3.png', 'image/png', 'producead3.png', 129352, NULL, NULL, NULL, 1, 1385688732, 1, 1385688732, '225 300');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (22, 1, 'producepic.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/producepic.gif', 'image/gif', 'producepic.gif', 119060, NULL, NULL, NULL, 1, 1385688768, 1, 1385688768, '396 600');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (23, 1, 'tomatoplants.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/tomatoplants.gif', 'image/gif', 'tomatoplants.gif', 160604, NULL, NULL, NULL, 1, 1385689234, 1, 1385689234, '450 600');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (24, 1, 'tomatoad2.png', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/tomatoad2.png', 'image/png', 'tomatoad2.png', 102943, NULL, NULL, NULL, 1, 1385689356, 1, 1385689356, '167 250');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (25, 1, 'fertilizers.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/fertilizers.jpg', 'image/jpeg', 'fertilizers.jpg', 44032, NULL, NULL, NULL, 1, 1385689507, 1, 1385689507, '225 300');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (26, 1, 'Hands-seeds.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Hands-seeds.jpg', 'image/jpeg', 'Hands-seeds.jpg', 16497, NULL, NULL, NULL, 1, 1385689678, 1, 1385689678, '130 300');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (27, 1, 'soapad2.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/soapad2.jpg', 'image/jpeg', 'soapad2.jpg', 55747, NULL, NULL, NULL, 1, 1385700462, 1, 1385700462, '540 720');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (28, 1, 'giftcertificatead.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/giftcertificatead.gif', 'image/gif', 'giftcertificatead.gif', 11940, NULL, NULL, NULL, 1, 1385700600, 1, 1385700600, '135 170');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (29, 1, 'soycandles.gif', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/soycandles.gif', 'image/gif', 'soycandles.gif', 14930, NULL, NULL, NULL, 1, 1385700828, 1, 1385700828, '135 170');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (30, 1, 'perennialsad1.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/perennialsad1.jpg', 'image/jpeg', 'perennialsad1.jpg', 59822, NULL, NULL, NULL, 1, 1385855933, 1, 1385855933, '346 461');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (31, 1, 'herbsad1.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/herbsad1.jpg', 'image/jpeg', 'herbsad1.jpg', 53166, NULL, NULL, NULL, 1, 1385856093, 1, 1385856093, '346 461');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (32, 1, 'rosesad1.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/rosesad1.jpg', 'image/jpeg', 'rosesad1.jpg', 30413, NULL, NULL, NULL, 1, 1385856130, 1, 1385856130, '346 461');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (36, 1, '2014_HOSTA_LIST.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/2013_HOSTA_LIST.pdf', 'application/pdf', '2013_HOSTA_LIST.pdf', 176169, '', '', '', 1, 1389144466, 1, 1389144919, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (38, 1, '2014_PEPPERS.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/2013_PEPPERS.pdf', 'application/pdf', '2013_PEPPERS.pdf', 70584, '', '', '', 1, 1389144897, 1, 1389144907, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (55, 1, 'Bereavement_Collection_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Bereavement_Collection_full.jpg', 'image/jpeg', 'Bereavement_Collection_full.jpg', 75389, NULL, NULL, NULL, 1, 1391272926, 1, 1424541569, '466 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (52, 1, 'Beautiful_In_Blue_Large_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Beautiful_In_Blue_Large_thumb.jpg', 'image/jpeg', 'Beautiful_In_Blue_Large_thumb.jpg', 22161, NULL, NULL, NULL, 1, 1391272279, 1, 1424541569, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (53, 1, 'Beautiful_In_Blue_Large_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Beautiful_In_Blue_Large_full.jpg', 'image/jpeg', 'Beautiful_In_Blue_Large_full.jpg', 90812, NULL, NULL, NULL, 1, 1391272295, 1, 1424541569, '466 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (54, 1, 'Bereavement_Collection_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Bereavement_Collection_thumb.jpg', 'image/jpeg', 'Bereavement_Collection_thumb.jpg', 18057, NULL, NULL, NULL, 1, 1391272792, 1, 1424541569, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (43, 1, 'greenhouse.jpg', 1, '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/greenhouse.jpg', 'image/jpeg', 'greenhouse.jpg', 75571, NULL, NULL, NULL, 1, 1390960712, 1, 1390960712, '242 418');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (44, 1, 'Produce.jpg', 1, '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/Produce.jpg', 'image/jpeg', 'Produce.jpg', 62536, NULL, NULL, NULL, 1, 1390960837, 1, 1390960837, '242 418');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (45, 1, 'Hands-seeds2.jpg', 1, '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/Hands-seeds2.jpg', 'image/jpeg', 'Hands-seeds2.jpg', 28017, NULL, NULL, NULL, 1, 1390960988, 1, 1390960988, '242 418');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (56, 1, 'Best_Wishes_Small_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Best_Wishes_Small_thumb.jpg', 'image/jpeg', 'Best_Wishes_Small_thumb.jpg', 13214, NULL, NULL, NULL, 1, 1391273106, 1, 1424541570, '112 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (57, 1, 'Best_Wishes_Small_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Best_Wishes_Small_full.jpg', 'image/jpeg', 'Best_Wishes_Small_full.jpg', 51555, NULL, NULL, NULL, 1, 1391273118, 1, 1424541569, '262 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (58, 1, 'Croton_In_Ceramic_Pot_Large_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Croton_In_Ceramic_Pot_Large_full.jpg', 'image/jpeg', 'Croton_In_Ceramic_Pot_Large_full.jpg', 66626, NULL, NULL, NULL, 1, 1391273178, 1, 1424541570, '262 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (59, 1, 'Croton_In_Ceramic_Pot_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Croton_In_Ceramic_Pot_thumb.jpg', 'image/jpeg', 'Croton_In_Ceramic_Pot_thumb.jpg', 16338, NULL, NULL, NULL, 1, 1391273192, 1, 1424541570, '112 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (60, 1, 'Happy_Day_Small_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Happy_Day_Small_thumb.jpg', 'image/jpeg', 'Happy_Day_Small_thumb.jpg', 13580, NULL, NULL, NULL, 1, 1391273241, 1, 1424541570, '112 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (61, 1, 'Happy_Day_Small_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Happy_Day_Small_full.jpg', 'image/jpeg', 'Happy_Day_Small_full.jpg', 51966, NULL, NULL, NULL, 1, 1391273252, 1, 1424541570, '262 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (62, 1, 'Houseplant_Combination-Medium_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Houseplant_Combination-Medium_thumb.jpg', 'image/jpeg', 'Houseplant_Combination-Medium_thumb.jpg', 13857, NULL, NULL, NULL, 1, 1391273353, 1, 1424541570, '112 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (63, 1, 'Houseplant_Combination-Medium_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Houseplant_Combination-Medium_full.jpg', 'image/jpeg', 'Houseplant_Combination-Medium_full.jpg', 52003, NULL, NULL, NULL, 1, 1391273362, 1, 1424541570, '262 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (64, 1, 'New_Baby_Small_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/New_Baby_Small_thumb.jpg', 'image/jpeg', 'New_Baby_Small_thumb.jpg', 16833, NULL, NULL, NULL, 1, 1391273425, 1, 1424541570, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (65, 1, 'New_Baby_Small_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/New_Baby_Small_full.jpg', 'image/jpeg', 'New_Baby_Small_full.jpg', 62769, NULL, NULL, NULL, 1, 1391273435, 1, 1424541570, '466 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (66, 1, 'Pretty_In_Pink_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Pretty_In_Pink_thumb.jpg', 'image/jpeg', 'Pretty_In_Pink_thumb.jpg', 13267, NULL, NULL, NULL, 1, 1391273483, 1, 1424541571, '112 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (67, 1, 'Pretty_In_Pink_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Pretty_In_Pink_full.jpg', 'image/jpeg', 'Pretty_In_Pink_full.jpg', 54454, NULL, NULL, NULL, 1, 1391273494, 1, 1424541570, '262 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (68, 1, 'Sweet_Love_Small_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Sweet_Love_Small_thumb.jpg', 'image/jpeg', 'Sweet_Love_Small_thumb.jpg', 19610, NULL, NULL, NULL, 1, 1391273528, 1, 1424541571, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (69, 1, 'Sweet_Love_Small_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Sweet_Love_Small_full.jpg', 'image/jpeg', 'Sweet_Love_Small_full.jpg', 73624, NULL, NULL, NULL, 1, 1391273539, 1, 1424541571, '466 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (70, 1, 'Winter_Elegance_Medium_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Winter_Elegance_Medium_thumb.jpg', 'image/jpeg', 'Winter_Elegance_Medium_thumb.jpg', 16485, NULL, NULL, NULL, 1, 1391273574, 1, 1424541572, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (71, 1, 'Winter_Elegance_Medium_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Winter_Elegance_Medium_full.jpg', 'image/jpeg', 'Winter_Elegance_Medium_full.jpg', 65465, NULL, NULL, NULL, 1, 1391273586, 1, 1424541572, '466 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (72, 1, 'Sweet_Memories_Standing_Spray_Medium_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Sweet_Memories_Standing_Spray_Medium_thumb.jpg', 'image/jpeg', 'Sweet_Memories_Standing_Spray_Medium_thumb.jpg', 17730, NULL, NULL, NULL, 1, 1391275199, 1, 1424541571, '193 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (73, 1, 'Sweet_Memories_Standing_Spray_Medium_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Sweet_Memories_Standing_Spray_Medium_full.jpg', 'image/jpeg', 'Sweet_Memories_Standing_Spray_Medium_full.jpg', 69162, NULL, NULL, NULL, 1, 1391275220, 1, 1424541571, '450 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (74, 1, 'Sweet_Memories_Urn_Medium_thumb.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Sweet_Memories_Urn_Medium_thumb.jpg', 'image/jpeg', 'Sweet_Memories_Urn_Medium_thumb.jpg', 19334, NULL, NULL, NULL, 1, 1391275344, 1, 1424541572, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (75, 1, 'Sweet_Memories_Urn_Medium_full.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Sweet_Memories_Urn_Medium_full.jpg', 'image/jpeg', 'Sweet_Memories_Urn_Medium_full.jpg', 77351, NULL, NULL, NULL, 1, 1391275355, 1, 1424541572, '466 350');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (90, 1, 'msu_bud_vases_josey_2nd_grade_009.JPG', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/msu_bud_vases_josey_2nd_grade_009.JPG', 'image/jpeg', 'msu_bud_vases_josey_2nd_grade_009.JPG', 1371423, NULL, NULL, NULL, 1, 1424541421, 1, 1424541822, '1973 2816');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (91, 1, 'houseplant.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/houseplant.jpg', 'image/jpeg', 'houseplant.jpg', 922275, NULL, NULL, NULL, 1, 1424543154, 1, 1424543264, '4128 2322');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (78, 1, 'Lindys_Pictures_1479.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Lindys_Pictures_1479.jpg', 'image/jpeg', 'Lindys_Pictures_1479.jpg', 14590, NULL, NULL, NULL, 1, 1391874092, 1, 1391874109, '150 200');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (79, 1, 'Lindys_Pictures_2624.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Lindys_Pictures_2624.jpg', 'image/jpeg', 'Lindys_Pictures_2624.jpg', 8609, NULL, NULL, NULL, 1, 1391874130, 1, 1391874143, '113 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (80, 1, 'Lindys_Pictures_2579.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Lindys_Pictures_2579.jpg', 'image/jpeg', 'Lindys_Pictures_2579.jpg', 15327, NULL, NULL, NULL, 1, 1391874162, 1, 1391874174, '150 200');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (81, 1, 'Lindys_Pictures_2669.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Lindys_Pictures_2669.jpg', 'image/jpeg', 'Lindys_Pictures_2669.jpg', 12878, NULL, NULL, NULL, 1, 1391874190, 1, 1391874199, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (82, 1, 'Lindys_Pictures_2672.jpg', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/Lindys_Pictures_2672.jpg', 'image/jpeg', 'Lindys_Pictures_2672.jpg', 11244, NULL, NULL, NULL, 1, 1391874213, 1, 1391874220, '200 150');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (83, 1, 'GMO.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/GMO.pdf', 'application/pdf', 'GMO.pdf', 187996, NULL, NULL, NULL, 1, 1391966348, 1, 1391966348, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (84, 1, 'banner-landscaping.png', 1, '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/banner-landscaping.png', 'image/png', 'banner-landscaping.png', 211282, NULL, NULL, NULL, 1, 1391967745, 1, 1391967745, '182 693');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (86, 1, 'TOMATOES_2014_GROWING_SEASON.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/TOMATOES_2014_GROWING_SEASON.pdf', 'application/pdf', 'TOMATOES_2014_GROWING_SEASON.pdf', 87511, NULL, NULL, NULL, 1, 1394673856, 1, 1394673856, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (87, 1, '2014_PEPPERS.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/2014_PEPPERS.pdf', 'application/pdf', '2014_PEPPERS.pdf', 245668, NULL, NULL, NULL, 1, 1394673980, 1, 1394673980, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (88, 1, '2014_Hosta.pdf', 3, '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/2014_Hosta.pdf', 'application/pdf', '2014_Hosta.pdf', 177162, NULL, NULL, NULL, 1, 1394674227, 1, 1394674227, ' ');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (92, 1, 'mixed_pastel_bouquet.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/mixed_pastel_bouquet.jpg', 'image/jpeg', 'mixed_pastel_bouquet.jpg', 69693, NULL, NULL, NULL, 1, 1424544827, 1, 1424544827, '960 540');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (93, 1, 'Spring_Beauty.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Spring_Beauty.jpg', 'image/jpeg', 'Spring_Beauty.jpg', 76790, NULL, NULL, NULL, 1, 1424545335, 1, 1424545335, '960 540');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (94, 1, 'Dozen_roses.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Dozen_roses.jpg', 'image/jpeg', 'Dozen_roses.jpg', 62781, NULL, NULL, NULL, 1, 1424545925, 1, 1424545925, '960 540');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (95, 1, 'Bereavement_stepping_stone_easel.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Bereavement_stepping_stone_easel.jpg', 'image/jpeg', 'Bereavement_stepping_stone_easel.jpg', 54057, NULL, NULL, NULL, 1, 1424546318, 1, 1424546318, '960 540');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (96, 1, 'Country_wreath.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Country_wreath.jpg', 'image/jpeg', 'Country_wreath.jpg', 1255881, NULL, NULL, NULL, 1, 1424547622, 1, 1424547695, '4128 2322');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES (97, 1, 'Spring_wreath.jpg', 4, '/home/boom4202/public_html/beanstoblossoms.com/images/floral/Spring_wreath.jpg', 'image/jpeg', 'Spring_wreath.jpg', 45501, NULL, NULL, NULL, 1, 1424548062, 1, 1424548207, '421 341');


#
# TABLE STRUCTURE FOR: exp_global_variables
#

DROP TABLE IF EXISTS `exp_global_variables`;

CREATE TABLE `exp_global_variables` (
  `variable_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `variable_name` varchar(50) NOT NULL,
  `variable_data` text NOT NULL,
  PRIMARY KEY (`variable_id`),
  KEY `variable_name` (`variable_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `exp_global_variables` (`variable_id`, `site_id`, `variable_name`, `variable_data`) VALUES (1, 1, 'lv_html_top', '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n\nxmlns:og=\"http://ogp.me/ns#\"\n\nxmlns:fb=\"http://www.facebook.com/2008/fbml\"><!--formatted-->\n\n<head>\n<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\" />\n<link rel=\'stylesheet\' type=\'text/css\' media=\'all\' href=\'{stylesheet=stylesheets/styles}\' />\n<link rel=\'stylesheet\' type=\'text/css\' media=\'all\' href=\'{stylesheet=stylesheets/flexslider}\' />\n\n<link href=\'http://fonts.googleapis.com/css?family=PT+Sans\' rel=\'stylesheet\' type=\'text/css\'>\n<link href=\'http://fonts.googleapis.com/css?family=Chango\' rel=\'stylesheet\' type=\'text/css\'>\n<link href=\'http://fonts.googleapis.com/css?family=Rock+Salt\' rel=\'stylesheet\' type=\'text/css\'>\n\n<link rel=\"image_src\" href=\"http://www.beanstoblossoms.com/images/interface/logo.png\" / >\n\n\n<meta property=\"og:title\" content=\"{exp:entry_data:title url_title=\"{segment_2}\" channel=\"events\"}\" />\n<meta property=\"og:type\" content=\"website\"/>\n<meta property=\"og:description\" content=\"{exp:channel:entries channel=\"events\" url_title=\"{segment_2}\"}{description} {/exp:channel:entries}\" />\n\n<meta property=\"og:image\" content=\"http://www.beanstoblossoms.com/images/interface/logo.png\" />\n\n<meta property=\"og:url\" content=\"http://www.beanstoblossoms.com/events/little-sprouts-class3\" />\n<meta property=\"og:site_name\" content=\"Beans to Blossoms\"/>\n\n\n\n{exp:jquery:script_tag}\n\n<script src=\"{site_url}/javascripts/jquery.flexslider.js\" type=\"text/javascript\"></script>\n\n<script type=\"text/javascript\" charset=\"utf-8\">\n  $(window).load(function() {\n    $(\'.flexslider\').flexslider({\n          animation: \"slide\",\n          controlsContainer: \".flex-container\"\n    });\n  });\n</script>\n\n<title>Beans to Blossoms</title>\n\n<meta name=\"keywords\" content=\"flowers\" />\n<meta name=\"description\" content=\"Specializing in Antique Heirloom Flowers, Organic Produce, and Floral Arrangements.\" /><!--formatted-->\n\n<meta name=\"google-site-verification\" content=\"yB98X8VoDgzJ7VriNErhsjsH1hrsq9HwLhaO4OXa_PE\" />\n\n</head>\n\n<body style=\"min-width:1400px;\">');
INSERT INTO `exp_global_variables` (`variable_id`, `site_id`, `variable_name`, `variable_data`) VALUES (2, 1, 'lv_footer', ',</div>\n  <!-- END CONTAINER --> \n\n    <div id=\"footer-bar\"></div>\n    <div id=\"footer-bottom\">\n      <div id=\"footer-bottom-menu\">\n       <a href=\"www.beanstoblossoms.com\">home</a> |\n       <a href=\"{path=\'about/\'}\">about</a> |\n       <a href=\"{path=\'flowers/\'}\">flowers</a> |\n       <a href=\"{path=\'produce/\'}\">produce</a> |\n       <a href=\"{path=\'garden-center/\'}\">garden center</a> |\n       <a href=\"{path=\'gift-shop/\'}\">gift shop</a> |\n       <a href=\"{path=\'florist/\'}\">florist</a> |\n       <a href=\"{path=\'landscaping/\'}\">landscaping</a> |\n       <a href=\"{path=\'little-sprouts/\'}\">litte sprouts</a>\n      </div>\n      <div id=\"footer-bottom-blocks\">\n\n        <div style=\"width:250px;float:left;\">\n          <span style=\"font-size:24pt;color:#38421c;\">Contact Us</span><br />\n          <div style=\"margin-left:5px;\">\n          <span style=\"color:#4c582a;\">Beans to Blossoms<br />2397 hwy 94 East<br />Murray, KY 42071<br />270.753.4050</span>\n          </div>\n        </div>\n        <div style=\"width:350px;float:left;\">\n          <span style=\"font-size:24pt;color:#38421c;\">Hours of Operation</span><br />\n          <div style=\"margin-left:5px;\">\n          <span style=\"color:#4c582a;\">Monday - Friday : 9:00am - 5:00pm<br />Saturday : 9:00am - 3:00pm</span>\n          </div>\n        </div>\n        <div style=\"width:250px;float:left;\">\n          <span style=\"font-size:24pt;color:#38421c;\">Stay Connected</span><br />\n          <div style=\"margin-left:5px;\"><span style=\"color:#4c582a;\">Receive timely news and updates about sales, new arrivals, upcoming classes, and much more.</span>\n\n\n\n<!-- Begin MailChimp Signup Form -->\n<link href=\"http://cdn-images.mailchimp.com/embedcode/slim-081711.css\" rel=\"stylesheet\" type=\"text/css\">\n<style type=\"text/css\">\n  #mc_embed_signup{clear:left; font:14px Helvetica,Arial,sans-serif; }\n  /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.\n     We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */\n</style>\n<div id=\"mc_embed_signup\" style=\"padding:0;margin:0;\">\n<form action=\"http://beanstoblossoms.us4.list-manage2.com/subscribe/post?u=793b221bd88851d6a004b8843&amp;id=cc896b4210\" method=\"post\" id=\"mc-embedded-subscribe-form\" name=\"mc-embedded-subscribe-form\" class=\"validate\" target=\"_blank\" novalidate>\n  <label for=\"mce-EMAIL\">Subscribe to our mailing list</label>\n  <input type=\"email\" value=\"\" name=\"EMAIL\" class=\"email\" id=\"mce-EMAIL\" placeholder=\"email address\" required>\n  <div class=\"clear\"><input type=\"submit\" value=\"Subscribe\" name=\"subscribe\" id=\"mc-embedded-subscribe\" class=\"button\"></div>\n</form>\n</div>\n\n<!--End mc_embed_signup-->\n\n\n          </div><div class=\"clear\"></div>\n        </div>\n      </div>\n    </div>\n\n</body>\n\n</html>');
INSERT INTO `exp_global_variables` (`variable_id`, `site_id`, `variable_name`, `variable_data`) VALUES (4, 1, 'lv_logo_header', '   <div id=\"header\">\n     <div id=\"header-left\"><img src=\"{site_url}/images/interface/logo.png\" /></div>\n     <div id=\"header-right\" style=\"text-align:right;padding-right:20px;color:#eff4e0;\">\n<a href=\"{path=\'site_index\'}\" class=\"toplink\">Home</a> | \n<a href=\"{path=\'news/\'}\" class=\"toplink\" {if segment_1==\"news\"}style=\"text-decoration:underline;\"{/if}>News & Updates</a> | \n<a href=\"{path=\'events/\'}\" class=\"toplink\" {if segment_1==\"events\"}style=\"text-decoration:underline;\"{/if}>Classes & Events</a>\n     </div>\n   </div>\n');
INSERT INTO `exp_global_variables` (`variable_id`, `site_id`, `variable_name`, `variable_data`) VALUES (5, 1, 'lv_main_menu', '   <div id=\"menu\">\n       <a href=\"{path=\'about/\'}\" {if section==\"about\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>about</a>\n       <a href=\"{path=\'flowers/\'}\" {if section==\"flowers\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>flowers</a>\n       <a href=\"{path=\'produce/\'}\" {if section==\"produce\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>produce</a>\n       <a href=\"{path=\'garden-center/\'}\" {if section==\"garden-center\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>garden center</a>\n       <a href=\"{path=\'gift-shop/\'}\" {if section==\"gift-shop\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>gift shop</a>\n       <a href=\"{path=\'florist/\'}\" {if section==\"florist\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>florist</a>\n       <a href=\"{path=\'landscaping/\'}\" {if section==\"landscaping\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>landscaping</a>\n       <a href=\"{path=\'little-sprouts/\'}\" {if section==\"little-sprouts\"}style=\"background:url(\'{site_url}/images/interface//banner-bg-large.png\');\"{/if}>little sprouts</a>\n   </div>');
INSERT INTO `exp_global_variables` (`variable_id`, `site_id`, `variable_name`, `variable_data`) VALUES (6, 1, 'lv_home_banners', '1');


#
# TABLE STRUCTURE FOR: exp_grid_columns
#

DROP TABLE IF EXISTS `exp_grid_columns`;

CREATE TABLE `exp_grid_columns` (
  `col_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` int(10) unsigned DEFAULT NULL,
  `content_type` varchar(50) DEFAULT NULL,
  `col_order` int(3) unsigned DEFAULT NULL,
  `col_type` varchar(50) DEFAULT NULL,
  `col_label` varchar(50) DEFAULT NULL,
  `col_name` varchar(32) DEFAULT NULL,
  `col_instructions` text,
  `col_required` char(1) DEFAULT NULL,
  `col_search` char(1) DEFAULT NULL,
  `col_width` int(3) unsigned DEFAULT NULL,
  `col_settings` text,
  PRIMARY KEY (`col_id`),
  KEY `field_id` (`field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_html_buttons
#

DROP TABLE IF EXISTS `exp_html_buttons`;

CREATE TABLE `exp_html_buttons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `tag_name` varchar(32) NOT NULL,
  `tag_open` varchar(120) NOT NULL,
  `tag_close` varchar(120) NOT NULL,
  `accesskey` varchar(32) NOT NULL,
  `tag_order` int(3) unsigned NOT NULL,
  `tag_row` char(1) NOT NULL DEFAULT '1',
  `classname` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES (1, 1, 0, 'b', '<strong>', '</strong>', 'b', 1, '1', 'btn_b');
INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES (2, 1, 0, 'i', '<em>', '</em>', 'i', 2, '1', 'btn_i');
INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES (3, 1, 0, 'blockquote', '<blockquote>', '</blockquote>', 'q', 3, '1', 'btn_blockquote');
INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES (4, 1, 0, 'a', '<a href=\"[![Link:!:http://]!]\"(!( title=\"[![Title]!]\")!)>', '</a>', 'a', 4, '1', 'btn_a');
INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES (5, 1, 0, 'img', '<img src=\"[![Link:!:http://]!]\" alt=\"[![Alternative text]!]\" />', '', '', 5, '1', 'btn_img');


#
# TABLE STRUCTURE FOR: exp_layout_publish
#

DROP TABLE IF EXISTS `exp_layout_publish`;

CREATE TABLE `exp_layout_publish` (
  `layout_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_group` int(4) unsigned NOT NULL DEFAULT '0',
  `channel_id` int(4) unsigned NOT NULL DEFAULT '0',
  `field_layout` text,
  PRIMARY KEY (`layout_id`),
  KEY `site_id` (`site_id`),
  KEY `member_group` (`member_group`),
  KEY `channel_id` (`channel_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_low_reorder_orders
#

DROP TABLE IF EXISTS `exp_low_reorder_orders`;

CREATE TABLE `exp_low_reorder_orders` (
  `set_id` int(10) unsigned NOT NULL,
  `cat_id` int(10) unsigned NOT NULL,
  `sort_order` text,
  PRIMARY KEY (`set_id`,`cat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (1, 0, '|5|7|6|9|8|28|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (2, 0, '|17|18|19|20|34|35|36|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (3, 0, '|10|11|12|13|14|15|16|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (4, 0, '|38|42|39|40|41|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (5, 0, '|25|26|31|37|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (6, 0, '|56|57|58|61|75|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (7, 0, '');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (8, 0, '|32|33|');
INSERT INTO `exp_low_reorder_orders` (`set_id`, `cat_id`, `sort_order`) VALUES (9, 0, '|62|80|82|81|74|73|72|71|70|69|68|67|66|65|64|63|83|84|85|');


#
# TABLE STRUCTURE FOR: exp_low_reorder_sets
#

DROP TABLE IF EXISTS `exp_low_reorder_sets`;

CREATE TABLE `exp_low_reorder_sets` (
  `set_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `set_label` varchar(100) NOT NULL,
  `set_name` varchar(50) NOT NULL,
  `set_notes` text NOT NULL,
  `new_entries` enum('append','prepend') NOT NULL DEFAULT 'append',
  `clear_cache` enum('y','n') NOT NULL DEFAULT 'y',
  `channels` varchar(255) NOT NULL,
  `cat_option` enum('all','some','one','none') NOT NULL DEFAULT 'all',
  `cat_groups` varchar(255) NOT NULL,
  `parameters` text NOT NULL,
  `permissions` text NOT NULL,
  PRIMARY KEY (`set_id`),
  KEY `site_id` (`site_id`),
  KEY `set_name` (`set_name`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (1, 1, 'About', 'about', '', 'append', 'n', '|1|', 'all', '', '{\"status\":\"open\",\"channel\":\"about\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (2, 1, 'produce', 'produce', '', 'append', 'n', '|4|', 'all', '', '{\"status\":\"open\",\"channel\":\"produce\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (3, 1, 'flowers', 'flowers', '', 'append', 'n', '|3|', 'all', '', '{\"status\":\"open\",\"channel\":\"flowers\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (4, 1, 'garden center', 'gardencenter', '', 'append', 'n', '|5|', 'all', '', '{\"status\":\"open\",\"channel\":\"garden_center\"}', '{\"5\":\"1\"}');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (5, 1, 'gift shop', 'giftshop', '', 'append', 'n', '|6|', 'all', '', '{\"status\":\"open\",\"channel\":\"gift_shop\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (6, 1, 'florist', 'florist', '', 'append', 'n', '|7|', 'all', '', '{\"status\":\"open\",\"channel\":\"florist\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (7, 1, 'landscaping', 'landscaping', '', 'append', 'n', '|8|', 'all', '', '{\"status\":\"open\",\"channel\":\"landscaping\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (8, 1, 'little sprouts', 'littlesprouts', '', 'append', 'n', '|9|', 'all', '', '{\"status\":\"open\",\"channel\":\"little_sprouts\"}', '[false]');
INSERT INTO `exp_low_reorder_sets` (`set_id`, `site_id`, `set_label`, `set_name`, `set_notes`, `new_entries`, `clear_cache`, `channels`, `cat_option`, `cat_groups`, `parameters`, `permissions`) VALUES (9, 1, 'Arrangements', 'arrangements', '', 'append', 'n', '|11|', 'all', '', '{\"status\":\"open\",\"channel\":\"flower_arrangements\"}', '{\"5\":\"0\"}');


#
# TABLE STRUCTURE FOR: exp_low_variable_groups
#

DROP TABLE IF EXISTS `exp_low_variable_groups`;

CREATE TABLE `exp_low_variable_groups` (
  `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(6) unsigned NOT NULL DEFAULT '1',
  `group_label` varchar(100) NOT NULL DEFAULT '',
  `group_notes` text NOT NULL,
  `group_order` int(4) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_low_variables
#

DROP TABLE IF EXISTS `exp_low_variables`;

CREATE TABLE `exp_low_variables` (
  `variable_id` int(6) unsigned NOT NULL,
  `group_id` int(6) unsigned NOT NULL DEFAULT '0',
  `variable_label` varchar(100) NOT NULL DEFAULT '',
  `variable_notes` text NOT NULL,
  `variable_type` varchar(50) NOT NULL DEFAULT 'low_textarea',
  `variable_settings` text NOT NULL,
  `variable_order` int(4) unsigned NOT NULL DEFAULT '0',
  `early_parsing` char(1) NOT NULL DEFAULT 'n',
  `is_hidden` char(1) NOT NULL DEFAULT 'n',
  `save_as_file` char(1) NOT NULL DEFAULT 'n',
  `edit_date` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`variable_id`),
  KEY `group_id` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `exp_low_variables` (`variable_id`, `group_id`, `variable_label`, `variable_notes`, `variable_type`, `variable_settings`, `variable_order`, `early_parsing`, `is_hidden`, `save_as_file`, `edit_date`) VALUES (1, 0, 'html top', '', 'low_textarea', 'YTozOntzOjQ6InJvd3MiO3M6MToiNiI7czoxNDoidGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJjb2RlX2Zvcm1hdCI7czowOiIiO30', 1, 'n', 'y', 'n', 1412539892);
INSERT INTO `exp_low_variables` (`variable_id`, `group_id`, `variable_label`, `variable_notes`, `variable_type`, `variable_settings`, `variable_order`, `early_parsing`, `is_hidden`, `save_as_file`, `edit_date`) VALUES (2, 0, 'footer', '', 'low_textarea', 'YTozOntzOjQ6InJvd3MiO3M6MToiNiI7czoxNDoidGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJjb2RlX2Zvcm1hdCI7czowOiIiO30', 2, 'n', 'y', 'n', 1412539892);
INSERT INTO `exp_low_variables` (`variable_id`, `group_id`, `variable_label`, `variable_notes`, `variable_type`, `variable_settings`, `variable_order`, `early_parsing`, `is_hidden`, `save_as_file`, `edit_date`) VALUES (4, 0, 'logo header', '', 'low_textarea', 'YTozOntzOjQ6InJvd3MiO3M6MToiNiI7czoxNDoidGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJjb2RlX2Zvcm1hdCI7czowOiIiO30', 3, 'n', 'y', 'n', 1412539892);
INSERT INTO `exp_low_variables` (`variable_id`, `group_id`, `variable_label`, `variable_notes`, `variable_type`, `variable_settings`, `variable_order`, `early_parsing`, `is_hidden`, `save_as_file`, `edit_date`) VALUES (5, 0, 'main menu', '', 'low_textarea', 'YTozOntzOjQ6InJvd3MiO3M6MToiNiI7czoxNDoidGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJjb2RlX2Zvcm1hdCI7czowOiIiO30', 4, 'n', 'y', 'n', 1412539892);
INSERT INTO `exp_low_variables` (`variable_id`, `group_id`, `variable_label`, `variable_notes`, `variable_type`, `variable_settings`, `variable_order`, `early_parsing`, `is_hidden`, `save_as_file`, `edit_date`) VALUES (6, 0, 'Home Page Banners', '', 'matrix', 'YTozOntzOjg6Im1pbl9yb3dzIjtzOjE6IjAiO3M6ODoibWF4X3Jvd3MiO3M6MDoiIjtzOjc6ImNvbF9pZHMiO2E6Mzp7aTowO2k6MTtpOjE7aToyO2k6MjtpOjM7fX0', 5, 'n', 'n', 'n', 1412539892);


#
# TABLE STRUCTURE FOR: exp_matrix_cols
#

DROP TABLE IF EXISTS `exp_matrix_cols`;

CREATE TABLE `exp_matrix_cols` (
  `col_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned DEFAULT '1',
  `field_id` int(6) unsigned DEFAULT NULL,
  `var_id` int(6) unsigned DEFAULT NULL,
  `col_name` varchar(32) DEFAULT NULL,
  `col_label` varchar(50) DEFAULT NULL,
  `col_instructions` text,
  `col_type` varchar(50) DEFAULT 'text',
  `col_required` char(1) DEFAULT 'n',
  `col_search` char(1) DEFAULT 'n',
  `col_order` int(3) unsigned DEFAULT NULL,
  `col_width` varchar(4) DEFAULT NULL,
  `col_settings` text,
  PRIMARY KEY (`col_id`),
  KEY `site_id` (`site_id`),
  KEY `field_id` (`field_id`),
  KEY `var_id` (`var_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `exp_matrix_cols` (`col_id`, `site_id`, `field_id`, `var_id`, `col_name`, `col_label`, `col_instructions`, `col_type`, `col_required`, `col_search`, `col_order`, `col_width`, `col_settings`) VALUES (1, 1, NULL, 6, 'banner-image', 'Banner Image', '', 'file', 'n', 'n', 0, '33%', 'YTozOntzOjk6ImRpcmVjdG9yeSI7czozOiJhbGwiO3M6MTI6ImNvbnRlbnRfdHlwZSI7czo1OiJpbWFnZSI7czoxNzoiZmlsZV9udW1fZXhpc3RpbmciO3M6MDoiIjt9');
INSERT INTO `exp_matrix_cols` (`col_id`, `site_id`, `field_id`, `var_id`, `col_name`, `col_label`, `col_instructions`, `col_type`, `col_required`, `col_search`, `col_order`, `col_width`, `col_settings`) VALUES (2, 1, NULL, 6, 'banner-title', 'Banner Title', '', 'text', 'n', 'n', 1, '', 'YTo0OntzOjQ6Im1heGwiO3M6MzoiMTQwIjtzOjk6Im11bHRpbGluZSI7czoxOiJ5IjtzOjM6ImZtdCI7czo0OiJub25lIjtzOjM6ImRpciI7czozOiJsdHIiO30=');
INSERT INTO `exp_matrix_cols` (`col_id`, `site_id`, `field_id`, `var_id`, `col_name`, `col_label`, `col_instructions`, `col_type`, `col_required`, `col_search`, `col_order`, `col_width`, `col_settings`) VALUES (3, 1, NULL, 6, 'banner-content', 'Banner Content', 'DON\'T PUT IMAGES IN THIS CONTENT AREA!  Only used editor so you could make a link if wanted', 'wygwam', 'n', 'n', 2, '', 'YTozOntzOjc6ImNvbnZlcnQiO3M6MDoiIjtzOjY6ImNvbmZpZyI7czoxOiIyIjtzOjU6ImRlZmVyIjtzOjE6Im4iO30=');


#
# TABLE STRUCTURE FOR: exp_matrix_data
#

DROP TABLE IF EXISTS `exp_matrix_data`;

CREATE TABLE `exp_matrix_data` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT NULL,
  `field_id` int(6) unsigned DEFAULT NULL,
  `var_id` int(6) unsigned DEFAULT NULL,
  `is_draft` tinyint(1) unsigned DEFAULT '0',
  `row_order` int(4) unsigned DEFAULT NULL,
  `col_id_1` text,
  `col_id_2` text,
  `col_id_3` text,
  PRIMARY KEY (`row_id`),
  KEY `site_id` (`site_id`),
  KEY `entry_id` (`entry_id`),
  KEY `field_id` (`field_id`),
  KEY `var_id` (`var_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `exp_matrix_data` (`row_id`, `site_id`, `entry_id`, `field_id`, `var_id`, `is_draft`, `row_order`, `col_id_1`, `col_id_2`, `col_id_3`) VALUES (1, 1, NULL, NULL, 6, 0, 1, '{filedir_1}Hands-seeds2.jpg', 'Full Line of Garden Seed & Soil Amendments', '<p>Come check out our extensive selection of garden seed and other products for your lawn and garden.</p>\n\n<p><a href=\"http://www.beanstoblossoms.com/garden-center/garden-seeds\" target=\"_self\">More about our seeds...</a></p>');
INSERT INTO `exp_matrix_data` (`row_id`, `site_id`, `entry_id`, `field_id`, `var_id`, `is_draft`, `row_order`, `col_id_1`, `col_id_2`, `col_id_3`) VALUES (2, 1, NULL, NULL, 6, 0, 2, '{filedir_1}greenhouse.jpg', 'Peek Inside Our Greenhouses', '<p>Take a look at everything we have to beautify your landscape, patio and flower beds.</p>\n\n<p><em><a href=\"http://www.beanstoblossoms.com/news/news-item-5\" target=\"_self\">Learn More</a></em></p>');
INSERT INTO `exp_matrix_data` (`row_id`, `site_id`, `entry_id`, `field_id`, `var_id`, `is_draft`, `row_order`, `col_id_1`, `col_id_2`, `col_id_3`) VALUES (3, 1, NULL, NULL, 6, 0, 3, '{filedir_1}Produce.jpg', 'Produce and Vegetable Plants', '<p>One can find naturally grown produce and vegetable plants starting in early spring and continuing throughout the growing season.</p>\n\n<p><a href=\"http://www.beanstoblossoms.com/produce/produce-plants\" target=\"_self\">More about our plants</a></p>');


#
# TABLE STRUCTURE FOR: exp_member_bulletin_board
#

DROP TABLE IF EXISTS `exp_member_bulletin_board`;

CREATE TABLE `exp_member_bulletin_board` (
  `bulletin_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL,
  `bulletin_group` int(8) unsigned NOT NULL,
  `bulletin_date` int(10) unsigned NOT NULL,
  `hash` varchar(10) NOT NULL DEFAULT '',
  `bulletin_expires` int(10) unsigned NOT NULL DEFAULT '0',
  `bulletin_message` text NOT NULL,
  PRIMARY KEY (`bulletin_id`),
  KEY `sender_id` (`sender_id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_member_data
#

DROP TABLE IF EXISTS `exp_member_data`;

CREATE TABLE `exp_member_data` (
  `member_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_member_data` (`member_id`) VALUES (1);
INSERT INTO `exp_member_data` (`member_id`) VALUES (3);


#
# TABLE STRUCTURE FOR: exp_member_fields
#

DROP TABLE IF EXISTS `exp_member_fields`;

CREATE TABLE `exp_member_fields` (
  `m_field_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `m_field_name` varchar(32) NOT NULL,
  `m_field_label` varchar(50) NOT NULL,
  `m_field_description` text NOT NULL,
  `m_field_type` varchar(12) NOT NULL DEFAULT 'text',
  `m_field_list_items` text NOT NULL,
  `m_field_ta_rows` tinyint(2) DEFAULT '8',
  `m_field_maxl` smallint(3) NOT NULL,
  `m_field_width` varchar(6) NOT NULL,
  `m_field_search` char(1) NOT NULL DEFAULT 'y',
  `m_field_required` char(1) NOT NULL DEFAULT 'n',
  `m_field_public` char(1) NOT NULL DEFAULT 'y',
  `m_field_reg` char(1) NOT NULL DEFAULT 'n',
  `m_field_cp_reg` char(1) NOT NULL DEFAULT 'n',
  `m_field_fmt` char(5) NOT NULL DEFAULT 'none',
  `m_field_order` int(3) unsigned NOT NULL,
  PRIMARY KEY (`m_field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_member_groups
#

DROP TABLE IF EXISTS `exp_member_groups`;

CREATE TABLE `exp_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_title` varchar(100) NOT NULL,
  `group_description` text NOT NULL,
  `is_locked` char(1) NOT NULL DEFAULT 'y',
  `can_view_offline_system` char(1) NOT NULL DEFAULT 'n',
  `can_view_online_system` char(1) NOT NULL DEFAULT 'y',
  `can_access_cp` char(1) NOT NULL DEFAULT 'y',
  `can_access_content` char(1) NOT NULL DEFAULT 'n',
  `can_access_publish` char(1) NOT NULL DEFAULT 'n',
  `can_access_edit` char(1) NOT NULL DEFAULT 'n',
  `can_access_files` char(1) NOT NULL DEFAULT 'n',
  `can_access_fieldtypes` char(1) NOT NULL DEFAULT 'n',
  `can_access_design` char(1) NOT NULL DEFAULT 'n',
  `can_access_addons` char(1) NOT NULL DEFAULT 'n',
  `can_access_modules` char(1) NOT NULL DEFAULT 'n',
  `can_access_extensions` char(1) NOT NULL DEFAULT 'n',
  `can_access_accessories` char(1) NOT NULL DEFAULT 'n',
  `can_access_plugins` char(1) NOT NULL DEFAULT 'n',
  `can_access_members` char(1) NOT NULL DEFAULT 'n',
  `can_access_admin` char(1) NOT NULL DEFAULT 'n',
  `can_access_sys_prefs` char(1) NOT NULL DEFAULT 'n',
  `can_access_content_prefs` char(1) NOT NULL DEFAULT 'n',
  `can_access_tools` char(1) NOT NULL DEFAULT 'n',
  `can_access_comm` char(1) NOT NULL DEFAULT 'n',
  `can_access_utilities` char(1) NOT NULL DEFAULT 'n',
  `can_access_data` char(1) NOT NULL DEFAULT 'n',
  `can_access_logs` char(1) NOT NULL DEFAULT 'n',
  `can_admin_channels` char(1) NOT NULL DEFAULT 'n',
  `can_admin_upload_prefs` char(1) NOT NULL DEFAULT 'n',
  `can_admin_design` char(1) NOT NULL DEFAULT 'n',
  `can_admin_members` char(1) NOT NULL DEFAULT 'n',
  `can_delete_members` char(1) NOT NULL DEFAULT 'n',
  `can_admin_mbr_groups` char(1) NOT NULL DEFAULT 'n',
  `can_admin_mbr_templates` char(1) NOT NULL DEFAULT 'n',
  `can_ban_users` char(1) NOT NULL DEFAULT 'n',
  `can_admin_modules` char(1) NOT NULL DEFAULT 'n',
  `can_admin_templates` char(1) NOT NULL DEFAULT 'n',
  `can_edit_categories` char(1) NOT NULL DEFAULT 'n',
  `can_delete_categories` char(1) NOT NULL DEFAULT 'n',
  `can_view_other_entries` char(1) NOT NULL DEFAULT 'n',
  `can_edit_other_entries` char(1) NOT NULL DEFAULT 'n',
  `can_assign_post_authors` char(1) NOT NULL DEFAULT 'n',
  `can_delete_self_entries` char(1) NOT NULL DEFAULT 'n',
  `can_delete_all_entries` char(1) NOT NULL DEFAULT 'n',
  `can_view_other_comments` char(1) NOT NULL DEFAULT 'n',
  `can_edit_own_comments` char(1) NOT NULL DEFAULT 'n',
  `can_delete_own_comments` char(1) NOT NULL DEFAULT 'n',
  `can_edit_all_comments` char(1) NOT NULL DEFAULT 'n',
  `can_delete_all_comments` char(1) NOT NULL DEFAULT 'n',
  `can_moderate_comments` char(1) NOT NULL DEFAULT 'n',
  `can_send_email` char(1) NOT NULL DEFAULT 'n',
  `can_send_cached_email` char(1) NOT NULL DEFAULT 'n',
  `can_email_member_groups` char(1) NOT NULL DEFAULT 'n',
  `can_email_mailinglist` char(1) NOT NULL DEFAULT 'n',
  `can_email_from_profile` char(1) NOT NULL DEFAULT 'n',
  `can_view_profiles` char(1) NOT NULL DEFAULT 'n',
  `can_edit_html_buttons` char(1) NOT NULL DEFAULT 'n',
  `can_delete_self` char(1) NOT NULL DEFAULT 'n',
  `mbr_delete_notify_emails` varchar(255) DEFAULT NULL,
  `can_post_comments` char(1) NOT NULL DEFAULT 'n',
  `exclude_from_moderation` char(1) NOT NULL DEFAULT 'n',
  `can_search` char(1) NOT NULL DEFAULT 'n',
  `search_flood_control` mediumint(5) unsigned NOT NULL,
  `can_send_private_messages` char(1) NOT NULL DEFAULT 'n',
  `prv_msg_send_limit` smallint(5) unsigned NOT NULL DEFAULT '20',
  `prv_msg_storage_limit` smallint(5) unsigned NOT NULL DEFAULT '60',
  `can_attach_in_private_messages` char(1) NOT NULL DEFAULT 'n',
  `can_send_bulletins` char(1) NOT NULL DEFAULT 'n',
  `include_in_authorlist` char(1) NOT NULL DEFAULT 'n',
  `include_in_memberlist` char(1) NOT NULL DEFAULT 'y',
  `include_in_mailinglists` char(1) NOT NULL DEFAULT 'y',
  PRIMARY KEY (`group_id`,`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_member_groups` (`group_id`, `site_id`, `group_title`, `group_description`, `is_locked`, `can_view_offline_system`, `can_view_online_system`, `can_access_cp`, `can_access_content`, `can_access_publish`, `can_access_edit`, `can_access_files`, `can_access_fieldtypes`, `can_access_design`, `can_access_addons`, `can_access_modules`, `can_access_extensions`, `can_access_accessories`, `can_access_plugins`, `can_access_members`, `can_access_admin`, `can_access_sys_prefs`, `can_access_content_prefs`, `can_access_tools`, `can_access_comm`, `can_access_utilities`, `can_access_data`, `can_access_logs`, `can_admin_channels`, `can_admin_upload_prefs`, `can_admin_design`, `can_admin_members`, `can_delete_members`, `can_admin_mbr_groups`, `can_admin_mbr_templates`, `can_ban_users`, `can_admin_modules`, `can_admin_templates`, `can_edit_categories`, `can_delete_categories`, `can_view_other_entries`, `can_edit_other_entries`, `can_assign_post_authors`, `can_delete_self_entries`, `can_delete_all_entries`, `can_view_other_comments`, `can_edit_own_comments`, `can_delete_own_comments`, `can_edit_all_comments`, `can_delete_all_comments`, `can_moderate_comments`, `can_send_email`, `can_send_cached_email`, `can_email_member_groups`, `can_email_mailinglist`, `can_email_from_profile`, `can_view_profiles`, `can_edit_html_buttons`, `can_delete_self`, `mbr_delete_notify_emails`, `can_post_comments`, `exclude_from_moderation`, `can_search`, `search_flood_control`, `can_send_private_messages`, `prv_msg_send_limit`, `prv_msg_storage_limit`, `can_attach_in_private_messages`, `can_send_bulletins`, `include_in_authorlist`, `include_in_memberlist`, `include_in_mailinglists`) VALUES (1, 1, 'Super Admins', '', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', '', 'y', 'y', 'y', 0, 'y', 20, 60, 'y', 'y', 'y', 'y', 'y');
INSERT INTO `exp_member_groups` (`group_id`, `site_id`, `group_title`, `group_description`, `is_locked`, `can_view_offline_system`, `can_view_online_system`, `can_access_cp`, `can_access_content`, `can_access_publish`, `can_access_edit`, `can_access_files`, `can_access_fieldtypes`, `can_access_design`, `can_access_addons`, `can_access_modules`, `can_access_extensions`, `can_access_accessories`, `can_access_plugins`, `can_access_members`, `can_access_admin`, `can_access_sys_prefs`, `can_access_content_prefs`, `can_access_tools`, `can_access_comm`, `can_access_utilities`, `can_access_data`, `can_access_logs`, `can_admin_channels`, `can_admin_upload_prefs`, `can_admin_design`, `can_admin_members`, `can_delete_members`, `can_admin_mbr_groups`, `can_admin_mbr_templates`, `can_ban_users`, `can_admin_modules`, `can_admin_templates`, `can_edit_categories`, `can_delete_categories`, `can_view_other_entries`, `can_edit_other_entries`, `can_assign_post_authors`, `can_delete_self_entries`, `can_delete_all_entries`, `can_view_other_comments`, `can_edit_own_comments`, `can_delete_own_comments`, `can_edit_all_comments`, `can_delete_all_comments`, `can_moderate_comments`, `can_send_email`, `can_send_cached_email`, `can_email_member_groups`, `can_email_mailinglist`, `can_email_from_profile`, `can_view_profiles`, `can_edit_html_buttons`, `can_delete_self`, `mbr_delete_notify_emails`, `can_post_comments`, `exclude_from_moderation`, `can_search`, `search_flood_control`, `can_send_private_messages`, `prv_msg_send_limit`, `prv_msg_storage_limit`, `can_attach_in_private_messages`, `can_send_bulletins`, `include_in_authorlist`, `include_in_memberlist`, `include_in_mailinglists`) VALUES (2, 1, 'Banned', '', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', '', 'n', 'n', 'n', 60, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n');
INSERT INTO `exp_member_groups` (`group_id`, `site_id`, `group_title`, `group_description`, `is_locked`, `can_view_offline_system`, `can_view_online_system`, `can_access_cp`, `can_access_content`, `can_access_publish`, `can_access_edit`, `can_access_files`, `can_access_fieldtypes`, `can_access_design`, `can_access_addons`, `can_access_modules`, `can_access_extensions`, `can_access_accessories`, `can_access_plugins`, `can_access_members`, `can_access_admin`, `can_access_sys_prefs`, `can_access_content_prefs`, `can_access_tools`, `can_access_comm`, `can_access_utilities`, `can_access_data`, `can_access_logs`, `can_admin_channels`, `can_admin_upload_prefs`, `can_admin_design`, `can_admin_members`, `can_delete_members`, `can_admin_mbr_groups`, `can_admin_mbr_templates`, `can_ban_users`, `can_admin_modules`, `can_admin_templates`, `can_edit_categories`, `can_delete_categories`, `can_view_other_entries`, `can_edit_other_entries`, `can_assign_post_authors`, `can_delete_self_entries`, `can_delete_all_entries`, `can_view_other_comments`, `can_edit_own_comments`, `can_delete_own_comments`, `can_edit_all_comments`, `can_delete_all_comments`, `can_moderate_comments`, `can_send_email`, `can_send_cached_email`, `can_email_member_groups`, `can_email_mailinglist`, `can_email_from_profile`, `can_view_profiles`, `can_edit_html_buttons`, `can_delete_self`, `mbr_delete_notify_emails`, `can_post_comments`, `exclude_from_moderation`, `can_search`, `search_flood_control`, `can_send_private_messages`, `prv_msg_send_limit`, `prv_msg_storage_limit`, `can_attach_in_private_messages`, `can_send_bulletins`, `include_in_authorlist`, `include_in_memberlist`, `include_in_mailinglists`) VALUES (3, 1, 'Guests', '', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', '', 'y', 'n', 'y', 15, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n');
INSERT INTO `exp_member_groups` (`group_id`, `site_id`, `group_title`, `group_description`, `is_locked`, `can_view_offline_system`, `can_view_online_system`, `can_access_cp`, `can_access_content`, `can_access_publish`, `can_access_edit`, `can_access_files`, `can_access_fieldtypes`, `can_access_design`, `can_access_addons`, `can_access_modules`, `can_access_extensions`, `can_access_accessories`, `can_access_plugins`, `can_access_members`, `can_access_admin`, `can_access_sys_prefs`, `can_access_content_prefs`, `can_access_tools`, `can_access_comm`, `can_access_utilities`, `can_access_data`, `can_access_logs`, `can_admin_channels`, `can_admin_upload_prefs`, `can_admin_design`, `can_admin_members`, `can_delete_members`, `can_admin_mbr_groups`, `can_admin_mbr_templates`, `can_ban_users`, `can_admin_modules`, `can_admin_templates`, `can_edit_categories`, `can_delete_categories`, `can_view_other_entries`, `can_edit_other_entries`, `can_assign_post_authors`, `can_delete_self_entries`, `can_delete_all_entries`, `can_view_other_comments`, `can_edit_own_comments`, `can_delete_own_comments`, `can_edit_all_comments`, `can_delete_all_comments`, `can_moderate_comments`, `can_send_email`, `can_send_cached_email`, `can_email_member_groups`, `can_email_mailinglist`, `can_email_from_profile`, `can_view_profiles`, `can_edit_html_buttons`, `can_delete_self`, `mbr_delete_notify_emails`, `can_post_comments`, `exclude_from_moderation`, `can_search`, `search_flood_control`, `can_send_private_messages`, `prv_msg_send_limit`, `prv_msg_storage_limit`, `can_attach_in_private_messages`, `can_send_bulletins`, `include_in_authorlist`, `include_in_memberlist`, `include_in_mailinglists`) VALUES (4, 1, 'Pending', '', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', '', 'y', 'n', 'y', 15, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n');
INSERT INTO `exp_member_groups` (`group_id`, `site_id`, `group_title`, `group_description`, `is_locked`, `can_view_offline_system`, `can_view_online_system`, `can_access_cp`, `can_access_content`, `can_access_publish`, `can_access_edit`, `can_access_files`, `can_access_fieldtypes`, `can_access_design`, `can_access_addons`, `can_access_modules`, `can_access_extensions`, `can_access_accessories`, `can_access_plugins`, `can_access_members`, `can_access_admin`, `can_access_sys_prefs`, `can_access_content_prefs`, `can_access_tools`, `can_access_comm`, `can_access_utilities`, `can_access_data`, `can_access_logs`, `can_admin_channels`, `can_admin_upload_prefs`, `can_admin_design`, `can_admin_members`, `can_delete_members`, `can_admin_mbr_groups`, `can_admin_mbr_templates`, `can_ban_users`, `can_admin_modules`, `can_admin_templates`, `can_edit_categories`, `can_delete_categories`, `can_view_other_entries`, `can_edit_other_entries`, `can_assign_post_authors`, `can_delete_self_entries`, `can_delete_all_entries`, `can_view_other_comments`, `can_edit_own_comments`, `can_delete_own_comments`, `can_edit_all_comments`, `can_delete_all_comments`, `can_moderate_comments`, `can_send_email`, `can_send_cached_email`, `can_email_member_groups`, `can_email_mailinglist`, `can_email_from_profile`, `can_view_profiles`, `can_edit_html_buttons`, `can_delete_self`, `mbr_delete_notify_emails`, `can_post_comments`, `exclude_from_moderation`, `can_search`, `search_flood_control`, `can_send_private_messages`, `prv_msg_send_limit`, `prv_msg_storage_limit`, `can_attach_in_private_messages`, `can_send_bulletins`, `include_in_authorlist`, `include_in_memberlist`, `include_in_mailinglists`) VALUES (5, 1, 'Members', '', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'y', 'y', 'n', '', 'y', 'n', 'y', 10, 'y', 20, 60, 'y', 'n', 'n', 'y', 'y');


#
# TABLE STRUCTURE FOR: exp_member_homepage
#

DROP TABLE IF EXISTS `exp_member_homepage`;

CREATE TABLE `exp_member_homepage` (
  `member_id` int(10) unsigned NOT NULL,
  `recent_entries` char(1) NOT NULL DEFAULT 'l',
  `recent_entries_order` int(3) unsigned NOT NULL DEFAULT '0',
  `recent_comments` char(1) NOT NULL DEFAULT 'l',
  `recent_comments_order` int(3) unsigned NOT NULL DEFAULT '0',
  `recent_members` char(1) NOT NULL DEFAULT 'n',
  `recent_members_order` int(3) unsigned NOT NULL DEFAULT '0',
  `site_statistics` char(1) NOT NULL DEFAULT 'r',
  `site_statistics_order` int(3) unsigned NOT NULL DEFAULT '0',
  `member_search_form` char(1) NOT NULL DEFAULT 'n',
  `member_search_form_order` int(3) unsigned NOT NULL DEFAULT '0',
  `notepad` char(1) NOT NULL DEFAULT 'r',
  `notepad_order` int(3) unsigned NOT NULL DEFAULT '0',
  `bulletin_board` char(1) NOT NULL DEFAULT 'r',
  `bulletin_board_order` int(3) unsigned NOT NULL DEFAULT '0',
  `pmachine_news_feed` char(1) NOT NULL DEFAULT 'n',
  `pmachine_news_feed_order` int(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_member_homepage` (`member_id`, `recent_entries`, `recent_entries_order`, `recent_comments`, `recent_comments_order`, `recent_members`, `recent_members_order`, `site_statistics`, `site_statistics_order`, `member_search_form`, `member_search_form_order`, `notepad`, `notepad_order`, `bulletin_board`, `bulletin_board_order`, `pmachine_news_feed`, `pmachine_news_feed_order`) VALUES (1, 'l', 1, 'l', 2, 'n', 0, 'r', 1, 'n', 0, 'r', 2, 'r', 0, 'l', 0);
INSERT INTO `exp_member_homepage` (`member_id`, `recent_entries`, `recent_entries_order`, `recent_comments`, `recent_comments_order`, `recent_members`, `recent_members_order`, `site_statistics`, `site_statistics_order`, `member_search_form`, `member_search_form_order`, `notepad`, `notepad_order`, `bulletin_board`, `bulletin_board_order`, `pmachine_news_feed`, `pmachine_news_feed_order`) VALUES (3, 'l', 0, 'l', 0, 'n', 0, 'r', 0, 'n', 0, 'r', 0, 'r', 0, 'n', 0);


#
# TABLE STRUCTURE FOR: exp_member_search
#

DROP TABLE IF EXISTS `exp_member_search`;

CREATE TABLE `exp_member_search` (
  `search_id` varchar(32) NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `search_date` int(10) unsigned NOT NULL,
  `keywords` varchar(200) NOT NULL,
  `fields` varchar(200) NOT NULL,
  `member_id` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `total_results` int(8) unsigned NOT NULL,
  `query` text NOT NULL,
  PRIMARY KEY (`search_id`),
  KEY `member_id` (`member_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_members
#

DROP TABLE IF EXISTS `exp_members`;

CREATE TABLE `exp_members` (
  `member_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `group_id` smallint(4) NOT NULL DEFAULT '0',
  `username` varchar(50) NOT NULL,
  `screen_name` varchar(50) NOT NULL,
  `password` varchar(128) NOT NULL,
  `salt` varchar(128) NOT NULL DEFAULT '',
  `unique_id` varchar(40) NOT NULL,
  `crypt_key` varchar(40) DEFAULT NULL,
  `authcode` varchar(10) DEFAULT NULL,
  `email` varchar(72) NOT NULL,
  `url` varchar(150) DEFAULT NULL,
  `location` varchar(50) DEFAULT NULL,
  `occupation` varchar(80) DEFAULT NULL,
  `interests` varchar(120) DEFAULT NULL,
  `bday_d` int(2) DEFAULT NULL,
  `bday_m` int(2) DEFAULT NULL,
  `bday_y` int(4) DEFAULT NULL,
  `aol_im` varchar(50) DEFAULT NULL,
  `yahoo_im` varchar(50) DEFAULT NULL,
  `msn_im` varchar(50) DEFAULT NULL,
  `icq` varchar(50) DEFAULT NULL,
  `bio` text,
  `signature` text,
  `avatar_filename` varchar(120) DEFAULT NULL,
  `avatar_width` int(4) unsigned DEFAULT NULL,
  `avatar_height` int(4) unsigned DEFAULT NULL,
  `photo_filename` varchar(120) DEFAULT NULL,
  `photo_width` int(4) unsigned DEFAULT NULL,
  `photo_height` int(4) unsigned DEFAULT NULL,
  `sig_img_filename` varchar(120) DEFAULT NULL,
  `sig_img_width` int(4) unsigned DEFAULT NULL,
  `sig_img_height` int(4) unsigned DEFAULT NULL,
  `ignore_list` text,
  `private_messages` int(4) unsigned NOT NULL DEFAULT '0',
  `accept_messages` char(1) NOT NULL DEFAULT 'y',
  `last_view_bulletins` int(10) NOT NULL DEFAULT '0',
  `last_bulletin_date` int(10) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `join_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_visit` int(10) unsigned NOT NULL DEFAULT '0',
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  `total_entries` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `total_comments` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0',
  `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0',
  `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_forum_post_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_email_date` int(10) unsigned NOT NULL DEFAULT '0',
  `in_authorlist` char(1) NOT NULL DEFAULT 'n',
  `accept_admin_email` char(1) NOT NULL DEFAULT 'y',
  `accept_user_email` char(1) NOT NULL DEFAULT 'y',
  `notify_by_default` char(1) NOT NULL DEFAULT 'y',
  `notify_of_pm` char(1) NOT NULL DEFAULT 'y',
  `display_avatars` char(1) NOT NULL DEFAULT 'y',
  `display_signatures` char(1) NOT NULL DEFAULT 'y',
  `parse_smileys` char(1) NOT NULL DEFAULT 'y',
  `smart_notifications` char(1) NOT NULL DEFAULT 'y',
  `language` varchar(50) NOT NULL,
  `timezone` varchar(50) NOT NULL,
  `time_format` char(2) NOT NULL DEFAULT 'us',
  `cp_theme` varchar(32) DEFAULT NULL,
  `profile_theme` varchar(32) DEFAULT NULL,
  `forum_theme` varchar(32) DEFAULT NULL,
  `tracker` text,
  `template_size` varchar(2) NOT NULL DEFAULT '28',
  `notepad` text,
  `notepad_size` varchar(2) NOT NULL DEFAULT '18',
  `quick_links` text,
  `quick_tabs` text,
  `show_sidebar` char(1) NOT NULL DEFAULT 'n',
  `pmember_id` int(10) NOT NULL DEFAULT '0',
  `rte_enabled` char(1) NOT NULL DEFAULT 'y',
  `rte_toolset_id` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`member_id`),
  KEY `group_id` (`group_id`),
  KEY `unique_id` (`unique_id`),
  KEY `password` (`password`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `exp_members` (`member_id`, `group_id`, `username`, `screen_name`, `password`, `salt`, `unique_id`, `crypt_key`, `authcode`, `email`, `url`, `location`, `occupation`, `interests`, `bday_d`, `bday_m`, `bday_y`, `aol_im`, `yahoo_im`, `msn_im`, `icq`, `bio`, `signature`, `avatar_filename`, `avatar_width`, `avatar_height`, `photo_filename`, `photo_width`, `photo_height`, `sig_img_filename`, `sig_img_width`, `sig_img_height`, `ignore_list`, `private_messages`, `accept_messages`, `last_view_bulletins`, `last_bulletin_date`, `ip_address`, `join_date`, `last_visit`, `last_activity`, `total_entries`, `total_comments`, `total_forum_topics`, `total_forum_posts`, `last_entry_date`, `last_comment_date`, `last_forum_post_date`, `last_email_date`, `in_authorlist`, `accept_admin_email`, `accept_user_email`, `notify_by_default`, `notify_of_pm`, `display_avatars`, `display_signatures`, `parse_smileys`, `smart_notifications`, `language`, `timezone`, `time_format`, `cp_theme`, `profile_theme`, `forum_theme`, `tracker`, `template_size`, `notepad`, `notepad_size`, `quick_links`, `quick_tabs`, `show_sidebar`, `pmember_id`, `rte_enabled`, `rte_toolset_id`) VALUES (1, 1, 'boomer42025', 'Shannon', '40217e7480692bffabd3c2639dd2f3ab2d53df064c8f227ed27268008c7741a4b62bb98de01b8d850e32f7d4191c6f4e143a59e33318dcb3a1bf4e1696eeecd7', 'W^ZNu0Bmr4mRC@6AIJ\'!cCn\\\"(p]QDK0\"u5US:!DZ4MX#=#5KWF(6e2gw%uw`0sBZs[wp.($x$8tsJsB*>7wx2y1SaTDABn|AFMyT{Jzx|)AzH~:#&1q6hs3Sex2v=sj', 'ae646b05558646d28ec626a56dd02207bca29de0', '8eea05985150944d8a062155084102eefb061037', NULL, 'boomer42025@yahoo.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '127.0.0.1', 1383661482, 1424566229, 1430366134, 46, 0, 0, 0, 1424548080, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Kentucky/Louisville', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', '', NULL, 'n', 0, 'y', 0);
INSERT INTO `exp_members` (`member_id`, `group_id`, `username`, `screen_name`, `password`, `salt`, `unique_id`, `crypt_key`, `authcode`, `email`, `url`, `location`, `occupation`, `interests`, `bday_d`, `bday_m`, `bday_y`, `aol_im`, `yahoo_im`, `msn_im`, `icq`, `bio`, `signature`, `avatar_filename`, `avatar_width`, `avatar_height`, `photo_filename`, `photo_width`, `photo_height`, `sig_img_filename`, `sig_img_width`, `sig_img_height`, `ignore_list`, `private_messages`, `accept_messages`, `last_view_bulletins`, `last_bulletin_date`, `ip_address`, `join_date`, `last_visit`, `last_activity`, `total_entries`, `total_comments`, `total_forum_topics`, `total_forum_posts`, `last_entry_date`, `last_comment_date`, `last_forum_post_date`, `last_email_date`, `in_authorlist`, `accept_admin_email`, `accept_user_email`, `notify_by_default`, `notify_of_pm`, `display_avatars`, `display_signatures`, `parse_smileys`, `smart_notifications`, `language`, `timezone`, `time_format`, `cp_theme`, `profile_theme`, `forum_theme`, `tracker`, `template_size`, `notepad`, `notepad_size`, `quick_links`, `quick_tabs`, `show_sidebar`, `pmember_id`, `rte_enabled`, `rte_toolset_id`) VALUES (3, 5, 'Suzanne Cathey', 'Suzanne Cathey', '7bcf06a7ae111c4278ea9bf8103541322fb31c31141e102589797f800a7d305561474b6b4fa58c84a910df2ca349d79eaeed92167df3fd8e86fbfe577205258e', 'TK\\MOX^D7+Zk?kV|wJMQmN>p\"3jxpiZN|$\\-_?f4`9}5|l<w[R**kTDMTq6M[QOyi)gR]vYs;3|r5H\\#aqo4\"[od[a8x$[IQ\'\"n[8GLZ^,{$7DUk{wiY`j1fwM1T4@ha', 'bcf8455324d3d9becbb6ad4e75ca7ded01754774', '8a4805fbe661cfa6b2407e2dffd83d0f4eb00bf1', NULL, 'suzannecathey@aol.com', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '72.51.213.37', 1387159214, 1417878641, 1426968648, 18, 0, 0, 0, 1416522534, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Kentucky/Louisville', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, 'Low Variables|C=addons_modules&M=show_module_cp&module=low_variables|1', 'n', 0, 'y', 0);


#
# TABLE STRUCTURE FOR: exp_message_attachments
#

DROP TABLE IF EXISTS `exp_message_attachments`;

CREATE TABLE `exp_message_attachments` (
  `attachment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  `message_id` int(10) unsigned NOT NULL DEFAULT '0',
  `attachment_name` varchar(50) NOT NULL DEFAULT '',
  `attachment_hash` varchar(40) NOT NULL DEFAULT '',
  `attachment_extension` varchar(20) NOT NULL DEFAULT '',
  `attachment_location` varchar(150) NOT NULL DEFAULT '',
  `attachment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `attachment_size` int(10) unsigned NOT NULL DEFAULT '0',
  `is_temp` char(1) NOT NULL DEFAULT 'y',
  PRIMARY KEY (`attachment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_message_copies
#

DROP TABLE IF EXISTS `exp_message_copies`;

CREATE TABLE `exp_message_copies` (
  `copy_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL DEFAULT '0',
  `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  `recipient_id` int(10) unsigned NOT NULL DEFAULT '0',
  `message_received` char(1) NOT NULL DEFAULT 'n',
  `message_read` char(1) NOT NULL DEFAULT 'n',
  `message_time_read` int(10) unsigned NOT NULL DEFAULT '0',
  `attachment_downloaded` char(1) NOT NULL DEFAULT 'n',
  `message_folder` int(10) unsigned NOT NULL DEFAULT '1',
  `message_authcode` varchar(10) NOT NULL DEFAULT '',
  `message_deleted` char(1) NOT NULL DEFAULT 'n',
  `message_status` varchar(10) NOT NULL DEFAULT '',
  PRIMARY KEY (`copy_id`),
  KEY `message_id` (`message_id`),
  KEY `recipient_id` (`recipient_id`),
  KEY `sender_id` (`sender_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_message_data
#

DROP TABLE IF EXISTS `exp_message_data`;

CREATE TABLE `exp_message_data` (
  `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  `message_date` int(10) unsigned NOT NULL DEFAULT '0',
  `message_subject` varchar(255) NOT NULL DEFAULT '',
  `message_body` text NOT NULL,
  `message_tracking` char(1) NOT NULL DEFAULT 'y',
  `message_attachments` char(1) NOT NULL DEFAULT 'n',
  `message_recipients` varchar(200) NOT NULL DEFAULT '',
  `message_cc` varchar(200) NOT NULL DEFAULT '',
  `message_hide_cc` char(1) NOT NULL DEFAULT 'n',
  `message_sent_copy` char(1) NOT NULL DEFAULT 'n',
  `total_recipients` int(5) unsigned NOT NULL DEFAULT '0',
  `message_status` varchar(25) NOT NULL DEFAULT '',
  PRIMARY KEY (`message_id`),
  KEY `sender_id` (`sender_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_message_folders
#

DROP TABLE IF EXISTS `exp_message_folders`;

CREATE TABLE `exp_message_folders` (
  `member_id` int(10) unsigned NOT NULL DEFAULT '0',
  `folder1_name` varchar(50) NOT NULL DEFAULT 'InBox',
  `folder2_name` varchar(50) NOT NULL DEFAULT 'Sent',
  `folder3_name` varchar(50) NOT NULL DEFAULT '',
  `folder4_name` varchar(50) NOT NULL DEFAULT '',
  `folder5_name` varchar(50) NOT NULL DEFAULT '',
  `folder6_name` varchar(50) NOT NULL DEFAULT '',
  `folder7_name` varchar(50) NOT NULL DEFAULT '',
  `folder8_name` varchar(50) NOT NULL DEFAULT '',
  `folder9_name` varchar(50) NOT NULL DEFAULT '',
  `folder10_name` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_message_folders` (`member_id`, `folder1_name`, `folder2_name`, `folder3_name`, `folder4_name`, `folder5_name`, `folder6_name`, `folder7_name`, `folder8_name`, `folder9_name`, `folder10_name`) VALUES (1, 'InBox', 'Sent', '', '', '', '', '', '', '', '');
INSERT INTO `exp_message_folders` (`member_id`, `folder1_name`, `folder2_name`, `folder3_name`, `folder4_name`, `folder5_name`, `folder6_name`, `folder7_name`, `folder8_name`, `folder9_name`, `folder10_name`) VALUES (3, 'InBox', 'Sent', '', '', '', '', '', '', '', '');


#
# TABLE STRUCTURE FOR: exp_message_listed
#

DROP TABLE IF EXISTS `exp_message_listed`;

CREATE TABLE `exp_message_listed` (
  `listed_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) unsigned NOT NULL DEFAULT '0',
  `listed_member` int(10) unsigned NOT NULL DEFAULT '0',
  `listed_description` varchar(100) NOT NULL DEFAULT '',
  `listed_type` varchar(10) NOT NULL DEFAULT 'blocked',
  PRIMARY KEY (`listed_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_module_member_groups
#

DROP TABLE IF EXISTS `exp_module_member_groups`;

CREATE TABLE `exp_module_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `module_id` mediumint(5) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_module_member_groups` (`group_id`, `module_id`) VALUES (5, 11);
INSERT INTO `exp_module_member_groups` (`group_id`, `module_id`) VALUES (5, 12);
INSERT INTO `exp_module_member_groups` (`group_id`, `module_id`) VALUES (5, 13);


#
# TABLE STRUCTURE FOR: exp_modules
#

DROP TABLE IF EXISTS `exp_modules`;

CREATE TABLE `exp_modules` (
  `module_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `module_name` varchar(50) NOT NULL,
  `module_version` varchar(12) NOT NULL,
  `has_cp_backend` char(1) NOT NULL DEFAULT 'n',
  `has_publish_fields` char(1) NOT NULL DEFAULT 'n',
  `settings` text,
  PRIMARY KEY (`module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;

INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (1, 'Comment', '2.3.1', 'y', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (2, 'Email', '2.0', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (3, 'Emoticon', '2.0', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (4, 'Jquery', '1.0', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (5, 'Rss', '2.0', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (6, 'Search', '2.2.1', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (7, 'Channel', '2.0.1', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (8, 'Member', '2.1', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (9, 'Stats', '2.0', 'n', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (10, 'Rte', '1.0.1', 'y', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (11, 'Low_reorder', '2.2.1', 'y', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (12, 'Low_variables', '2.4.0', 'y', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (13, 'Wygwam', '3.2.1', 'y', 'n', NULL);
INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES (14, 'Updater', '3.3.0', 'y', 'n', 'a:8:{s:20:\"file_transfer_method\";s:5:\"local\";s:3:\"ftp\";a:6:{s:8:\"hostname\";s:0:\"\";s:4:\"port\";s:2:\"21\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:3:\"yes\";s:3:\"ssl\";s:2:\"no\";}s:4:\"sftp\";a:8:{s:8:\"hostname\";s:0:\"\";s:4:\"port\";s:2:\"22\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:11:\"auth_method\";s:8:\"password\";s:12:\"key_contents\";s:0:\"\";s:12:\"key_password\";s:0:\"\";s:8:\"key_path\";s:0:\"\";}s:8:\"path_map\";a:6:{s:4:\"root\";s:47:\"/home/boom4202/public_html/beanstoblossoms.com/\";s:6:\"backup\";s:59:\"/home/boom4202/public_html/beanstoblossoms.com/site_backup/\";s:6:\"system\";s:54:\"/home/boom4202/public_html/beanstoblossoms.com/system/\";s:18:\"system_third_party\";s:83:\"/home/boom4202/public_html/beanstoblossoms.com/system/expressionengine/third_party/\";s:6:\"themes\";s:54:\"/home/boom4202/public_html/beanstoblossoms.com/themes/\";s:18:\"themes_third_party\";s:66:\"/home/boom4202/public_html/beanstoblossoms.com/themes/third_party/\";}s:9:\"menu_link\";a:3:{s:4:\"root\";s:3:\"yes\";s:5:\"tools\";s:3:\"yes\";s:5:\"admin\";s:3:\"yes\";}s:10:\"action_url\";a:1:{s:19:\"actionGeneralRouter\";s:0:\"\";}s:8:\"auth_key\";s:40:\"01ffde6ab6088b6e07bef1f5f1aa93fb418b63e6\";s:11:\"track_stats\";s:3:\"yes\";}');


#
# TABLE STRUCTURE FOR: exp_online_users
#

DROP TABLE IF EXISTS `exp_online_users`;

CREATE TABLE `exp_online_users` (
  `online_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `in_forum` char(1) NOT NULL DEFAULT 'n',
  `name` varchar(50) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `date` int(10) unsigned NOT NULL DEFAULT '0',
  `anon` char(1) NOT NULL,
  PRIMARY KEY (`online_id`),
  KEY `date` (`date`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=57194 DEFAULT CHARSET=utf8;

INSERT INTO `exp_online_users` (`online_id`, `site_id`, `member_id`, `in_forum`, `name`, `ip_address`, `date`, `anon`) VALUES (57193, 1, 0, 'n', '', '72.51.154.186', 1430365097, '');
INSERT INTO `exp_online_users` (`online_id`, `site_id`, `member_id`, `in_forum`, `name`, `ip_address`, `date`, `anon`) VALUES (57192, 1, 0, 'n', '', '66.249.67.39', 1430364767, '');
INSERT INTO `exp_online_users` (`online_id`, `site_id`, `member_id`, `in_forum`, `name`, `ip_address`, `date`, `anon`) VALUES (57191, 1, 0, 'n', '', '176.9.149.173', 1430364645, '');


#
# TABLE STRUCTURE FOR: exp_password_lockout
#

DROP TABLE IF EXISTS `exp_password_lockout`;

CREATE TABLE `exp_password_lockout` (
  `lockout_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `login_date` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `user_agent` varchar(120) NOT NULL,
  `username` varchar(50) NOT NULL,
  PRIMARY KEY (`lockout_id`),
  KEY `login_date` (`login_date`),
  KEY `ip_address` (`ip_address`),
  KEY `user_agent` (`user_agent`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8;

INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (42, 1424277592, '104.176.251.97', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0', 'suzanecathey@aol.com');
INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (41, 1412545502, '107.77.68.89', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0', 'beanstoblossoms');
INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (39, 1412545245, '107.77.68.89', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0', 'mapacathey1');
INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (40, 1412545349, '107.77.68.89', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0', 'boomer42025');
INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (38, 1412545198, '107.77.68.89', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0', 'mapacathey');
INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (36, 1403696453, '166.137.248.99', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0', 'boomer42025');
INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES (37, 1412545182, '107.77.68.89', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0', 'mapacathey1');


#
# TABLE STRUCTURE FOR: exp_relationships
#

DROP TABLE IF EXISTS `exp_relationships`;

CREATE TABLE `exp_relationships` (
  `relationship_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `child_id` int(10) unsigned NOT NULL DEFAULT '0',
  `field_id` int(10) unsigned NOT NULL DEFAULT '0',
  `grid_field_id` int(10) unsigned NOT NULL DEFAULT '0',
  `grid_col_id` int(10) unsigned NOT NULL DEFAULT '0',
  `grid_row_id` int(10) unsigned NOT NULL DEFAULT '0',
  `order` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`relationship_id`),
  KEY `parent_id` (`parent_id`),
  KEY `child_id` (`child_id`),
  KEY `field_id` (`field_id`),
  KEY `grid_row_id` (`grid_row_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_remember_me
#

DROP TABLE IF EXISTS `exp_remember_me`;

CREATE TABLE `exp_remember_me` (
  `remember_me_id` varchar(40) NOT NULL DEFAULT '0',
  `member_id` int(10) DEFAULT '0',
  `ip_address` varchar(45) DEFAULT '0',
  `user_agent` varchar(120) DEFAULT '',
  `admin_sess` tinyint(1) DEFAULT '0',
  `site_id` int(4) DEFAULT '1',
  `expiration` int(10) DEFAULT '0',
  `last_refresh` int(10) DEFAULT '0',
  PRIMARY KEY (`remember_me_id`),
  KEY `member_id` (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_reset_password
#

DROP TABLE IF EXISTS `exp_reset_password`;

CREATE TABLE `exp_reset_password` (
  `reset_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) unsigned NOT NULL,
  `resetcode` varchar(12) NOT NULL,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`reset_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_revision_tracker
#

DROP TABLE IF EXISTS `exp_revision_tracker`;

CREATE TABLE `exp_revision_tracker` (
  `tracker_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_id` int(10) unsigned NOT NULL,
  `item_table` varchar(20) NOT NULL,
  `item_field` varchar(20) NOT NULL,
  `item_date` int(10) NOT NULL,
  `item_author_id` int(10) unsigned NOT NULL,
  `item_data` mediumtext NOT NULL,
  PRIMARY KEY (`tracker_id`),
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_rte_tools
#

DROP TABLE IF EXISTS `exp_rte_tools`;

CREATE TABLE `exp_rte_tools` (
  `tool_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(75) DEFAULT NULL,
  `class` varchar(75) DEFAULT NULL,
  `enabled` char(1) DEFAULT 'y',
  PRIMARY KEY (`tool_id`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;

INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (1, 'Blockquote', 'Blockquote_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (2, 'Bold', 'Bold_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (3, 'Headings', 'Headings_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (4, 'Image', 'Image_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (5, 'Italic', 'Italic_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (6, 'Link', 'Link_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (7, 'Ordered List', 'Ordered_list_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (8, 'Underline', 'Underline_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (9, 'Unordered List', 'Unordered_list_rte', 'y');
INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES (10, 'View Source', 'View_source_rte', 'y');


#
# TABLE STRUCTURE FOR: exp_rte_toolsets
#

DROP TABLE IF EXISTS `exp_rte_toolsets`;

CREATE TABLE `exp_rte_toolsets` (
  `toolset_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) DEFAULT '0',
  `name` varchar(100) DEFAULT NULL,
  `tools` text,
  `enabled` char(1) DEFAULT 'y',
  PRIMARY KEY (`toolset_id`),
  KEY `member_id` (`member_id`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `exp_rte_toolsets` (`toolset_id`, `member_id`, `name`, `tools`, `enabled`) VALUES (1, 0, 'Default', '3|2|5|1|9|7|6|4|10', 'y');


#
# TABLE STRUCTURE FOR: exp_search
#

DROP TABLE IF EXISTS `exp_search`;

CREATE TABLE `exp_search` (
  `search_id` varchar(32) NOT NULL,
  `site_id` int(4) NOT NULL DEFAULT '1',
  `search_date` int(10) NOT NULL,
  `keywords` varchar(60) NOT NULL,
  `member_id` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `total_results` int(6) NOT NULL,
  `per_page` tinyint(3) unsigned NOT NULL,
  `query` mediumtext,
  `custom_fields` mediumtext,
  `result_page` varchar(70) NOT NULL,
  PRIMARY KEY (`search_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_search_log
#

DROP TABLE IF EXISTS `exp_search_log`;

CREATE TABLE `exp_search_log` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) unsigned NOT NULL,
  `screen_name` varchar(50) NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `search_date` int(10) NOT NULL,
  `search_type` varchar(32) NOT NULL,
  `search_terms` varchar(200) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_security_hashes
#

DROP TABLE IF EXISTS `exp_security_hashes`;

CREATE TABLE `exp_security_hashes` (
  `hash_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` int(10) unsigned NOT NULL,
  `session_id` varchar(40) NOT NULL DEFAULT '0',
  `hash` varchar(40) NOT NULL,
  `used` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`hash_id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=134380 DEFAULT CHARSET=utf8;

INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133723, 1430264357, '0', 'c781307597a31a81e3a50bff4b434ff234762b16', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133724, 1430264361, '0', '206da10272f1479ffe1efaaf9efe25b600ffdd92', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133725, 1430264506, '0', 'a4c5b980f31becef1f2ae929eca267dde5701571', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133726, 1430267684, '0', 'f933700aaf964849f676df0110e04916fcb2d439', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133727, 1430267685, '0', 'fa3a1c6bde7973608b86b3ab169dab7fa1f66c9c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133728, 1430269702, '0', 'a7993f50fa3fc1eba9298de658faf5e9ddea50ce', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133729, 1430270028, '0', '9d33558669d7904642d74981e2de64767aa4f9ba', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133730, 1430271081, '0', 'd1e36686bfac3729b9bfd7a4c134260780a7d1c7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133731, 1430271084, '0', 'ec302bc7ec76785ffc1eb52273aed0aa5a7c594f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134379, 1430366212, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '10f8c8cf9576f19033f67ad24af791edc594d76a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134378, 1430366212, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c57f437e788c5506e79ac0afdb0202603169d1ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134377, 1430366211, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a0dae181198a744aef2fb35138e4a4977e01e33f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134376, 1430366211, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd557921e69b38c591f081bed7ef47e59202d8602', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134375, 1430366211, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '92a7113f3017c0a0c460abcfa399d75b24e97727', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134374, 1430366211, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a0b288e362c5a599ff62ff540ffac36d57cfac21', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134373, 1430366210, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '25232f8d351746cb620df169b2cbfb1ec803d763', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134372, 1430366210, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a70593a9b6caecfefdc9c74b9bfc650b6275e27b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134371, 1430366210, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1c654a515aaae95e5cc0326a16401f62d2532627', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134370, 1430366210, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '98443a715fedb4ea09159cb4837afb806a56fac2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134369, 1430366209, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '190bcd9404b414c33745240e20c3f3e5e7cd9321', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134368, 1430366209, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '355d9f62e32a7705f33f72221fbb149907db484d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134367, 1430366209, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '95b255ba2f05e85208a7a13a1723029ec4dfe03b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134366, 1430366209, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8aa9f395ffcac263a43e2acb7df6c2d766ff6422', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134365, 1430366208, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4b74f2fbc04dda314bbd00785c95e664544e9e05', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134364, 1430366208, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '363188e74853a2faf60a5ef5433664304962b8d6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134363, 1430366208, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd75e6b985e4ba427263a6b2edd7eed651235b4eb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134362, 1430366208, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a11d164cfb9536c0d19ed28726b5172be6605281', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134361, 1430366208, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4137e09a2907f2240a670399d0012d02a4b6ebe6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134360, 1430366208, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5c99dfd204880d8d3bf6199ba68ea633ed01a42c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134359, 1430366207, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '16c4cdf0d0b7eae9e5a13a28bfe84e4d0b801017', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134358, 1430366207, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4ebdc75ea54831720d5fe6a859d1334d76c00c38', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134357, 1430366207, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1435a598b5cf19fa83098002e8d475088166ea8a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134356, 1430366207, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8a968a4fc441fc546bf5246c50d29901c6aaa28e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134355, 1430366206, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '50ad27c3866fb1f6b014293842965a0b3c68a0e1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134354, 1430366206, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5a4edb66a545d061efce26fc117bdbe7cf438f2c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134353, 1430366206, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c01948a56e01782ae1cd1f15782da027a0b985ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134352, 1430366206, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '98eb8041a235e0ad523256ca9ef306dc2b389423', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134351, 1430366205, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '26b1623288696026728673252ff27af32747d7e3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134350, 1430366205, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fdfa1e56e0c64ca8efd0649d866d54091d1bf271', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134349, 1430366205, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '390e0db74674b8c4c76bad91c3a329a591984077', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134348, 1430366205, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e85fd9decdf4cdcc1e433f346c70f19ccb3ea55f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134347, 1430366204, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '96d1c1e203c2df98733a21facf76d8a867da937c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134346, 1430366204, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9a0b11f2c133e14896892c34df33499ad07df50e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134345, 1430366204, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5afb72be893bbc1d364f3a9a5cb5013361e3d14d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134344, 1430366204, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9ce1ff304a7568ed00ea05b6cd3f77045db51dcb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134343, 1430366203, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4419161fe4f00996a956c8f667ad29443c203523', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134342, 1430366203, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ef3fc8c5f988305290bc463e0a6fd3ffd489f8f3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134341, 1430366203, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'dee7eee97cb73d45d07475d5c930aa81b4902bb9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134340, 1430366203, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '099d2372e294c6956b74786b381e90a81c2f11c9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134339, 1430366203, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1fac73651ca2a6bae4e4afe345148749073885ed', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134338, 1430366203, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b8b4cb9e6a7ca78e4447b2a4c4f35d234d33472e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134337, 1430366202, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'cb0f8df3041e8de64ef1e2f53c97da762cf2d0d7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134336, 1430366202, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '000a82fbb13ce20aeeeccf921b42791b29c4d6ee', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134335, 1430366202, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7ceb29dc6e6835e63e26d65ff3141f92c041af6c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134334, 1430366202, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5c5dbd92738d60da85afd2a8065bb4b4d8173e37', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134333, 1430366201, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1f15c779830801496d1c4d0784eeb2597bc13b0a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134332, 1430366201, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e877462a822b00c388c675cb5629664fc6cdda0d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134331, 1430366201, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a3c2da8c1479b69a5e8985c96b15d1e17a611e35', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134330, 1430366201, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '34d68055356a64046b050bb1b1249a807cc05d0a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134329, 1430366200, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bc947b97cb3090291444c127a74c1327d8366289', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134328, 1430366200, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '41ad4bece712ce8b2a8fa064f94d4b2e356bc019', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134327, 1430366200, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ae7ab15ca22c58b777206bbda6c03e71b84bdeb3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134326, 1430366200, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6577a9002f03551c1af13bb988db22c6fc5601f1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134325, 1430366200, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9aba3fe5ab8c5d8a8d1e8d7ae79a9715a8e2d0d3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134324, 1430366200, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd0780361e71476cb97d588a715a9f59503de8218', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134323, 1430366199, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd4d38d98e2ff35ba863878b6b92ed048468727da', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134322, 1430366199, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9433330c6b3bdaf5c8ce24f5da3e4bad48b52704', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134321, 1430366199, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3ff018e78ceaf03c47349020137cd3f35a57e55f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134320, 1430366199, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '292abd86c095a52993111590f0cb4dcbb5600da7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134319, 1430366198, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd5ef5fec0cad0323e96e897572ae2da8be9e7e4e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134318, 1430366198, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8cdd63439733adeef020ea459608df70fa7ddc4e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134317, 1430366198, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd51f6237cdff929245f3ab267e848e801d8f53eb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134316, 1430366198, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5c3c9327991365c554da9b34d03d72c453fa3141', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134315, 1430366197, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1bfee6d9b6081c5f21f656f81833de9e879f1fc5', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134314, 1430366197, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ce84a8726036dbf6e9fa8118de0824d0a7296460', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134313, 1430366197, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2f0591e513c2fe1b813d20e5041587954cdda6a2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134312, 1430366197, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '504b2db05533d4997d63e78f60aadc2e26331a9d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134311, 1430366196, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8fbc354e3a55783eb85106a201bb7f0c9b78e41a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134310, 1430366196, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ddb53099a2e8bc475e30d192acd8ab1f57114c22', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134309, 1430366196, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1026a4017977b80fa8bc07f1f59ea6e97e914261', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134308, 1430366196, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c02c653b3b723e0790c9d9f6e3fa873b56b97b25', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134307, 1430366196, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3d4308ace408017598246fb0306a5049fc9c1013', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134306, 1430366196, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3de92a3b0e6e4aaebb5202baefe2e8aa3469b3f3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134305, 1430366195, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd16050d85714db954b34ac5592e4a503dc8e4813', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134304, 1430366195, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3c72b6dff3186bd411b402eb1cdca6f5b126706d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134303, 1430366195, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ad062796c1c4122a3402eca2b5af88eca5d7b778', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134302, 1430366195, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '70e82d8aa588f5f35579cc55bd861ded542e074b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134301, 1430366194, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f29b10226940eb3ec3eb355f18511ebfc03a4692', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134300, 1430366194, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4bfe1880c554ac3b25b9907b371adfc7b1e524c4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134299, 1430366194, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9f1560592fdc7d697769eab297e7d4b9b776d7a4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134298, 1430366194, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3bde6fe52c5e76ef572e56080d7ad40f1f7d547b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134297, 1430366193, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'aaf7ef7c921cbe983ddf2ebd6bf9ad2cc352681f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134296, 1430366193, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd915cea7baee3652c14f1b67e6259230ac037f4b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134295, 1430366193, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5afe42511854d2722997b0a5d620fe8d934bfd38', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134294, 1430366193, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f20adb6d6156a69325c997850be89826a7985d38', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134293, 1430366192, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '94e3d2f2133170c6decb77c76356607dea324b3b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134292, 1430366192, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a296062b89a041c090891242946c26656d12575f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134291, 1430366192, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9a29a98016157667e9f18ef4ea0538f3f74ec004', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134290, 1430366192, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6a5887d0c3f4a391bb3e0b0975f2c65e17c96cbc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134289, 1430366192, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0560bfacf1acc32af4ad0a20c159736e183235e5', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134288, 1430366192, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '11dc9bac77918dacbf63218f5a716d0f84f4c5de', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134287, 1430366191, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a7721f59940f3db22b104462151935ca6cd75f4d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134286, 1430366191, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'cbf2ee390f1038e93909d4e196aac6264081b95b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134285, 1430366191, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4d040e1c1d5316cc2ce8cd3136c17aea0c8b143e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134284, 1430366191, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f72617c790a1c564d22e7e214706ab59acedfb06', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134283, 1430366190, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '63834a2426bb29aba00baa5021b3e3cff88d8843', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134282, 1430366190, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '24c054af52080b00bb0b690d1893d8971e9ca979', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134281, 1430366190, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3aced6ee0c11cecfd6d099fcd2d4b33e86c68e9d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134280, 1430366190, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f599f86ea71acfcd6849b82de702ce5619f26f4c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134279, 1430366190, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6c459324ff1f6920012c9c7017cceebce7def53f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134278, 1430366190, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fcceadd841102ac2a69d88aab129a916b2c8593d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134277, 1430366189, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '195357a44ef2e6cb77dc10c2007f380472ca20fe', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134276, 1430366189, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '848c9dcdc22a6c0e79e53fb5f56ec69a3eb5e348', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134275, 1430366189, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '773f1edbb5a4240c8e906d8fe22349a84895f739', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134274, 1430366189, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '57a88de6a8a3b594b4b77f3fe6048fb746463d04', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134273, 1430366188, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f4ff51a9074d813419f21c76ed7c18c88d01d7a0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134272, 1430366188, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '192bb04dba2cb2a70e6fa3e9dd652955a6d5dc47', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134271, 1430366188, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f144ea5b21668743c9d504c95acb013b26bd36ad', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134270, 1430366188, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'aa6a7b397fd7ea836a12ceb65320877b162c532c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134269, 1430366187, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '119a27acea43f27b33a6e4167f8a908aa432f271', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134268, 1430366187, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '42110df38a88c6af5ace044041cac824d1c563ad', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134267, 1430366187, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '81ca912953a49031805905845ed1040ba4aca07d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134266, 1430366187, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '95a5f5a37c3fc859e4ccbfabed4cc64688497553', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134265, 1430366187, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7ce2350d153d16e657675c1a9b809200b11f97ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134264, 1430366187, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '172e60aa861fd2fbf3b6bee37132067b99916190', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134263, 1430366186, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7dc7980a1a3f21c1a75f8ad90b3488b2b018d40a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134262, 1430366186, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2a1a183c965c18c68c0f7420767a163f97616dcd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134261, 1430366186, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c31f836216a13005e6d722a2183f14e6025165c4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134260, 1430366186, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0a1f6253bd5e6acd066cfce98fc6f353e996ffa4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134259, 1430366186, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '140d241a13b205dbace4463c6244fe34d2537897', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134258, 1430366186, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4d9d2c153c687eb1408459641bce44c40f7d4f1e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134257, 1430366185, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '76636cedc6a752136b6733db086a3e1a20b09c02', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134256, 1430366185, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b3c484806cd966d531d21993ccc83adbc5a4b9e7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134255, 1430366185, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '422275d26d0e3908761e0132651664a23f34a91d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134254, 1430366185, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8ed0db56d75a3dd25651f36d39aa56f0344111d4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134253, 1430366185, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9ba1e3ba54709dc7f75cb84bb0e0158d3b89eb23', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134252, 1430366185, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7a8a29aff5645b12b65e2d07180ad123c3049428', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134251, 1430366184, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '789e68fd4a99bec86a3e4946c37a333e4a84b662', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134250, 1430366184, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e5b3ececb49a9d9f3d3c3bc1242ad87bb026a7c2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134249, 1430366184, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4f820df0bb0112f5dc634604e749054fc611fb38', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134248, 1430366184, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c4e45c6548cf4f4fd7e057ec5bbc9f7d0063e758', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134247, 1430366184, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '707402555294b93be41536aa780eb7ebb9adc385', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134246, 1430366184, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b1543df19b9ff81134a93ed507c14f2c8073676e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134245, 1430366183, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4179e08b2f4c04acdcfef2769a73502be4254897', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134244, 1430366183, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fb0b609681418f7af71dce5683c4fcd256b1279c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134243, 1430366183, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f7d8f98dec2b2ecc94227e03058fd55e16b05483', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134242, 1430366183, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '725739514f5a71df6e4fc199ba48d5fa71d805f1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134241, 1430366183, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '31e00e3c1697641ad0f9c2dc085b442b16c0c625', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134240, 1430366183, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bde390572cb4561fd5c3688074b4b249a8ab0bd4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134239, 1430366182, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f94132c4792e84f3d6706aa92f367925cc805c3c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134238, 1430366182, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8f04db07051ffd2eae2a9ca90f098805aced677c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134237, 1430366134, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b6c80afa270f06fb3679ce20b4884ef42509e155', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134236, 1430366134, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '69692a4544f6adff7ea37194242c4b5c9f75922d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134235, 1430365770, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1ef8b5bb979b7d56faa46bf2196b109eb412cafa', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134234, 1430365770, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e092938095d6de04d2ca517cda344d41fcef7792', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134233, 1430365770, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bdcec751f5c1fc5ec8d434c5f6a07c325b93e638', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134232, 1430365767, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c4797ceab4be21d34200319c462c43b7e51fda0a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134231, 1430365767, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '74782124000072b50b5ad62d6a3bb7dea504b29d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134230, 1430365767, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '742f716e8a1a3ae6a01b93e2d40f8f9602dc2d3f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134229, 1430365767, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1c18ad619903f5286e342d2925eee63a5fbd73ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134228, 1430365767, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '74518cf3f353449fab4aef7429b69ef8654de580', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134227, 1430365765, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd673e926f5e0d9a6f1ed6d8856a96e65de45a25a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134226, 1430365765, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0eb70816390c0d66c6f1b4f6946a1aa2b601c7b4', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134225, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8a05d06b6da4b7fc8f91fa342b10a5b5b30ac675', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134224, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3f94aeaaba5aa33915df9e3f3b42bc71db385cf9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134223, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c22b0eeafaab6e512c86a9ca57e4c9c5565ddc27', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134222, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0f9c7cd49a90bd43e91e1488bcc528fc9be1a629', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134221, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bcd9dc2127f7d386791ff14a31378548845f041d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134220, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a462f46c3d901c1a6527de4c363f95e9f76560ba', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134219, 1430365764, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '19f445ea5eb00ea957b7149ff92ebddf8162fcf1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134218, 1430365762, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '21bb0f01792c27ce01c729c3d69b2e53428c46ec', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134217, 1430365762, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '93734d65a197c88743f6aa55266e5870861613f6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134216, 1430365762, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '36abd09ca73c042dcfa973cdc7093b0893335d0d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134215, 1430365762, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1dd0ab833615b3ace7cbde349d78d42d077b14e9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134214, 1430365705, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0bdfd2119a629cfaf37b8cc9c87ec128b05d6c0a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134213, 1430365705, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ba32a56d56f122d27b93efae275c2826de903ac1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134212, 1430365704, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4e82fb41c49089f9d0d6163dca2a8278f2bd6c7a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134211, 1430365704, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '824be755bfa66099c8379e8f01d6e2b4ffa84ff9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134210, 1430365704, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '53e3f88fe79b4ab06924c575653c927f4fc6fa30', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134209, 1430365704, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f922b02eb61c4c4caf88b021ad33185124ae2323', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134208, 1430365704, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f1f8e99a9e10a92322068b2c9c8f6ebc9a2285d8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134207, 1430365704, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '80368c2715cbd17f7019fef25a55c3d211145932', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134206, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0ecf3950772d992c55ec6768896f3ed496d1c84a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134205, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '90b45723bc9c25392412e5450c344f955d4f73a2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134204, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e02bf9c50d76e2d13c644a260d978f336dc80bfe', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134203, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fe9d089c64ea2d3a01bbc5f0a517b3383fa09861', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134202, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9f0186cdd4c4992f00de142c2d17c1c53acaacbd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134201, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd87b12e90287286c13f16851e5e9051d05672d74', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134200, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '113d318356be2de82af8ea759d676e5e0d82e303', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134199, 1430365703, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '68431b47001ed8fedbcf7bc130ff233fea39709f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134198, 1430365702, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '60f4f710bf256fd3c27cd70639d840fe8e30e670', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134197, 1430365702, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '07067ce82d46aef13f36ac0d0c8e89fd03ef64bb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134196, 1430365702, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '46782566d33157f3f435a34857fe73bcc46b73bc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134195, 1430365702, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '83fbf73056fc0c03a0844edc0ea2add71df1fa3a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134194, 1430365702, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9957356f90d2925ca09b8bde58e53a529071686b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134193, 1430365702, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5cda78785ddc61f48562463eb85ce7ad943c45a9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134192, 1430365701, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6d036f39461bf2c1d805dcdb2111f5233ae0fb65', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134191, 1430365701, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a22f2ac397913a2601718f8d8986e8ca234edcc9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134190, 1430365701, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '155ebe4c2b17db807521d823c01d9fe3a6d68e74', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134189, 1430365701, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3dc72baa88fadb1db92fe7e26db1af0025089ca6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134188, 1430365700, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '913ca192a6735bb1d8696f0196fdd16e8f65eb7f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134187, 1430365700, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '696170a20fcf3d96778dc6fc0b8b780f117b3b63', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134186, 1430365700, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3b96c5c48afee6513883f58ce2e6e9a5efdaf45f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134185, 1430365700, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '830b8b15f01aa37e9dc7ee24f99801f272c3d8e8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134184, 1430365700, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '151340eb2dffd58cfcfda156a50b8abf949fb0c3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134183, 1430365700, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'daa2539b394cb0013931a649999b1ed809d946ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134182, 1430365699, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5bfa0292e5f7efd585c007356d28a02cd6b401db', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134181, 1430365699, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a0512e65ae25755fb56166e17d2541b6c7139a72', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134180, 1430365699, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6d9ddf3278fbbbae9a868f81152a83cbb0de9b8d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134179, 1430365699, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fed7c0d02877f0227f2dde9bfc7077a41ba815eb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134178, 1430365698, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '92aacd80734c46bd9a72035773eeadb40ea2102a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134177, 1430365698, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4dc91016b796d794e9d59dd03c45d27faba23825', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134176, 1430365698, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'dd7673ef44c5484fd508156d264b868b36bdb186', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134175, 1430365698, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9d7a65c982dd88e9e926aeb4d4d32bfec3efa6d3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134174, 1430365698, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b7a65b62abd7c9111fc8ccef210cb19414ba7c7a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134173, 1430365698, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '42c4cacd49096df34a31cdadce1769da112b8796', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134172, 1430365697, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '75544acea8b841a7e90b9bc68496b5a58804f76a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134171, 1430365697, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8668514778db07e0a4214dbbaffc17f152c35916', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134170, 1430365697, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '25a763ddddc4d733e2779d279521a26b64c91c6b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134169, 1430365697, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '058f35193399916132587c278d0b42e3668b9e65', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134168, 1430365697, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '31040739df30fe1be982fae34174dab96109f898', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134167, 1430365697, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '41928435e0cb811b42275398d1190ebec04b1e61', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134166, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b850891cb47b32b2cac372d89e1229791b7571ca', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134165, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '37afe7ad9e8422810e68fb076e88de69f215896a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134164, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ffe08105aa54da764dedf6630443f245a2eab5ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134163, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '324e692b1ea3165058e4435aab069a33164c79d3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134162, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '56bd1ed9e048fac206cc375996694c1c7815aafa', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134161, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd28693d3c8185900723d312beb0ecaa158fef426', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134160, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8ad490f9b4b671e9e9a786e0f3300b3144b7b658', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134159, 1430365696, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '44ef197e552c8894ef553ef0482c75d6e26ffec6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134158, 1430365695, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e18051d5335c2b91a7ccd7b4b419bd930624dd4b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134157, 1430365695, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '56e13fdaecbdc18a3bac60b8a1c46c89cb68d4f5', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134156, 1430365695, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3a49e50667bca389c64e40ba96ead041ce9ede19', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134155, 1430365695, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '39c50e71c1f1090426bef4356ab752c2f4bca23c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134154, 1430365695, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4a1cad086ef1a80b18deeeeca6856a461128609c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134153, 1430365695, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e0c43687f0048b77e5b634e08e60f4242ead87bf', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134152, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f0987eca59c5b5d786002d45b6bdb4e7c8cc9a55', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134151, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd0106e9580b6a1d6d7d2037caf581bf3dc27602d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134150, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b5bd097fc031051988fc35c6c0a95e4acd090fbb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134149, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5c4e8273910ddb7a165de9f4523edaff9725f302', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134148, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '92e3c4f959d0befe86178a04cd96f6e5ab54bf23', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134147, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bf7b589487790e1f2ba2b55cec41159dd50926cd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134146, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd49fda1b9191791629bf9a2e930454b9e8928793', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134145, 1430365694, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '521a86e847fdfd4b90ba174aec6104f9bcb00a12', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134144, 1430365693, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '78d0125acb076908e971da23cef55cc03aa871cc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134143, 1430365693, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2308d75bfb3292b012db56092e83eaa6fd16240e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134142, 1430365693, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '507bea8ae0bdf5ef4f777e7e0f9fe4a624845438', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134141, 1430365693, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9943fb3161524abca837d9104c0997626a7bc11b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134140, 1430365693, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1676381cda3f4f497dc6a9abe3675cf1dd8d90f9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134139, 1430365693, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8d60a7b5f8d10c740ae0cf5f2dac3d4b5d434435', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134138, 1430365692, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'aeefe7fc827dcb333475387445fe677726bafcf2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134137, 1430365692, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e5cb02fb2b13e6e4415a1c88c4b1a55ec225dd81', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134136, 1430365692, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2a64c8797040c2cea2307c83cd991d3c6278ae0b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134135, 1430365692, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'eabe05b7f54a842179adc5bdc821eef4fa401e85', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134134, 1430365692, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'aba098b5885722f8d35e8cbeb1118d18cc70eae3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134133, 1430365692, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5e015b7f3231078b1913b400b007dd08e48659bb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134132, 1430365691, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b83612a9acf32228bad63b857f6f5c00aa71e78f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134131, 1430365691, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '607e35482acbcda58fd2c700ef9aa8ab36452b5f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134130, 1430365691, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ea86c2df0dfe9ceea5cc9e2a9975ca4d5c4a8091', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134129, 1430365691, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'efa1deb239cc3046d751eee4c07b976ebb55a009', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134128, 1430365691, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b65ec1a547418779af942fdbe20d65ef89527933', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134127, 1430365691, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '772d41c8e8fc5361b8900ce20e5e772676aa898b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134126, 1430365690, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ae112cdf363da31e6189ad3be46bd41d62712948', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134125, 1430365690, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '582cbe2b825628b1917b95592d0e4f01aaebfcfa', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134124, 1430365690, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5b705aa676c5df586425e03f5f0280a448f68b58', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134123, 1430365690, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b9cbe7064fc1ca7134ad23ef62f3fabc7547bbbd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134122, 1430365689, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '39ba2c273d69bea238c17903c1b847c720e18e4a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134121, 1430365689, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '99a97c7f25e1d4a219ff9d0e1e2c11b1d064f286', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134120, 1430365689, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a2c8273f868c8385e399a1fa5ebfa8ea8bbb3070', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134119, 1430365689, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3b0783351c6407824a9a1ca5da6425347f5816ee', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134118, 1430365688, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '64d86c773dd4f601cbd38cd9cf5df5944a59fda4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134117, 1430365688, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '796ae3ffcae198033da9ae5a6bfe4e7370b669db', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134116, 1430365688, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ca8ab3274cdb90df8b742c46ec76ae0b2a827c42', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134115, 1430365688, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5aeef776457dd5062a038e4ef2fbe273f0d554dd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134114, 1430365688, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3c1bd4fcde21dc6ff426cadcad8b3dbfd43c5d4c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134113, 1430365688, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '96f30e06ace4645f2f8bf98916a30800dbe1b655', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134112, 1430365687, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd21121213a7237d25267112965682a3eb12842ce', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134111, 1430365687, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '12ef914bf800a62f5ff4b51213e9fac8fd2ddda5', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134110, 1430365687, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ea2c122664156db17982b2774dc922397212b13c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134109, 1430365687, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8609c0cff8520bb3ff141d42b431eb26c6d7300e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134108, 1430365687, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4e6faefd614f765601de2fc9bb1ec5daf1812f7d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134107, 1430365687, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c06611d7afcc7e6a0ee1e063d4668dc9ffb588d4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134106, 1430365686, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6126f9edeeccf2458c411dcb1b49bd7d4a371d5d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134105, 1430365686, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3ec74a86433ce4a292f3873f3fb2ab5eb8b6acf2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134104, 1430365686, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bad1b2308bc0e0cac80ab992e901767002e9aa55', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134103, 1430365686, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7c1b2ec81c2e53320d38d58710f188bdc6e3727b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134102, 1430365686, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ac1f250dea6056e3cb88b67ce3c90afbfb4b2fd9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134101, 1430365686, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fe0fc11a0ac79a499d8945a6bb07494f5a1ab9af', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134100, 1430365685, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1db0a60403cb2cbfef32d91c10cf0c989778b8fc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134099, 1430365685, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3f7b59ac0cdc9fd272dec51ab42bf1ee028b4241', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134098, 1430365685, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '95704913bf9c4e6b8fe290a9b284fda3ea861fe0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134097, 1430365685, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7eb3a61378e7ad8cd9c72f4e1ff911c4bae1ff69', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134096, 1430365685, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1d662a33508b675a5fdf11aba682a108dadd70ef', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134095, 1430365685, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '020a16246679b10ea98780a7e79084ba2a9d2715', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134094, 1430365684, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6cbddcd84a477a91fe87c1e240b899c81f65ad1c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134093, 1430365684, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8fca635f905fab8b325c82ab4188d449c16cb922', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134092, 1430365684, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2905384b7decac3fae1311d7e4507c067a4a4886', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134091, 1430365684, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '05a27f2d0bf19a6dc4dc3b7a87ee4bf5bf20260f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134090, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '96cc49480cb00087c3527478930c66d74d9c09dc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134089, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd43bfb95d48dde26d6ded6ee33fa66f9c74b973e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134088, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ff7df458f35396885d58235d053ce19d0109100a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134087, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fc93781f2704c492c503ffe1798263ba5bfdb55d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134086, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9ecee9c41a4967b02b21b785029e0c4bad58fe7a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134085, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '09f955178c171c819fc8205404703e11dd4293d3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134084, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2f82fb4422bb0842475b80c4b83b355240b61d77', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134083, 1430365683, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c653f5309a0093185b775740a6dde62bc7a4d582', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134082, 1430365682, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '64faeb3e98386e0a76edbb8b29be2d370a8b6f84', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134081, 1430365682, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'af70a0552dd430e5836e2c84766ce94bed183fc0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134080, 1430365682, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fa2ce96c37b814b606dc934df61bbb36119888b8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134079, 1430365682, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '685f99583be6ec785cabaa209d8bbac6fed77b57', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134078, 1430365682, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'caec40798f5aa616239e2d6722ef68015afa2b02', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134077, 1430365682, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '462318aa48c5c9b8f325de840548192c422b0716', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134076, 1430365681, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a290873ffd6527c6a96b1be3d633862e5e998fda', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134075, 1430365681, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '43396093fc60635044a1116aced26a11fd6b7cd2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134074, 1430365681, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4c3f117b6813c77d4f323b7ae55ce96162b2029b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134073, 1430365681, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '77c27e3e4c0ef8fda0cdd114b8e67925232c585a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134072, 1430365681, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ae122529f5cf71f440950c3d03d40f9d156b229c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134071, 1430365681, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4e310f279c57021679cd49eac518383d48204d3b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134070, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c19d59794f138a88d69e1cb704d6a47c2a02d97f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134069, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '67e459edb36e129ab2059c5ca6413e5c2ef603d4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134068, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1ec4842f67f6b0215c11f3fe91a30a4e6f787057', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134067, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '243dd327422deb93421448088f342054da64019f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134066, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6363b64f52aad439f61256f24adb8e26b4f08627', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134065, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1ba4e3b74e038a40459f8b085585b0b426d4bdc3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134064, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a405393b610a63cd6bdeb601941199fe71e2be12', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134063, 1430365680, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '61ffbed5bbea9de6c799021e16b44a6cbcf1f66c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134062, 1430365679, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '180d1b77d77659afb4fad964e525162d64c0da52', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134061, 1430365679, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6f83fa43f562f1548167a61b93b0e1232b67ba7b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134060, 1430365679, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '47c2e2a2e2b4c3ff76d82878028dcefe07574e91', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134059, 1430365679, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '52ef6ee964225fc5c17c43b4d8a85ff56382863e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134058, 1430365678, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0ab1c95284cf736b492e96e1cfc8dac38242b362', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134057, 1430365678, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '92e62ca08dd6890b48aefb663d826d79843757da', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134056, 1430365678, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a4790ba2f2df3e913fa0b6110a6f21b26b32b59f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134055, 1430365678, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7dab37cc741138b9a41ae1f0a3e3fc80b17928a6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134054, 1430365678, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5fb6aab8224520709cd1a2945e366212bc64ad97', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134053, 1430365678, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '26a27a9a9e7220dff950d640d65742f18135040d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134052, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '872cd86903676cbbe1d4deea7db66d2955d30c0e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134051, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c8955bd058321f6d7e69191b100a785865675c4e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134050, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '771649301e30aac5932408edeaefa51d7a46cd65', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134049, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e1134db4797da1e3fb0dfeecc56c3efe41ac5041', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134048, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd78586545d346910fb28d1eeb734eb939ae4c1fe', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134047, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c58d2e13cd8cb9af6b45b95cf77dde3e82f16c6f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134046, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '64c3984cf029806dd6bbe5445361871e60aa28bf', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134045, 1430365677, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5b40ae47b97897222595a7170bd9023366b97249', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134044, 1430365676, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '94439ae7e6cdedc5746841316e901054a9dc4b47', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134043, 1430365676, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'eb3384327c0ee11cfd97068d199e72a954324206', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134042, 1430365676, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '33ffeebe36307201ab66b19cb82801d7fc37d190', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134041, 1430365676, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '898764e9e98522429bc5a4fd7a86f905319ca00e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134040, 1430365676, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7d56fe6082670e2295caccae233a2d0af5aad1ba', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134039, 1430365676, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'dd425beb584fa42d7828cda8aac20630a107f0bd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134038, 1430365675, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ffb0493fbb59eb8010cb82cf6934f6fa0a3e1a48', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134037, 1430365675, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c8faca0bb38113890bf343910ef1b4adcdb56e8c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134036, 1430365675, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '162167fb9bc8e1b0a5dc058987974bf5ea73b07d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134035, 1430365675, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '459b32971c751865bd47b97f4cce0e19674f6903', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134034, 1430365675, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '976192fb6149498f0fe2a4f834a961d900591408', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134033, 1430365675, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ffa66965d904e6d989c68b34607511284e4b35d6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134032, 1430365674, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5fa077c5714010182dccda2678fd0afa0f80428c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134031, 1430365674, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ae82a1f398d8c635e6983167da614f7918851e27', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134030, 1430365674, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '917dd2d5f570bba4a3035b2f0f6d55a8c5c05ea0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134029, 1430365674, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0a86a737b64b7ba02b3f920ab099523fad817e6b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134028, 1430365674, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '53adad315ee53dc7f67e57ae3e34b8880776ef5b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134027, 1430365674, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a8b1795f949d56d38047d47296ce4cbd644eb9c1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134026, 1430365673, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '05d26bb20507904088c26595f22018877dcee64d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134025, 1430365673, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '71a72c5de00791d75b76d615539580a3cfbbdbac', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134024, 1430365673, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7133ab3e7e7e5715bad843c7c6bda058a368162f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134023, 1430365673, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7970b606b6fd744cd734e3daccc0ef177b99d2cb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134022, 1430365673, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e5d1af5aae220a0837d115b3e529fc1bd4d2c2d9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134021, 1430365673, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ae439aef3219728d472d979eee95ce4135651067', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134020, 1430365672, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7f2027dc1f7a1fc28c0b5c7cae4375161c88fb63', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134019, 1430365672, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ecc398a497e9a7bfca760c91a0ea027e9c385b78', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134018, 1430365672, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e793e44d5837ea64bcc33432f2ebfad7a854b395', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134017, 1430365672, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7e4182bd9cc441ccc731cf79515362ad9e0dda75', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134016, 1430365672, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b9436473719b524d78e3e2eb7cdddc4c45dc9db2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134015, 1430365672, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6b123bbdb8e0637208cc927ab114be6ef3f098c9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134014, 1430365671, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ed45aa6cdf9fef988df32ea4aa840845732d2a19', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134013, 1430365671, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e88040d768aead19176033946c1ab9bed0e0200b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134012, 1430365671, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '3bec9e2c9454de64709a8edbae2c31bcb0958639', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134011, 1430365671, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6158e3820501258c9715db11377733773771586e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134010, 1430365671, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fd68689dae49756a7fd5f9972ac03a5a63fb8d08', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134009, 1430365671, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b887b38d8afc0342c4bb24b7f9d3acfc80937822', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134008, 1430365670, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b64f45eb045b727241013750d8eebab817a0d948', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134007, 1430365670, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4496146b366d40ae3a6eb8a39be60846e32da702', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134006, 1430365670, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fa3cdb0afd13d6485a9fbcec8dfb1a8096b132cb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134005, 1430365670, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2858a4c991d9e44da26538fa97ad11246ee41f8d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134004, 1430365669, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2d0b33f63160037db66fd075c5149e5d5f6f8c02', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134003, 1430365669, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ee71be0801e81ee7ce5baeb9aed204c710c8197d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134002, 1430365669, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '80a5b38ec40946413116eedcd9e4a07b9eb291b5', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134001, 1430365669, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '390480515d843afeeba775b3826da5a7653d6156', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (134000, 1430365668, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8869802b9f4e5643b45ecffdd762c4184a3b674c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133999, 1430365668, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e41b7f741bc0656ab5bbad4b268dd59fd8e21d8d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133998, 1430365668, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6df0b4b5c1c41fabf0201cb76e9f68e843d35613', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133997, 1430365668, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '6cb131a5fd2bd98174c010df4d57117df03f7db7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133996, 1430365667, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '31e14bb5f8fb157dc16fb7b450f750e9efd316d0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133995, 1430365667, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'de3415d975184b89717cb9b21d06f79ce7b75ee2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133994, 1430365667, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'dbc70f026ace954bbc1dbbceea96537df1db7afd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133993, 1430365667, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2a1c0bcb95d673521db720705f7be31ecc197756', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133992, 1430365666, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fa5c070806b8a2633862a29f7add24855efc0c7a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133991, 1430365666, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0c34f421bffcd697dc23212298fffcf45496b67b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133990, 1430365666, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7fcca5beb474341d336b377eb5fb374228e27652', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133989, 1430365666, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9a1902b474cd2bc09b5aed8debc1f9b06c9d3033', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133988, 1430365665, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '836d485c21409340fdd7679aa89ab4ad3a55c8b5', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133987, 1430365665, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '63ffdb703613902c9f7d65016b4067a0e79314dd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133986, 1430365664, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'caff7c65020943c1a2a08e1578c5c3982238df57', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133985, 1430365664, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '20f9b892d4b9672c1a73e24a77128366d1db7303', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133984, 1430365664, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '12c1cbd8ae9ada8b030d7c3f921886be1f72793e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133983, 1430365664, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ec07065af8667f0d376dcb1f0e1bbe0f80d7a219', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133982, 1430365664, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '37091a1ad4f3847c895a833f7501e90013b37ef0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133981, 1430365664, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4da5bcd11f72722c07392a5813164b260f89bf18', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133980, 1430365663, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f95405a480e485f45557bdb49ba426886e791cc1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133979, 1430365663, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5c712cd317de0f2d5bf85dccc735ddeaa5900ca3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133978, 1430365663, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '031124e37bc475af33f81a0610d4b6cc4e3c362b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133977, 1430365663, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c38de6930104d39214804a1f751261f3b76b22d6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133976, 1430365662, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '00b932440121b0b07c1acd34452e1be0e761ca61', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133975, 1430365662, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '684fe6f307ec8ce960522cd596fbb863f3c7f1a9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133974, 1430365662, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9fc50232d17a65789ce72fe67a998cbec3e36132', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133973, 1430365662, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '899c4712c3242e5b2581fe549033ad073ec9a707', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133972, 1430365661, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f8f87e215c6958d8f2d56459bb16469ca10a7948', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133971, 1430365661, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0a46396a8f2cf5c80819938a51452b4a8115a651', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133970, 1430365661, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1476562bcd55cd66f35b0415563a1cc59a59217e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133969, 1430365661, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'bc7a8115c44d245663b6dbaf32b96b948faff4f1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133968, 1430365660, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7ae98a8c9772d30fc4d6fa52462f1ec819d214e2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133967, 1430365660, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '153cb735f978a089e93cacd09446b4d380363a72', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133966, 1430365659, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e5b5a2cbe17bf49fa244b3a7aeec1e8bb6942e21', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133965, 1430365659, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e27668a13ef4e304cbfd3922b4b3d8adf9642c43', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133964, 1430365659, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '843ce0606b6a567e8dc9dc1243561d5177e02adc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133963, 1430365659, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'de1d08f9cc193cda36891bd81752a8972eab6445', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133962, 1430365657, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c3b5d63425caef4d7c42fea39990fdc756d73c7b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133961, 1430365657, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0fc7d8bd371b3879556e89784b364468954b9756', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133960, 1430365656, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b818879d4ebc540f9a506cc91e15d4a8b9e795ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133959, 1430365656, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '547c196bc4a4ebaa2026868bdf3987450ea9f88e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133958, 1430365651, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '0670a9a29a285f2b257db5de7fade4fc584ef0ee', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133957, 1430365651, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '5a358b5a0d7edde738f62ab890d3fe92caf6e7f2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133956, 1430365649, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '019c8bde285e79bb032d054b708c339da0611016', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133955, 1430365649, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1d6bdcd06472f7513151efa412c32b087825a194', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133954, 1430365649, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '9e94f69d1ada4bc031e80b872d0c210b6baecb57', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133953, 1430365649, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '187b790b1abfb69714672d84a486518bc32c22ed', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133952, 1430365646, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '347a2011a06140e243d2e5f11bee6dd4f6293cd1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133951, 1430365646, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '82aad055527b0f5435ee1be5defb9f90cc240cf8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133950, 1430365646, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '7ea08c8ab8e4525308843f8646e2915703f28e6d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133949, 1430365640, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e52117e8ffc0c35062c1a8b2a95a576e480b1683', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133948, 1430365640, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '2bce82bbb582b6f2456a03cb80e4680a61ee9d1e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133947, 1430365640, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'def3c67d7b2d6d8503fb2553e100574983d99b30', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133946, 1430365640, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '573855a0fc64e7406d90fbf9418ab49b700268db', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133945, 1430365640, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'c88f9dbc4b2a87531d9ffac175ebb28d63ea6a22', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133944, 1430365638, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b8ed13e3b9118544c6db552b24db1a002c60426e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133943, 1430365638, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '58f0fa9091738cb9a45e357903722f3f09cfc537', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133942, 1430365638, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8d69b9cf699737219ad6f877295134caddd9c0b6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133941, 1430365638, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '8ce85d14aa5f5a38a8e3ccac60b745bd87344802', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133940, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'fb923ac45032a62abfe47f59e5364ac3b541874e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133939, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '48e9a38233e9cbdf32c0ec4d49f04340eb533a69', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133938, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e7c1966631596bfc6fa15652f0bef7625f72c149', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133937, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '055fbb80b8ec4e74cee839278cd782e7894bdb0a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133936, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '329e2b401b4663a975fef1ad2e0d5907404e66bf', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133935, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd18183f0a5f1fb34283a85cd00966fe1b5d0b1a7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133934, 1430365483, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'e7fbeb67535e427c1ada00be3fe4289566033bb4', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133933, 1430365481, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '1232ad227ac9b282349cc00aa1181bd2b08d0688', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133932, 1430365481, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b9bec1bb42545fb0cfe218d9ed8a48c03b7d58b4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133931, 1430365480, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f2e8d0dd486c028482c5d9b08ea5cfc72f49584d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133930, 1430365480, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'f0a3cd57545395a92e170557d03a12b14008208e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133929, 1430365480, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a8c385dab84f52b3615223fba92e250056cf6686', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133928, 1430365480, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '496c12c55fa747f78ceb14baa87792f1faa9a4ae', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133927, 1430365480, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'd572f534926ee06ea7065e28b017a093bd2631ce', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133926, 1430365478, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'a734d801c50f959c3aeacfb0c9172a7e9733b100', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133925, 1430365478, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ba457bc9ab9c86a44efc92ca1c7a8c6588b064c8', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133924, 1430365475, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'b5bb2ac3ba1844588375e64381a706c7d409abb8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133923, 1430365475, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'deac586a5f10a2709a4dced67cc7391b83c97c88', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133922, 1430365471, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '76f35549b388f0161e9f2ede564423037b7f1dfe', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133921, 1430365471, 'f0e32b3c1e43f67a174f371342a3220a5584022c', 'ba7b76f8e6160005bf15abfd20e3f63c60fada9b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133920, 1430365466, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '4449da4b84b5bcaa9ec108ad87448499eb80422d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133919, 1430365106, 'f0e32b3c1e43f67a174f371342a3220a5584022c', '369d4a62bc3561097493c14f5ff737cdf99b245e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133918, 1430365105, '0', '7483b892747d66b68078244f2dc35b74a4c9ef91', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133917, 1430365097, '0', 'b54f063ee5c4de588925199b964456a7d06746b6', 1);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133916, 1430365097, '0', 'e0afee29bfa3953247a637a80e378425edc0b5e9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133915, 1430365097, '0', '53108f14756c18e944ae56ca3332005ca02f66d1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133914, 1430365096, '0', 'f2aab72fb40b00f4aeac33caf1e3d008a907ab2d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133913, 1430365096, '0', '33593cf3db9ffdd0900e6d683db1ed8823514366', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133912, 1430364767, '0', '69fd3a640b773fb5699d8305813876b92b144800', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133911, 1430364645, '0', 'b6de41511228bbdaa8a7bd23554be18ea00b9dba', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133910, 1430363752, '0', 'ced93e2a1984c2eb08ac20827c68f2153258a156', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133909, 1430363751, '0', '9fea52ba17b1671514dd71682bf34b6f32949054', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133908, 1430362090, '0', '06ff7db0221951c285363baf8632f9cec47c7794', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133907, 1430361957, '0', '4516487fc1d9dec7f848e4f72e928c642705d979', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133906, 1430359710, '0', '00f38ce42012c616e9feb12e36c8f737e59609fa', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133905, 1430359197, '0', '25dd4c33010313b7a6435be65df52304fc52c03f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133904, 1430355975, '0', 'b8e1fb82552f47ee9df38a2cc8065f1a4081ebcc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133903, 1430354854, '0', '2e42367a231b4f387bba53c3d4986055fa038399', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133902, 1430351828, '0', '3f9f0a02453e795ac26ad7e69d2803757a824bf9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133901, 1430349591, '0', '7503a9894e5219866ed762ad26aad1ebc401ab26', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133900, 1430349591, '0', '52e29dbacb4ca8c5a0b74fb50038f85dc6e9280c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133899, 1430349590, '0', '9348193934223ea8599a9b1e2a91c9720b284a11', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133898, 1430349590, '0', 'd4ea7dcab0d3ef48234fb1c7007c9d773a26769a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133897, 1430349107, '0', '962babe9eb080d7339866d4bb64837fe2f744a56', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133896, 1430349107, '0', '748a257ea0ab6db2badd5a6043926d089887abcf', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133895, 1430348515, '0', '1fe948afb4016455adc125be92a9705ff51be9eb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133894, 1430347738, '0', 'ea8ebef3741efbfe3ebcf200c68ae53b5690648e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133893, 1430347289, '0', '49e85b439fe408eda55b04f030a2a0f8d6ad542e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133892, 1430346964, '0', '22eb9e9fdc4b3a922ce77df6e2acadfd073afcd4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133891, 1430346963, '0', 'd0b338952708fa299b8f527b2f9495fdc0e6f881', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133890, 1430342626, '0', '6488941d19a68743efa3bd7aa2fb5f360131bbba', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133889, 1430342207, '0', '42774a08c7bf931a163ae017b195a94277686960', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133888, 1430342069, '0', 'ee7f8be6b08ae8674ba7b1537752d468ed15d62f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133887, 1430341896, '0', '99b881effea72f30a2f8a73ae47356743a85a861', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133886, 1430341610, '0', '6b3e79bc304264b6be6e44b1768fdd9df2531238', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133885, 1430340387, '0', '9bf6ceb1f1cf6d42e47da9cb50e3fd437df4f691', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133884, 1430339061, '0', 'dff93227ea249ccf8ea35d7567c4e184dfaa8594', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133883, 1430336414, '0', '0886a12fc74a45885c9d87867015eae22e2114f4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133882, 1430336246, '0', 'f3485622434a8f7396f39dee39a936146c6188ae', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133881, 1430333070, '0', '95adff620d3c9014a95c424d1ddc25122f67fe72', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133880, 1430333070, '0', '0dd5de887da28818709201eb85f41798e1808b47', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133879, 1430333067, '0', '1c69c48d673b2bb482d95b63e0fffcd740ed8954', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133878, 1430333067, '0', '6caa43f3d0f2c5ad395475b0fcdedb226cc19bce', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133877, 1430333065, '0', 'e0b804f994d4249fcb3b84fab3c3ab1af3400adb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133876, 1430333065, '0', 'ed1483b1105f15e56bba16bcc34ad15057ff8de7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133875, 1430333063, '0', '9c50fa48dedc5deb7cc66604098a6950d5a335c8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133874, 1430333063, '0', '8e8d96e7502ef3c3468d40f366e556ea455f9e4a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133873, 1430333057, '0', '0697d65580911854e5bcc04e134f7e0aecbd9362', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133872, 1430333056, '0', 'f6b724be29c8a9135ca9b5304b7bbbdbf16049a6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133871, 1430332069, '0', '9825c25a9f69010118f9b4ddbd48fa441ca34b84', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133870, 1430331631, '0', 'bbe6255111e64b021bf502e2fabbd2e82213d7bb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133869, 1430331623, '0', 'ea7343d8e2a9132182f268434bec4d7b1a39271d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133868, 1430330053, '0', 'ba6871855ece29c231d67b1ea5047a0975dca7be', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133867, 1430328912, '0', 'ad68843f2a7b007a337cb1b6108ad76cdc60044f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133866, 1430326849, '0', '3f0ada4f7865d5eba655a97c344bae0dae923983', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133865, 1430326656, '0', 'e6818ce440b54dad5fb6cbc31342bf39b916df3d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133864, 1430326494, '0', '3d5c9acee5c3fdc6adb60f28bfaf4a9487d03ca9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133863, 1430326264, '0', 'b2da3d530cd8e95f9f2b8cec954bc0ec3371c56e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133862, 1430325119, '0', 'b34958360ea07e738b7a401e4635956fd6421643', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133861, 1430325051, '0', 'd681c389ebe2a57add4438439947089376cd29f2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133860, 1430324903, '0', 'c366c05c47cbb3563e2d1ed60d1c53600386ea4e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133859, 1430324116, '0', 'a16c40e4d145ff54d391cea21f37917fb00dd269', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133858, 1430322603, '0', '6425c0797eea2364b49f92c905455c02730ca2ad', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133857, 1430322206, '0', '3cff2a9300fddb87da9b444d8e4c0496cdb23442', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133856, 1430320770, '0', '25fba0fd426cc02195e0459e8618d04b3df5f654', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133855, 1430320466, '0', '767f2ceee4cab0022e2877c95c385db57af98602', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133854, 1430318649, '0', '44be587986ee470269c079fa788676af259b29ac', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133853, 1430318613, '0', '18ab05376ad0c7e1b79ea92fcf57cd38239b2d69', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133852, 1430316229, '0', 'e8ba83faaaeb67d4177719d4184f8d2886d73836', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133851, 1430316228, '0', '2816d9cdd6626dcb1bb1a04921941f097b563ff9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133850, 1430316225, '0', '88d887f054e29c053a65e493ee69cf217fb2d328', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133849, 1430316223, '0', '53a34210b7fb1fcddd3292f29c5765b5a7a3e87c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133848, 1430316222, '0', '0011739aa11520d0eb9cc391173c000a6a8db9da', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133847, 1430316220, '0', 'ee1de2e5841adf4a94793347dc86dcfc1a8a5b84', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133846, 1430316218, '0', 'b9f853ed2b1b0374b7a7c46a6a79924526c5a4be', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133845, 1430316216, '0', 'd899175531a3efb8add9d07dde0ed8c7a25f7060', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133844, 1430316215, '0', '0f2598dd2a377430593ac0c30a869fb73a1dd77a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133843, 1430316212, '0', '5c56cb68334791a95f22e2515539148710997140', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133842, 1430316210, '0', '3edd80940ed8333ff8c72c6c04749b196fc68552', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133841, 1430316206, '0', 'c63a4f156f616547717c299900ba441f40da923c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133840, 1430316178, '0', '6e212d46227b9104c890a8b214449b01e79396f6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133839, 1430314337, '0', '4271ed7c32638984a2bab4e2990627968e14775a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133838, 1430313541, '0', '2d599cd8bfd9ba4b017cef8031a887b375feb16d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133837, 1430313111, '0', '61bfb577df4f05e42e2fb0bd68333af2bd511595', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133836, 1430313110, '0', 'cb73ab9a48c5d041e59d3cb71dafb991969df96a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133835, 1430313105, '0', 'fc01175f50cb9aa37e32408c3d7d4904426d4ac6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133834, 1430313105, '0', '92bd76fbf64a5fd748473c81e794a4ace3fb21fb', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133833, 1430313101, '0', '67258c37ba65d5586217ad61a325d24c4b2b7a7d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133832, 1430313100, '0', '5a38af88acc2a1442af0759d583bd262e2763f42', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133831, 1430313077, '0', '6191acef81d09c8b98890136000d513bc3b1caa1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133830, 1430313076, '0', 'ed1bafbb1d43965f1d493c60d75a6ce926529dc7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133829, 1430313063, '0', 'becdec752950cfd785f156ef45463f25c548ce24', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133828, 1430313062, '0', '3b255f94dcbb3e6118f0184b1141fb5edbb5ecbd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133827, 1430313052, '0', '24ad945bf8f1c243efdd0c5959095a96befd118f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133826, 1430313052, '0', '58400f6eab5ad33141adb6606b0a8d18ccf3ee18', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133825, 1430313031, '0', 'cc87d285f8ef254207103dc123d2e8eb4d6d6e22', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133824, 1430313030, '0', '02bbfba549610b813e84a3f7f632cd136e373e75', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133823, 1430313008, '0', 'd6da8411ec8c39e66c23d5f1be10521ed98f07ea', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133822, 1430313007, '0', '1049cce0f119f45520eb5d6bee7c9759ceb66726', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133821, 1430312977, '0', '41d5d307690d262ea914c1828378580f2013c422', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133820, 1430312976, '0', 'a24b8bca3f329167c29fd321e7b1596e37eae201', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133819, 1430312946, '0', 'f32bd3f23507d4aebdb82aada801bb01d6441447', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133818, 1430312945, '0', '2d50c4794fa2eb6b368fb09911d1b4308213d9f1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133817, 1430312920, '0', '3dece184132f2fe74722caa07dfa3053fe4f38f4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133816, 1430312919, '0', '393f0430434eb46c5b6f6c2af486d87a45f36578', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133815, 1430312917, '0', '5cbb95b071cfc525d60e7535dfc1c1c4ffcbe61d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133814, 1430312878, '0', '775f12e1b855c08922fb2486ee26d0881e44f5d9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133813, 1430312867, '0', '258dc96a5e3a53e1ff4f8ae3807c98c68e5ab5f3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133812, 1430312862, '0', '4f60feb101c9998349f393baf36a8bbaddde4879', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133811, 1430312619, '0', 'a8177d5ae601d43c7ad19199ea727193f356d4c8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133810, 1430310590, '0', 'de374e11154a52dfb823603a7f8b924ba086fea0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133809, 1430310589, '0', '172ce8c5e24a6d499f516ac2d38086b55c53d3dd', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133808, 1430309551, '0', '36a4dbee2d5a7e6d1097cb44630609c3789f713e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133807, 1430308917, '0', '953386d292e923b17bbacb6e6f1ba1ded9e5315d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133806, 1430308915, '0', '81e97c0db34324c64acd8a00fb1da0d29a2296e3', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133805, 1430308770, '0', '6b67fe0e5903e533bf6036b1b5c85ec653a39e94', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133804, 1430307204, '0', 'b5bf8aac89eb5855fd5294aa69495c245359601b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133803, 1430305134, '0', 'eaac4870c73c24de294e267cede8909361710e4c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133802, 1430305133, '0', '6e5057dd4c900c0f02626c9ea4f0af522065e8ac', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133801, 1430305080, '0', '6a4188b3929b1cf29199e6f69253943ea11a4761', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133800, 1430305079, '0', '18a540d5373e4cb79bddc3eef67130c04e71c8f9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133799, 1430305075, '0', 'd3c891a21a9e120f08f0b08b2d0eafda17e77211', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133798, 1430305074, '0', '9c0e8686380efb74304c75c2ef6b0b7dedc8663b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133797, 1430304681, '0', '352f0b1aa2882b3ddb0dc8a19931d943976b137f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133796, 1430302729, '0', 'b26ab045d5286a44a8a13675a1695c5866852e2d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133795, 1430302618, '0', '242a8370d7b312769ceb5073af387fd3af1ee8ff', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133794, 1430295878, '0', '99b98a08954e81d81e01ec56eea684405d137774', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133793, 1430295199, '0', '03cec845417b70d5c6b5b35567152c03e0f8c976', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133792, 1430295096, '0', '8a1742cfbbf693a6775384ccdcbba45b41bcc788', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133791, 1430295035, '0', 'aa74a6ddb47819874ac0c28ed5845f9082115024', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133790, 1430295034, '0', '6843ac7c7787c1def909503b38529825288cac8d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133789, 1430292472, '0', '529ab073e504058bc8ca7f81cc8027b199d8d436', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133788, 1430292406, '0', '10a7db92cf292886ea4010b541b82f33c63d2cee', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133787, 1430289016, '0', '2a9ae5535a09eba9ee579de171b906ae7fcc35fc', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133786, 1430289016, '0', '8c0796088778a4be792c12d61ec8bfaec3763c33', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133785, 1430288421, '0', 'bd0289506d4917db562efb1949f024ee3a336da8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133784, 1430286339, '0', 'df4298f004b2b58b5416705ba4316eec37c8a557', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133783, 1430284418, '0', '2c56d152a7695b86e80a50c156087894e5946ef7', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133782, 1430284418, '0', '5b11571558825d2a097cb5f934438d56d8aacf8a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133781, 1430284417, '0', 'fcfbad7062f78bc83bd42f47f7495cd3c2fc883e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133780, 1430284417, '0', 'a13981aeb43fc52c4530e009a6a1f1173cfabcd0', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133779, 1430284416, '0', '5de684fedc25897cbb3bb9bee15200138337e2d4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133778, 1430284416, '0', '4b263b023bbcf1f1af6b7fc418149a816b69aec4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133777, 1430284415, '0', 'fc1b8582686522e3669f18e95f31409522029144', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133776, 1430284415, '0', 'a7d85eac2f53f9f3770655e4e8e37c5e01325f74', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133775, 1430284414, '0', '8774624a7c9ddb56bb86e0ac29baff295a72a884', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133774, 1430284413, '0', 'c4475a92fd7c0869730d197029b2bdf1704863cf', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133773, 1430284411, '0', '62b2be47f0727dc7213af16569e92f75c3a26f4d', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133772, 1430284410, '0', 'a8ea860d91de0c5d12604dc5981afca2e849b23a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133771, 1430284410, '0', '5dba876bb2df473040d16e94594f8884ede86a54', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133770, 1430284409, '0', '302c772193be46bc09b7834475f07f7c20b1962a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133769, 1430284409, '0', 'aa798caec5990ad4a423540c07c21d4557ded88f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133768, 1430284408, '0', '8dd49cc525659099365fa11a4403c84e803a7f43', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133767, 1430284408, '0', '0e9f32ce7bb3f8b1ed5ae43003f033de8da99aac', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133766, 1430284407, '0', '8e3092f7d5ce25c2671e52749e18e127017abf32', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133748, 1430283768, '0', '64bf1faf77f1e523ff55eb6b08302e596ba5a14f', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133749, 1430284396, '0', 'cb0e259bda16a4ea1d701c892eb28e4017b0666c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133750, 1430284397, '0', '182aa16e57aad57b9bc9cc8d1bd8751b0bd020ef', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133751, 1430284398, '0', 'b2643f6ef659d51949876e94ad45916e9be1cfd2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133752, 1430284399, '0', '9d6dc84717f98b74579a34e74555d838c471d27a', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133753, 1430284399, '0', '5e73a83a3d19eb372cfa973a3775350925552798', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133754, 1430284400, '0', '796398bd9226c17b675da095255ab7b5d3afc175', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133755, 1430284400, '0', '824145b8aacdeb02966ff1edf3cc77cd3aa298e6', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133756, 1430284401, '0', '38f809bb70f08cf2e46191f5d000aef407536530', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133757, 1430284401, '0', 'c6d5c1eb79033dcc942db0e69a38e523baa9efa1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133758, 1430284402, '0', '36ee01015ac303b188937a855effee95982a8c1e', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133759, 1430284403, '0', '4abb3e83f55cad668320c9b520c0edb8eba707f1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133760, 1430284403, '0', 'f5d9c581d268fbbc211e5b43f44a677dcbbae94b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133761, 1430284404, '0', '04ff87ab4f4af1a4ece872b8c5e0758ade8f0779', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133762, 1430284405, '0', '948baa27eedbc3e3e8b0cc12e574f4a6992fa749', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133763, 1430284406, '0', '08b389bcc92d2113d6fb72c72af589e90c2fbead', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133764, 1430284406, '0', 'f175381fd185b496502e607725cffa3b540310e2', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133765, 1430284407, '0', '86afc41cd7a8716aae0dcd83759eb235aed929de', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133746, 1430283451, '0', '795c3236839e2f5804d6cd796f72421d41594a66', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133747, 1430283469, '0', 'cdb893708f17753e8d06a6aae6849198d7036162', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133745, 1430283450, '0', '67bb6c91d3a8566d50138bdf853edd7c5fa26676', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133744, 1430283445, '0', '66237be89d207ce3fe8b9e7d3359bf405b8e297c', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133743, 1430283344, '0', 'b92f567595a79c3426df7ecb7bec100f3ba7d4d1', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133742, 1430283341, '0', '170faeb33f20e0324434d97689aec1ba1a34c28b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133741, 1430276287, '0', 'a80865244ee8240456ac86a294fa9218d1c8e575', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133740, 1430276228, '0', '24be56ef1ed97769d8f96383dd0f8c10f3ba2407', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133739, 1430276228, '0', 'deb3178087d7e0bcc2033f428f4a829e2f16b495', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133738, 1430276224, '0', 'c355b6feda1ce358cf01cbc93ee6c9ba10707766', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133737, 1430276224, '0', 'daa7659bd54057beb51b7c99873acb1840e4b367', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133736, 1430276222, '0', 'ff9e752b8eaabea7b45dbfb9ed5068e96a72539b', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133735, 1430276222, '0', 'd23b665a99714ada50766bcdcd95bdb85f81fea8', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133734, 1430274560, '0', 'e5708f09bd3e0e95aa98dabaa7e0bc5c2b0123b4', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133733, 1430274547, '0', '59cae739b6d289463b8fcf28f3f9acff8b5826d9', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES (133732, 1430274546, '0', '9906b914d92cac8ec50aaee5b62d5313756d9ae3', 0);


#
# TABLE STRUCTURE FOR: exp_sessions
#

DROP TABLE IF EXISTS `exp_sessions`;

CREATE TABLE `exp_sessions` (
  `session_id` varchar(40) NOT NULL DEFAULT '0',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `admin_sess` tinyint(1) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `user_agent` varchar(120) NOT NULL,
  `fingerprint` varchar(40) NOT NULL,
  `sess_start` int(10) unsigned NOT NULL DEFAULT '0',
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`session_id`),
  KEY `member_id` (`member_id`),
  KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `exp_sessions` (`session_id`, `member_id`, `admin_sess`, `ip_address`, `user_agent`, `fingerprint`, `sess_start`, `last_activity`) VALUES ('f0e32b3c1e43f67a174f371342a3220a5584022c', 1, 1, '72.51.154.186', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0', '0c4545da90be00f4b17dfe5d13048189', 1430365105, 1430366212);


#
# TABLE STRUCTURE FOR: exp_sites
#

DROP TABLE IF EXISTS `exp_sites`;

CREATE TABLE `exp_sites` (
  `site_id` int(5) unsigned NOT NULL AUTO_INCREMENT,
  `site_label` varchar(100) NOT NULL DEFAULT '',
  `site_name` varchar(50) NOT NULL DEFAULT '',
  `site_description` text,
  `site_system_preferences` mediumtext NOT NULL,
  `site_mailinglist_preferences` text NOT NULL,
  `site_member_preferences` text NOT NULL,
  `site_template_preferences` text NOT NULL,
  `site_channel_preferences` text NOT NULL,
  `site_bootstrap_checksums` text NOT NULL,
  PRIMARY KEY (`site_id`),
  KEY `site_name` (`site_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `exp_sites` (`site_id`, `site_label`, `site_name`, `site_description`, `site_system_preferences`, `site_mailinglist_preferences`, `site_member_preferences`, `site_template_preferences`, `site_channel_preferences`, `site_bootstrap_checksums`) VALUES (1, 'Beans to Blossoms', 'default_site', NULL, 'YTo4ODp7czoxMDoic2l0ZV9pbmRleCI7czowOiIiO3M6ODoic2l0ZV91cmwiO3M6MzA6Imh0dHA6Ly93d3cuYmVhbnN0b2Jsb3Nzb21zLmNvbSI7czoxNjoidGhlbWVfZm9sZGVyX3VybCI7czozODoiaHR0cDovL3d3dy5iZWFuc3RvYmxvc3NvbXMuY29tL3RoZW1lcy8iO3M6MTU6IndlYm1hc3Rlcl9lbWFpbCI7czoyMToiYm9vbWVyNDIwMjVAeWFob28uY29tIjtzOjE0OiJ3ZWJtYXN0ZXJfbmFtZSI7czowOiIiO3M6MjA6ImNoYW5uZWxfbm9tZW5jbGF0dXJlIjtzOjc6ImNoYW5uZWwiO3M6MTA6Im1heF9jYWNoZXMiO3M6MzoiMTUwIjtzOjExOiJjYXB0Y2hhX3VybCI7czo0NzoiaHR0cDovL3d3dy5iZWFuc3RvYmxvc3NvbXMuY29tL2ltYWdlcy9jYXB0Y2hhcy8iO3M6MTI6ImNhcHRjaGFfcGF0aCI7czo2MzoiL2hvbWUvYm9vbTQyMDIvcHVibGljX2h0bWwvYmVhbnN0b2Jsb3Nzb21zLmNvbS9pbWFnZXMvY2FwdGNoYXMvIjtzOjEyOiJjYXB0Y2hhX2ZvbnQiO3M6MToieSI7czoxMjoiY2FwdGNoYV9yYW5kIjtzOjE6InkiO3M6MjM6ImNhcHRjaGFfcmVxdWlyZV9tZW1iZXJzIjtzOjE6Im4iO3M6MTc6ImVuYWJsZV9kYl9jYWNoaW5nIjtzOjE6Im4iO3M6MTg6ImVuYWJsZV9zcWxfY2FjaGluZyI7czoxOiJuIjtzOjE4OiJmb3JjZV9xdWVyeV9zdHJpbmciO3M6MToibiI7czoxMzoic2hvd19wcm9maWxlciI7czoxOiJuIjtzOjE4OiJ0ZW1wbGF0ZV9kZWJ1Z2dpbmciO3M6MToibiI7czoxNToiaW5jbHVkZV9zZWNvbmRzIjtzOjE6Im4iO3M6MTM6ImNvb2tpZV9kb21haW4iO3M6MDoiIjtzOjExOiJjb29raWVfcGF0aCI7czowOiIiO3M6MTc6InVzZXJfc2Vzc2lvbl90eXBlIjtzOjE6ImMiO3M6MTg6ImFkbWluX3Nlc3Npb25fdHlwZSI7czoyOiJjcyI7czoyMToiYWxsb3dfdXNlcm5hbWVfY2hhbmdlIjtzOjE6InkiO3M6MTg6ImFsbG93X211bHRpX2xvZ2lucyI7czoxOiJ5IjtzOjE2OiJwYXNzd29yZF9sb2Nrb3V0IjtzOjE6InkiO3M6MjU6InBhc3N3b3JkX2xvY2tvdXRfaW50ZXJ2YWwiO3M6MToiMSI7czoyMDoicmVxdWlyZV9pcF9mb3JfbG9naW4iO3M6MToieSI7czoyMjoicmVxdWlyZV9pcF9mb3JfcG9zdGluZyI7czoxOiJ5IjtzOjI0OiJyZXF1aXJlX3NlY3VyZV9wYXNzd29yZHMiO3M6MToibiI7czoxOToiYWxsb3dfZGljdGlvbmFyeV9wdyI7czoxOiJ5IjtzOjIzOiJuYW1lX29mX2RpY3Rpb25hcnlfZmlsZSI7czowOiIiO3M6MTc6Inhzc19jbGVhbl91cGxvYWRzIjtzOjE6InkiO3M6MTU6InJlZGlyZWN0X21ldGhvZCI7czo3OiJyZWZyZXNoIjtzOjk6ImRlZnRfbGFuZyI7czo3OiJlbmdsaXNoIjtzOjg6InhtbF9sYW5nIjtzOjI6ImVuIjtzOjEyOiJzZW5kX2hlYWRlcnMiO3M6MToieSI7czoxMToiZ3ppcF9vdXRwdXQiO3M6MToibiI7czoxMzoibG9nX3JlZmVycmVycyI7czoxOiJuIjtzOjEzOiJtYXhfcmVmZXJyZXJzIjtzOjM6IjUwMCI7czoxMToidGltZV9mb3JtYXQiO3M6MjoidXMiO3M6MTM6InNlcnZlcl9vZmZzZXQiO3M6MDoiIjtzOjIxOiJkZWZhdWx0X3NpdGVfdGltZXpvbmUiO3M6Mjc6IkFtZXJpY2EvS2VudHVja3kvTG91aXN2aWxsZSI7czoxMzoibWFpbF9wcm90b2NvbCI7czo0OiJtYWlsIjtzOjExOiJzbXRwX3NlcnZlciI7czowOiIiO3M6MTM6InNtdHBfdXNlcm5hbWUiO3M6MDoiIjtzOjEzOiJzbXRwX3Bhc3N3b3JkIjtzOjA6IiI7czoxMToiZW1haWxfZGVidWciO3M6MToibiI7czoxMzoiZW1haWxfY2hhcnNldCI7czo1OiJ1dGYtOCI7czoxNToiZW1haWxfYmF0Y2htb2RlIjtzOjE6Im4iO3M6MTY6ImVtYWlsX2JhdGNoX3NpemUiO3M6MDoiIjtzOjExOiJtYWlsX2Zvcm1hdCI7czo1OiJwbGFpbiI7czo5OiJ3b3JkX3dyYXAiO3M6MToieSI7czoyMjoiZW1haWxfY29uc29sZV90aW1lbG9jayI7czoxOiI1IjtzOjIyOiJsb2dfZW1haWxfY29uc29sZV9tc2dzIjtzOjE6InkiO3M6ODoiY3BfdGhlbWUiO3M6NzoiZGVmYXVsdCI7czoyMToiZW1haWxfbW9kdWxlX2NhcHRjaGFzIjtzOjE6Im4iO3M6MTY6ImxvZ19zZWFyY2hfdGVybXMiO3M6MToieSI7czoxMjoic2VjdXJlX2Zvcm1zIjtzOjE6InkiO3M6MTk6ImRlbnlfZHVwbGljYXRlX2RhdGEiO3M6MToieSI7czoyNDoicmVkaXJlY3Rfc3VibWl0dGVkX2xpbmtzIjtzOjE6Im4iO3M6MTY6ImVuYWJsZV9jZW5zb3JpbmciO3M6MToibiI7czoxNDoiY2Vuc29yZWRfd29yZHMiO3M6MDoiIjtzOjE4OiJjZW5zb3JfcmVwbGFjZW1lbnQiO3M6MDoiIjtzOjEwOiJiYW5uZWRfaXBzIjtzOjA6IiI7czoxMzoiYmFubmVkX2VtYWlscyI7czowOiIiO3M6MTY6ImJhbm5lZF91c2VybmFtZXMiO3M6MDoiIjtzOjE5OiJiYW5uZWRfc2NyZWVuX25hbWVzIjtzOjA6IiI7czoxMDoiYmFuX2FjdGlvbiI7czo4OiJyZXN0cmljdCI7czoxMToiYmFuX21lc3NhZ2UiO3M6MzQ6IlRoaXMgc2l0ZSBpcyBjdXJyZW50bHkgdW5hdmFpbGFibGUiO3M6MTU6ImJhbl9kZXN0aW5hdGlvbiI7czoyMToiaHR0cDovL3d3dy55YWhvby5jb20vIjtzOjE2OiJlbmFibGVfZW1vdGljb25zIjtzOjE6InkiO3M6MTI6ImVtb3RpY29uX3VybCI7czo0NjoiaHR0cDovL3d3dy5iZWFuc3RvYmxvc3NvbXMuY29tL2ltYWdlcy9zbWlsZXlzLyI7czoxOToicmVjb3VudF9iYXRjaF90b3RhbCI7czo0OiIxMDAwIjtzOjE3OiJuZXdfdmVyc2lvbl9jaGVjayI7czoxOiJ5IjtzOjE3OiJlbmFibGVfdGhyb3R0bGluZyI7czoxOiJuIjtzOjE3OiJiYW5pc2hfbWFza2VkX2lwcyI7czoxOiJ5IjtzOjE0OiJtYXhfcGFnZV9sb2FkcyI7czoyOiIxMCI7czoxMzoidGltZV9pbnRlcnZhbCI7czoxOiI4IjtzOjEyOiJsb2Nrb3V0X3RpbWUiO3M6MjoiMzAiO3M6MTU6ImJhbmlzaG1lbnRfdHlwZSI7czo3OiJtZXNzYWdlIjtzOjE0OiJiYW5pc2htZW50X3VybCI7czowOiIiO3M6MTg6ImJhbmlzaG1lbnRfbWVzc2FnZSI7czo1MDoiWW91IGhhdmUgZXhjZWVkZWQgdGhlIGFsbG93ZWQgcGFnZSBsb2FkIGZyZXF1ZW5jeS4iO3M6MTc6ImVuYWJsZV9zZWFyY2hfbG9nIjtzOjE6InkiO3M6MTk6Im1heF9sb2dnZWRfc2VhcmNoZXMiO3M6MzoiNTAwIjtzOjE3OiJ0aGVtZV9mb2xkZXJfcGF0aCI7czo1NDoiL2hvbWUvYm9vbTQyMDIvcHVibGljX2h0bWwvYmVhbnN0b2Jsb3Nzb21zLmNvbS90aGVtZXMvIjtzOjEwOiJpc19zaXRlX29uIjtzOjE6InkiO3M6MTE6InJ0ZV9lbmFibGVkIjtzOjE6InkiO3M6MjI6InJ0ZV9kZWZhdWx0X3Rvb2xzZXRfaWQiO3M6MToiMSI7fQ==', 'YTozOntzOjE5OiJtYWlsaW5nbGlzdF9lbmFibGVkIjtzOjE6InkiO3M6MTg6Im1haWxpbmdsaXN0X25vdGlmeSI7czoxOiJuIjtzOjI1OiJtYWlsaW5nbGlzdF9ub3RpZnlfZW1haWxzIjtzOjA6IiI7fQ==', 'YTo0NDp7czoxMDoidW5fbWluX2xlbiI7czoxOiI0IjtzOjEwOiJwd19taW5fbGVuIjtzOjE6IjUiO3M6MjU6ImFsbG93X21lbWJlcl9yZWdpc3RyYXRpb24iO3M6MToibiI7czoyNToiYWxsb3dfbWVtYmVyX2xvY2FsaXphdGlvbiI7czoxOiJ5IjtzOjE4OiJyZXFfbWJyX2FjdGl2YXRpb24iO3M6NToiZW1haWwiO3M6MjM6Im5ld19tZW1iZXJfbm90aWZpY2F0aW9uIjtzOjE6Im4iO3M6MjM6Im1icl9ub3RpZmljYXRpb25fZW1haWxzIjtzOjA6IiI7czoyNDoicmVxdWlyZV90ZXJtc19vZl9zZXJ2aWNlIjtzOjE6InkiO3M6MjI6InVzZV9tZW1iZXJzaGlwX2NhcHRjaGEiO3M6MToibiI7czoyMDoiZGVmYXVsdF9tZW1iZXJfZ3JvdXAiO3M6MToiNSI7czoxNToicHJvZmlsZV90cmlnZ2VyIjtzOjY6Im1lbWJlciI7czoxMjoibWVtYmVyX3RoZW1lIjtzOjc6ImRlZmF1bHQiO3M6MTQ6ImVuYWJsZV9hdmF0YXJzIjtzOjE6InkiO3M6MjA6ImFsbG93X2F2YXRhcl91cGxvYWRzIjtzOjE6Im4iO3M6MTA6ImF2YXRhcl91cmwiO3M6NDY6Imh0dHA6Ly93d3cuYmVhbnN0b2Jsb3Nzb21zLmNvbS9pbWFnZXMvYXZhdGFycy8iO3M6MTE6ImF2YXRhcl9wYXRoIjtzOjYyOiIvaG9tZS9ib29tNDIwMi9wdWJsaWNfaHRtbC9iZWFuc3RvYmxvc3NvbXMuY29tL2ltYWdlcy9hdmF0YXJzLyI7czoxNjoiYXZhdGFyX21heF93aWR0aCI7czozOiIxMDAiO3M6MTc6ImF2YXRhcl9tYXhfaGVpZ2h0IjtzOjM6IjEwMCI7czoxMzoiYXZhdGFyX21heF9rYiI7czoyOiI1MCI7czoxMzoiZW5hYmxlX3Bob3RvcyI7czoxOiJuIjtzOjk6InBob3RvX3VybCI7czo1MjoiaHR0cDovL3d3dy5iZWFuc3RvYmxvc3NvbXMuY29tL2ltYWdlcy9tZW1iZXJfcGhvdG9zLyI7czoxMDoicGhvdG9fcGF0aCI7czo2ODoiL2hvbWUvYm9vbTQyMDIvcHVibGljX2h0bWwvYmVhbnN0b2Jsb3Nzb21zLmNvbS9pbWFnZXMvbWVtYmVyX3Bob3Rvcy8iO3M6MTU6InBob3RvX21heF93aWR0aCI7czozOiIxMDAiO3M6MTY6InBob3RvX21heF9oZWlnaHQiO3M6MzoiMTAwIjtzOjEyOiJwaG90b19tYXhfa2IiO3M6MjoiNTAiO3M6MTY6ImFsbG93X3NpZ25hdHVyZXMiO3M6MToieSI7czoxMzoic2lnX21heGxlbmd0aCI7czozOiI1MDAiO3M6MjE6InNpZ19hbGxvd19pbWdfaG90bGluayI7czoxOiJuIjtzOjIwOiJzaWdfYWxsb3dfaW1nX3VwbG9hZCI7czoxOiJuIjtzOjExOiJzaWdfaW1nX3VybCI7czo2MDoiaHR0cDovL3d3dy5iZWFuc3RvYmxvc3NvbXMuY29tL2ltYWdlcy9zaWduYXR1cmVfYXR0YWNobWVudHMvIjtzOjEyOiJzaWdfaW1nX3BhdGgiO3M6NzY6Ii9ob21lL2Jvb200MjAyL3B1YmxpY19odG1sL2JlYW5zdG9ibG9zc29tcy5jb20vaW1hZ2VzL3NpZ25hdHVyZV9hdHRhY2htZW50cy8iO3M6MTc6InNpZ19pbWdfbWF4X3dpZHRoIjtzOjM6IjQ4MCI7czoxODoic2lnX2ltZ19tYXhfaGVpZ2h0IjtzOjI6IjgwIjtzOjE0OiJzaWdfaW1nX21heF9rYiI7czoyOiIzMCI7czoxOToicHJ2X21zZ191cGxvYWRfcGF0aCI7czo2OToiL2hvbWUvYm9vbTQyMDIvcHVibGljX2h0bWwvYmVhbnN0b2Jsb3Nzb21zLmNvbS9pbWFnZXMvcG1fYXR0YWNobWVudHMvIjtzOjIzOiJwcnZfbXNnX21heF9hdHRhY2htZW50cyI7czoxOiIzIjtzOjIyOiJwcnZfbXNnX2F0dGFjaF9tYXhzaXplIjtzOjM6IjI1MCI7czoyMDoicHJ2X21zZ19hdHRhY2hfdG90YWwiO3M6MzoiMTAwIjtzOjE5OiJwcnZfbXNnX2h0bWxfZm9ybWF0IjtzOjQ6InNhZmUiO3M6MTg6InBydl9tc2dfYXV0b19saW5rcyI7czoxOiJ5IjtzOjE3OiJwcnZfbXNnX21heF9jaGFycyI7czo0OiI2MDAwIjtzOjE5OiJtZW1iZXJsaXN0X29yZGVyX2J5IjtzOjE3OiJ0b3RhbF9mb3J1bV9wb3N0cyI7czoyMToibWVtYmVybGlzdF9zb3J0X29yZGVyIjtzOjQ6ImRlc2MiO3M6MjA6Im1lbWJlcmxpc3Rfcm93X2xpbWl0IjtzOjI6IjIwIjt9', 'YTo2OntzOjExOiJzdHJpY3RfdXJscyI7czoxOiJ5IjtzOjg6InNpdGVfNDA0IjtzOjA6IiI7czoxOToic2F2ZV90bXBsX3JldmlzaW9ucyI7czoxOiJuIjtzOjE4OiJtYXhfdG1wbF9yZXZpc2lvbnMiO3M6MToiNSI7czoxNToic2F2ZV90bXBsX2ZpbGVzIjtzOjE6Im4iO3M6MTg6InRtcGxfZmlsZV9iYXNlcGF0aCI7czo3NjoiL2hvbWUvYm9vbTQyMDIvcHVibGljX2h0bWwvYmVhbnN0b2Jsb3Nzb21zL3N5c3RlbS9leHByZXNzaW9uZW5naW5lL3RlbXBsYXRlcyI7fQ==', 'YTo5OntzOjIxOiJpbWFnZV9yZXNpemVfcHJvdG9jb2wiO3M6MzoiZ2QyIjtzOjE4OiJpbWFnZV9saWJyYXJ5X3BhdGgiO3M6MDoiIjtzOjE2OiJ0aHVtYm5haWxfcHJlZml4IjtzOjU6InRodW1iIjtzOjE0OiJ3b3JkX3NlcGFyYXRvciI7czo0OiJkYXNoIjtzOjE3OiJ1c2VfY2F0ZWdvcnlfbmFtZSI7czoxOiJuIjtzOjIyOiJyZXNlcnZlZF9jYXRlZ29yeV93b3JkIjtzOjg6ImNhdGVnb3J5IjtzOjIzOiJhdXRvX2NvbnZlcnRfaGlnaF9hc2NpaSI7czoxOiJuIjtzOjIyOiJuZXdfcG9zdHNfY2xlYXJfY2FjaGVzIjtzOjE6InkiO3M6MjM6ImF1dG9fYXNzaWduX2NhdF9wYXJlbnRzIjtzOjE6InkiO30=', 'YToyOntzOjc6ImVtYWlsZWQiO2E6MDp7fXM6NTY6Ii9ob21lL2Jvb200MjAyL3B1YmxpY19odG1sL2JlYW5zdG9ibG9zc29tcy5jb20vaW5kZXgucGhwIjtzOjMyOiJhMmQ4NmNjMjNmOTQ3YzVjZmQxNjEyMjEyZDEzYzJjNiI7fQ==');


#
# TABLE STRUCTURE FOR: exp_snippets
#

DROP TABLE IF EXISTS `exp_snippets`;

CREATE TABLE `exp_snippets` (
  `snippet_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) NOT NULL,
  `snippet_name` varchar(75) NOT NULL,
  `snippet_contents` text,
  PRIMARY KEY (`snippet_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_specialty_templates
#

DROP TABLE IF EXISTS `exp_specialty_templates`;

CREATE TABLE `exp_specialty_templates` (
  `template_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `enable_template` char(1) NOT NULL DEFAULT 'y',
  `template_name` varchar(50) NOT NULL,
  `data_title` varchar(80) NOT NULL,
  `template_data` text NOT NULL,
  PRIMARY KEY (`template_id`),
  KEY `template_name` (`template_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;

INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (1, 1, 'y', 'offline_template', '', '<html>\n<head>\n\n<title>System Offline</title>\n\n<style type=\"text/css\">\n\nbody { \nbackground-color:	#ffffff; \nmargin:				50px; \nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size:			11px;\ncolor:				#000;\nbackground-color:	#fff;\n}\n\na {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-weight:		bold;\nletter-spacing:		.09em;\ntext-decoration:	none;\ncolor:			  #330099;\nbackground-color:	transparent;\n}\n  \na:visited {\ncolor:				#330099;\nbackground-color:	transparent;\n}\n\na:hover {\ncolor:				#000;\ntext-decoration:	underline;\nbackground-color:	transparent;\n}\n\n#content  {\nborder:				#999999 1px solid;\npadding:			22px 25px 14px 25px;\n}\n\nh1 {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-weight:		bold;\nfont-size:			14px;\ncolor:				#000;\nmargin-top: 		0;\nmargin-bottom:		14px;\n}\n\np {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size: 			12px;\nfont-weight: 		normal;\nmargin-top: 		12px;\nmargin-bottom: 		14px;\ncolor: 				#000;\n}\n</style>\n\n</head>\n\n<body>\n\n<div id=\"content\">\n\n<h1>System Offline</h1>\n\n<p>This site is currently offline</p>\n\n</div>\n\n</body>\n\n</html>');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (2, 1, 'y', 'message_template', '', '<html>\n<head>\n\n<title>{title}</title>\n\n<meta http-equiv=\'content-type\' content=\'text/html; charset={charset}\' />\n\n{meta_refresh}\n\n<style type=\"text/css\">\n\nbody { \nbackground-color:	#ffffff; \nmargin:				50px; \nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size:			11px;\ncolor:				#000;\nbackground-color:	#fff;\n}\n\na {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nletter-spacing:		.09em;\ntext-decoration:	none;\ncolor:			  #330099;\nbackground-color:	transparent;\n}\n  \na:visited {\ncolor:				#330099;\nbackground-color:	transparent;\n}\n\na:active {\ncolor:				#ccc;\nbackground-color:	transparent;\n}\n\na:hover {\ncolor:				#000;\ntext-decoration:	underline;\nbackground-color:	transparent;\n}\n\n#content  {\nborder:				#000 1px solid;\nbackground-color: 	#DEDFE3;\npadding:			22px 25px 14px 25px;\n}\n\nh1 {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-weight:		bold;\nfont-size:			14px;\ncolor:				#000;\nmargin-top: 		0;\nmargin-bottom:		14px;\n}\n\np {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size: 			12px;\nfont-weight: 		normal;\nmargin-top: 		12px;\nmargin-bottom: 		14px;\ncolor: 				#000;\n}\n\nul {\nmargin-bottom: 		16px;\n}\n\nli {\nlist-style:			square;\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size: 			12px;\nfont-weight: 		normal;\nmargin-top: 		8px;\nmargin-bottom: 		8px;\ncolor: 				#000;\n}\n\n</style>\n\n</head>\n\n<body>\n\n<div id=\"content\">\n\n<h1>{heading}</h1>\n\n{content}\n\n<p>{link}</p>\n\n</div>\n\n</body>\n\n</html>');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (3, 1, 'y', 'admin_notify_reg', 'Notification of new member registration', 'New member registration site: {site_name}\n\nScreen name: {name}\nUser name: {username}\nEmail: {email}\n\nYour control panel URL: {control_panel_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (4, 1, 'y', 'admin_notify_entry', 'A new channel entry has been posted', 'A new entry has been posted in the following channel:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nPosted by: {name}\nEmail: {email}\n\nTo read the entry please visit: \n{entry_url}\n');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (5, 1, 'y', 'admin_notify_mailinglist', 'Someone has subscribed to your mailing list', 'A new mailing list subscription has been accepted.\n\nEmail Address: {email}\nMailing List: {mailing_list}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (6, 1, 'y', 'admin_notify_comment', 'You have just received a comment', 'You have just received a comment for the following channel:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nLocated at: \n{comment_url}\n\nPosted by: {name}\nEmail: {email}\nURL: {url}\nLocation: {location}\n\n{comment}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (7, 1, 'y', 'mbr_activation_instructions', 'Enclosed is your activation code', 'Thank you for your new member registration.\n\nTo activate your new account, please visit the following URL:\n\n{unwrap}{activation_url}{/unwrap}\n\nThank You!\n\n{site_name}\n\n{site_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (8, 1, 'y', 'forgot_password_instructions', 'Login information', '{name},\n\nTo reset your password, please go to the following page:\n\n{reset_url}\n\nIf you do not wish to reset your password, ignore this message. It will expire in 24 hours.\n\n{site_name}\n{site_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (9, 1, 'y', 'validated_member_notify', 'Your membership account has been activated', '{name},\n\nYour membership account has been activated and is ready for use.\n\nThank You!\n\n{site_name}\n{site_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (10, 1, 'y', 'decline_member_validation', 'Your membership account has been declined', '{name},\n\nWe\'re sorry but our staff has decided not to validate your membership.\n\n{site_name}\n{site_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (11, 1, 'y', 'mailinglist_activation_instructions', 'Email Confirmation', 'Thank you for joining the \"{mailing_list}\" mailing list!\n\nPlease click the link below to confirm your email.\n\nIf you do not want to be added to our list, ignore this email.\n\n{unwrap}{activation_url}{/unwrap}\n\nThank You!\n\n{site_name}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (12, 1, 'y', 'comment_notification', 'Someone just responded to your comment', '{name_of_commenter} just responded to the entry you subscribed to at:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nYou can see the comment at the following URL:\n{comment_url}\n\n{comment}\n\nTo stop receiving notifications for this comment, click here:\n{notification_removal_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (13, 1, 'y', 'comments_opened_notification', 'New comments have been added', 'Responses have been added to the entry you subscribed to at:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nYou can see the comments at the following URL:\n{comment_url}\n\n{comments}\n{comment} \n{/comments}\n\nTo stop receiving notifications for this entry, click here:\n{notification_removal_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (14, 1, 'y', 'private_message_notification', 'Someone has sent you a Private Message', '\n{recipient_name},\n\n{sender_name} has just sent you a Private Message titled ‘{message_subject}’.\n\nYou can see the Private Message by logging in and viewing your inbox at:\n{site_url}\n\nContent:\n\n{message_content}\n\nTo stop receiving notifications of Private Messages, turn the option off in your Email Settings.\n\n{site_name}\n{site_url}');
INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES (15, 1, 'y', 'pm_inbox_full', 'Your private message mailbox is full', '{recipient_name},\n\n{sender_name} has just attempted to send you a Private Message,\nbut your inbox is full, exceeding the maximum of {pm_storage_limit}.\n\nPlease log in and remove unwanted messages from your inbox at:\n{site_url}');


#
# TABLE STRUCTURE FOR: exp_stats
#

DROP TABLE IF EXISTS `exp_stats`;

CREATE TABLE `exp_stats` (
  `stat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `total_members` mediumint(7) NOT NULL DEFAULT '0',
  `recent_member_id` int(10) NOT NULL DEFAULT '0',
  `recent_member` varchar(50) NOT NULL,
  `total_entries` mediumint(8) NOT NULL DEFAULT '0',
  `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0',
  `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0',
  `total_comments` mediumint(8) NOT NULL DEFAULT '0',
  `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_forum_post_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_visitor_date` int(10) unsigned NOT NULL DEFAULT '0',
  `most_visitors` mediumint(7) NOT NULL DEFAULT '0',
  `most_visitor_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_cache_clear` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`stat_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `exp_stats` (`stat_id`, `site_id`, `total_members`, `recent_member_id`, `recent_member`, `total_entries`, `total_forum_topics`, `total_forum_posts`, `total_comments`, `last_entry_date`, `last_forum_post_date`, `last_comment_date`, `last_visitor_date`, `most_visitors`, `most_visitor_date`, `last_cache_clear`) VALUES (1, 1, 2, 3, 'Suzanne Cathey', 50, 0, 0, 0, 1424547720, 0, 0, 1430365097, 125, 1392202530, 1430875884);


#
# TABLE STRUCTURE FOR: exp_status_groups
#

DROP TABLE IF EXISTS `exp_status_groups`;

CREATE TABLE `exp_status_groups` (
  `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `exp_status_groups` (`group_id`, `site_id`, `group_name`) VALUES (1, 1, 'Statuses');


#
# TABLE STRUCTURE FOR: exp_status_no_access
#

DROP TABLE IF EXISTS `exp_status_no_access`;

CREATE TABLE `exp_status_no_access` (
  `status_id` int(6) unsigned NOT NULL,
  `member_group` smallint(4) unsigned NOT NULL,
  PRIMARY KEY (`status_id`,`member_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_statuses
#

DROP TABLE IF EXISTS `exp_statuses`;

CREATE TABLE `exp_statuses` (
  `status_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  `status` varchar(50) NOT NULL,
  `status_order` int(3) unsigned NOT NULL,
  `highlight` varchar(30) NOT NULL,
  PRIMARY KEY (`status_id`),
  KEY `group_id` (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `exp_statuses` (`status_id`, `site_id`, `group_id`, `status`, `status_order`, `highlight`) VALUES (1, 1, 1, 'open', 1, '009933');
INSERT INTO `exp_statuses` (`status_id`, `site_id`, `group_id`, `status`, `status_order`, `highlight`) VALUES (2, 1, 1, 'closed', 2, '990000');


#
# TABLE STRUCTURE FOR: exp_template_groups
#

DROP TABLE IF EXISTS `exp_template_groups`;

CREATE TABLE `exp_template_groups` (
  `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  `group_order` int(3) unsigned NOT NULL,
  `is_site_default` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`),
  KEY `group_name_idx` (`group_name`),
  KEY `group_order_idx` (`group_order`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;

INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (1, 1, 'site', 1, 'y');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (2, 1, 'stylesheets', 2, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (3, 1, 'about', 3, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (4, 1, 'news', 4, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (5, 1, 'flowers', 5, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (6, 1, 'produce', 6, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (7, 1, 'garden-center', 7, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (8, 1, 'gift-shop', 8, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (9, 1, 'florist', 9, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (10, 1, 'landscaping', 10, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (12, 1, 'little-sprouts', 11, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (13, 1, 'events', 12, 'n');
INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES (14, 1, 'embeds', 13, 'n');


#
# TABLE STRUCTURE FOR: exp_template_member_groups
#

DROP TABLE IF EXISTS `exp_template_member_groups`;

CREATE TABLE `exp_template_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `template_group_id` mediumint(5) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`template_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_template_no_access
#

DROP TABLE IF EXISTS `exp_template_no_access`;

CREATE TABLE `exp_template_no_access` (
  `template_id` int(6) unsigned NOT NULL,
  `member_group` smallint(4) unsigned NOT NULL,
  PRIMARY KEY (`template_id`,`member_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_templates
#

DROP TABLE IF EXISTS `exp_templates`;

CREATE TABLE `exp_templates` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(6) unsigned NOT NULL,
  `template_name` varchar(50) NOT NULL,
  `save_template_file` char(1) NOT NULL DEFAULT 'n',
  `template_type` varchar(16) NOT NULL DEFAULT 'webpage',
  `template_data` mediumtext,
  `template_notes` text,
  `edit_date` int(10) NOT NULL DEFAULT '0',
  `last_author_id` int(10) unsigned NOT NULL DEFAULT '0',
  `cache` char(1) NOT NULL DEFAULT 'n',
  `refresh` int(6) unsigned NOT NULL DEFAULT '0',
  `no_auth_bounce` varchar(50) NOT NULL DEFAULT '',
  `enable_http_auth` char(1) NOT NULL DEFAULT 'n',
  `allow_php` char(1) NOT NULL DEFAULT 'n',
  `php_parse_location` char(1) NOT NULL DEFAULT 'o',
  `hits` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`template_id`),
  KEY `group_id` (`group_id`),
  KEY `template_name` (`template_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;

INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (1, 1, 1, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-lg\">\n\n   <!-- START HOME BANNER -->\n<div class=\"flexslider\" style=\"width:1000px;height:289px;background:none;border:none;\">\n  <ul class=\"slides\" style=\"width:1000px;height:289px;\">\n{exp:low_variables:parse var=\"lv_home_banners\"}\n    <li>\n   <div id=\"banner-left\"><img src=\"{banner-image}\" style=\"border:4px solid #bdc99c;width:418px;height:242px;\" /></div>\n     <div id=\"banner-right\">\n       <div class=\"title\">{banner-title}</div>\n       <div class=\"content\">{banner-content}</div>\n     </div>\n    </li>\n{/exp:low_variables:parse}  \n</ul>\n</div>\n\n \n   </div>\n   <!-- END HOME BANNER -->\n\n   <!-- START BLOCKS -->\n   <div id=\"blocks\" style=\"margin-top:40px;\">\n\n     <div class=\"block\" style=\"width:312px; height:322px; float:left;margin-right:12px;\">\n       <div class=\"block-head\"><img src=\"{site_url}/images/interface/block-header-sprouts.png\" /></div>\n       <div class=\"block-body\">\n         <img src=\"{site_url}/images/interface/block-sprouts-header.jpg\" />\n         <p style=\"height:90px;\">Murray\'s first garden club exclusively for children.  Children are our future gardeners so we want to help them learn and explore his or her inner curiosities about nature,\n         plants and insects.\n         </p>\n         <p style=\"text-align:right;\"><a href=\"{path=\'little-sprouts/\'}\" title=\"Learn More\" alt=\"Learn More\"><img src=\"{site_url}/images/interface/learn-more.png\" style=\"text-align:right;\" /></a></p>\n       </div>\n     </div>\n\n     <div class=\"block\" style=\"width:312px; height:322px; float:left;margin-right:12px;\">\n       <div class=\"block-head\"><img src=\"{site_url}/images/interface/block-header-florist.png\" /></div>\n       <div class=\"block-body\">\n         <img src=\"{site_url}/images/interface/block-florist-header.jpg\" />\n         <p style=\"height:90px;\">Whatever the occasion, we have you covered for your fresh or silk flower needs.  Formal or country, no matter what\nyour taste is, we have the look you are looking for.</p>\n         <p style=\"text-align:right;\"><a href=\"{path=\'florist/\'}\" title=\"Learn More\" alt=\"Learn More\"><img src=\"{site_url}/images//interface/learn-more.png\" style=\"text-align:right;\" /></a></p>\n       </div>\n     </div>\n\n     <div class=\"block\" style=\"width:312px; height:322px; float:left;\">\n       <div class=\"block-head\"><img src=\"{site_url}/images/interface/block-header-landscape.png\" /></div>\n       <div class=\"block-body\">\n         <img src=\"{site_url}/images/interface/block-landscape-header.jpg\" />\n         <p style=\"height:90px;\">Whether you are starting fresh or just renewing your landscape, we can help you achieve your landscaping goals.\n         </p>\n         <p style=\"text-align:right;\"><a href=\"{path=\'landscaping/\'}\" title=\"Learn More\" alt=\"Learn More\"><img src=\"{site_url}/images/interface/learn-more.png\" style=\"text-align:right;\" /></a></p>\n       </div>\n     </div>\n\n     <div class=\"clear\"></div>\n\n   </div>\n   <!-- END BLOCKS -->\n\n   <!-- START BOTTOM CONTENT -->\n   <div id=\"home-bottom\">\n\n      <div id=\"home-bottom-left\">\n        <div><img src=\"{site_url}/images/interface/upcoming-events.png\" /></div>\n\n{exp:channel:entries channel=\"events\" limit=\"5\" show_future_entries=\"yes\" orderby=\"entry_date\" sort=\"asc\"}\n        <div id=\"home-events-left\">\n          <div class=\"home-events-day\">{entry_date format=\"%d\"}</div><div class=\"home-events-month\">{entry_date format=\"%M\"}</div>\n        </div>\n        <div id=\"home-events-right\">\n          <div class=\"home-events-title\"><a href=\"#\">{title}</a></div>\n          <div class=\"home-events-time\">{time}</div>\n        </div><div class=\"clear\"></div>\n{/exp:channel:entries}\n\n\n      </div>\n      <div id=\"home-bottom-right\">\n        <div><img src=\"{site_url}/images/interface/news-and-updates.png\" /></div>\n\n{exp:channel:entries channel=\"news\" limit=\"5\"}\n<div class=\"home-news-article\" style=\"width:100%;\">\n  <div style=\"float:left;width:28px;\"><img src=\"{site_url}/images/interface/flower-icon.png\" align=\"left\" style=\"margin-right:5px;\" /></div>\n  <div style=\"float:left;width:495px;\"><a href=\"{url_title_path=\'news\'}\" class=\"news-more\">{news_teaser_sentence}</a></div><div class=\"float\"></div>\n  <div style=\"float:left;width:520px;margin-top:5px;margin-bottom:5px;\"><img src=\"{site_url}/images/interface/news-divider.png\" align=\"left\" style=\"margin-right:5px;\" /></div>\n</div>\n{/exp:channel:entries}\n<div class=\"home-news-article\" style=\"width:100%;\">\n  <div style=\"float:left;width:28px;\"><img src=\"{site_url}/images/interface/flower-fill.gif\" align=\"left\" style=\"margin-right:5px;\" /></div>\n  <div style=\"float:left;width:495px;\"><a href=\"{path=\'news/\'}\" class=\"news-more\" style=\"font-weight:bold;\">See More News...</a></div>\n</div><div class=\"float\"></div>\n\n\n      </div><div class=\"clear\"></div>\n\n   </div>\n   <!-- END BOTTOM CONTENT -->\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1397079529, 1, 'n', 0, '', 'n', 'n', 'o', 18407);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (2, 1, 2, 'index', 'n', 'webpage', '', NULL, 1383661562, 0, 'n', 0, '', 'n', 'n', 'o', 0);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (3, 1, 2, 'styles', 'n', 'css', '/* undo some default styling of common (X)HTML browsers\n * ------------------------------------------------------------------------- */\n\n/* remove default link styles */\n:link,:visited { text-decoration:none; }\n\n /* No list-markers by default - must redefine bullets w/ bg graphics */\nul,ol { margin:0; padding:0;}\nli {margin:0; padding:0;}\n\n.editor ul {list-style:circle;}\n.editor li {margin:0; padding:0; list-style:circle;margin-left:13px;font-family:arial;}\n\n/* Avoid browser default inconsistent heading font-sizes and pre/code */\nh1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }\n\n/* Remove inconsistent (among browsers) default padding or margin */\nhtml,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,dl,dt,dd,ul,ol,pre,form,fieldset,input { margin:0; padding:0; }\n\nhtml, body {height:100%;}\n                                                                          \n/* prevent blue linked image borders */\na img,:link img,:visited img { border:none; text-decoration:none;}\n\np {margin-bottom:10px; font-family:pt sans;font-size:12pt;color:black;text-align:justify;}\np a:link, p a:visited, p a:active {font-family:pt sans;font-size:12pt;color:#3b4a14;}\np a:hover {font-family:pt sans;font-size:12pt;color:#3b4a14;}\n#blocks p {padding:10px; font-family:pt sans;font-size:11pt;color:black;text-align:justify;line-height:13pt;}\n\n\n.editor img.right {margin: 0 0 15px; background: #fff; border: 5px solid #fff; position: relative; -webkit-border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; box-shadow: 0 1px 10px rgba(.2,.2,.2,.2); -webkit-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -moz-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -o-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); zoom: 1;}\n.editor img.right {margin-left:20px; margin-bottom:20px;}\n.editor img.left {margin: 0 0 15px; background: #fff; border: 5px solid #fff; position: relative; -webkit-border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; box-shadow: 0 1px 10px rgba(.2,.2,.2,.2); -webkit-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -moz-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -o-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); zoom: 1;}\n.editor img.left {margin-right:20px; margin-bottom:20px;}\n\na.toplink:link {color:#eff4e0;text-decoration:none;}\na.toplink:hover {color:#eff4e0;text-decoration:underline;}\n\n.home-events-day {font-family:Chango; font-size:18pt; color:#283013;}\n.home-events-month {font-family:Pt Sans; margin-top:-7px;padding-left:3px;}\n\n\n.home-events-title a:link, .home-events-title a:visited, .home-events-title a:active {font-family:calibri; font-size:18pt; color:black; text-decoration:underline;}\n.home-events-title a:hover {font-family:calibri; font-size:18pt; color:black; text-decoration:none;}\n.home-events-time {font-family:calibri; font-size:12pt; color:#445023;margin-left:5px;}\n\n.home-news-article {width:520px;margin-bottom:7px;}\n\na:link, a:visited, a:active {color:#4D3D2E;text-decoration:underline;}\na:hover {text-decoration:none}\n.pic {border:6px solid #b9d3b7;}\n\nh1 {font-family: Calibri; font-size:30pt; color:#36450f;margin-bottom:5px;font-weight:bold;}\nh2 {font-family: Quicksand, sans-serif; font-size:20pt; color:#485a1b;font-weight:normal; margin-bottom:5px;font-weight:bold;}\nh3 {font-family: Quicksand, sans-serif; font-size:16pt; color:#485a1b;font-weight:normal;}\n\n\n/* clearing class */\n.clear {clear:both;}\n\nbody {background-color:#4d5d23; margin-left:auto; margin-right:auto;font-family:pt sans;font-size:12pt;color:black;text-align:justify;}\n\n#container {margin-left:auto; margin-right:auto; width:1400px; background:url(\'{site_url}/images/interface/grungebg.png\') repeat-y; }\n#content {width:1000px; margin-left:auto; margin-right:auto; background:url(\'{site_url}/images/interface/mainflowerbg.jpg\') no-repeat; min-height:803px;padding-bottom:50px;background-color:#a3b869;}\n#content-sub {width:1000px; margin-left:auto; margin-right:auto; background:url(\'{site_url}/images/interface/mainflowerbg-sub.jpg\') no-repeat; min-height:803px;padding-bottom:50px;background-color:#a3b869;}\n#header {width:1000px; height:150px;margin-left:auto; margin-right:auto;}\n#header-left {width:310px;float:left; padding-left:15px;}\n#menu {width:1000px; text-align:center;padding-right:10px;}\n#menu a:link, #menu a:visited, #menu a:active {font-family: Rock Salt, cursive; font-size:12pt;color:black; text-decoration:none; padding-right:9px;padding-left:9px;}\n#menu a:hover {color:#505d2d;}\n#menu .on:link {background-color:green;float:left;}\n#banner-lg {height:289px;width:1000px; background:url(\'{site_url}/images/interface/banner-bg-large.png\') repeat-x;}\n#banner-lg .title {font-family:Chango; font-size:18pt; color:#283013; text-align:left;}\n#banner-lg .content {font-family:pt sans; font-size:15pt; color:black; text-align:justify;margin-top:15px;}\n\n#banner-left-sub {width:500px; height:269px;padding-top:5px;}\n#banner-sm {height:10px;width:1000px; background:url(\'{site_url}/images/interface/banner-bg-large.png\') repeat-x;}\n#banner-sm .title {font-family:britanic bold; font-size:50pt; color:#black; text-align:left;padding-left:20px;}\n\n#banner-left {width:470px; float:left;height:269px;text-align:center;padding-top:20px;padding-left:30px;}\n#banner-right {width:480px; float:left;height:269px;padding-top:20px;padding-right:20px;}\n\n#blocks {width:960px; height:322px;margin-left:auto; margin-right:auto; margin-top:25px;}\n.block-head {width:312px; height:55px;}\n.block-body {width:312px; height:267px;background:url(\'{site_url}/images/interface/block-bg.png\');}\n\n#home-bottom {width:940px; padding-left:30px; padding-right:30px;margin-top:30px;margin-bottom:60px;}\n#home-bottom-left {width:400px;float:left;}\n#home-bottom-right {width:540px;float:left;}\n\n#home-events-left {width:60px;float:left;padding-left:10px;}\n#home-events-right {width:330px;float:left;}\n\na.news-more:link, a.news-more:visited, a.news-more:active {font-family:pt sans; font-size:11pt;color:black; text-decoration:underline;}\na.news-more:hover {font-family:pt sans; font-size:11pt; font-weight:bold;text-decoration:none;}\n\n#footer {margin-left:auto;margin-right:auto;width:100%;}\n#footer-bar {width:100%;height:30px;background-color:#c5bc70; margin-left:auto;margin-right:auto;}\n#footer-bottom {width:100%; height:300px; background-color:#e2d883;}\n\n#footer-bottom-menu {width:1000px;margin-left:auto;margin-right:auto;text-align:center;font-family:calibri;font-size:12pt;padding-top:5px;}\n#footer a:link, #footer-bottom-menu a:visited, #footer-bottom-menu a:active {font-family:calibri;font-size:12pt;color:black;text-decoration:none;}\n#footer a:hover {font-family:calibri;font-size:12pt;color:black;text-decoration:underline;}\n#footer-bottom-blocks {margin-left:auto;margin-right:auto; margin-top:15px;width:950px;padding-left:145px;}\n\n#sub-menu {width:204px; min-height:530px; background:url(\'{site_url}/images/interface/sub-menu-bg.png\') no-repeat;float:left;padding-top:15px; padding-left:20px; padding-right:15px; color:black;}\n#sub-content {width:761px; height:100%;float:left;background:url(\'{site_url}/images/interface/sub-menu-bg.png\') repeat-x;min-height:530px;}\n.editor {margin-left:15px; margin-top:15px; margin-right:45px;}\n.sub-divider {border-bottom:1px solid #3b853f;width:185px;}\n\n#sub-menu a:link, #sub-menu a:visited, #sub-menu a:active {font-family:arial;font-size:14pt;color:#114b14;text-decoration:none;}\n#sub-menu a:hover {font-family:arial;font-size:14pt;color:#021b03;text-decoration:none;}\n\n#sub-menu a.sm:link, #sub-menu a.sm:visited, #sub-menu a.sm:active {font-family: arial;font-size:10pt;color:black;text-decoration:none;line-height:10pt;}\n#sub-menu a.sm:hover {font-family:arial;font-size:10pt;color:black;text-decoration:underline;}\n#sub-menu div{margin-bottom:5px;}\n\nimg.sectionbanner {margin: 0 0 15px; background: #fff; border: 5px solid #fff; position: relative; -webkit-border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; box-shadow: 0 1px 10px rgba(.2,.2,.2,.2); -webkit-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -moz-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -o-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); zoom: 1;}\nimg.sectionbanner {margin-right:10px; margin-bottom:20px; float:left;}\n\na.fl-title:link, \na.fl-title:visited, \na.fl-title:active {font-weight:bold;text-align:left;font-family: Quicksand, sans-serif; font-size:16pt; color:#485a1b;font-weight:normal;text-decoration:underline;}\n\na.fl-title:hover {text-decoration:none;}', '', 1390874710, 1, 'n', 0, '', 'n', 'n', 'o', 0);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (5, 1, 4, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:channel:entries channel=\"news\" limit=\"10\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'news\'}\" class=\"sm\"><span style=\"font-weight:bold;\">{entry_date format=\"%F %d %Y\"}</span>: {news_teaser_sentence}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:channel:entries}\n<div><a href=\"{path=\'news/\'}\" class=\"sm\" style=\"font-weight:bold;\">See All News</a></div>\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n	 <h1>News</h1>\n         {exp:channel:entries channel=\"news\" limit=\"10\"}\n          <div style=\"float:left;width:175px;\"><p><span style=\"font-weight:bold;\">{entry_date format=\"%F %d %Y\"}</span> :</div>\n          <div style=\"float:left;width:450px;\"><a href=\"{url_title_path=\'news\'}\" class=\"news-more\">{news_teaser_sentence}</a></p></div>\n  <div style=\"float:left;width:820px;margin-top:5px;margin-bottom:5px;\"><img src=\"{site_url}/images/interface/news-divider.png\" align=\"left\" style=\"margin-right:5px;\" /></div>\n         {/exp:channel:entries}\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"news\" limit=\"10\"}\n          <h1 style=\"margin-bottom:0px;\">News</h1>\n	  <div class=\"home-events-time\" style=\"margin-top:0px;padding-top:0px;\">Posted: {entry_date format=\"%F %d %Y\"}</div>\n          <p>{news_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1391968106, 1, 'n', 0, '', 'n', 'n', 'o', 4401);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (4, 1, 3, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"about\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'about\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/aboutusbanner.jpg\" class=\"sectionbanner\" title=\"About Us\" alt=\"About Us\" />\n             Thank you for visiting our website.  We hope that within these pages you will find that we are a business that is dedicated\nto bringing you the highest quality produce and flowers with tender loving care with your success in mind.  We utilize over \n60 years of experience to help you maximize your gardening experience.  Whether you are a seasoned gardner or a novice, we\ncan help you achieve your dream garden. \n</div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"about\"}\n         <img src=\"{site_url}/images/interface/aboutusbanner.jpg\" class=\"sectionbanner\" title=\"About Us\" alt=\"About Us\" />\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1385679683, 1, 'n', 0, '', 'n', 'n', 'o', 4069);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (6, 1, 5, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"flowers\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'flowers\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/flowersbanner.jpg\" class=\"sectionbanner\" title=\"Flowers\" alt=\"Flowers\" />\n             Welcome to our Flowers Section.  As you scroll through these pages, we think you will find one of the largest and most \ndiverse selection of plants of any nursery in this area.  We carry all the favorites you need to keep your flower garden\nlooking its best and incorporate antique and heirloom varieties to add a bit of whimsy to your garden. We grow almost all\nour plants ourselves so we know that only the highest quality ingredients have gone into each plant and each one has our\ntender loving touch before it leaves our greenhouses. \n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"flowers\" limit=\"10\"}\n         <img src=\"{site_url}/images/interface/flowersbanner.jpg\" class=\"sectionbanner\" title=\"Flowers\" alt=\"Flowers\" />\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1391965810, 1, 'n', 0, '', 'n', 'n', 'o', 3785);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (7, 1, 6, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"produce\" dynamic=\"no\"}\n<div style=\"text-align:left;\"><a href=\"{url_title_path=\'produce\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/producebanner.jpg\" class=\"sectionbanner\" title=\"Produce\" alt=\"Produce\" />\n             Welcome to our Produce Section.  We grow only the finest and freshest naturally grown produce, free from any pesticides\n or chemical fertilizers.  Most of our produce is picked daily so you know you are receiving the highest quality food for your family.  Considering that the average\nhead of lettuce travels over 1,500 miles before it reaches your local grocery store, having a local grower is becoming more\nimportant every day!\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"produce\" limit=\"10\"}\n         <img src=\"{site_url}/images/interface/producebanner.jpg\" class=\"sectionbanner\" title=\"Produce\" alt=\"Produce\"/>\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1385687841, 1, 'n', 0, '', 'n', 'n', 'o', 5028);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (14, 1, 13, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:channel:entries channel=\"events\" limit=\"5\" dynamic=\"no\" show_future_entries=\"yes\" orderby=\"entry_date\" sort=\"asc\"}\n<div><a href=\"{url_title_path=\'events\'}\" class=\"sm\"><span style=\"font-weight:bold;\">{entry_date format=\"%F %d %Y\"}</span><br /><div class=\"home-events-time\" style=\"font-size:10pt;\">{time}</div>{title}</a></div>\n\n     <div class=\"sub-divider\"></div>\n{/exp:channel:entries}\n<div><a href=\"{path=\'events/\'}\" class=\"sm\" style=\"font-weight:bold;\">See All Events</a></div>\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n	 <h1>Events</h1>\n\n{exp:channel:entries channel=\"events\" show_future_entries=\"yes\" orderby=\"entry_date\" sort=\"asc\"}\n        <div id=\"home-events-left\">\n          <div class=\"home-events-day\">{entry_date format=\"%d\"}</div><div class=\"home-events-month\">{entry_date format=\"%M\"}</div>\n        </div>\n        <div id=\"home-events-right\">\n          <div class=\"home-events-title\"><a href=\"{url_title_path=\'events\'}\">{title}</a></div>\n          <div class=\"home-events-time\">{time}</div>\n        </div><div class=\"clear\"></div>\n{/exp:channel:entries}\n\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"events\" limit=\"10\" show_future_entries=\"yes\"}\n          <h1 style=\"margin-bottom:0px;\">{title}</h1>\n	  <h3>{time}</h3>\n{description}\n{/exp:channel:entries}\n\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1392494985, 1, 'n', 0, '', 'n', 'n', 'o', 3005);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (8, 1, 7, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"gardencenter\" dynamic=\"no\"}\n<div style=\"text-align:left;\"><a href=\"{url_title_path=\'garden-center\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/gardencenterbanner.jpg\" class=\"sectionbanner\" title=\"Garden Center\" alt=\"Garden Center\" />\n             Welcome to our Garden Center Section.  We carry a full line of products to make your gardening experience a positive one. \nAs avid gardeners ourselves, we know the challenges you face everyday in your flower and vegetable gardens.  We can answer\nyour questions and point you to the right product you need for each and every application.  In addition, we promote using \norganic growing methods and products so that we can leave our environment safe for generations to come.  From organic \nfertilizers and worm castings to pest control, we know you will find what you need at Beans to Blossoms.  For those that\nare not quite ready to go organic we have other products that you can use for each problem you come across in your gardening\nexperience.\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"garden_center\" limit=\"10\"}\n         <img src=\"{site_url}/images/interface/gardencenterbanner.jpg\" class=\"sectionbanner\" title=\"Garden Center\" alt=\"Garden Center\" />\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1385687819, 1, 'n', 0, '', 'n', 'n', 'o', 3314);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (9, 1, 8, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"giftshop\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'gift-shop\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/giftshopbanner.jpg\" class=\"sectionbanner\" title=\"Gift Shop\" alt=\"Gift Shop\" />\n             For a most unique shopping experience, come see our myriad selection of gifts for garden and home.  We look far and\nwide for unusual, quality gifts that are also affordable.  We have something to fit every budget and try to use companies\nthat reach out and help others.  We carry gifts from such companies as Kalalou, who offer products made by the people from Haiti, which helps provide them jobs and income. Our\nline of pottery from Ceramou USA cannot be beaten when it comes to quality and diversity.  We only use the Carson Company for\nour garden flags as we know the no other company can compare with their quality and design.  You just have to come and see\nfor yourself what makes us the most unique gift shop in Murray!<br /><br />\n\n<p><img src=\"{site_url}/images/interface/store.jpg\" class=\"right\" /><img src=\"{site_url}/images/interface/store2.jpg\" class=\"right\" />\n<img src=\"{site_url}/images/interface/store3.jpg\" class=\"right\" /></p>\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"gift_shop\" limit=\"10\"}\n         <img src=\"{site_url}/images/interface/giftshopbanner.jpg\" class=\"sectionbanner\" title=\"Gift Shop\" alt=\"Gift Shop\" />\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1385690278, 1, 'n', 0, '', 'n', 'n', 'o', 1975);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (10, 1, 9, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"florist\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'florist\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n<div><a href=\"{site_index}/florist/florist-portfolio\" {if \"{segment_2}\"==\"florist-portfolio\"}style=\"text-decoration:underline;\"{/if}>Florist Portfolio</a></div>\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/floristbanner.jpg\" class=\"sectionbanner\" title=\"Florist\" alt=\"Florist\" />\n             Everyone that knows us has seen us grow and expand our operation over the years.  We once again are reaching out and \nincluding a full fledged Florist service to our offerings.  We have always had one foot dabbling in the floral industry\n with our fresh cut flower bouquets we sell, along with our beautiful sunflower and zinnias we offer in the summer. In the past, we supplied\nall our own flowers which limited us to only seasonal sales.  Expanding our floral business and knowledge allows us to offer fresh flowers all\nyear round.  Call us at 270-753-4050 for all your floral needs.  We offer free delivery in Murray and each arrangement will have that special\nBeans to Blossoms touch.\n \n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"florist\" limit=\"10\"}\n         <img src=\"{site_url}/images/interface/floristbanner.jpg\" class=\"sectionbanner\" title=\"Florist\" alt=\"Florist\" />\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1391274890, 1, 'n', 0, '', 'n', 'n', 'o', 1493);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (11, 1, 10, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"landscaping\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'landscaping\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n	 <h1>Landscaping</h1>\n<img src=\"{site_url}/images/interface/banner-landscaping.png\" class=\"sectionbanner\" title=\"Flowers\" alt=\"Flowers\" />             \nLet our extensive experience and education help you to achieve the landscape you dream of.  We have combined 30 years \nexperience in landscape design, installation and maintenance.  We will guide you through each phase from start to finish\nusing our vast knowledge of the strubs, trees and flowers that will work best in our area and each situation.  Using our \nHorticulture Degree and Kentucky Nurseryman Certification, we are sure you will be satisfied with the level of experience\nwe can offer.  By combining Beans to Blossoms and The GroundGuys Landscape Management, we can take care of all your lawn care needs\nincluding but not limited to landscaping, mowing, leaf removal, restoration, and pruning.  For more information call 270-753-4050.\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"landscaping\" limit=\"10\"}\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1391967865, 1, 'n', 0, '', 'n', 'n', 'o', 1003);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (13, 1, 12, 'index', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"littlesprouts\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'little-sprouts\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n\n       <div class=\"editor\">\n         <img src=\"{site_url}/images/interface/sproutsbanner.jpg\" class=\"sectionbanner\" title=\"Little Sprouts\" alt=\"Little Sprouts\" />\n             <p>Do you have a child in mind that you would like to introduce to the world of gardening and nature? If so we would like to introduce them to Murray’s \nfirst garden club exclusively for children. We know that children are our future gardeners so we want to help them learn and explore his or her inner curiosities \nabout nature, plants and insects. Little Sprouts Club is open to children up to 12 years of age. Little Sprout members will be the first to know about and the \nfirst to sign up for hands on activities held for children throughout the year, before the public hears about it. Hands on activities are optional and are very low cost or free. \nLittle sprouts and parents will have an opportunity to socialize and meet others with like interests.</p>\n\n<h2>Join the club and enjoy...</h2>\n\n<p>\n<ul>\n<li>Free Yearly Membership</li>\n<li>Membership Card</li>\n<li>Birthday Surprise</li>\n<li>Discount Coupons for Parents or Guardian</li>\n<li>Social benefits</li>\n<li>Optional Hands on Activities Held Once a Month (All Year Long)</li>\n</ul>\n</p>\n\n<h2>How will I know what\'s going on with Little Sprouts?</h2>\n\n<p>We send out monthly reminders via e-mail of approaching Little Sprout\'s events.  E-mails are usually sent about a week preceding the event to give you ample time to make \narrangements.  To make things even easier, we pre-plan the entire year\'s events and post it right here on our website!  The date, time, and activity/craft of each month\'s event \ncan be found on our 2014 Schedule page located to the left.</p>\n<p><a href=\"http://www.beanstoblossoms.com/little-sprouts/2014-schedule\">Check out our 2014 Schedule</a></p>\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"little_sprouts\"}\n         <img src=\"{site_url}/images/interface/sproutsbanner.jpg\" class=\"sectionbanner\" title=\"Little Sprouts\" alt=\"Little Sprouts\" />\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1392140792, 1, 'n', 0, '', 'n', 'n', 'o', 2082);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (17, 1, 3, 'test', 'n', 'webpage', '<html>\n\n<head>\n\n<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js\"></script>\n\n<link rel=\'stylesheet\' type=\'text/css\' media=\'all\' href=\'{stylesheet=stylesheets/flexslider}\' />\n\n\n\n<script src=\"{site_url}/javascripts/jquery.flexslider.js\" type=\"text/javascript\"></script>\n\n<script type=\"text/javascript\" charset=\"utf-8\">\n// Can also be used with $(document).ready()\n$(window).load(function() {\n  $(\'.flexslider\').flexslider({\n    animation: \"slide\"\n  });\n});\n</script>\n\n\n\n</head>\n<body>\n\n\n<!-- START ROTATING BANNER -->\n<div class=\"flexslider\">\n  <ul class=\"slides\">\n\n\n  <li><img src=\"{site_url}/images/interface/block-header-sprouts.png\" /></li>\n  <li><img src=\"{site_url}/images/interface/block-header-florist.png\" /></li>\n\n\n  </ul>\n</div>\n<!-- END ROTATING BANNER -->\n\n\n</body>\n</html>', '', 1383797990, 1, 'n', 0, '', 'n', 'n', 'o', 16);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (15, 1, 2, 'flexslider', 'n', 'css', '/*\n * jQuery FlexSlider v2.0\n * http://www.woothemes.com/flexslider/\n *\n * Copyright 2012 WooThemes\n * Free to use under the GPLv2 license.\n * http://www.gnu.org/licenses/gpl-2.0.html\n *\n * Contributing author: Tyler Smith (@mbmufffin)\n */\n\n \n/* Browser Resets */\n.flex-container a:active,\n.flexslider a:active,\n.flex-container a:focus,\n.flexslider a:focus  {outline: none;}\n.slides,\n.flex-control-nav,\n.flex-direction-nav {margin: 0; padding: 0; list-style: none;} \n\n/* FlexSlider Necessary Styles\n*********************************/ \n.flexslider {margin: 0; padding: 0;}\n.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */\n.flexslider .slides img {width: 100%; display: block;}\n.flex-pauseplay span {text-transform: capitalize;}\n\n/* Clearfix for the .slides element */\n.slides:after {content: \".\"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} \nhtml[xmlns] .slides {display: block;} \n* html .slides {height: 1%;}\n\n/* No JavaScript Fallback */\n/* If you are not using another script, such as Modernizr, make sure you\n * include js that eliminates this class on page load */\n.no-js .slides > li:first-child {display: block;}\n\n\n/* FlexSlider Default Theme\n*********************************/\n.flexslider {margin: 0 0 60px; background: #fff; border: 3px solid #fff; position: relative; -webkit-border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; box-shadow: 0 1px 10px rgba(.2,.2,.2,.2); -webkit-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -moz-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); -o-box-shadow: 0 1px 5px rgba(.2,.2,.2,.2); zoom: 1;}\n.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}\n.loading .flex-viewport {max-height: 300px;}\n.flexslider .slides {zoom: 1;}\n\n.carousel li {margin-right: 5px}\n\n\n/* Direction Nav */\n.flex-direction-nav {*height: 0;}\n.flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url({site_url}images/interface/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}\n.flex-direction-nav .flex-next {background-position: 100% 0; right: -36px; }\n.flex-direction-nav .flex-prev {left: -36px;}\n.flexslider:hover .flex-next {opacity: 0.8; right: 5px;}\n.flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}\n.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}\n.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}\n\n/* Control Nav */\n.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}\n.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}\n.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}\n.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }\n.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }\n\n.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}\n.flex-control-thumbs li {width: 25%; float: left; margin: 0;}\n.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}\n.flex-control-thumbs img:hover {opacity: 1;}\n.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}\n\n@media screen and (max-width: 860px) {\n  .flex-direction-nav .flex-prev {opacity: 1; left: 0;}\n  .flex-direction-nav .flex-next {opacity: 1; right: 0;}\n}', '', 1383796005, 1, 'n', 0, '', 'n', 'n', 'o', 0);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (16, 1, 1, 'test', 'n', 'webpage', '<html>\n\n<link rel=\'stylesheet\' type=\'text/css\' media=\'all\' href=\'{stylesheet=stylesheets/flexslider}\' />\n\n<style type=\"text/css\">\n<!--/*--><![CDATA[/*><!--*/\n   img.preload { display: none; }\n/*]]>*/-->\n</style>\n\n\n{exp:jquery:script_tag}\n\n<script src=\"{site_url}javascripts/jquery.flexslider.js\" type=\"text/javascript\"></script>\n\n<script type=\"text/javascript\" charset=\"utf-8\">\n// Can also be used with $(document).ready()\n$(window).load(function() {\n  $(\'.flexslider\').flexslider({\n    animation: \"slide\"\n  });\n});\n</script>\n\n<head>\n\n</head>\n<body>\n\n</body>\n</html>', '', 1383797106, 1, 'n', 0, '', 'n', 'n', 'o', 0);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (18, 1, 1, 'index2', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<body style=\"min-width:1400px;\">\n\n\n<!-- START CONTAINER -->\n<div style=\"margin-left:auto; margin-right:auto;background:url(\'{site_url}/images/interface/grungebg.png\') repeat-y; width:1400px;\">\n\n\n<div style=\"margin-left:auto; margin-right:auto;width:1000px;\">adf</div>\n\n</div>\n<!-- END CONTAINER --><div class=\"clear\"></div>\n\n<div style=\"width:100%;background-color:green;position:relative;margin-left:auto;margin-right:auto;min-width:100%;overflow:auto;\">asdf</div>\n\n\n</body>\n\n</html>', '', 1384320831, 1, 'n', 0, '', 'n', 'n', 'o', 91);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (19, 1, 3, 'abouthome', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"about\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'about\'}\">{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n{if segment_2==\"\"}\n       <div class=\"editor\">\n	 <h1>About</h1>\n             Intro to About Us\n       </div>\n{if:else}\n\n       <div class=\"editor\">\n         {exp:channel:entries channel=\"about\" limit=\"10\"}\n          <h1>{title}</h1>\n          <p>{page_content}</p>\n         {/exp:channel:entries}\n       </div>\n{/if}\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}', '', 1384319782, 1, 'n', 0, '', 'n', 'n', 'o', 2);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (22, 1, 9, 'florist-portfolio', 'n', 'webpage', '{exp:low_variables:single \n  var=\'lv_html_top\'\n}\n\n<!-- START CONTAINER -->\n<div id=\"container\">\n\n <!-- START CONTENT -->\n <div id=\"content-sub\">\n\n   <!-- START HEADER -->\n{exp:low_variables:single \n  var=\'lv_logo_header\'\n}\n   <!-- END HEADER -->\n\n   <!-- START MAIN MENU --> \n    {exp:low_variables:single \n       var=\'lv_main_menu\'\n       preparse:section=\'{segment_1}\'\n    }\n  <!-- END MAIN MENU -->\n\n   <!-- START BANNER -->\n   <div id=\"banner-sm\">\n   </div>\n   <!-- END BANNER -->\n\n   <!-- START SUB MENU -->\n   <div id=\"sub-menu\">\n\n{exp:low_reorder:entries set=\"florist\" dynamic=\"no\"}\n<div><a href=\"{url_title_path=\'florist\'}\" {if \"{segment_2}\"==\"{url_title}\"}style=\"text-decoration:underline;\"{/if}>{title}</a></div>\n     <div class=\"sub-divider\"></div>\n{/exp:low_reorder:entries}\n<div><a href=\"{site_index}/florist/florist-portfolio\" {if \"{segment_2}\"==\"florist-portfolio\"}style=\"text-decoration:underline;\"{/if}>Florist Portfolio</a></div>\n   </div>\n   <!-- END SUB MENU -->\n\n     <div id=\"sub-content\">\n\n\n{if segment_3==\"\"}\n	<div class=\"editor\">\n         <img src=\"{site_url}/images/interface/floristbanner.jpg\" class=\"sectionbanner\" title=\"Florist\" alt=\"Florist\" />\n	<h1>Florist Portfolio</h1>\n             Feel free to browse through our latest floral designs.  Each design in a one of a kind and has that special Beans to Blossoms touch.<br /><br />\n\n         {exp:low_reorder:entries set=\"arrangements\" dynamic=\"yes\"}\n\n            <div style=\"float:left;width:185px;\"><img src=\"{florist_image_full:thumbpic}\" class=\"left\" /></div>\n	    <div style=\"float:left;width:500px;\">\n		<div style=\"margin-bottom:5px;\"><h3 style=\"font-weight:bold;text-align:left;\"><a href=\"{url_title_path=\'florist/florist-portfolio\'}\" class=\"fl-title\">{title}</a></h3></div>\n		<div style=\"text-align:left;text-justify:none;line-height:12pt;\">{florist_des}</div>\n\n	    </div>\n	    <div class=\"clear\"></div>\n\n         {/exp:low_reorder:entries}\n	</div>\n{if:else}\n	<div class=\"editor\">\n         {exp:low_reorder:entries set=\"arrangements\" dynamic=\"yes\"}\n          <h2>{title}</h2>\n	  <div style=\"margin-top:5px;\">\n	  <p><img src=\"{florist_image_full:mainpic}\" class=\"left\" style=\"margin-top:10px;margin-left:auto;margin-right:auto;\" /></p>\n          <p><span style=\"font-weight:bold;font-size:14pt;\">Description</span>{florist_des}</p>\n	  {if florist_price != \"\"}<p><span style=\"font-weight:bold;\">Price:</span> {florist_price}</p>{/if}\n	  {if florist_price_small != \"\"}<p><span style=\"font-weight:bold;\">Small:</span> {florist_price_small}</p>{/if}\n	  {if florist_price_medium != \"\"}<p><span style=\"font-weight:bold;\">Medium:</span> {florist_price_medium}</p>{/if}\n	  {if florist_price_large != \"\"}<p><span style=\"font-weight:bold;\">Large:</span> {florist_price_large}</p>{/if}\n	  \n	  </div>\n         {/exp:low_reorder:entries}\n	</div>\n{/if}\n  \n\n\n\n     </div><div class=\"clear\"></div>\n\n </div>\n <!-- END CONTENT -->\n\n{exp:low_variables:single \n  var=\'lv_footer\'\n}\n', '', 1424541615, 1, 'n', 0, '', 'n', 'n', 'o', 3513);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (20, 1, 1, 'login', 'n', 'webpage', '{exp:member:login_form return=\"http://www.beanstoblossoms.com/site/memberpage\"}\n        <p>\n                <label>Username</label><br>\n                <input type=\"text\" name=\"username\" value=\"\" maxlength=\"32\" size=\"25\">\n        </p>\n        <p>\n                <label>Password</label><br>\n                <input type=\"password\" name=\"password\" value=\"\" maxlength=\"32\" size=\"25\">\n        </p>\n        {if auto_login}\n                <p><input type=\"checkbox\" name=\"auto_login\" value=\"1\"> Auto-login on future visits</p>\n        {/if}\n\n        <p><input type=\"checkbox\" name=\"anon\" value=\"1\" checked=\"checked\"> Show my name in the online users list</p>\n        <p><input type=\"submit\" name=\"submit\" value=\"Submit\"></p>\n        <p><a href=\"{path=\'member/forgot_password\'}\">Forgot your password?</a></p>\n{/exp:member:login_form}', '', 1387344447, 1, 'n', 0, '', 'n', 'n', 'o', 6);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (21, 1, 1, 'memberpage', 'n', 'webpage', '{if logged_in}\n        <a href=\"{path=\'member/profile\'}\">Edit your profile</a><br>\n        <a href=\"{path=\'member/memberlist\'}\">View the Memberlist</a><br>\n        <a href=\"{path=\'logout\'}\">Log Out</a>\n{/if}\n{if logged_out}\n        Are you a member? Please <a href=\"{path=\'member/login\'}\">log-in</a>.<br>\n        Not a member? <a href=\"{path=\'member/register\'}\">Register</a>.<br>\n        Have you <a href=\"{path=\'member/forgot\'}\">forgotten your password</a>?\n{/if}', '', 1387344290, 1, 'n', 0, '', 'n', 'n', 'o', 1);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (23, 1, 14, 'index', 'n', 'webpage', '', NULL, 1392491368, 0, 'n', 0, '', 'n', 'n', 'o', 0);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES (24, 1, 14, 'header', 'n', 'webpage', '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\"\n\nxmlns:og=\"http://ogp.me/ns#\"\n\nxmlns:fb=\"http://www.facebook.com/2008/fbml\"><!--formatted-->\n\n<head>\n<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\" />\n<link rel=\'stylesheet\' type=\'text/css\' media=\'all\' href=\'{stylesheet=stylesheets/styles}\' />\n<link rel=\'stylesheet\' type=\'text/css\' media=\'all\' href=\'{stylesheet=stylesheets/flexslider}\' />\n\n<link href=\'http://fonts.googleapis.com/css?family=PT+Sans\' rel=\'stylesheet\' type=\'text/css\'>\n<link href=\'http://fonts.googleapis.com/css?family=Chango\' rel=\'stylesheet\' type=\'text/css\'>\n<link href=\'http://fonts.googleapis.com/css?family=Rock+Salt\' rel=\'stylesheet\' type=\'text/css\'>\n\n<link rel=\"image_src\" href=\"http://www.beanstoblossoms.com/images/interface/logo-lg.jpg\" / >\n\n\n<meta property=\"og:title\" content=\"{exp:entry_data:title url_title=\"{segment_2}\" channel=\"events\"}\" />\n<meta property=\"og:type\" content=\"website\"/>\n<meta property=\"og:description\" content=\"{exp:channel:entries channel=\"events\" url_title=\"{segment_2}\" show_future_entries=\"yes\"}{title} event at Beans To Blossoms{/exp:channel:entries}\" />\n\n<meta property=\"og:image\" content=\"http://www.beanstoblossoms.com/images/interface/logo-lg.jpg\" />\n<meta property=\"og:image:width\" content=\"1200\">\n<meta property=\"og:image:height\" content=\"630\">\n\n<meta property=\"og:url\" content=\"http://www.beanstoblossoms.com/events/little-sprouts-class3\" />\n<meta property=\"og:site_name\" content=\"Beans to Blossoms\"/>\n\n\n\n{exp:jquery:script_tag}\n\n<script src=\"{site_url}/javascripts/jquery.flexslider.js\" type=\"text/javascript\"></script>\n\n<script type=\"text/javascript\" charset=\"utf-8\">\n  $(window).load(function() {\n    $(\'.flexslider\').flexslider({\n          animation: \"slide\",\n          controlsContainer: \".flex-container\"\n    });\n  });\n</script>\n\n<title>Beans to Blossoms</title>\n\n<meta name=\"keywords\" content=\"flowers\" />\n<meta name=\"description\" content=\"Specializing in Antique Heirloom Flowers, Organic Produce, and Floral Arrangements.\" /><!--formatted-->\n\n</head>', '', 1392494710, 1, 'n', 0, '', 'n', 'n', 'o', 1);


#
# TABLE STRUCTURE FOR: exp_throttle
#

DROP TABLE IF EXISTS `exp_throttle`;

CREATE TABLE `exp_throttle` (
  `throttle_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  `hits` int(10) unsigned NOT NULL,
  `locked_out` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`throttle_id`),
  KEY `ip_address` (`ip_address`),
  KEY `last_activity` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_updater_addons
#

DROP TABLE IF EXISTS `exp_updater_addons`;

CREATE TABLE `exp_updater_addons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `package` varchar(250) DEFAULT '',
  `addon` varchar(250) DEFAULT '',
  `addon_type` varchar(250) DEFAULT '',
  `label` varchar(250) DEFAULT '',
  `version` varchar(250) DEFAULT '',
  `installed` tinyint(1) DEFAULT '0',
  `updated_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `addon` (`addon`),
  KEY `package` (`package`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_upload_no_access
#

DROP TABLE IF EXISTS `exp_upload_no_access`;

CREATE TABLE `exp_upload_no_access` (
  `upload_id` int(6) unsigned NOT NULL,
  `upload_loc` varchar(3) NOT NULL,
  `member_group` smallint(4) unsigned NOT NULL,
  PRIMARY KEY (`upload_id`,`member_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: exp_upload_prefs
#

DROP TABLE IF EXISTS `exp_upload_prefs`;

CREATE TABLE `exp_upload_prefs` (
  `id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `name` varchar(50) NOT NULL,
  `server_path` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(100) NOT NULL,
  `allowed_types` varchar(3) NOT NULL DEFAULT 'img',
  `max_size` varchar(16) DEFAULT NULL,
  `max_height` varchar(6) DEFAULT NULL,
  `max_width` varchar(6) DEFAULT NULL,
  `properties` varchar(120) DEFAULT NULL,
  `pre_format` varchar(120) DEFAULT NULL,
  `post_format` varchar(120) DEFAULT NULL,
  `file_properties` varchar(120) DEFAULT NULL,
  `file_pre_format` varchar(120) DEFAULT NULL,
  `file_post_format` varchar(120) DEFAULT NULL,
  `cat_group` varchar(255) DEFAULT NULL,
  `batch_location` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `exp_upload_prefs` (`id`, `site_id`, `name`, `server_path`, `url`, `allowed_types`, `max_size`, `max_height`, `max_width`, `properties`, `pre_format`, `post_format`, `file_properties`, `file_pre_format`, `file_post_format`, `cat_group`, `batch_location`) VALUES (1, 1, 'Banner Images', '/home/boom4202/public_html/beanstoblossoms.com/images/banner-images/', 'http://www.beanstoblossoms.com/images/banner-images/', 'img', '', '', '', '', '', '', '', '', '', '', NULL);
INSERT INTO `exp_upload_prefs` (`id`, `site_id`, `name`, `server_path`, `url`, `allowed_types`, `max_size`, `max_height`, `max_width`, `properties`, `pre_format`, `post_format`, `file_properties`, `file_pre_format`, `file_post_format`, `cat_group`, `batch_location`) VALUES (2, 1, 'News Files', '/home/boom4202/public_html/beanstoblossoms.com/images/news/', 'http://www.beanstoblossoms.com/images/news/', 'all', '', '', '', '', '', '', '', '', '', '', NULL);
INSERT INTO `exp_upload_prefs` (`id`, `site_id`, `name`, `server_path`, `url`, `allowed_types`, `max_size`, `max_height`, `max_width`, `properties`, `pre_format`, `post_format`, `file_properties`, `file_pre_format`, `file_post_format`, `cat_group`, `batch_location`) VALUES (3, 1, 'Content Files', '/home/boom4202/public_html/beanstoblossoms.com/images/content-files/', 'http://www.beanstoblossoms.com/images/content-files/', 'all', '', '', '', '', '', '', '', '', '', '', NULL);
INSERT INTO `exp_upload_prefs` (`id`, `site_id`, `name`, `server_path`, `url`, `allowed_types`, `max_size`, `max_height`, `max_width`, `properties`, `pre_format`, `post_format`, `file_properties`, `file_pre_format`, `file_post_format`, `cat_group`, `batch_location`) VALUES (4, 1, 'Floral Images', '/home/boom4202/public_html/beanstoblossoms.com/images/floral/', 'http://www.beanstoblossoms.com/images/floral/', 'img', '', '', '', '', '', '', '', '', '', '', NULL);


#
# TABLE STRUCTURE FOR: exp_wygwam_configs
#

DROP TABLE IF EXISTS `exp_wygwam_configs`;

CREATE TABLE `exp_wygwam_configs` (
  `config_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `config_name` varchar(32) DEFAULT NULL,
  `settings` text,
  PRIMARY KEY (`config_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `exp_wygwam_configs` (`config_id`, `config_name`, `settings`) VALUES (1, 'Basic', 'YTo3OntzOjc6InRvb2xiYXIiO2E6ODp7aTowO3M6NDoiQm9sZCI7aToxO3M6NjoiSXRhbGljIjtpOjI7czo5OiJVbmRlcmxpbmUiO2k6MztzOjEyOiJOdW1iZXJlZExpc3QiO2k6NDtzOjEyOiJCdWxsZXRlZExpc3QiO2k6NTtzOjQ6IkxpbmsiO2k6NjtzOjY6IlVubGluayI7aTo3O3M6NjoiQW5jaG9yIjt9czo2OiJoZWlnaHQiO3M6MzoiMjAwIjtzOjE0OiJyZXNpemVfZW5hYmxlZCI7czoxOiJ5IjtzOjExOiJjb250ZW50c0NzcyI7YTowOnt9czo5OiJwYXJzZV9jc3MiO2I6MDtzOjEzOiJyZXN0cmljdF9odG1sIjtzOjE6InkiO3M6MTA6InVwbG9hZF9kaXIiO3M6MDoiIjt9');
INSERT INTO `exp_wygwam_configs` (`config_id`, `config_name`, `settings`) VALUES (2, 'Full', 'YTo2OntzOjc6InRvb2xiYXIiO2E6Mjk6e2k6MDtzOjY6IlNvdXJjZSI7aToxO3M6MzoiQ3V0IjtpOjI7czo0OiJDb3B5IjtpOjM7czo1OiJQYXN0ZSI7aTo0O3M6OToiUGFzdGVUZXh0IjtpOjU7czoxMzoiUGFzdGVGcm9tV29yZCI7aTo2O3M6NDoiVW5kbyI7aTo3O3M6NDoiUmVkbyI7aTo4O3M6NToiU2NheXQiO2k6OTtzOjQ6IkJvbGQiO2k6MTA7czo2OiJJdGFsaWMiO2k6MTE7czo2OiJTdHJpa2UiO2k6MTI7czoxMjoiUmVtb3ZlRm9ybWF0IjtpOjEzO3M6MTI6Ik51bWJlcmVkTGlzdCI7aToxNDtzOjEyOiJCdWxsZXRlZExpc3QiO2k6MTU7czo3OiJPdXRkZW50IjtpOjE2O3M6NjoiSW5kZW50IjtpOjE3O3M6MTA6IkJsb2NrcXVvdGUiO2k6MTg7czo0OiJMaW5rIjtpOjE5O3M6NjoiVW5saW5rIjtpOjIwO3M6NjoiQW5jaG9yIjtpOjIxO3M6NToiSW1hZ2UiO2k6MjI7czo1OiJUYWJsZSI7aToyMztzOjE0OiJIb3Jpem9udGFsUnVsZSI7aToyNDtzOjExOiJTcGVjaWFsQ2hhciI7aToyNTtzOjg6IlJlYWRNb3JlIjtpOjI2O3M6NjoiU3R5bGVzIjtpOjI3O3M6NjoiRm9ybWF0IjtpOjI4O3M6ODoiTWF4aW1pemUiO31zOjY6ImhlaWdodCI7czozOiIyMDAiO3M6MTQ6InJlc2l6ZV9lbmFibGVkIjtzOjE6InkiO3M6MTE6ImNvbnRlbnRzQ3NzIjthOjA6e31zOjEwOiJ1cGxvYWRfZGlyIjtzOjA6IiI7czoxMzoicmVzdHJpY3RfaHRtbCI7czoxOiJ5Ijt9');


