PageRenderTime 96ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 1ms

/_backkup/eh17362a.sql

https://bitbucket.org/sims/heartbeets
SQL | 3423 lines | 2352 code | 444 blank | 627 comment | 0 complexity | 96d69678c9f75862879a30cd75355b0a MD5 | raw file
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.3.10
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 192.168.75.2
  6. -- Generation Time: Apr 05, 2012 at 12:22 PM
  7. -- Server version: 5.1.41
  8. -- PHP Version: 5.3.2-1ubuntu4.10
  9. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  10. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  11. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  12. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  13. /*!40101 SET NAMES utf8 */;
  14. --
  15. -- Database: `eh17362a`
  16. --
  17. -- --------------------------------------------------------
  18. --
  19. -- Table structure for table `exp_accessories`
  20. --
  21. DROP TABLE IF EXISTS `exp_accessories`;
  22. CREATE TABLE `exp_accessories` (
  23. `accessory_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  24. `class` varchar(75) NOT NULL DEFAULT '',
  25. `member_groups` varchar(50) NOT NULL DEFAULT 'all',
  26. `controllers` text,
  27. `accessory_version` varchar(12) NOT NULL,
  28. PRIMARY KEY (`accessory_id`)
  29. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  30. --
  31. -- Dumping data for table `exp_accessories`
  32. --
  33. INSERT INTO `exp_accessories` (`accessory_id`, `class`, `member_groups`, `controllers`, `accessory_version`) VALUES
  34. (1, 'Expressionengine_info_acc', '1|5', 'addons_accessories|addons_extensions|addons_fieldtypes|addons_modules|addons_plugins|addons|admin_content|admin_system|content_edit|content_files_modal|content_files|content_publish|content|design|homepage|members|myaccount|tools_communicate|tools_data|tools_logs|tools_utilities|tools', '1.0');
  35. -- --------------------------------------------------------
  36. --
  37. -- Table structure for table `exp_actions`
  38. --
  39. DROP TABLE IF EXISTS `exp_actions`;
  40. CREATE TABLE `exp_actions` (
  41. `action_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  42. `class` varchar(50) NOT NULL,
  43. `method` varchar(50) NOT NULL,
  44. PRIMARY KEY (`action_id`)
  45. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=29 ;
  46. --
  47. -- Dumping data for table `exp_actions`
  48. --
  49. INSERT INTO `exp_actions` (`action_id`, `class`, `method`) VALUES
  50. (1, 'Comment', 'insert_new_comment'),
  51. (2, 'Comment_mcp', 'delete_comment_notification'),
  52. (3, 'Comment', 'comment_subscribe'),
  53. (4, 'Comment', 'edit_comment'),
  54. (5, 'Email', 'send_email'),
  55. (6, 'Mailinglist', 'insert_new_email'),
  56. (7, 'Mailinglist', 'authorize_email'),
  57. (8, 'Mailinglist', 'unsubscribe'),
  58. (9, 'Safecracker', 'submit_entry'),
  59. (10, 'Safecracker', 'combo_loader'),
  60. (11, 'Search', 'do_search'),
  61. (12, 'Channel', 'insert_new_entry'),
  62. (13, 'Channel', 'filemanager_endpoint'),
  63. (14, 'Channel', 'smiley_pop'),
  64. (15, 'Member', 'registration_form'),
  65. (16, 'Member', 'register_member'),
  66. (17, 'Member', 'activate_member'),
  67. (18, 'Member', 'member_login'),
  68. (19, 'Member', 'member_logout'),
  69. (20, 'Member', 'retrieve_password'),
  70. (21, 'Member', 'reset_password'),
  71. (22, 'Member', 'send_member_email'),
  72. (23, 'Member', 'update_un_pw'),
  73. (24, 'Member', 'member_search'),
  74. (25, 'Member', 'member_delete'),
  75. (26, 'Freeform', 'insert_new_entry'),
  76. (27, 'Freeform', 'retrieve_entries'),
  77. (28, 'Freeform', 'delete_freeform_notification');
  78. -- --------------------------------------------------------
  79. --
  80. -- Table structure for table `exp_captcha`
  81. --
  82. DROP TABLE IF EXISTS `exp_captcha`;
  83. CREATE TABLE `exp_captcha` (
  84. `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,
  85. `date` int(10) unsigned NOT NULL,
  86. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  87. `word` varchar(20) NOT NULL,
  88. PRIMARY KEY (`captcha_id`),
  89. KEY `word` (`word`)
  90. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  91. --
  92. -- Dumping data for table `exp_captcha`
  93. --
  94. -- --------------------------------------------------------
  95. --
  96. -- Table structure for table `exp_categories`
  97. --
  98. DROP TABLE IF EXISTS `exp_categories`;
  99. CREATE TABLE `exp_categories` (
  100. `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  101. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  102. `group_id` int(6) unsigned NOT NULL,
  103. `parent_id` int(4) unsigned NOT NULL,
  104. `cat_name` varchar(100) NOT NULL,
  105. `cat_url_title` varchar(75) NOT NULL,
  106. `cat_description` text,
  107. `cat_image` varchar(120) DEFAULT NULL,
  108. `cat_order` int(4) unsigned NOT NULL,
  109. PRIMARY KEY (`cat_id`),
  110. KEY `group_id` (`group_id`),
  111. KEY `cat_name` (`cat_name`),
  112. KEY `site_id` (`site_id`)
  113. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  114. --
  115. -- Dumping data for table `exp_categories`
  116. --
  117. -- --------------------------------------------------------
  118. --
  119. -- Table structure for table `exp_category_fields`
  120. --
  121. DROP TABLE IF EXISTS `exp_category_fields`;
  122. CREATE TABLE `exp_category_fields` (
  123. `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  124. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  125. `group_id` int(4) unsigned NOT NULL,
  126. `field_name` varchar(32) NOT NULL DEFAULT '',
  127. `field_label` varchar(50) NOT NULL DEFAULT '',
  128. `field_type` varchar(12) NOT NULL DEFAULT 'text',
  129. `field_list_items` text NOT NULL,
  130. `field_maxl` smallint(3) NOT NULL DEFAULT '128',
  131. `field_ta_rows` tinyint(2) NOT NULL DEFAULT '8',
  132. `field_default_fmt` varchar(40) NOT NULL DEFAULT 'none',
  133. `field_show_fmt` char(1) NOT NULL DEFAULT 'y',
  134. `field_text_direction` char(3) NOT NULL DEFAULT 'ltr',
  135. `field_required` char(1) NOT NULL DEFAULT 'n',
  136. `field_order` int(3) unsigned NOT NULL,
  137. PRIMARY KEY (`field_id`),
  138. KEY `site_id` (`site_id`),
  139. KEY `group_id` (`group_id`)
  140. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  141. --
  142. -- Dumping data for table `exp_category_fields`
  143. --
  144. -- --------------------------------------------------------
  145. --
  146. -- Table structure for table `exp_category_field_data`
  147. --
  148. DROP TABLE IF EXISTS `exp_category_field_data`;
  149. CREATE TABLE `exp_category_field_data` (
  150. `cat_id` int(4) unsigned NOT NULL,
  151. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  152. `group_id` int(4) unsigned NOT NULL,
  153. PRIMARY KEY (`cat_id`),
  154. KEY `site_id` (`site_id`),
  155. KEY `group_id` (`group_id`)
  156. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  157. --
  158. -- Dumping data for table `exp_category_field_data`
  159. --
  160. -- --------------------------------------------------------
  161. --
  162. -- Table structure for table `exp_category_groups`
  163. --
  164. DROP TABLE IF EXISTS `exp_category_groups`;
  165. CREATE TABLE `exp_category_groups` (
  166. `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  167. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  168. `group_name` varchar(50) NOT NULL,
  169. `sort_order` char(1) NOT NULL DEFAULT 'a',
  170. `exclude_group` tinyint(1) unsigned NOT NULL DEFAULT '0',
  171. `field_html_formatting` char(4) NOT NULL DEFAULT 'all',
  172. `can_edit_categories` text,
  173. `can_delete_categories` text,
  174. PRIMARY KEY (`group_id`),
  175. KEY `site_id` (`site_id`)
  176. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  177. --
  178. -- Dumping data for table `exp_category_groups`
  179. --
  180. -- --------------------------------------------------------
  181. --
  182. -- Table structure for table `exp_category_posts`
  183. --
  184. DROP TABLE IF EXISTS `exp_category_posts`;
  185. CREATE TABLE `exp_category_posts` (
  186. `entry_id` int(10) unsigned NOT NULL,
  187. `cat_id` int(10) unsigned NOT NULL,
  188. PRIMARY KEY (`entry_id`,`cat_id`)
  189. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  190. --
  191. -- Dumping data for table `exp_category_posts`
  192. --
  193. -- --------------------------------------------------------
  194. --
  195. -- Table structure for table `exp_channels`
  196. --
  197. DROP TABLE IF EXISTS `exp_channels`;
  198. CREATE TABLE `exp_channels` (
  199. `channel_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  200. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  201. `channel_name` varchar(40) NOT NULL,
  202. `channel_title` varchar(100) NOT NULL,
  203. `channel_url` varchar(100) NOT NULL,
  204. `channel_description` varchar(225) DEFAULT NULL,
  205. `channel_lang` varchar(12) NOT NULL,
  206. `total_entries` mediumint(8) NOT NULL DEFAULT '0',
  207. `total_comments` mediumint(8) NOT NULL DEFAULT '0',
  208. `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  209. `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  210. `cat_group` varchar(255) DEFAULT NULL,
  211. `status_group` int(4) unsigned DEFAULT NULL,
  212. `deft_status` varchar(50) NOT NULL DEFAULT 'open',
  213. `field_group` int(4) unsigned DEFAULT NULL,
  214. `search_excerpt` int(4) unsigned DEFAULT NULL,
  215. `deft_category` varchar(60) DEFAULT NULL,
  216. `deft_comments` char(1) NOT NULL DEFAULT 'y',
  217. `channel_require_membership` char(1) NOT NULL DEFAULT 'y',
  218. `channel_max_chars` int(5) unsigned DEFAULT NULL,
  219. `channel_html_formatting` char(4) NOT NULL DEFAULT 'all',
  220. `channel_allow_img_urls` char(1) NOT NULL DEFAULT 'y',
  221. `channel_auto_link_urls` char(1) NOT NULL DEFAULT 'n',
  222. `channel_notify` char(1) NOT NULL DEFAULT 'n',
  223. `channel_notify_emails` varchar(255) DEFAULT NULL,
  224. `comment_url` varchar(80) DEFAULT NULL,
  225. `comment_system_enabled` char(1) NOT NULL DEFAULT 'y',
  226. `comment_require_membership` char(1) NOT NULL DEFAULT 'n',
  227. `comment_use_captcha` char(1) NOT NULL DEFAULT 'n',
  228. `comment_moderate` char(1) NOT NULL DEFAULT 'n',
  229. `comment_max_chars` int(5) unsigned DEFAULT '5000',
  230. `comment_timelock` int(5) unsigned NOT NULL DEFAULT '0',
  231. `comment_require_email` char(1) NOT NULL DEFAULT 'y',
  232. `comment_text_formatting` char(5) NOT NULL DEFAULT 'xhtml',
  233. `comment_html_formatting` char(4) NOT NULL DEFAULT 'safe',
  234. `comment_allow_img_urls` char(1) NOT NULL DEFAULT 'n',
  235. `comment_auto_link_urls` char(1) NOT NULL DEFAULT 'y',
  236. `comment_notify` char(1) NOT NULL DEFAULT 'n',
  237. `comment_notify_authors` char(1) NOT NULL DEFAULT 'n',
  238. `comment_notify_emails` varchar(255) DEFAULT NULL,
  239. `comment_expiration` int(4) unsigned NOT NULL DEFAULT '0',
  240. `search_results_url` varchar(80) DEFAULT NULL,
  241. `ping_return_url` varchar(80) DEFAULT NULL,
  242. `show_button_cluster` char(1) NOT NULL DEFAULT 'y',
  243. `rss_url` varchar(80) DEFAULT NULL,
  244. `enable_versioning` char(1) NOT NULL DEFAULT 'n',
  245. `max_revisions` smallint(4) unsigned NOT NULL DEFAULT '10',
  246. `default_entry_title` varchar(100) DEFAULT NULL,
  247. `url_title_prefix` varchar(80) DEFAULT NULL,
  248. `live_look_template` int(10) unsigned NOT NULL DEFAULT '0',
  249. PRIMARY KEY (`channel_id`),
  250. KEY `cat_group` (`cat_group`),
  251. KEY `status_group` (`status_group`),
  252. KEY `field_group` (`field_group`),
  253. KEY `channel_name` (`channel_name`),
  254. KEY `site_id` (`site_id`)
  255. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
  256. --
  257. -- Dumping data for table `exp_channels`
  258. --
  259. 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`, `ping_return_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES
  260. (1, 1, 'departments', 'departments', 'http://heartbeets.ehclients.com/index.php', NULL, 'en', 12, 0, 1332853817, 0, NULL, 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, NULL, 'y', NULL, 'n', 10, '', '', 0),
  261. (2, 1, 'events', 'events', 'http://heartbeets.ehclients.com/index.php', '', 'en', 1, 0, 1326403552, 0, NULL, 1, 'open', 2, NULL, '', 'y', 'y', NULL, 'all', 'y', 'n', 'n', '', '', 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', '', 0, '', '', 'y', '', 'n', 10, '', '', 0),
  262. (3, 1, 'blog', 'blog', 'http://heartbeets.ehclients.com/index.php', NULL, 'en', 6, 0, 1333464847, 0, NULL, 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, NULL, 'y', NULL, 'n', 10, '', '', 0),
  263. (4, 1, 'careers', 'careers', 'http://heartbeets.ehclients.com/index.php', NULL, 'en', 1, 0, 1327699576, 0, NULL, 1, 'open', 4, 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, NULL, 'y', NULL, 'n', 10, '', '', 0),
  264. (5, 1, 'specials', 'specials', 'http://heartbeets.ehclients.com/index.php', NULL, 'en', 1, 0, 1330619968, 0, NULL, 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, NULL, 'y', NULL, 'n', 10, '', '', 0),
  265. (6, 1, 'news', 'news', 'http://heartbeets.ehclients.com/index.php', '', 'en', 5, 0, 1330631072, 0, NULL, 1, 'open', 6, 6, '', 'y', 'y', NULL, 'all', 'y', 'n', 'n', '', '', 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', '', 0, '', '', 'y', '', 'n', 10, '', '', 0),
  266. (10, 1, 'slider', 'slider', 'http://heartbeets.ehclients.com/index.php', NULL, 'en', 3, 0, 1328302587, 0, NULL, 1, 'open', 10, 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, NULL, 'y', NULL, 'n', 10, '', '', 0);
  267. -- --------------------------------------------------------
  268. --
  269. -- Table structure for table `exp_channel_data`
  270. --
  271. DROP TABLE IF EXISTS `exp_channel_data`;
  272. CREATE TABLE `exp_channel_data` (
  273. `entry_id` int(10) unsigned NOT NULL,
  274. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  275. `channel_id` int(4) unsigned NOT NULL,
  276. `field_id_1` text,
  277. `field_ft_1` tinytext,
  278. `field_id_2` text,
  279. `field_ft_2` tinytext,
  280. `field_id_3` text,
  281. `field_ft_3` tinytext,
  282. `field_id_4` text,
  283. `field_ft_4` tinytext,
  284. `field_id_5` text,
  285. `field_ft_5` tinytext,
  286. `field_id_6` text,
  287. `field_ft_6` tinytext,
  288. `field_id_8` int(10) DEFAULT '0',
  289. `field_dt_8` varchar(8) DEFAULT NULL,
  290. `field_ft_8` tinytext,
  291. `field_id_11` int(10) DEFAULT '0',
  292. `field_ft_11` tinytext,
  293. `field_dt_11` varchar(8) DEFAULT NULL,
  294. `field_id_18` text,
  295. `field_ft_18` tinytext,
  296. `field_id_19` text,
  297. `field_ft_19` tinytext,
  298. `field_id_21` text,
  299. `field_ft_21` tinytext,
  300. `field_id_22` text,
  301. `field_ft_22` tinytext,
  302. `field_id_24` text,
  303. `field_ft_24` tinytext,
  304. `field_id_25` text,
  305. `field_ft_25` tinytext,
  306. `field_id_26` text,
  307. `field_ft_26` tinytext,
  308. `field_id_27` text,
  309. `field_ft_27` tinytext,
  310. `field_id_28` int(10) DEFAULT '0',
  311. `field_dt_28` varchar(8) DEFAULT NULL,
  312. `field_ft_28` tinytext,
  313. `field_id_29` text,
  314. `field_ft_29` tinytext,
  315. `field_id_30` text,
  316. `field_ft_30` tinytext,
  317. `field_id_31` text,
  318. `field_ft_31` tinytext,
  319. `field_id_32` text,
  320. `field_ft_32` tinytext,
  321. `field_id_33` int(10) DEFAULT '0',
  322. `field_dt_33` varchar(8) DEFAULT NULL,
  323. `field_ft_33` tinytext,
  324. PRIMARY KEY (`entry_id`),
  325. KEY `channel_id` (`channel_id`),
  326. KEY `site_id` (`site_id`)
  327. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  328. --
  329. -- Dumping data for table `exp_channel_data`
  330. --
  331. 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_8`, `field_dt_8`, `field_ft_8`, `field_id_11`, `field_ft_11`, `field_dt_11`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`, `field_id_21`, `field_ft_21`, `field_id_22`, `field_ft_22`, `field_id_24`, `field_ft_24`, `field_id_25`, `field_ft_25`, `field_id_26`, `field_ft_26`, `field_id_27`, `field_ft_27`, `field_id_28`, `field_dt_28`, `field_ft_28`, `field_id_29`, `field_ft_29`, `field_id_30`, `field_ft_30`, `field_id_31`, `field_ft_31`, `field_id_32`, `field_ft_32`, `field_id_33`, `field_dt_33`, `field_ft_33`) VALUES
  332. (37, 1, 1, 'The Grocery items we carry at Heart Beets have been personally selected by our team to meet our standards for quality and nutritional value. Whether our customers have special dietary needs or are simply looking to live a more holistic and healthful lifestyle, they can be find an outstanding selection here at Heart Beets. While taste is very important, we also scrutinize products in terms of nutrition. Our main buyer is both a "Foodie" and Registered Holistic Nutritionist who strongly feels that there is no place for products containing artificial additives, artificial preservatives, chemical flavours and colours, hydrogenated and trans-fats or artificial sweetners at Heart Beets. The whole buying team is quick to reject products that we feel will ultimately harm the body, no matter how good the fake ingredients they contain might make them taste. We passionately believe that Real Food is what empowers the mind, body and spirit.\n\n', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  333. (38, 1, 1, 'The term “Grass Fed” refers to meat from animals that roam on pasturelands. Grass is the natural diet of ruminant animals, although in the modern feedlot they are fed primarily on genetically modified grain and soy, along with other cheap fillers including garbage and chicken waste. Grass-fed meat costs more but contains more vitamins and less fat, and is better for animals and the environment. Pasture-raised animals release less methane into the air and their grazing has been shown to increase the amount and hardiness of native plants. Grass feeding serves a dual purpose: improving land quality and restoring wildlife habitat, while producing high-quality meat.\n\n\nThe use of antibiotics and growth-promoting hormones is common where poultry, hogs, and cattle are raised, so it’s important to shop wisely for meat. Organic meat is the healthiest choice because it is free of these drugs. Some experts believe that humans who ingest these antibiotics risk developing drug-resistant bacteria. Another problem with the antibiotics used for the animals is that they are ending up in our water supply, with unknown consequences.\n\n\nWhile there is no organic labeling for fish and seafood, there are labels and standards you should look for. Many species of fish and shellfish are threatened because of overfishing, so the first term to look for at the fish market is “sustainable.”\n\nThe question of whether to buy farmed or wild isn’t simple to answer. It depends on the type of seafood and the location of the farm, among other factors. Environmentally responsible fish farms can produce sustainable fish like catfish and clams while others, located in polluted waters and operated with no environmental consideration or oversight, are more harmful. \n\n<img src="{filedir_10}stock-photo-raw-salmon-on-a-cutting-board-76190782.jpg" alt="raw salmon" height="126" width="213" />', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  334. (4, 1, 3, '', NULL, '', NULL, '<h2>Food for Thought</h2>\n<blockquote>Why can’t you just put coffee beans into a filter, run hot water over them, and brew coffee? Theoretically you can. The question is, when does it become the finished, brewed beverage known as coffee? If you simply soak beans in hot water, eventually the water turns brown. By the time it becomes dark, rich coffee, it will be cold. Someone discovered many years ago that mashing the beans into smaller pieces (what we call grinding) speeds up the brewing process.</blockquote>\n\nThe Turks, who pushed millstones around to grind grain, get credit for inventing the coffee grinder. They used one corrugated plate and one flat plate. One was stationary; the other moved. This system created almost powder-like, very fine grinds. Coarser grinds became popular with more modern brewing methods, as inventors realized the flavor connection between grinding beans to a certain size and the finished coffee’s taste. Other coffee-drinking countries adapted grinds to fit their brewing methods. Today, grinding’s role is straightforward. The finer ground the beans, the more intense flavor they produce and the less time it takes to extract that flavor. This is because with finer ground coffee, hot water touches more surface area during brewing.\n\nA coffee grinder’s only job is to granulize coffee beans into exact and (theoretically) same-sized particles. Some coffee lovers mistakenly think that a range of particle sizes, like a mix of light and dark roasted beans, offers a variety of tastes. Not true! Each brewing method has its own perfect particle size based on how long the particles will touch the grounds. The longer the brew time is, the larger the particles should be. Smaller-than- ideal particles add bitterness due to overextraction. Larger-than-ideal particles underextract, causing weak flavor and waste.\n\nInvest in a good grinder to enjoy the best coffee possible. Get in the habit of grinding just before you brew. This will result in a more pungent aroma and fresher tasting coffee. Plus, some of the best available roasted coffees will open up to you, as some of the characters who roast these precious beans won’t even consider grinding them before shipping. \n\n<strong>Grinding For The Roast</strong>\n\nDoes roast darkness affect grind? The short answer is yes. Darker roasts need to be ground slightly coarser. A coffee bean’s brittleness increases the longer and darker it roasts and the more moisture driven from it. The increased brittleness causes it to fracture into smaller particles than a lighter roast. This increases the coffee’s bitterness and strength. Consider setting your grinder a notch coarser for dark roasted beans.\n\n\n\n <img src="{filedir_8}stock-photo-coffee-on-the-table-63633430.jpg" alt="Coffee on table" height="148" width="199" />\n \n\n \n<h2>Blade Grinder</h2>\nMost inexpensive grinders have spinning blades, hence the name blade grinder. These are notoriously bad for grinding coffee.\n\nTo use a blade grinder, pour a premeasured amount of beans into the top, which contains the spinning propeller. As you push a power button, the blades begin to spin, cutting through the beans. The blade’s whirling motion helps create an air vacuum that draws the beans into the propeller’s path.\n\nIn practice, this random method often requires shaking the grinder to get any semblance of equal grinding. Even as the grounds get finer and appear more consistent, microscopic examination or a screen test will reveal a wide variance. Also, using a blade grinder causes its tiny motor, located just under the curved metal plate, to heat up the grounds. Many of these grinders come with warnings not to run the motor for more than one minute or risk heat affecting your grounds enough to actually release some taste and aroma.\n\nIf you’re not already sold on not using one of these grinders, consider this: They are unpredictable in terms of how fine they grind. One time, it may produce coffee fine for a drip coffee maker. Another time, it may be too coarse or too fine. For espresso, the exact 200 to 250 micron grind particle size for the thirty-second extraction is so critical that you really can’t consider using a blade grinder.\n\n<h2>Burr Grinders</h2>\nBurr grinders, sometimes called disc or mill grinders, are the kind to use. You set the grinder’s range, which then limits size by the distance between the two grinding pieces. Set the gap between the two discs or cones by click stops (stops on your grinder) so you can simply dial your required fineness and assure batch-to-batch consistency.\n\nHow does a burr grinder work? A rotating flat metal disc or conical cone fits inside a second, stationary disc or cone. As a chute between the two grinding pieces feeds the beans, flutes that become progressively finer cut them. The coarse surface on one of the discs then grinds them. This design grinds the beans much more consistently than a blade.\n', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 1326225027, 'UM5', 'none', 0, 'none', '', '', 'xhtml', '', 'none', '', 'none', '{filedir_8}stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626_(1).jpg', 'none', '', 'none', 'Why can’t you just put coffee beans into a filter, run hot water over them, and brew coffee? Theoretically you can. The question is, when does it become the finished, brewed beverage known as coffee? If you simply soak beans in hot water, eventually the water turns brown. By the time it becomes dark, rich coffee, it will be cold. Someone discovered many years ago that mashing the beans into smaller pieces (what we call grinding) speeds up the brewing process.', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  335. (62, 1, 1, 'Coffee is one of the two most common aromatic beverages, the other being tea. An aromatic beverage is defined as one generating a pleasant odor from plants or spices. \n\n<blockquote>Conventional coffee is usually grown in open fields requiring intensive treatment with chemicals. Organic coffee, however, is grown under trees, so that the beans receive shade and nitrogen, and leaf litter fertilizes the soil naturally. Because of the intensely harmful impact on birds of the chemicals used to grow conventional coffee, organic fair trade–certified coffee is recommended by the Audubon Society, the American Bird Conservancy, and the Smithsonian Migratory Bird Center. \n\nLuckily, fair trade organic coffee is ubiquitous these days at many cafes and retailers, and not only does it taste good, but you can enjoy your daily brew even more knowing that fair trade growers in farmer-run cooperatives are guaranteed a fair market price for their coffee. The benefits of fair trade coffee are threefold: a better life for the families in Africa and Latin America who grow the coffee; fewer pesticides released into the environment and near workers; and superior-tasting coffee.\n</blockquote>\n\n<img src="{filedir_10}ethical-bean-contest-erin-ireland.jpeg" alt="ethical bean" height="348" width="300" />\n\nTea, Russian-style, is served in a glass with lemon. English-style is often with milk. The five o’clock English tea with small sandwiches, scones, cakes, and so forth is said to have been created by the Duchess of Bedford in the early 1800s, when dinners were very late. Most Indian teas are black, with Assam and Darjeeling among the best known.\n\n', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  336. (9, 1, 6, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, 'Life can be busy. Take time out to relax with a warm cup of tea while learning about the health benefits of some of the world''s finest teas. Taste teas that can help stabilize your moods, energize your mind or soothe your stomach. While they''re steeping, enjoy some for Real Food Company''s favorite ready-made snacks to pair with tea that fits into even the busiest of schedules.', 'xhtml', 0, '', 'none', 0, 'none', '', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  337. (10, 1, 6, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, 'Maecenas sed diam eget risus varius blandit sit amet non magna. Vestibulum id ligula porta felis euismod semper. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Sed posuere consectetur est at lobortis.', 'xhtml', 0, '', 'none', 0, 'none', '', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  338. (11, 1, 6, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, 'Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vestibulum id ligula porta felis euismod semper. Cras mattis consectetur purus sit amet fermentum. Nulla vitae elit libero, a pharetra augue. Donec sed odio dui.', 'xhtml', 0, '', 'none', 0, 'none', '', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  339. (14, 1, 2, '', NULL, 'Heart Beets has various events planned for the year. Please check back with us periodically for updates on events.', 'xhtml', '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, '', 'none', 0, 'none', '', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '1', 'none', '', 'none', 0, '', 'none', '', 'xhtml', 'Heart Beets has various events planned for the year. Please check back with us periodically for updates on events.', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  340. (71, 1, 1, '<img src="{filedir_11}shutterstock_28660328.jpg" alt="fruits and vegetables" class="imgLeft" />\n<div class="clear"></div>\nAt Heart Beets, you can choose from a wide variety of fresh,organic and/or local fruit and vegetables year round. We believe that vegetables (and fruits) impart color and sometimes unique flavors and textures to meals. Many people reach for a whole fruit or fresh fruit salad first thing in the morning or as a snack. We also think of fruits as nature''s desserts and history tells us that their popularity has remained strong over many years. For example, Even in the times of the pharaohs, fruits were transported, sometimes with great difficulty, across continents and seas to eager consumers. Early explorers and migrating peoples carried fruits as well as the seeds to all parts of the world, so now many are grown in areas far from their original home. For centuries, dates were cultivated in North Africa, but now are also grown in California. Pineapples were once indigenous to South America. Lemons and limes originated in India. Oranges, now a daily component in many North American breakfasts, came from southeastern Asia. The kiwifruit from New Zealand is another unique fruit to have spread from its original home to North American markets. \n\nSometimes it is difficult to tell the difference between a fruit and a vegetable. For example, is a tomato a fruit or a vegetable?\n\nBotanically, the tomato grows from a plant’s flower, so it is technically a fruit even though it is not sweet. Squash, okra, green beans, and cucumbers, too, are botanically fruits. Nuts are actually fruits,\nalso, but they are seeds instead of fleshy fruits, so they are grouped separately. Fruits and components of fruits are important contributors to the growth of the functional foods industry. Some, but not all, fruits are rich in certain types of antioxidants, fiber, vitamins, and/or minerals.\n\nEpidemiologic studies suggest diets rich in fruits and vegetables are associated with decreased rates of certain diseases. Fruits and vegetables are rich in dietary antioxidants that have purported health benefits—especially in possibly reducing the risk of heart disease and cancer. These antioxidants protect against oxidative damage by being oxidized themselves, thereby protecting the structural and functional integrity of living material. The most abundant types of phytochemicals contained in fruits and vegetables are vitamin C, carotenoids (including carotene, lycopene, xanthophylls, lutein, zeaxanthin) and phenolics. Phenolics can be found in highly colored fruits such as blueberries, blackberries, grapes, black currants, and elderberries, among others. Blueberries were consumed by World War I pilots who claimed the fruit improved their vision. Studies show that lutein and zeaxanthin may lower the risk of age-related macular degeneration—one of the leading causes of blindness in the elderly.\n\n\n\n\nWebster’s dictionary refers to vegetables as “any plant” whose parts are used as food. In practice, a vegetable is the edible part of a plant (raw or cooked) accompanying the main course of a meal. Imagine a meal consisting of just meat, dairy products, and a starch. One method of classifying vegetables is to define them by the part of the plant from which they originated. For example vegetables may be derived from almost any part of a plant: roots (carrots, beets, turnips, and radishes); bulbs (onions and garlic); stems (celery and asparagus); leaves (spinach and lettuce); seeds (beans, corn, and peas); and even flowers (broccoli and cauliflower). In addition, there are foods that are routinely called vegetables and used as vegetables, but that are actually fruits. Botanically, fruits are the part of the plant that contains its seeds—specifically, the mature ovaries of plants. If it derives from a flower, then it is usually a fruit. The fruits most often seen masquerading as vegetables include tomatoes, squash, cucumbers, avocados, okra, eggplant, olives, water chestnuts, and peppers. \n\nResearch now indicates that vegetables (and fruits) may carry a vast array of phytochemicals which are non-nutritive compounds in plants that possess health-protective benefits. The cruciferous vegetables (broccoli, brussels sprouts, cabbage, cauliflower, kale, mustard greens, rutabaga, kohlrabi, and turnips) as well as tomatoes, strawberries, pineapples, and green peppers, contain phytochemicals that appear to inhibit cancer in laboratory animals.\n\n\nVegetables can be prepared by dry-heat methods (baking, roasting, sautéing, or deep-frying) or moist-heat methods (simmering, steaming, braising, or microwaving). Serving styles also vary and include plain, buttered, creamed, au gratin, glazed, scalloped, stuffed, or in soufflés, omelets, and cream soups. Regardless of the cooking method or serving style selected, some general principles governing the handling and preparation of vegetables should be followed:\n\nBuying. Purchase only the freshest possible vegetables in amounts that will be used within a few days.\nStorage. Store vegetables immediately at the appropriate temperature and do not leave them out of storage for any length of time unless they are being prepared. Left overs should be refrigerated immediately and used within 3 days.\nWashing. All vegetables must be thoroughly washed but washing should be quick, because most vegetables absorb excess water when soaked. Many root vegetables, except beets and baked potatoes, are peeled of the outer layer that is normally washed. \nCooking liquid. Vegetables should be cooked in as small an amount of liquid as possible; in many cases,\nleftover liquids may be saved for stock. Using a microwave minimizes the amount of water used.\nTiming. Th e cooking time should be as short as possible; most vegetables when heated too long will undergo undesirable changes in quality. Vegetables should be served promptly after cooking.\n\nNutrient Retention\n\nCareful preparation of vegetables conserves important nutrients. Because leaching is the greatest cause of mineral loss in vegetables, it is important to cook them using as little water as possible. In many instances, it is better to avoid immersing them in water altogether and instead revert to steaming,\nbraising, baking, or microwaving. Other ways to minimize nutrient loss are to leave the skin on whenever possible, to cut vegetables into fewer, larger pieces rather than many smaller pieces, and to cook just to the point of doneness and no further.\n\nBaking\nSome vegetables—especially potatoes, winter squash, onions, stuffed green peppers, and tomatoes—can be baked whole at approximately 350°F (177°C).\n\nRoasting\n\nIncreasingly popular are roasted vegetables such as peppers, onions, and eggplant, which are generally sprinkled with oil and roasted at 375°F–425°F (191°C–218°C) until tender and well browned. Almost all vegetables can be roasted, and this technique creates a very flavorful vegetable as a result of its softer texture and sweeter taste after caramelization. A quick boil in salted water (parboiling) of potatoes prior to roasting will ensure that they will cook all the way through.\n\nStir-Frying \n\nStir-frying combines a little oil with the vegetable’s natural moisture. For best results, tender, quick-cooking pieces such as mushrooms are cut into large, uniform slices, whereas less tender pieces such\nas carrots and celery are cut to expose the greatest amount of surface area to the heat. Although not necessary, a tight cover over the pan or wok will trap steam and reduce heating time,\nretaining maximum nutrients, color, and texture, although the vegetables will not brown as readily in the presence of trapped steam.\n\nSteaming\n\nSteaming sometimes takes a little longer than simmering (about 5 to 10 minutes more), but provides better retention of fl avor, texture, and color. For steaming, a loose, shallow layer of vegetables is\nplaced in a perforated basket inserted in a pan just above simmering water and cooked, tightly sealed, until just tender. Pressure cookers are not recommended, because their high temperatures make vegetables mushy.', 'br', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  341. (36, 1, 1, 'We at Heart Beets understand that Pet Parents are just as concerned about the well-being of their furry family members as they are about their own health. That’s why you’ll find our Pet department with products chosen with an eye to the same high standards as we have in the rest of our store: healthful, all natural, and environmentally friendly. We have everything from all natural pet foods to treats, and supplements to keep your pets happy, healthy, and \n\n\n', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  342. (33, 1, 1, 'Heart Beets Natural Market is more than a retail store. It is a place where you can find a network of people who can help you achieve your best health.. While we don’t diagnose, our goal is to provide you with a broad spectrum view of what may be beneficial so that you and your health care provider can then move forward on your wellness journey.', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  343. (34, 1, 1, 'Our body care products are all cruelty free, botanically based, and free of artificial dyes and fragrances. Have you ever looked at the label on a conventional body care product? You won’t recognize most of the ingredients, and the lists are long. We look for products with simple, understandable ingredient lists and from companies that we trust.\n\nIt is important to understand that the skin is the body’s largest organ. It is also the thinnest and most permeable. Whatever you put on to your skin is absorbed directly into the bloodstream, and can be disruptive to the body''s natural functions if it has harsh chemicals.\n\nThese natural beauty products help you achieve your full potential in both wellness and beauty.', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  344. (35, 1, 1, '<img src="{filedir_11}shutterstock_46492357.jpg" alt="baby care" />\n\nDonec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. Maecenas sed diam eget risus varius blandit sit amet non magna.\n\nDonec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. Maecenas sed diam eget risus varius blandit sit amet non magna.\n\n', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  345. (39, 1, 1, 'When you don’t have time to make it from scratch, we’ve got delicious and healthful solutions to your busy schedule. In our frozen section you will find organic and natural pizzas, breads, frozen meals, fruits and vegetables, as well as a variety of frozen desserts. We carry vegetarian and vegan products, as well as Gluten-free choices.\n\nFrozen desserts have remained popular through the ages. One of the earliest known frozen desserts was made with winter snow (from the mountains of what is now Turkey) mixed with fruit and drizzled with molasses. In AD 62, the Roman emperor Nero sent slaves to the mountains to retrieve ice, which was then flavored with nectar, fruit pulp, and honey to be enjoyed by him and his court. Marco Polo brought the formula for water ices to Europe from Asia, where they had been enjoyed for at least a thousand years.\n\nGeorge Washington and Thomas Jefferson were both reputed to have made ice cream in their homes, and Dolly Madison is known to have served ice cream at the White house in 1812. By 1840, ice cream had moved from palaces and mansions to the streets of America’s largest cities. The ice cream scoop was invented 66 years later, and by 1921 ice cream was served to immigrants arriving on Ellis Island as part of their first American meal. Ice cream and other commercially frozen desserts, from simple water ices to elaborate ice cream cakes, are probably the most commonly consumed desserts in North America. Newer frozen desserts or modifications of old ones appear on the market regularly in the form of pies, mousses, cakes, parfaits, pudding sticks, frozen yogurt, popsicles, and new flavors of ice cream.\n\nGelato \nGelato has been called the “Italian word for ice cream”. Just as there are many ways to make ice cream, so there are numerous methods of producing gelato. As a result of these differing preparation methods, gelato tends to be creamier in the North of Italy, but icier in the South of the country. Compared to ice cream, gelato contains less cream and more milk, which makes it denser because milk incorporates less air than cream. It is also much more smooth and creamy than ice cream because it is churned more slowly and served at higher temperatures.\n\nSherbet\nSherbets (oft en incorrectly pronounced sherbert in American English) fall into a category of frozen desserts that is separate from ice creams. The base of these frozen desserts is iced,\nsweetened fruit juice or purée, so their fat content is lower than that of low-fat ice cream. The law states that they must contain less than 2% milk fat. Sherbets are oft en made with egg whites and/or\ngelatin to give them a creamy consistency. To compensate for the body lost because there is less fat, more sugar is added to the basic milk and fruit juice mixture.\n\nSorbet\nSorbets differ from sherbets in that they are made without fat, eggs, gelatin, or dairy products (milk solids-not-fat) and as such have a harder consistency than either ice cream or sherbet. They consist of puréed fruit or fruit flavoring and a sugar syrup made of equal amounts of sugar and water simmered\ntogether. Countless flavors are possible and include any of the fruits or combinations of fruits.\n\nStill Frozen Dessert\nA still-frozen dessert is one that is not stirred during freezing. Examples include mousses, bombes, and parfaits. The light, airy, smooth, velvety texture of these desserts comes from the incorporation\nof whipped egg whites or whipped cream into the mixture. The foam structure acts as a physical barrier, preventing large ice crystals from forming.', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  346. (40, 1, 1, '<h2>Dairy and Eggs</h2>\n\nMilk to yogurt to butter we only sell Hormone( rBGH) free, antibiotic free dairy items. Whether you pick Whipped butter, stick butter, clarified butter, soy and soy free alternatives – none of which are hydrogenated which means you’ll find no trans fats here. Try some yogurt with fruit on the bottom, fruit on the top, or Greek style. We also have a variety of eggs - local, white, brown, free-run, organic, omega enriched, egg whites and more.\n\n<h2>Dairy Free Alternatives</h2>\n\n\nAt Heart Beets, we love to offer choices to support every special diet. That’s why we stock such a wide variety of Dairy Free Foods:\n\n<ul><li>Casein and Lactose Free Cheese</li>\n<li>Milk & Cream Alternatives</li>\n<li>Non-dairy Whipped Dessert Toppings</li>\n<li>Velvety Dairy Free Chocolate</li>\n<li>Decadent Refrigerated Desserts</li>\n<li>Soy and Coconut Based Cultured Yogurt & Kefir Products</li></ul>\n\n\n\nThe history of the use of milk from various animals dates so far back that no one knows when the practice actually started. Cows provide almost all of the milk consumed in North America, but goats rank lose second in supplying milk to other regions such as Norway, Switzerland, the Mediterranean area, Latin America, and parts of Asia and Africa. Goat’s milk is low in folate and vitamins D, C, and B12. Some people in Spain, the Netherlands, Italy, and the Balkans also obtain milk from sheep. Camels provide milk for some people in the Middle East and central Asia, and reindeer are used for milk in the arctic region. The llama in South America sometimes serves as a source of milk, as does the water buffalo in parts of the Philippines, Asia, and India.\n\nButtermilk\n\nButtermilk contains little or no butterfat. Sweet natural buttermilk originally was the liquid left over aft r fresh cream had been chilled and churned to produce butter. Buttermilk is used in many baked products to add moisture and tanginess. Low- or full-fat buttermilk can be used, with the higherfat products providing more richness. Natural buttermilk is often dried and used in baked products and ice cream because the phospholipids obtained from the fat-droplet membranes, which are broken down during churning, make it an excellent emulsifier. Now, most commercially available buttermilk is cultured by adding Streptococcus lactis bacteria to pasteurized nonfat, reduced-fat, or low-fat milk. The bacterial cultures in buttermilk convert the sugar (lactose) into lactic acid, which is the reason that buttermilk tastes more sour than regular milk. As the milk becomes more acidic, some of the proteins precipitate out because of its lower pH. This is clabbering, an older term used to describe the thickening of milk . The end result is that buttermilk is more sour, more bubbly, and thicker than regular milk. If a recipe calls for buttermilk, a substitute can be made by adding 1 tablespoon of white vinegar or lemon juice to 1 cup of milk and letting the mixture stand for 10 minutes. \n\nSoy Milk\n\nSoy milk is a milk-like product that is not from any mammal, but rather is made from soybeans that have been soaked, ground, and strained. Soy milk has been known for centuries in China and Japan and is believed to have been developed in China around 150 BC. Now it is consumed as a milk-like liquid, is used to make tofu (the cheese of soy milk), and is incorporated into some infant formulas. Some vegetarians use it as a substitute for cow’s milk. As useful as it is, soy milk is lacking in certain nutrients. Only soy milks fortifi ed with methionine (an essential amino acid), calcium, and vitamin B12 should\nbe substituted for cow’s milk for growing children. On the other hand, it also lacks the carbohydrate lactose, which makes it ideal for people with lactose intolerance. \n\nRice Milk Another milk suitable for people with lactose intolerance is rice milk. It contains no lactose because it is made primarily from brown rice, filtered water, and a small amount of brown rice sweetener. Even though rice milk is made from rice, not all rice milks are gluten free, which would not be acceptable to people with celiac disease, an immune system condition that makes them allergic to gluten. Although rice contains no gluten, some rice milks are made using barley enzymes to convert the carbohydrates in brown rice to naturally occurring sugars. This is why rice milk is somewhat sweeter than soy milk. In addition, the flavor of either rice or soy milk can be enhanced by adding vanilla flavoring, making these milks even more acceptable to consumers than their plain counterparts. \n\n Almond Milk Similar to soy and rice milk is almond milk, a milky drink made from ground almonds. The short shelf life of milk before the age of refrigeration meant that milk did not stay fresh very long. During medieval times, cooks turned to a milky liquid produced by grinding almonds or walnuts. Homemade versions can be made by combining ground almonds and water in a blender. Commercial almond milk products are available in plain, vanilla, or chocolate flavors. \n\nOther Nondairy Milks \n\nHemp milk is a newer plant-based milk alternative. Th is nondairy milk with a slightly nutty flavor and a “putty” color is made by mixing water with the crushed seeds of the hemp plant.\nGrain milk may be made from oats, barley, wheat, rye, or fl our mixed with water. It has a lower protein content and higher carbohydrate content than dairy milk.\nCoconut milk can be used as a cream substitute in some recipes. Coconut milk is not milk, but is rich, thick, and creamy enough to add texture to soups and desserts. It is most commonly used in Southeast Asian cuisine, particularly Thai. Coconut cream is the thickest portion, which separates to the surface in canned coconut milk. “Lite” coconut milk is canned coconut milk with water added. Regardless of the fat content (which can be high), canned coconut milk (usually 5- to 16-ounce cans) needs to be shaken well to mix the “cream” with the water. Aft er opening, coconut milk can be stored in a sealed container in the refrigerator for approximately 2–5 days. \nNuts, such as hazelnuts and others can also be ground and mixed with water to make non-dairy milk.\n\nYogurt\nThe term “yogurt” comes from the Turkish name “Yoghurmak,” meaning, “to thicken”. This name reflects the thickening process that turns milk into yogurt. Yogurt is a fermented product created when bacteria are added to milk. These bacteria ferment the lactose in milk to lactic acid, a process that has been used in fermented dairy foods since prehistory. These bacteria influence the acidity, texture, and shelf life of the dairy products to which they are added. Traditionally, bacteria were naturally present and thus considered natural components. Now, these same bacteria may be added during the manufacturing process, but the end result is the same. People in the Middle East have been eating yogurt for thousands of years. This smooth, semisolid, fermented dairy product can be made from whole, reduced-fat, or fat-free milks. Firm yogurt is known as the set style, whereas a more runny, semiliquid consistency is characteristic of stirred yogurt. Yogurt drinks are also gaining in popularity. Yogurt is produced by mixing two types of bacteria, Lactobacillus bulgaricus and Streptococcus thermophilous, and adding them to pasteurized, homogenized milk. The whole mixture, including the bacteria, is held at a warm temperature (108°F–115°F/42°C– 46°C) to allow fermentation to develop the desired consistency, flavor, and acidity.\n\nAlthough the milk used to make yogurt is usually slightly higher in lactose because of the addition of milk solids not-fat, fermentation decreases the amount of lactose to 4% . During fermentation, the bacteria convert lactose to lactic acid, increasing the acidity. In addition, folate (a B vitamin) levels increase as a natural by-product of bacterial growth. Active Culture Yogurts Once the yogurt has reached the desired consistency, the fermentation and accompanying changes caused by the bacteria are discontinued. To accomplish this, bacterial growth can be inhibited by either chilling or heating the yogurt. If the yogurt is chilled, the culture remains alive, whereas the heated yogurt’s cultures are destroyed. Yogurts containing live bacteria are labeled “with active yogurt cultures,” “living yogurt cultures,” or “contains active cultures.” Only yogurt containing viable cultures is recommended for people with lactase deficiency or those taking antibiotics. Consuming fermented milk products containing live cultures reportedly helps restore the normal intestinal bacteria eliminated by antibiotics, and has been associated with the treatment of diarrhea for centuries. Intestinal bacteria are beneficial because they help to produce some B vitamins and vitamin K.\n\nOther Ingredients Added to Yogurt After fermentation, several ingredients, including gelatin and non-fat dried milk, may be added to yogurt to create a firmer texture, reduce the perception of acidity, or add color. The addition of sweeteners such as sugar, honey, fruit, fruit extracts, flavorings, and alternative sweeteners has increased the popularity of yogurt.Yogurt with fruits blended throughout is called Swiss- or French-style yogurt,whereas yogurt with fruit on the bottom is known as sundae style. Yogurt is the most common vehicle for probiotics (e.g., Lactobacillus and Bifidobacterium) and prebiotics . \n\nProbiotics Live microbial food ingredients (i.e., bacteria) that have a beneficial effect on human health. \n\nPrebiotics Non-digestible food ingredients [generally fibers such as fructooligosaccharides (FOS) and inulin] that support the growth of probiotics.\n\nThe suggestion that probiotics have a positive impact on health by improving the intestine’s microbial balance is attributed to the Nobel Prize-winning Russian scientist Elie Metchnikoff (1845–1916), who suggested that the long, healthy lives of Bulgarian peasants were due to their consumption of fermented milk products . Since then, it has been suggested that probiotics benefit health by relieving diarrhea and inflammation of the stomach and intestines; combating food allergies and certain cancers; and even by boosting immunity. Probiotics are theorized to exert their beneficial effects in several ways. They are known to create a healthy microbial balance in the intestines, aid digestion by producing helpful enzymes, prevent the attachment of harmful bacteria either directly as a barrier or indirectly through mucin (a mucoprotein) production, and stimulate immune function.\n\nScientific research into the health benefits of probiotics has grown rapidly. The most well-recognized benefit of probiotics is the promotion of general digestive health and wellness. Other areas that have been studied in clinical trials include inflammatory bowel conditions, infant diarrhea, antibiotic associated diarrheas (C. dificile colitis), infant colic, bacterial vaginosis, irritable bowel syndrome, oral health, lactose intolerance, immune support, and gut transit time.\n\n\nKefir\n\nKefi r is a fermented milk product and probiotic that originated in Russia. It is sometimes referred to as “the champagne of milk” because of its bubbly, fizzy nature. Kefir is made by adding bacteria, Lactobacillus caucasius, and yeast, Saccharomyces kefir and Torula kefir, to milk. The milk is initially heated to 185°F (85°C) for half an hour and then cooled to 73°F (23°C), which allows the milk to ferment to a soft, foamy curd. The strong, tangy, sour taste comes from the formation of lactic acid.\n\nCheese is a preserved food made from the curd, or solid portion, of milk. Adding certain enzymes and or acid to any type of milk causes the casein proteins and fat to coagulate and separate from the liquid portion, or whey. No one really knows when humans first started to consume cheese, but legend links its discovery to an anonymous shepherd who decided to carry milk in a bag made from a sheep’s stomach. The sun warmed the bag, activating the natural rennin enzyme in the stomach lining and turning the liquid milk into a semi-solid clump. To the shepherd’s surprise, the resulting mass was quite palatable. It probably did not take long after that for people to realize how useful this natural process would be in providing an edible food that could be transported. Cheeses classified according to their moisture content are described as fresh, soft, semi-hard, hard, and very hard.\n\n• Fresh. Fresh cheeses, also called country cheeses, are soft , whitish in color, and mild tasting. They are\nhighly perishable, because their moisture content is over 80 percent, and they are not aged. They include cottage cheese and cream cheese, and ricotta, farmer’s, pot, and feta cheeses.\n• Soft . Soft cheeses, such as Brie, Camembert, and many Hispanic cheeses, are aged for just a short time. Water content ranges from 50 to 75 percent.\n• Semi-hard. Semi-hard cheeses contain 40 to 50 percent moisture. The best-known examples are\nRoquefort, blue, Muenster, brick, Gouda, Edam, Port du Salut, Gorgonzola, and Stilton.\n• Hard. The moisture content of hard cheeses ranges from 30 to 40 percent. Cheddar and Swiss are\nexamples of hard cheeses. \n• Very hard. Parmesan and Romano are classifi ed among the hardest cheeses. Very hard cheeses will not slice easily, but are easily grated or crumbled. They are aged the longest and have a water content\nof approximately 30 percent. \n\nWhy are cheddar cheeses labeled mild, medium, or sharp?\nLike wine, the finished character of these cheeses is determined not only by the original ingredients, but by the maturation process. The flavor of cheddar cheese can range from mild to sharp depending on\nthe duration of aging. Although the time cheddar is held for aging varies by the cheese company, the general guideline is that mild cheddar is aged for at least 60 days, medium for 3 to 6 months, sharp for a minimum of 9 months, and extra sharp for at least 15 months.\n\nEggs are one of the most versatile of foods to prepare. In their most basic form, they can be cooked and eaten on their own—fried, scrambled, poached, and boiled. The unique physical and chemical properties of eggs also make them an invaluable ingredient in many prepared dishes. Just a few examples of how eggs are used in food preparation are listed below:\n• Giving a foam structure to cakes and meringues\n• Thickening custards and puddings \n• Adding color to lemon meringue pie and eggnog\n• Emulsifying mayonnaise and hollandaise sauce\n• Leavening soufflés and popovers\n• Binding ingredients in meatloaf and casseroles\n• Coating foods prior to breading\n• Glazing pastries and breads\n• Clarifying liquids for soups\n\nWhile not originally considered a functional food, eggs are now promoted as a beneficial addition to our normal diet. Eggs are an excellent source of many nutrients—protein, fat, vitamins, minerals, and water—and possibly beneficial nonnutrients—choline, lutein, and zeaxanthin—although they contain very little carbohydrate or fiber. An average large egg provides about 75 calories (kcal), primarily from fat and protein.\n\nProtein. One large egg contains approximately 7 grams of complete protein—4 grams from the white and 3 from the yolk. As a life-sustaining protein, the quality of protein in eggs is so high that it has become the standard by which researchers rate all other foods. As a result, the egg is often used as a reference protein.\n\nFat. One egg yolk contains approximately 5 grams of fat, predominantly in the form of triglycerides, phospholipids, and cholesterol. The fat is approximately 47 percent monounsaturated (2 grams), 37 percent saturated (slightly under 2 grams), and 16 percent polyunsaturated (slightly under 1 gram). Also available are eggs that are high in omega-3 (polyunsaturated) fatty acids, which are widely considered to be beneficial in the prevention of a variety of medical conditions, including heart disease and\n inflammatory disorders.\n\nVitamins and Minerals. Eggs are rich in certain vitamins and minerals. They are one of the few foods containing all the fat-soluble vitamins—A, D, E, and K—and naturally containing vitamin D. Certain water-soluble B vitamins, found primarily in the white, are also supplied by the egg in relatively high \n\nIn addition, eggs are a source of several minerals, especially selenium, iodine, zinc, and iron. Unfortunately, the iron in egg yolks is not very available because it binds to phosvitin, an egg protein that inhibits absorption. When eggs are overcooked, the iron in the yolk interacts with the small amount of sulfur found in the egg white to produce ferrous sulfide, which causes a characteristic strong off-odor.\n\nShelf Life of Refrigerated Eggs \n\nRefrigerated whole eggs should stay fresh for about 1 month. Separated egg yolks may be stored submerged in water in the refrigerator, but should be used within 2 days. Egg whites kept tightly covered in a glass container will last up to 4 days.\n\nButter is made from churned cream that has generally been ripened by lactic acid–producing bacteria. Its taste may vary according to the locale and the feed of the dairy cows. In France, for example, butter from Normandy is highly regarded. The Greeks and Romans used butter mostly medically, as a dressing for wounds. By the Middle Ages, it was being sold as food in local markets and preserved in cool salt water.\nFood cooked in butter tastes better and, browned, has a nicer color. Butter will blacken when heated too much, however, giving a burnt taste. Clarified butter will not and is sometimes called for in recipes that involve sautéing delicate things, such as skinned chicken breasts or fish.\n\nClarified butter is effortless to make. In a pan, gently heat a stick or two, perhaps cut into pieces, and skim off the foam that forms. Then carefully pour off the clear liquid which is the clarified butter, leaving the milky residue in the pan. In small crocks, it will keep in the refrigerator for weeks.\nButter in the refrigerator should be covered, since it absorbs odors\n\n\n', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none');
  347. 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_8`, `field_dt_8`, `field_ft_8`, `field_id_11`, `field_ft_11`, `field_dt_11`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`, `field_id_21`, `field_ft_21`, `field_id_22`, `field_ft_22`, `field_id_24`, `field_ft_24`, `field_id_25`, `field_ft_25`, `field_id_26`, `field_ft_26`, `field_id_27`, `field_ft_27`, `field_id_28`, `field_dt_28`, `field_ft_28`, `field_id_29`, `field_ft_29`, `field_id_30`, `field_ft_30`, `field_id_31`, `field_ft_31`, `field_id_32`, `field_ft_32`, `field_id_33`, `field_dt_33`, `field_ft_33`) VALUES
  348. (41, 1, 1, 'At Heart Beets we respect and support the unique ways that people choose to nourish themselves with food. There are some who have found a healthful way to enjoy meals without any baked goods and others who find that \n\nThese days there are some great companies out there who have found ways to make baked items delicious and nutritious. They use real and good quality ingredients that people recognize and are conscientious about keeping out any artificial additives, chemical perservatives, high-fructose corn syrup, trans fats and pesticides. Many companies also offer gluten-free or yeast-free or vegan options as well. Sometimes \nyou might want to bake at home and other times you might want a time-saving option such as a nutritious loaf of bread for everyday meal planning, cupcakes for an event at your child''s school, an organic fruit-filled pie for a pot-luck or some healthful cookies to share with friends at work and we have all of these in our Baked Good section and so much more. ', 'xhtml', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  349. (48, 1, 4, '', NULL, '', NULL, '', 'xhtml', 'Thank you for your interest in working at Heart Beets Natural Market. We are looking for enthusiastic, customer-service oriented, health-conscious individuals to be a part of our team. We are currently accepting resumes for various positions at the store. Applicants should have a good retail background and a strong interest in the natural and organic products industry. We offer competitive wages, flexible hours, staff discounts, opportunities for growth and a pleasant work environment. Please select a position below and attach your resume. Alternatively, you can send an email with a resume to employment@heartbeets.ca. We will review your information and resume. All applicants will be given equal consideration. Only those selected will be contacted.\n\n', 'xhtml', '', NULL, '', NULL, 0, NULL, 'none', 1332387436, 'none', 'UM5', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', 'Thank you for your interest in working at Heart Beets Natural Market. We are looking for enthusiastic, customer-service oriented, health-conscious individuals to be a part of our team. We are currently accepting resumes for various positions at the store. Applicants should have a good retail background and a strong interest in the natural and organic products industry. We offer competitive wages, flexible hours, staff discounts, opportunities for growth and a pleasant work environment. Please select a position below and attach your resume. Alternatively, you can send an email with a resume to employment@heartbeets.ca. We will review your information and resume. All applicants will be given equal consideration. Only those selected will be contacted.\n', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  350. (57, 1, 10, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '"We are indeed much more than what we eat, but what we eat can help us be much more than what we are."', 'xhtml', '', 'none', '{filedir_7}slider1.jpg', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  351. (56, 1, 10, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, 'Flexible Hours\nCompetitive Wages\nStaff Store Discounts', 'xhtml', '1', 'none', '{filedir_7}shutterstock_76366750b.jpg', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  352. (58, 1, 3, '', NULL, '', NULL, '<h2>Brewing Tea</h2>\n\nMood, Flavour or Purpose? Someone thinking of brewing tea might be influenced on the choice of tea by any or all of these factors. As our team gets Heart Beets ready for its opening, some of us find ourselves wanting strong black teas which not only bolster us mentally and physically for those long work-days but the full-body, delicous taste is a welcoming treat and keeps us feeling good as we tackle the big and small tasks on our to-do lists.\n\nIn our group we support each other with a personal mantra which many people may have heard before "Progress not Perfection". This allows us to celebrate even the tiny successes and keep moving forward in our goals even when everything does not fall into place in a perfect or ideal way. When it comes to brewing black tea, however, we have to admit that we feel that we are getting very close to perfection because we follow a fantastic tried and true method. Below we share with you some of the tips and techniques that we use. We expect you will benefit from trying them. \n\nWhen preparing black tea, it is best to use Distilled or Reverse Osmosis water is best because minerals and chlorination are not present to interfere with the tea’s flavor. Heat the water to just below the boiling point (212°F/100°C), and pour it over a tea bag or 1 teaspoon of loose black tea per 6-ounce cup. Allow the tea to steep for 3 to 5 minutes, then remove the tea bag. You can now have the tea hot or use ice to make iced tea. (more on this topic below).\n\nIn any case, it is important to avoid boiling the water or steeping the leaves too long, both of which will extract more of the bitter compounds, increase the degree of astringency, and elevate caffeine concentration. Some people think that if they want a strong tea they should leave the tea bag in for more than 5 minutes. Actually, stronger teas can be prepared by increasing the amount of tea leaves rather than the brewing time, because the longer the tea steeps, the more bitter it will become. The addition of milk decreases the bitterness of tea because milk proteins bind the astringent tannic acids. \n\nIf you want to enjoy black tea but are worried about having too much caffeine, the caffeine content of tea can be reduced by 50% to 75% if the tea bags are soaked in cold water overnight.\n \n\nWhen it comes to "clean taste" we mentioned above that purified, good quality water makes a difference, as does the vessel you brew the tea in . Using glass, pottery, china, or stainless steel teapots (or tea cups) will keep metallic tastes to a minimum. The teapot should always be covered to prevent the escape of volatile compounds.\n\nIced Tea\n\nIt starts out hot, prepared with double the amount of tea leaves used to brew tea to be consumed hot, and it can be poured over ice cubes immediately or allowed to cool before the ice is added. Sun tea is a popular means of creating iced tea. This is made by placing 8 to 10 regular-size tea bags in a 1-gallon jar of cold water and setting it out in the sun for 2 to 4 hours. The bags are then removed and the brew refrigerated.\n\nOvernight tea can be made by placing 6 regular-size tea bags in 1 quart of cold water, covering the brew, and placing it in the refrigerator for at least 8 hours. Fruit-flavored and herbal teas also make good iced teas. Flavored ice cubes made of citrus, cranberry, or other fruit juice add a special taste to iced teas.\n\nSugar and lemon are often added to iced tea. Lemon combats the astringency and lightens the tea by bleaching the tannins. It also prevents the tea from clouding by creating an acidic environment, which inhibits the precipitation of compounds formed by caffeine and the aflavins. “Readyto- drink” iced teas were introduced in 1991 and are available unsweetened or sweetened, in green and white tea varieties, and flavored.\n\n<img src="{filedir_8}shutterstock_80795062.jpg" alt="iced tea" />\n\nTo your health and happiness,\n\nThe Heart Beets Team', 'xhtml', '', NULL, '', NULL, '', NULL, 1328112955, 'UM5', 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '{filedir_8}shutterstock_1716929_thumb.jpg', 'none', '', 'none', 'Mood, Flavour or Purpose? Someone thinking of brewing tea might be influenced on the choice of tea by any or all of these factors. As our team gets Heart Beets ready for its opening, some of us find ourselves wanting strong black teas which not only bolster us mentally and physically for those long work-days but the full-body, delicous taste is a welcoming treat and keeps us feeling good as we tackle the big and small tasks on our to-do lists.', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  353. (59, 1, 3, '', NULL, '', NULL, 'How strong are you? This is really the bottom line when it comes to your health and quality of life. Every moment there are forces acting upon us from our environment to the people we interact with and our strength and resiliency are constantly being tested. So what does this have to do with cake? Well we usually reach for food and beverages (usually the caffeinated kind) to fortify us when we face various challenges and sometimes those foods are actually adding to our stress burdens. \n\nOne of our reasons for opening <strong>Heart Beets Natural Market</strong>, was to be able to offer customers delicious foods and high quality supplements that would actually be supporting their physical, mental, emotional and spiritual health when they consumed them. We wanted to provide our customers with nutritious, natural and/or organic items such as fresh produce, high quality packaged goods, hot and cold beverages, refrigerated and frozen products because we know that <strong><i>Food affects everything in our lives – our mood, our energy level, the proper functioning of our brain, heart and other organs, the way we look, how gracefully we age, how quickly we heal from injuries, how long we live, how healthy we are and how strong we are.</i> </strong>\n \nOur lives are busier and more stressful than ever and many people are looking for healthful foods to prepare and consume which make them feel good about the choices they are making for themselves and their loved ones. The place to find these gems is at <strong>Heart Beets</strong>. The products we sell are free of chemicals, artificial colours and flavours or synthetic additives and preservatives, harmful fats, pesticides and fake ingredients. By consuming these high quality, healthful items in your day, you can reach for that cake we sell - made with real ingredients - and truly enjoy it guilt free. \n\n<h2>So go ahead – savour each morsel – you deserve it!</h2>\n\nTo your health and happiness,\n\nThe Heart Beets Team\n', 'xhtml', '', NULL, '', NULL, '', NULL, 1328114161, 'UM5', 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '{filedir_8}shutterstock_88449322_thumb.jpg', 'none', '', 'none', 'How strong are you? This is really the bottom line when it comes to your health and quality of life. Every moment there are forces acting upon us from our environment to the people we interact with and our strength and resiliency are constantly being tested. So what does this have to do with cake? Well we usually reach for food and beverages (usually the caffeinated kind) to fortify us when we face various challenges and sometimes those foods are actually adding to our stress burdens. ', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  354. (61, 1, 10, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, 'Beet greens are delectable, They cook to tenderness within minutes. Steam them and serve with the cooked beets, or chop and use them in a soup. ', 'xhtml', '', 'none', '{filedir_7}shutterstock_56956804.jpg', 'none', '', NULL, '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  355. (63, 1, 6, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, 'Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.\n\nCras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam quis risus eget urna mollis ornare vel eu leo. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.\n\nEtiam porta sem malesuada magna mollis euismod. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue.', 'xhtml', 0, NULL, 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', 'Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.\n\nCras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam quis risus eget urna mollis ornare vel eu leo. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.\n\nEtiam porta sem malesuada magna mollis euismod. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue.', 'xhtml', '', 'xhtml', 1333470591, 'UM5', 'none'),
  356. (67, 1, 5, '', NULL, '', NULL, '', 'xhtml', '', NULL, 'Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.\n\nEtiam porta sem malesuada magna mollis euismod. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Maecenas faucibus mollis interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'br', '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '1', 'none', '', 'xhtml', '', 'none', '{filedir_12}example5.jpg', 'none', 1332899608, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', 'Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.\n\nEtiam porta sem malesuada magna mollis euismod. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Maecenas faucibus mollis interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'xhtml', 0, '', 'none'),
  357. (68, 1, 6, '', NULL, '', NULL, '', 'xhtml', '', NULL, '', NULL, 'Cras justo odio, dapibus ac facilisis in, egestas eget quam. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Sed posuere consectetur est at lobortis.\n\nNulla vitae elit libero, a pharetra augue. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Maecenas faucibus mollis interdum. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.', 'xhtml', 0, NULL, 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  358. (73, 1, 3, '', NULL, '', NULL, '<img src="{filedir_11}Nova_The_Pluto_Files.jpg" alt="pluto" height="200" width="620" />\n\nCurabitur blandit tempus porttitor. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.\n\n<img src="{filedir_9}stock-photo-7159831-sneaking-a-cookie.jpg" alt="mid" class="imgMid" height="110" width="73" />', 'xhtml', '', NULL, '', NULL, '', NULL, 1332452855, 'UM5', 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '{filedir_8}Nova_The_Pluto_Files.jpg', 'none', '', NULL, 'Pluto and Mickey are going to be signing autographs', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  359. (72, 1, 3, '', NULL, '', NULL, 'The Heart Beets Crew has been seeing a lot of late nights recently while we get all the "behind-the-scenes" projects completed so that the store can open on time and successfully. With our brains and bodies working over-time we sometimes crave something sweet after sunset and sometimes good quality chocolate is the treat for the evening. However one evening last week, a team member pulled out a bunch of jars from her backpack and placed them the table where we had been gathered around for a very late meeting. One label read as "Jam", another as "Preserves" and a third as "Marmalade". There was also some apple butter. They were all organic and did not contain any ingredients we could not pronounce but some did have cane sugar. Jars were opened and she gave us a summary on the various types of fruit spreads as we sampled a tiny bit of each. We have included some of what we learned that night for you below.\n\nThe most commonly consumed fruit spreads are fruit preserves, jams, conserves, jellies, marmalades, and butters. Except for bananas and melons, most fruits lend themselves well to these methods of preservation. The type of fruit spread is determined by the amount of added sugar and the form of the fruit—as juice, or mashed, sieved, whole, halved, or in chunks. For example:\n\n<ul>\n<li>Preserve are made from whole fruit, halves, or chunks.</li>\n<li>Jams are made from ground or mashed whole cooked fruit.</li>\n<li>Conserves are made from a mixture of fruits (usually citrus or at least with some citrus) to which nuts and raisins, but no sugar, are generally added.</li>\n<li>Jellies are made from the juice of cooked fruit, with added sugar and pectin. For a clear jelly, the juice is first strained.</li>\n<li>Marmalades contain juice with thin slices of fruit and rind, especially citrus fruits.</li>\n<li>Butters are thick and smooth fruit preserves are made from sieved, long-cooked fruit. They are usually less sweeter than jams and jellies and do not keep as well as other fruit spread forms.</li>\n</ul>\n\nContinuing on with the events of the late night meeting - we brewed some high quality, loose leaf green and white teas, made some toast from our favorite natural and organic breads and got the raw nut butters from the cooler. The fruity sweetness combined with the healthful nuts and crunchy toast was just what everyone needed to finish up that day''s tasks. The white and green teas were delicate and yet revitalizing and the leftover cooled teas were poured from the teapots into glass bottles and taken home to use instead of just tap water for a refreshing and high-antioxidant night-time face wash.\n\nWe will be giving the customers at Heart Beets all kinds of information about the products we sell, including the benefits of various ingredients, how to enjoy items as they are or different ways to prepare them. We will also give you unique ways to use foods for body care regimens in upcoming classes such as green, white or red teas as a face wash because our team is very mindful of what we put on the skin. \n\nWe are thrilled to have such a friendly, intelligent and helpful crew at Heart Beets and since embarking on the journey to open the store have bonded together even more and learned so much from each other. We look forward to interacting with our customers and sharing our ideas as well as having them share their thoughts and experiences with us - "Jammin jammin...we hope you like jammin too!"\n\n', 'xhtml', '', NULL, '', NULL, '', NULL, 1332270159, 'UM5', 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '{filedir_8}shutterstock_93294181_test.jpg', 'none', '', NULL, 'The Heart Beets Crew has been seeing a lot of late nights recently while we get all the "behind-the-scenes" projects completed so that the store can open on time and successfully. With our brains and bodies working over-time we sometimes crave something sweet after sunset and sometimes good quality chocolate is the treat for the evening. However one evening last week, a team member pulled out a bunch of jars from her backpack and placed them the table where we had been gathered around for a very late meeting. One label read as "Jam", another as "Preserves" and a third as "Marmalade". There was also some apple butter. They were all organic and did not contain any ingredients we could not pronounce but some did have cane sugar. Jars were opened and she gave us a summary on the various types of fruit spreads as we sampled a tiny bit of each. We have included some of what we learned that night for you below.', 'xhtml', '', 'none', '', 'none', 0, '', 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  360. (77, 1, 1, '<p>The "Title" of the page is place above as a level 1 heading. To make your own level 1 heading...<p>\n<h1>Wrapped it in an (h1) TAG</h1>\n<p>This is paragraph text wrapped in the (p) TAG. You can stop reading. Lorem ipsum dolor sit amet, at est tota minim vocent. Ad meis laudem per, odio mnesarchum id sed, ad mea debet phaedrum eloquentiam. Ius laoreet referrentur ei, errem assueverit disputando nec ea. <strong>This is bold text.</strong> Ei quo elit cibo blandit, ex eam tacimates iudicabit.</p>\n<h2>This is a level 2 heading. Wrapped it in an (h2) TAG.</h2>\n<p><img src="{filedir_10}stock-photo-raw-salmon-on-a-cutting-board-76190782.jpg" alt="sample_image" height="126" width="213" class="imgRight"/>\nThe image to the right is aligned right by using (class="imagRight") with in the (img) TAG. You can stop reading. Lorem ipsum dolor sit amet, at est tota minim vocent. Ad meis laudem per, odio mnesarchum id sed, ad mea debet phaedrum eloquentiam. Ius laoreet referrentur ei, errem assueverit disputando nec ea. <strong>This is bold text.</strong> Ei quo elit cibo blandit, ex eam tacimates iudicabit.</p>\n<p><a href="http://www.simsadvertising.com">This is a link.</a>, ut eum menandri erroribus, id nonumes placerat volutpat ius. Duo illum patrioque no, solum appellantur mea ne. Te persecuti disputationi mel. Pro et duis ubique, doming ancillae ad vim, ut nec elitr labores fastidii. His no etiam consectetuer, in vis verear malorum concludaturque, nisl offendit epicurei ea usu.</p>\n<p><img src="{filedir_10}stock-photo-raw-salmon-on-a-cutting-board-76190782.jpg" alt="sample_image" height="126" width="213" class="imgLeft"/>\nThe image to the left is aligned right by using (class="imagLeft") with in the (img) TAG. You can stop reading. Lorem ipsum dolor sit amet, at est tota minim vocent. Ad meis laudem per, odio mnesarchum id sed, ad mea debet phaedrum eloquentiam. Ius laoreet referrentur ei, errem assueverit disputando nec ea. <em>This is italic text.</em> Ei quo elit cibo blandit, ex eam tacimates iudicabit.</p>\n<h2>Bullet List<h2>\n<p>This type of list is wrapped in a (ul) TAG and each list item is wrapped in a (li) TAG.</p>\n<ul><li>Coffee</li><li>Milk</li></ul>\n<p>Veniam populo pertinax cu eos, ut eum menandri erroribus, id nonumes placerat volutpat ius. Duo illum patrioque no, solum appellantur mea ne. Te persecuti disputationi mel. Pro et duis ubique, doming ancillae ad vim, ut nec elitr labores fastidii. His no etiam consectetuer, in vis verear malorum concludaturque, nisl offendit epicurei ea usu.</p>\n<blockquote>Pullouts or Quotes look like this, and are great for text to stand out from the rest and have a break in long text blocks. You can stop reading. Lorem ipsum dolor sit amet, at est tota minim vocent. Ad meis laudem per, odio mnesarchum id sed, ad mea debet phaedrum eloquentiam. Ius laoreet referrentur ei, errem assueverit disputando nec ea. Id vis natum habemus.</blockquote>\n<p>Lorem ipsum dolor sit amet, at est tota minim vocent. Ad meis laudem per, odio mnesarchum id sed, ad mea debet phaedrum eloquentiam. Ius laoreet referrentur ei, errem assueverit disputando nec ea. Id vis natum habemus. Ei quo elit cibo blandit, ex eam tacimates iudicabit.</p>', 'br', '', NULL, '', 'xhtml', '', NULL, '', NULL, '', NULL, 0, NULL, 'none', 0, 'none', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 0, NULL, 'none', '', 'xhtml', '', 'xhtml', '', 'xhtml', '', 'xhtml', 0, '', 'none'),
  361. (80, 1, 3, '', NULL, '', NULL, 'The Heart Beets Crew has been seeing a lot of late nights recently while we get all the "behind-the-scenes" projects completed so that the store can open on time and successfully. With our brains and bodies working over-time we sometimes crave something sweet after sunset and sometimes good quality chocolate is the treat for the evening. However one evening last week, a team member pulled out a bunch of jars from her backpack and placed them the table where we had been gathered around for a very late meeting. One label read as "Jam", another as "Preserves" and a third as "Marmalade". There was also some apple butter. They were all organic and did not contain any ingredients we could not pronounce but some did have cane sugar. Jars were opened and she gave us a summary on the various types of fruit spreads as we sampled a tiny bit of each. We have included some of what we learned that night for you below.\n<br/><br/>\nThe most commonly consumed fruit spreads are fruit preserves, jams, conserves, jellies, marmalades, and butters. Except for bananas and melons, most fruits lend themselves well to these methods of preservation. The type of fruit spread is determined by the amount of added sugar and the form of the fruit—as juice, or mashed, sieved, whole, halved, or in chunks. For example:\n\n<ul>\n<li>Preserve are made from whole fruit, halves, or chunks.</li>\n<li>Jams are made from ground or mashed whole cooked fruit.</li>\n<li>Conserves are made from a mixture of fruits (usually citrus or at least with some citrus) to which nuts and raisins, but no sugar, are generally added.</li>\n<li>Jellies are made from the juice of cooked fruit, with added sugar and pectin. For a clear jelly, the juice is first strained.</li>\n<li>Marmalades contain juice with thin slices of fruit and rind, especially citrus fruits.</li>\n<li>Butters are thick and smooth fruit preserves are made from sieved, long-cooked fruit. They are usually less sweeter than jams and jellies and do not keep as well as other fruit spread forms.</li>\n</ul>\n\n<h3>heres a header</h3>\nContinuing on with the events of the late night meeting - we brewed some high quality, loose leaf green and white teas, made some toast from our favorite natural and organic breads and got the raw nut butters from the cooler. The fruity sweetness combined with the healthful nuts and crunchy toast was just what everyone needed to finish up that day''s tasks. The white and green teas were delicate and yet revitalizing and the leftover cooled teas were poured from the teapots into glass bottles and taken home to use instead of just tap water for a refreshing and high-antioxidant night-time face wash.\n\n<h2>heres a header</h2>\nWe will be giving the customers at Heart Beets all kinds of information about the products we sell, including the benefits of various ingredients, how to enjoy items as they are or different ways to prepare them. We will also give you unique ways to use foods for body care regimens in upcoming classes such as green, white or red teas as a face wash because our team is very mindful of what we put on the skin. \nWe are thrilled to have such a friendly, intelligent and helpful crew at Heart Beets and since embarking on the journey to open the store have bonded together even more and learned so much from each other. We look forward to interacting with our customers and sharing our ideas as well as having them share their thoughts and experiences with us - "Jammin jammin...we hope you like jammin too!"\n', 'xhtml', '', NULL, '', NULL, '', NULL, 1333468447, 'UM5', 'none', 0, NULL, NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', NULL, 'tester', 'xhtml', '', NULL, '', NULL, 0, NULL, NULL, '', NULL, '', NULL, '', NULL, '', NULL, 0, '', 'none');
  362. -- --------------------------------------------------------
  363. --
  364. -- Table structure for table `exp_channel_entries_autosave`
  365. --
  366. DROP TABLE IF EXISTS `exp_channel_entries_autosave`;
  367. CREATE TABLE `exp_channel_entries_autosave` (
  368. `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  369. `original_entry_id` int(10) unsigned NOT NULL,
  370. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  371. `channel_id` int(4) unsigned NOT NULL,
  372. `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  373. `pentry_id` int(10) NOT NULL DEFAULT '0',
  374. `forum_topic_id` int(10) unsigned DEFAULT NULL,
  375. `ip_address` varchar(16) NOT NULL,
  376. `title` varchar(100) NOT NULL,
  377. `url_title` varchar(75) NOT NULL,
  378. `status` varchar(50) NOT NULL,
  379. `versioning_enabled` char(1) NOT NULL DEFAULT 'n',
  380. `view_count_one` int(10) unsigned NOT NULL DEFAULT '0',
  381. `view_count_two` int(10) unsigned NOT NULL DEFAULT '0',
  382. `view_count_three` int(10) unsigned NOT NULL DEFAULT '0',
  383. `view_count_four` int(10) unsigned NOT NULL DEFAULT '0',
  384. `allow_comments` varchar(1) NOT NULL DEFAULT 'y',
  385. `sticky` varchar(1) NOT NULL DEFAULT 'n',
  386. `entry_date` int(10) NOT NULL,
  387. `dst_enabled` varchar(1) NOT NULL DEFAULT 'n',
  388. `year` char(4) NOT NULL,
  389. `month` char(2) NOT NULL,
  390. `day` char(3) NOT NULL,
  391. `expiration_date` int(10) NOT NULL DEFAULT '0',
  392. `comment_expiration_date` int(10) NOT NULL DEFAULT '0',
  393. `edit_date` bigint(14) DEFAULT NULL,
  394. `recent_comment_date` int(10) DEFAULT NULL,
  395. `comment_total` int(4) unsigned NOT NULL DEFAULT '0',
  396. `entry_data` text,
  397. PRIMARY KEY (`entry_id`),
  398. KEY `channel_id` (`channel_id`),
  399. KEY `author_id` (`author_id`),
  400. KEY `url_title` (`url_title`),
  401. KEY `status` (`status`),
  402. KEY `entry_date` (`entry_date`),
  403. KEY `expiration_date` (`expiration_date`),
  404. KEY `site_id` (`site_id`)
  405. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=174 ;
  406. --
  407. -- Dumping data for table `exp_channel_entries_autosave`
  408. --
  409. -- --------------------------------------------------------
  410. --
  411. -- Table structure for table `exp_channel_fields`
  412. --
  413. DROP TABLE IF EXISTS `exp_channel_fields`;
  414. CREATE TABLE `exp_channel_fields` (
  415. `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  416. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  417. `group_id` int(4) unsigned NOT NULL,
  418. `field_name` varchar(32) NOT NULL,
  419. `field_label` varchar(50) NOT NULL,
  420. `field_instructions` text,
  421. `field_type` varchar(50) NOT NULL DEFAULT 'text',
  422. `field_list_items` text NOT NULL,
  423. `field_pre_populate` char(1) NOT NULL DEFAULT 'n',
  424. `field_pre_channel_id` int(6) unsigned DEFAULT NULL,
  425. `field_pre_field_id` int(6) unsigned DEFAULT NULL,
  426. `field_related_to` varchar(12) NOT NULL DEFAULT 'channel',
  427. `field_related_id` int(6) unsigned NOT NULL DEFAULT '0',
  428. `field_related_orderby` varchar(12) NOT NULL DEFAULT 'date',
  429. `field_related_sort` varchar(4) NOT NULL DEFAULT 'desc',
  430. `field_related_max` smallint(4) NOT NULL DEFAULT '0',
  431. `field_ta_rows` tinyint(2) DEFAULT '8',
  432. `field_maxl` smallint(3) DEFAULT NULL,
  433. `field_required` char(1) NOT NULL DEFAULT 'n',
  434. `field_text_direction` char(3) NOT NULL DEFAULT 'ltr',
  435. `field_search` char(1) NOT NULL DEFAULT 'n',
  436. `field_is_hidden` char(1) NOT NULL DEFAULT 'n',
  437. `field_fmt` varchar(40) NOT NULL DEFAULT 'xhtml',
  438. `field_show_fmt` char(1) NOT NULL DEFAULT 'y',
  439. `field_order` int(3) unsigned NOT NULL,
  440. `field_content_type` varchar(20) NOT NULL DEFAULT 'any',
  441. `field_settings` text,
  442. PRIMARY KEY (`field_id`),
  443. KEY `group_id` (`group_id`),
  444. KEY `field_type` (`field_type`),
  445. KEY `site_id` (`site_id`)
  446. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=34 ;
  447. --
  448. -- Dumping data for table `exp_channel_fields`
  449. --
  450. 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_related_to`, `field_related_id`, `field_related_orderby`, `field_related_sort`, `field_related_max`, `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
  451. (1, 1, 1, 'department_body', 'department_body', 'class="imgRight" : floats image to right of column\nclass="imgLeft" : floats image to left of column\nclass="imgMid" : positions image in the middle.\n"clear" forces everything under it.\n"break" adds a line break (= to a return)\n(no class will position the image in response to its surroundings)\n\n*all images entered in the body content must be uploaded to "free_layout"', 'textarea', '', '0', 0, 0, 'channel', 1, 'title', 'desc', 0, 12, 128, 'y', 'ltr', 'y', 'n', 'br', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  452. (2, 1, 2, 'events_body', 'events_body', 'class="imgRight" : floats image to right of column\nclass="imgLeft" : floats image to left of column\nclass="imgMid" : positions image in the middle.\n"clear" forces everything under it.\n"break" adds a line break (= to a return)\n(no class will position the image in response to its surroundings)\n\n*all images entered in the body content must be uploaded to "free_layout"', 'textarea', '', '0', 0, 0, 'channel', 1, 'title', 'desc', 0, 12, 128, 'y', 'ltr', 'y', 'n', 'br', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  453. (3, 1, 3, 'blog_body', 'blog_body', 'class="imgRight" : floats image to right of column\nclass="imgLeft" : floats image to left of column\nclass="imgMid" : positions image in the middle.\n"clear" forces everything under it.\n"break" adds a line break (= to a return)\n(no class will position the image in response to its surroundings)\n\n*all images entered in the body content must be uploaded to "free_layout"', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 12, 128, 'y', 'ltr', 'y', 'n', 'xhtml', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  454. (4, 1, 4, 'careers_body', 'careers_body', 'class="imgRight" : floats image to right of column\nclass="imgLeft" : floats image to left of column\nclass="imgMid" : positions image in the middle.\n"clear" forces everything under it.\n"break" adds a line break (= to a return)\n(no class will position the image in response to its surroundings)\n\n*all images entered in the body content must be uploaded to "free_layout"', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 12, 128, 'y', 'ltr', 'y', 'n', 'br', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  455. (5, 1, 5, 'specials_body', 'specials_body', 'class="imgRight" : floats image to right of column\nclass="imgLeft" : floats image to left of column\nclass="imgMid" : positions image in the middle.\n"clear" forces everything under it.\n"break" adds a line break (= to a return)\n(no class will position the image in response to its surroundings)\n\n*all images entered in the body content must be uploaded to "free_layout"', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 12, 128, 'y', 'ltr', 'y', 'n', 'br', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  456. (6, 1, 6, 'news_body', 'news_body', 'class="imgRight" : floats image to right of column\nclass="imgLeft" : floats image to left of column\nclass="imgMid" : positions image in the middle.\n"clear" forces everything under it.\n"break" adds a line break (= to a return)\n(no class will position the image in response to its surroundings)\n\n*all images entered in the body content must be uploaded to "free_layout"', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 3, 128, 'y', 'ltr', 'y', 'n', 'br', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  457. (8, 1, 3, 'blog_date', 'blog_date', 'Add the date of when the blog was entered. ', 'date', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  458. (21, 1, 10, 'slider_main_image', 'slider_main_image', 'image size: 637w x 340h', 'file', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'none', 'n', 3, 'any', 'YTo4OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6NToiaW1hZ2UiO3M6MTk6ImFsbG93ZWRfZGlyZWN0b3JpZXMiO3M6MToiNyI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
  459. (11, 1, 4, 'careers_date', 'careers_date', 'Add date of posting, or when position became available. ', 'date', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 20, 'n', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  460. (19, 1, 10, 'slider_button', 'slider_button', '', 'matrix', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTozOntzOjg6Im1pbl9yb3dzIjtzOjE6IjAiO3M6ODoibWF4X3Jvd3MiO3M6MDoiIjtzOjc6ImNvbF9pZHMiO2E6Mjp7aTowO3M6MToiMiI7aToxO3M6MToiMyI7fX0='),
  461. (26, 1, 2, 'gallery', 'gallery', '', 'matrix', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTozOntzOjg6Im1pbl9yb3dzIjtzOjE6IjAiO3M6ODoibWF4X3Jvd3MiO3M6MDoiIjtzOjc6ImNvbF9pZHMiO2E6MTp7aTowO3M6MToiNCI7fX0='),
  462. (18, 1, 10, 'slider_body', 'slider_body', '', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 10, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJ5IjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToieSI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToieSI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6InkiO30='),
  463. (22, 1, 3, 'blog_thumbnails', 'blog_thumbnails', '1. Upload new image to "blog_thumbnails", for the thumbnail only.\n2. Use uploaded image, then edit image to 72px x 72px in the file manager. (image must be same width and height or else it will distort)\n3. It would be a good idea to rename these image files so you know they are thumbnails (eg...image_thumbnail.jpg)', 'file', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 3, 'any', 'YTo4OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6NToiaW1hZ2UiO3M6MTk6ImFsbG93ZWRfZGlyZWN0b3JpZXMiO3M6MToiOCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
  464. (33, 1, 6, 'news_date', 'news_date', 'Enter the date of the news.', 'date', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 3, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  465. (24, 1, 5, 'specials_flyer', 'specials_flyer', 'Upload the flyer here.', 'matrix', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTozOntzOjg6Im1pbl9yb3dzIjtzOjE6IjAiO3M6ODoibWF4X3Jvd3MiO3M6MDoiIjtzOjc6ImNvbF9pZHMiO2E6MTp7aTowO3M6MToiNSI7fX0='),
  466. (27, 1, 5, 'specials_thumbnails', 'specials_thumbnails', '1. Upload new image to "specials_thumbnails", for the thumbnail only.\n2. Use uploaded image, then edit image to 72px x 72px in the file manager. (image must be same width and height or else it will distort)\n3. It would be a good idea to rename these image files so you know they are thumbnails (eg...image_thumbnail.jpg)', 'file', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 3, 'any', 'YTo4OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6NToiaW1hZ2UiO3M6MTk6ImFsbG93ZWRfZGlyZWN0b3JpZXMiO3M6MjoiMTIiO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ=='),
  467. (25, 1, 3, 'blog_excerpt', 'blog_excerpt', 'Display "35" words that you''d like to feature about this blog entry. \n(Have NO HTML tags in this section, p, h1...etc.)', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 4, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  468. (28, 1, 5, 'special_date', 'special_date', 'Add the expiration date of when the flyer is finished.', 'date', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 4, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  469. (29, 1, 4, 'career_excerpt', 'career_excerpt', 'Display "40" words that you''d like to feature about this blog entry. \n(Have NO HTML tags in this section, p, h1...etc.)', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 3, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  470. (30, 1, 2, 'events_excerpt', 'events_excerpt', 'Display "40" words that you''d like to feature about this blog entry. \n(Have NO HTML tags in this section, p, h1...etc.)', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 3, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  471. (31, 1, 6, 'news_excerpt', 'news_excerpt', 'Display "40" words that you''d like to feature about this blog entry. \n(Have NO HTML tags in this section, p, h1...etc.)', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 2, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
  472. (32, 1, 5, 'specials_excerpt', 'specials_excerpt', 'Display "38" words that you''d like to feature about this blog entry. \n(Have NO HTML tags in this section, p, h1...etc.)', 'textarea', '', '0', 0, 0, 'channel', 3, 'title', 'desc', 0, 6, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 5, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30=');
  473. -- --------------------------------------------------------
  474. --
  475. -- Table structure for table `exp_channel_member_groups`
  476. --
  477. DROP TABLE IF EXISTS `exp_channel_member_groups`;
  478. CREATE TABLE `exp_channel_member_groups` (
  479. `group_id` smallint(4) unsigned NOT NULL,
  480. `channel_id` int(6) unsigned NOT NULL,
  481. PRIMARY KEY (`group_id`,`channel_id`)
  482. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  483. --
  484. -- Dumping data for table `exp_channel_member_groups`
  485. --
  486. INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES
  487. (6, 1),
  488. (6, 2),
  489. (6, 3),
  490. (6, 4),
  491. (6, 5),
  492. (6, 6),
  493. (6, 10);
  494. -- --------------------------------------------------------
  495. --
  496. -- Table structure for table `exp_channel_titles`
  497. --
  498. DROP TABLE IF EXISTS `exp_channel_titles`;
  499. CREATE TABLE `exp_channel_titles` (
  500. `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  501. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  502. `channel_id` int(4) unsigned NOT NULL,
  503. `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  504. `pentry_id` int(10) NOT NULL DEFAULT '0',
  505. `forum_topic_id` int(10) unsigned DEFAULT NULL,
  506. `ip_address` varchar(16) NOT NULL,
  507. `title` varchar(100) NOT NULL,
  508. `url_title` varchar(75) NOT NULL,
  509. `status` varchar(50) NOT NULL,
  510. `versioning_enabled` char(1) NOT NULL DEFAULT 'n',
  511. `view_count_one` int(10) unsigned NOT NULL DEFAULT '0',
  512. `view_count_two` int(10) unsigned NOT NULL DEFAULT '0',
  513. `view_count_three` int(10) unsigned NOT NULL DEFAULT '0',
  514. `view_count_four` int(10) unsigned NOT NULL DEFAULT '0',
  515. `allow_comments` varchar(1) NOT NULL DEFAULT 'y',
  516. `sticky` varchar(1) NOT NULL DEFAULT 'n',
  517. `entry_date` int(10) NOT NULL,
  518. `dst_enabled` varchar(1) NOT NULL DEFAULT 'n',
  519. `year` char(4) NOT NULL,
  520. `month` char(2) NOT NULL,
  521. `day` char(3) NOT NULL,
  522. `expiration_date` int(10) NOT NULL DEFAULT '0',
  523. `comment_expiration_date` int(10) NOT NULL DEFAULT '0',
  524. `edit_date` bigint(14) DEFAULT NULL,
  525. `recent_comment_date` int(10) DEFAULT NULL,
  526. `comment_total` int(4) unsigned NOT NULL DEFAULT '0',
  527. PRIMARY KEY (`entry_id`),
  528. KEY `channel_id` (`channel_id`),
  529. KEY `author_id` (`author_id`),
  530. KEY `url_title` (`url_title`),
  531. KEY `status` (`status`),
  532. KEY `entry_date` (`entry_date`),
  533. KEY `expiration_date` (`expiration_date`),
  534. KEY `site_id` (`site_id`)
  535. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=81 ;
  536. --
  537. -- Dumping data for table `exp_channel_titles`
  538. --
  539. INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `pentry_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`, `dst_enabled`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES
  540. (67, 1, 5, 2, 0, NULL, '216.145.110.90', 'March Specials', 'march-specials', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1330619968, 'n', '2012', '03', '01', 0, 0, 20120403092730, 0, 0),
  541. (37, 1, 1, 2, 0, NULL, '99.240.100.127', 'Grocery & Household', 'grocery-and-household', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438337, 'n', '2012', '01', '24', 0, 0, 20120323103719, 0, 0),
  542. (71, 1, 1, 3, 0, NULL, '174.117.79.145', 'Fruit and Vegetables', 'fruit-and-vegetables', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1331080238, 'n', '2012', '03', '06', 0, 0, 20120328123740, 0, 0),
  543. (63, 1, 6, 2, 0, NULL, '216.145.110.90', '4th News Story', '4th-news-story', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328737371, 'n', '2012', '02', '08', 0, 0, 20120403102953, 0, 0),
  544. (4, 1, 3, 2, 0, NULL, '216.145.110.90', 'Through the Grinder', 'Through-the-Grinder', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1326316587, 'n', '2012', '01', '11', 0, 0, 20120323101829, 0, 0),
  545. (62, 1, 1, 3, 0, NULL, '99.240.100.127', 'Coffee and Tea', 'coffee-and-tea', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328675081, 'n', '2012', '02', '07', 0, 0, 20120310234843, 0, 0),
  546. (73, 1, 3, 2, 0, NULL, '216.145.110.90', 'heres a test', 'heres-a-test', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1332449255, 'n', '2012', '03', '22', 0, 0, 20120402132836, 0, 0),
  547. (80, 1, 3, 2, 0, NULL, '216.145.110.90', 'Tester', 'tester', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1333464847, 'n', '2012', '04', '03', 0, 0, 20120403101408, 0, 0),
  548. (9, 1, 6, 2, 0, NULL, '99.240.100.127', 'Tea Tasting', 'tea-tasting', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1326395324, 'n', '2012', '01', '12', 0, 0, 20120306141746, 0, 0),
  549. (10, 1, 6, 2, 0, NULL, '216.145.110.90', 'The Second Post', 'the-second-post', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1326395804, 'n', '2012', '01', '12', 0, 0, 20120112154646, 0, 0),
  550. (11, 1, 6, 2, 0, NULL, '216.145.110.90', 'Third Post!', 'third-post', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1326395839, 'n', '2012', '01', '12', 0, 0, 20120112154621, 0, 0),
  551. (14, 1, 2, 2, 0, NULL, '216.145.110.90', 'Events - Coming Soon', 'events-coming-soon', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1326403552, 'n', '2012', '01', '12', 0, 0, 20120403104754, 0, 0),
  552. (61, 1, 10, 3, 0, NULL, '99.240.100.127', 'Beet Greens', 'beet-greens', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328302587, 'n', '2012', '02', '03', 0, 0, 20120311000829, 0, 0),
  553. (59, 1, 3, 2, 0, NULL, '216.145.110.90', 'Have your Cake...and Eat it Too!', 'have-your-cake-and-eat-it-too', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328114161, 'n', '2012', '02', '01', 0, 0, 20120403100102, 0, 0),
  554. (36, 1, 1, 2, 0, NULL, '99.240.100.127', 'Pet Essentials', 'pet-essentials', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438355, 'n', '2012', '01', '24', 0, 0, 20120307220837, 0, 0),
  555. (35, 1, 1, 2, 0, NULL, '216.145.110.90', 'Baby Care', 'baby-care', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438367, 'n', '2012', '01', '24', 0, 0, 20120323144749, 0, 0),
  556. (33, 1, 1, 2, 0, NULL, '99.240.100.127', 'Supplements', 'nutritional-supplements', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438309, 'n', '2012', '01', '24', 0, 0, 20120307211950, 0, 0),
  557. (34, 1, 1, 2, 0, NULL, '99.240.100.127', 'Body Care & Cosmetics', 'body-care-and-cosmetics', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438313, 'n', '2012', '01', '24', 0, 0, 20120311001754, 0, 0),
  558. (38, 1, 1, 2, 0, NULL, '99.240.100.127', 'Meat, Poultry & Fish', 'meat-poultry-and-fish', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438274, 'n', '2012', '01', '24', 0, 0, 20120307205915, 0, 0),
  559. (39, 1, 1, 2, 0, NULL, '99.240.100.127', 'Frozen Foods', 'frozen-foods', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438555, 'n', '2012', '01', '24', 0, 0, 20120311004556, 0, 0),
  560. (40, 1, 1, 2, 0, NULL, '99.240.100.127', 'Refrigerated', 'refrigerated', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438547, 'n', '2012', '01', '24', 0, 0, 20120307204648, 0, 0),
  561. (41, 1, 1, 2, 0, NULL, '99.240.100.127', 'Baked Goods', 'baked-goods', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327438522, 'n', '2012', '01', '24', 0, 0, 20120318230424, 0, 0),
  562. (72, 1, 3, 3, 0, NULL, '216.145.110.90', 'Jammin', 'jammin', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1332266559, 'n', '2012', '03', '20', 0, 0, 20120403095441, 0, 0),
  563. (56, 1, 10, 2, 0, NULL, '216.145.110.90', 'Heart Beets is Hiring', 'Heart-Beets-is-Hiring', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328041430, 'n', '2012', '01', '31', 0, 0, 20120403102552, 0, 0),
  564. (57, 1, 10, 2, 0, NULL, '99.240.100.127', 'Food for Thought', 'food-for-thought', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328044156, 'n', '2012', '01', '31', 0, 0, 20120323102017, 0, 0),
  565. (58, 1, 3, 2, 0, NULL, '216.145.110.90', 'Brewing Tea', 'brewing-tea', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1328112955, 'n', '2012', '02', '01', 0, 0, 20120326134256, 0, 0),
  566. (48, 1, 4, 3, 0, NULL, '216.145.110.90', 'Employment at Heart Beets', 'employment-at-Heart-Beets', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1327699576, 'n', '2012', '01', '27', 0, 0, 20120403093117, 0, 0),
  567. (68, 1, 6, 2, 0, NULL, '216.145.110.90', 'new news', 'new-news', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1330631072, 'n', '2012', '03', '01', 0, 0, 20120403085334, 0, 0),
  568. (77, 1, 1, 4, 0, NULL, '216.145.110.90', 'Sample Page', 'sample-page', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1332853817, 'n', '2012', '03', '27', 0, 0, 20120327121319, 0, 0);
  569. -- --------------------------------------------------------
  570. --
  571. -- Table structure for table `exp_comments`
  572. --
  573. DROP TABLE IF EXISTS `exp_comments`;
  574. CREATE TABLE `exp_comments` (
  575. `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  576. `site_id` int(4) DEFAULT '1',
  577. `entry_id` int(10) unsigned DEFAULT '0',
  578. `channel_id` int(4) unsigned DEFAULT '1',
  579. `author_id` int(10) unsigned DEFAULT '0',
  580. `status` char(1) DEFAULT '0',
  581. `name` varchar(50) DEFAULT NULL,
  582. `email` varchar(50) DEFAULT NULL,
  583. `url` varchar(75) DEFAULT NULL,
  584. `location` varchar(50) DEFAULT NULL,
  585. `ip_address` varchar(16) DEFAULT NULL,
  586. `comment_date` int(10) DEFAULT NULL,
  587. `edit_date` int(10) DEFAULT NULL,
  588. `comment` text,
  589. PRIMARY KEY (`comment_id`),
  590. KEY `entry_id` (`entry_id`),
  591. KEY `channel_id` (`channel_id`),
  592. KEY `author_id` (`author_id`),
  593. KEY `status` (`status`),
  594. KEY `site_id` (`site_id`)
  595. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  596. --
  597. -- Dumping data for table `exp_comments`
  598. --
  599. -- --------------------------------------------------------
  600. --
  601. -- Table structure for table `exp_comment_subscriptions`
  602. --
  603. DROP TABLE IF EXISTS `exp_comment_subscriptions`;
  604. CREATE TABLE `exp_comment_subscriptions` (
  605. `subscription_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  606. `entry_id` int(10) unsigned DEFAULT NULL,
  607. `member_id` int(10) DEFAULT '0',
  608. `email` varchar(50) DEFAULT NULL,
  609. `subscription_date` varchar(10) DEFAULT NULL,
  610. `notification_sent` char(1) DEFAULT 'n',
  611. `hash` varchar(15) DEFAULT NULL,
  612. PRIMARY KEY (`subscription_id`),
  613. KEY `entry_id` (`entry_id`),
  614. KEY `member_id` (`member_id`)
  615. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  616. --
  617. -- Dumping data for table `exp_comment_subscriptions`
  618. --
  619. -- --------------------------------------------------------
  620. --
  621. -- Table structure for table `exp_cp_log`
  622. --
  623. DROP TABLE IF EXISTS `exp_cp_log`;
  624. CREATE TABLE `exp_cp_log` (
  625. `id` int(10) NOT NULL AUTO_INCREMENT,
  626. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  627. `member_id` int(10) unsigned NOT NULL,
  628. `username` varchar(32) NOT NULL,
  629. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  630. `act_date` int(10) NOT NULL,
  631. `action` varchar(200) NOT NULL,
  632. PRIMARY KEY (`id`),
  633. KEY `site_id` (`site_id`)
  634. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=220 ;
  635. --
  636. -- Dumping data for table `exp_cp_log`
  637. --
  638. INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES
  639. (1, 1, 1, 'dodgson', '216.145.110.90', 1325864747, 'Logged in'),
  640. (2, 1, 1, 'dodgson', '216.145.110.90', 1326310829, 'Logged in'),
  641. (3, 1, 1, 'dodgson', '216.145.110.90', 1326310919, 'Member profile created:&nbsp;&nbsp;robinf'),
  642. (4, 1, 2, 'robinf', '216.145.110.90', 1326310935, 'Logged in'),
  643. (5, 1, 2, 'robinf', '216.145.110.90', 1326315274, 'Channel Created:&nbsp;&nbsp;departments'),
  644. (6, 1, 2, 'robinf', '216.145.110.90', 1326315330, 'Field Group Created:&nbsp;departments'),
  645. (7, 1, 2, 'robinf', '216.145.110.90', 1326315905, 'Channel Created:&nbsp;&nbsp;news'),
  646. (8, 1, 2, 'robinf', '216.145.110.90', 1326315926, 'Field Group Created:&nbsp;news'),
  647. (9, 1, 2, 'robinf', '216.145.110.90', 1326316615, 'Channel Created:&nbsp;&nbsp;blog'),
  648. (10, 1, 2, 'robinf', '216.145.110.90', 1326316640, 'Field Group Created:&nbsp;blog'),
  649. (11, 1, 2, 'robinf', '216.145.110.90', 1326316805, 'Channel Created:&nbsp;&nbsp;careers'),
  650. (12, 1, 2, 'robinf', '216.145.110.90', 1326316816, 'Field Group Created:&nbsp;careers'),
  651. (13, 1, 2, 'robinf', '216.145.110.90', 1326316995, 'Channel Created:&nbsp;&nbsp;specials'),
  652. (14, 1, 2, 'robinf', '216.145.110.90', 1326317008, 'Field Group Created:&nbsp;specials'),
  653. (15, 1, 2, 'robinf', '174.119.178.138', 1326324147, 'Logged in'),
  654. (16, 1, 2, 'robinf', '174.119.178.138', 1326324280, 'Logged out'),
  655. (17, 1, 2, 'robinf', '216.145.110.90', 1326392668, 'Logged in'),
  656. (18, 1, 2, 'robinf', '216.145.110.90', 1326395081, 'Channel Created:&nbsp;&nbsp;board_news'),
  657. (19, 1, 2, 'robinf', '216.145.110.90', 1326395093, 'Field Group Created:&nbsp;board_news'),
  658. (20, 1, 2, 'robinf', '216.145.110.90', 1326729405, 'Logged in'),
  659. (21, 1, 2, 'robinf', '216.145.110.90', 1326731670, 'Custom Field Deleted:&nbsp;news_link'),
  660. (22, 1, 2, 'robinf', '216.145.110.90', 1326741420, 'Logged in'),
  661. (23, 1, 2, 'robinf', '216.145.110.90', 1326745006, 'Custom Field Deleted:&nbsp;blog_left_image'),
  662. (24, 1, 2, 'robinf', '216.145.110.90', 1326816042, 'Logged in'),
  663. (25, 1, 2, 'robinf', '216.145.110.90', 1326832050, 'Logged in'),
  664. (26, 1, 1, 'dodgson', '216.145.110.90', 1327094906, 'Logged in'),
  665. (27, 1, 1, 'dodgson', '216.145.110.90', 1327094959, 'Member profile created:&nbsp;&nbsp;mhamilton'),
  666. (28, 1, 1, 'dodgson', '216.145.110.90', 1327095106, 'Member Group Created:&nbsp;&nbsp;admin'),
  667. (29, 1, 1, 'dodgson', '216.145.110.90', 1327095149, 'Logged out'),
  668. (30, 1, 3, 'mhamilton', '216.145.110.90', 1327095157, 'Logged in'),
  669. (31, 1, 3, 'mhamilton', '216.145.110.90', 1327095187, 'Logged out'),
  670. (32, 1, 1, 'dodgson', '216.145.110.90', 1327095195, 'Logged in'),
  671. (33, 1, 1, 'dodgson', '216.145.110.90', 1327095256, 'Logged out'),
  672. (34, 1, 3, 'mhamilton', '216.145.110.90', 1327095266, 'Logged in'),
  673. (35, 1, 3, 'mhamilton', '216.145.110.90', 1327095296, 'Logged out'),
  674. (36, 1, 2, 'robinf', '216.145.110.90', 1327332894, 'Logged in'),
  675. (37, 1, 2, 'robinf', '216.145.110.90', 1327334786, 'Logged out'),
  676. (38, 1, 3, 'mhamilton', '216.145.110.90', 1327334799, 'Logged in'),
  677. (39, 1, 2, 'robinf', '216.145.110.90', 1327349320, 'Logged in'),
  678. (40, 1, 2, 'robinf', '216.145.110.90', 1327415096, 'Logged in'),
  679. (41, 1, 3, 'mhamilton', '216.145.110.90', 1327428271, 'Logged in'),
  680. (42, 1, 3, 'mhamilton', '216.145.110.90', 1327431441, 'Logged out'),
  681. (43, 1, 2, 'robinf', '216.145.110.90', 1327431454, 'Logged in'),
  682. (44, 1, 2, 'robinf', '216.145.110.90', 1327431630, 'Logged out'),
  683. (45, 1, 3, 'mhamilton', '216.145.110.90', 1327431640, 'Logged in'),
  684. (46, 1, 3, 'mhamilton', '216.145.110.90', 1327431678, 'Logged out'),
  685. (47, 1, 2, 'robinf', '216.145.110.90', 1327431688, 'Logged in'),
  686. (48, 1, 2, 'robinf', '216.145.110.90', 1327431877, 'Logged out'),
  687. (49, 1, 3, 'mhamilton', '216.145.110.90', 1327431891, 'Logged in'),
  688. (50, 1, 3, 'mhamilton', '216.145.110.90', 1327431923, 'Logged out'),
  689. (51, 1, 2, 'robinf', '216.145.110.90', 1327431934, 'Logged in'),
  690. (52, 1, 2, 'robinf', '216.145.110.90', 1327432160, 'Logged out'),
  691. (53, 1, 3, 'mhamilton', '216.145.110.90', 1327432177, 'Logged in'),
  692. (54, 1, 3, 'mhamilton', '216.145.110.90', 1327432205, 'Logged out'),
  693. (55, 1, 2, 'robinf', '216.145.110.90', 1327432215, 'Logged in'),
  694. (56, 1, 2, 'robinf', '216.145.110.90', 1327432352, 'Member Group Updated:&nbsp;&nbsp;admin'),
  695. (57, 1, 2, 'robinf', '216.145.110.90', 1327432356, 'Logged out'),
  696. (58, 1, 2, 'robinf', '216.145.110.90', 1327432366, 'Logged in'),
  697. (59, 1, 3, 'mhamilton', '99.230.92.191', 1327432590, 'Logged in'),
  698. (60, 1, 2, 'robinf', '216.145.110.90', 1327506697, 'Logged in'),
  699. (61, 1, 2, 'robinf', '216.145.110.90', 1327523061, 'Logged in'),
  700. (62, 1, 2, 'robinf', '216.145.110.90', 1327523270, 'Logged out'),
  701. (63, 1, 3, 'mhamilton', '216.145.110.90', 1327523284, 'Logged in'),
  702. (64, 1, 3, 'mhamilton', '216.145.110.90', 1327523306, 'Logged out'),
  703. (65, 1, 2, 'robinf', '216.145.110.90', 1327523316, 'Logged in'),
  704. (66, 1, 2, 'robinf', '216.145.110.90', 1327591204, 'Logged in'),
  705. (67, 1, 2, 'robinf', '216.145.110.90', 1327591671, 'Logged out'),
  706. (68, 1, 2, 'robinf', '216.145.110.90', 1327592593, 'Logged in'),
  707. (69, 1, 3, 'mhamilton', '99.230.92.191', 1327594523, 'Logged in'),
  708. (70, 1, 3, 'mhamilton', '99.230.92.191', 1327594880, 'Logged out'),
  709. (71, 1, 2, 'robinf', '142.222.88.166', 1327619646, 'Logged in'),
  710. (72, 1, 2, 'robinf', '142.222.88.166', 1327619922, 'Logged out'),
  711. (73, 1, 2, 'robinf', '142.222.88.166', 1327619922, 'Logged out'),
  712. (74, 1, 3, 'mhamilton', '99.230.92.191', 1327627103, 'Logged in'),
  713. (75, 1, 2, 'robinf', '216.145.110.90', 1327673503, 'Logged in'),
  714. (76, 1, 2, 'robinf', '216.145.110.90', 1327676464, 'Upload Preference Deleted:&nbsp;&nbsp;blog_top_image'),
  715. (77, 1, 2, 'robinf', '216.145.110.90', 1327682963, 'Logged in'),
  716. (78, 1, 2, 'robinf', '216.145.110.90', 1327688984, 'Custom Field Deleted:&nbsp;blog_top_image'),
  717. (79, 1, 3, 'mhamilton', '99.230.92.191', 1327695352, 'Logged in'),
  718. (80, 1, 2, 'robinf', '216.145.110.90', 1327695512, 'Logged in'),
  719. (81, 1, 2, 'robinf', '67.212.8.136', 1327761998, 'Logged in'),
  720. (82, 1, 2, 'robinf', '216.145.110.90', 1327939257, 'Logged in'),
  721. (83, 1, 2, 'robinf', '216.145.110.90', 1327939288, 'Upload Preference Deleted:&nbsp;&nbsp;blog'),
  722. (84, 1, 2, 'robinf', '216.145.110.90', 1327939354, 'Custom Field Deleted:&nbsp;blog_image'),
  723. (85, 1, 2, 'robinf', '216.145.110.90', 1327946619, 'Logged in'),
  724. (86, 1, 2, 'robinf', '216.145.110.90', 1327947448, 'Upload Preference Deleted:&nbsp;&nbsp;blog_image'),
  725. (87, 1, 2, 'robinf', '216.145.110.90', 1327950797, 'Channel Created:&nbsp;&nbsp;slider'),
  726. (88, 1, 2, 'robinf', '216.145.110.90', 1327950832, 'Field Group Created:&nbsp;slider'),
  727. (89, 1, 2, 'robinf', '216.145.110.90', 1327951802, 'Custom Field Deleted:&nbsp;slider_body'),
  728. (90, 1, 2, 'robinf', '216.145.110.90', 1327951984, 'Channel Deleted:&nbsp;&nbsp;slider'),
  729. (91, 1, 2, 'robinf', '216.145.110.90', 1327951995, 'Field group Deleted:&nbsp;&nbsp;slider'),
  730. (92, 1, 2, 'robinf', '216.145.110.90', 1327952031, 'Channel Created:&nbsp;&nbsp;slider'),
  731. (93, 1, 2, 'robinf', '216.145.110.90', 1327952058, 'Field Group Created:&nbsp;slider'),
  732. (94, 1, 2, 'robinf', '216.145.110.90', 1327952113, 'Channel Deleted:&nbsp;&nbsp;slider'),
  733. (95, 1, 2, 'robinf', '216.145.110.90', 1327952127, 'Field group Deleted:&nbsp;&nbsp;slider'),
  734. (96, 1, 2, 'robinf', '216.145.110.90', 1327952134, 'Field Group Created:&nbsp;slider'),
  735. (97, 1, 2, 'robinf', '216.145.110.90', 1327952178, 'Field group Deleted:&nbsp;&nbsp;slider'),
  736. (98, 1, 2, 'robinf', '216.145.110.90', 1327952200, 'Channel Created:&nbsp;&nbsp;slider'),
  737. (99, 1, 2, 'robinf', '216.145.110.90', 1327952216, 'Field Group Created:&nbsp;slider'),
  738. (100, 1, 2, 'robinf', '216.145.110.90', 1327952254, 'Channel Deleted:&nbsp;&nbsp;slider'),
  739. (101, 1, 2, 'robinf', '216.145.110.90', 1327952283, 'Channel Created:&nbsp;&nbsp;slider'),
  740. (102, 1, 2, 'robinf', '216.145.110.90', 1327953484, 'Upload Preference Deleted:&nbsp;&nbsp;blog_image_upload'),
  741. (103, 1, 2, 'robinf', '216.145.110.90', 1327953503, 'Custom Field Deleted:&nbsp;blog_image'),
  742. (104, 1, 2, 'robinf', '216.145.110.90', 1327954413, 'Upload Preference Deleted:&nbsp;&nbsp;blog_image'),
  743. (105, 1, 2, 'robinf', '216.145.110.90', 1327954423, 'Custom Field Deleted:&nbsp;blog_thumb'),
  744. (106, 1, 2, 'robinf', '216.145.110.90', 1328025673, 'Logged in'),
  745. (107, 1, 2, 'robinf', '216.145.110.90', 1328033082, 'Logged in'),
  746. (108, 1, 2, 'robinf', '216.145.110.90', 1328106727, 'Logged in'),
  747. (109, 1, 2, 'robinf', '216.145.110.90', 1328119468, 'Logged in'),
  748. (110, 1, 2, 'robinf', '216.145.110.90', 1328191490, 'Logged in'),
  749. (111, 1, 2, 'robinf', '216.145.110.90', 1328218006, 'Logged in'),
  750. (112, 1, 2, 'robinf', '216.145.110.90', 1328278671, 'Logged in'),
  751. (113, 1, 2, 'robinf', '216.145.110.90', 1328295400, 'Logged in'),
  752. (114, 1, 3, 'mhamilton', '99.230.92.191', 1328296305, 'Logged in'),
  753. (115, 1, 3, 'mhamilton', '99.230.92.191', 1328297638, 'Logged in'),
  754. (116, 1, 2, 'robinf', '216.145.110.90', 1328298062, 'Logged out'),
  755. (117, 1, 3, 'mhamilton', '216.145.110.90', 1328298069, 'Logged in'),
  756. (118, 1, 3, 'mhamilton', '216.145.110.90', 1328298139, 'Logged out'),
  757. (119, 1, 2, 'robinf', '216.145.110.90', 1328298149, 'Logged in'),
  758. (120, 1, 2, 'robinf', '216.145.110.90', 1328298247, 'Member Group Updated:&nbsp;&nbsp;admin'),
  759. (121, 1, 2, 'robinf', '216.145.110.90', 1328298273, 'Logged out'),
  760. (122, 1, 3, 'mhamilton', '216.145.110.90', 1328298282, 'Logged in'),
  761. (123, 1, 1, 'dodgson', '216.145.110.90', 1328298371, 'Logged in'),
  762. (124, 1, 1, 'dodgson', '216.145.110.90', 1328298429, 'Member Group Updated:&nbsp;&nbsp;admin'),
  763. (125, 1, 1, 'dodgson', '216.145.110.90', 1328298787, 'Member Group Updated:&nbsp;&nbsp;admin'),
  764. (126, 1, 3, 'mhamilton', '216.145.110.90', 1328298803, 'Logged out'),
  765. (127, 1, 2, 'robinf', '216.145.110.90', 1328298811, 'Logged in'),
  766. (128, 1, 2, 'robinf', '216.145.110.90', 1328305443, 'Logged out'),
  767. (129, 1, 3, 'mhamilton', '99.230.92.191', 1328669411, 'Logged in'),
  768. (130, 1, 3, 'mhamilton', '99.230.92.191', 1328675018, 'Logged in'),
  769. (131, 1, 2, 'robinf', '216.145.110.90', 1328714741, 'Logged in'),
  770. (132, 1, 2, 'robinf', '216.145.110.90', 1328724975, 'Logged in'),
  771. (133, 1, 3, 'mhamilton', '99.230.92.191', 1328743225, 'Logged in'),
  772. (134, 1, 2, 'robinf', '216.145.110.90', 1328909939, 'Logged in'),
  773. (135, 1, 2, 'robinf', '24.38.157.21', 1328938042, 'Logged in'),
  774. (136, 1, 2, 'robinf', '24.38.157.21', 1328938232, 'Logged out'),
  775. (137, 1, 3, 'mhamilton', '99.230.92.191', 1329239797, 'Logged in'),
  776. (138, 1, 3, 'mhamilton', '99.230.92.191', 1329250358, 'Logged in'),
  777. (139, 1, 3, 'mhamilton', '216.145.110.90', 1329254142, 'Logged in'),
  778. (140, 1, 3, 'mhamilton', '216.145.110.90', 1329254256, 'Logged out'),
  779. (141, 1, 2, 'robinf', '216.145.110.90', 1329254266, 'Logged in'),
  780. (142, 1, 2, 'robinf', '216.145.110.90', 1329256638, 'Logged out'),
  781. (143, 1, 3, 'mhamilton', '99.230.92.191', 1329321149, 'Logged in'),
  782. (144, 1, 3, 'mhamilton', '99.230.92.191', 1329411937, 'Logged in'),
  783. (145, 1, 3, 'mhamilton', '99.230.92.191', 1329494815, 'Logged in'),
  784. (146, 1, 2, 'robinf', '99.245.198.120', 1329680063, 'Logged in'),
  785. (147, 1, 2, 'robinf', '99.245.198.120', 1329680172, 'Logged out'),
  786. (148, 1, 2, 'robinf', '216.145.110.90', 1329841975, 'Logged in'),
  787. (149, 1, 2, 'robinf', '216.145.110.90', 1329842680, 'Logged out'),
  788. (150, 1, 3, 'mhamilton', '216.145.110.90', 1329842695, 'Logged in'),
  789. (151, 1, 3, 'mhamilton', '216.145.110.90', 1329842804, 'Logged out'),
  790. (152, 1, 2, 'robinf', '216.145.110.90', 1329842820, 'Logged in'),
  791. (153, 1, 2, 'robinf', '216.145.110.90', 1329842847, 'Logged out'),
  792. (154, 1, 3, 'mhamilton', '216.145.110.90', 1329842862, 'Logged in'),
  793. (155, 1, 3, 'mhamilton', '216.145.110.90', 1329842911, 'Logged out'),
  794. (156, 1, 2, 'robinf', '216.145.110.90', 1329847969, 'Logged in'),
  795. (157, 1, 3, 'mhamilton', '99.230.92.191', 1329884888, 'Logged in'),
  796. (158, 1, 2, 'robinf', '216.145.110.90', 1330119898, 'Logged in'),
  797. (159, 1, 2, 'robinf', '216.145.110.90', 1330120391, 'Logged out'),
  798. (160, 1, 3, 'mhamilton', '99.230.92.191', 1330364827, 'Logged in'),
  799. (161, 1, 3, 'mhamilton', '216.145.110.90', 1330443715, 'Logged in'),
  800. (162, 1, 3, 'mhamilton', '216.145.110.90', 1330446784, 'Logged out'),
  801. (163, 1, 2, 'robinf', '216.145.110.90', 1330446796, 'Logged in'),
  802. (164, 1, 2, 'robinf', '216.145.110.90', 1330618998, 'Logged in'),
  803. (165, 1, 2, 'robinf', '216.145.110.90', 1330625625, 'Logged in'),
  804. (166, 1, 2, 'robinf', '216.145.110.90', 1330639070, 'Logged out'),
  805. (167, 1, 2, 'robinf', '99.230.187.184', 1330657399, 'Logged in'),
  806. (168, 1, 2, 'robinf', '99.230.187.184', 1330657480, 'Logged out'),
  807. (169, 1, 2, 'robinf', '216.145.110.90', 1330716615, 'Logged in'),
  808. (170, 1, 2, 'robinf', '216.145.110.90', 1330717430, 'Logged out'),
  809. (171, 1, 3, 'mhamilton', '99.230.92.191', 1330917711, 'Logged in'),
  810. (172, 1, 3, 'mhamilton', '99.240.100.127', 1331005724, 'Logged in'),
  811. (173, 1, 3, 'mhamilton', '99.240.100.127', 1331058323, 'Logged in'),
  812. (174, 1, 3, 'mhamilton', '99.240.100.127', 1331080225, 'Logged in'),
  813. (175, 1, 3, 'mhamilton', '99.240.100.127', 1331174498, 'Logged in'),
  814. (176, 1, 3, 'mhamilton', '216.145.110.90', 1331216360, 'Logged in'),
  815. (177, 1, 3, 'mhamilton', '216.145.110.90', 1331217013, 'Logged out'),
  816. (178, 1, 3, 'mhamilton', '99.240.100.127', 1331219048, 'Logged in'),
  817. (179, 1, 2, 'robinf', '216.145.110.90', 1331221708, 'Logged in'),
  818. (180, 1, 3, 'mhamilton', '99.240.100.127', 1331444507, 'Logged in'),
  819. (181, 1, 3, 'mhamilton', '99.240.100.127', 1332125113, 'Logged in'),
  820. (182, 1, 3, 'mhamilton', '99.240.100.127', 1332266334, 'Logged in'),
  821. (183, 1, 3, 'mhamilton', '99.240.100.127', 1332281693, 'Logged in'),
  822. (184, 1, 2, 'robinf', '216.145.110.90', 1332365267, 'Logged in'),
  823. (185, 1, 2, 'robinf', '216.145.110.90', 1332365274, 'Logged out'),
  824. (186, 1, 2, 'robinf', '216.145.110.90', 1332445261, 'Logged in'),
  825. (187, 1, 3, 'mhamilton', '99.240.100.127', 1332512306, 'Logged in'),
  826. (188, 1, 2, 'robinf', '216.145.110.90', 1332512582, 'Logged in'),
  827. (189, 1, 2, 'robinf', '216.145.110.90', 1332522610, 'Logged in'),
  828. (190, 1, 2, 'robinf', '216.145.110.90', 1332769006, 'Logged in'),
  829. (191, 1, 2, 'robinf', '216.145.110.90', 1332771273, 'Upload Preference Deleted:&nbsp;&nbsp;special_thumb'),
  830. (192, 1, 2, 'robinf', '216.145.110.90', 1332783090, 'Logged in'),
  831. (193, 1, 2, 'robinf', '216.145.110.90', 1332788149, 'Member profile created:&nbsp;&nbsp;jbonner'),
  832. (194, 1, 4, 'jbonner', '216.145.110.90', 1332788795, 'Logged in'),
  833. (195, 1, 3, 'mhamilton', '99.240.100.127', 1332809472, 'Logged in'),
  834. (196, 1, 3, 'mhamilton', '99.240.100.127', 1332810323, 'Logged in'),
  835. (197, 1, 2, 'robinf', '216.145.110.90', 1332852644, 'Logged in'),
  836. (198, 1, 4, 'jbonner', '216.145.110.90', 1332853612, 'Logged in'),
  837. (199, 1, 2, 'robinf', '216.145.110.90', 1332858695, 'Logged in'),
  838. (200, 1, 2, 'robinf', '216.145.110.90', 1332867716, 'Logged in'),
  839. (201, 1, 2, 'robinf', '216.145.110.90', 1332868061, 'Logged in'),
  840. (202, 1, 3, 'mhamilton', '99.240.100.127', 1332868178, 'Logged in'),
  841. (203, 1, 4, 'jbonner', '216.145.110.90', 1332872966, 'Logged in'),
  842. (204, 1, 4, 'jbonner', '216.145.110.90', 1332875115, 'Logged out'),
  843. (205, 1, 4, 'jbonner', '216.145.110.90', 1332875294, 'Logged in'),
  844. (206, 1, 4, 'jbonner', '216.145.110.90', 1332875387, 'Logged out'),
  845. (207, 1, 3, 'mhamilton', '174.117.79.145', 1332953351, 'Logged in'),
  846. (208, 1, 2, 'robinf', '216.145.110.90', 1333387213, 'Logged in'),
  847. (209, 1, 2, 'robinf', '216.145.110.90', 1333393588, 'Logged out'),
  848. (210, 1, 2, 'robinf', '216.145.110.90', 1333393690, 'Logged in'),
  849. (211, 1, 2, 'robinf', '216.145.110.90', 1333458183, 'Logged in'),
  850. (212, 1, 2, 'robinf', '216.145.110.90', 1333466801, 'Custom Field Deleted:&nbsp;departments_images'),
  851. (213, 1, 2, 'robinf', '216.145.110.90', 1333468460, 'Logged out'),
  852. (214, 1, 2, 'robinf', '216.145.110.90', 1333473000, 'Logged in'),
  853. (215, 1, 2, 'robinf', '216.145.110.90', 1333473806, 'Logged out'),
  854. (216, 1, 1, 'dodgson', '192.139.232.241', 1333473890, 'Logged in'),
  855. (217, 1, 2, 'robinf', '216.145.110.90', 1333545220, 'Logged in'),
  856. (218, 1, 2, 'robinf', '216.145.110.90', 1333559173, 'Logged in'),
  857. (219, 1, 2, 'robinf', '216.145.110.90', 1333645800, 'Logged in');
  858. -- --------------------------------------------------------
  859. --
  860. -- Table structure for table `exp_cp_search_index`
  861. --
  862. DROP TABLE IF EXISTS `exp_cp_search_index`;
  863. CREATE TABLE `exp_cp_search_index` (
  864. `search_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  865. `controller` varchar(20) DEFAULT NULL,
  866. `method` varchar(50) DEFAULT NULL,
  867. `language` varchar(20) DEFAULT NULL,
  868. `access` varchar(50) DEFAULT NULL,
  869. `keywords` text,
  870. PRIMARY KEY (`search_id`),
  871. FULLTEXT KEY `keywords` (`keywords`)
  872. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=52 ;
  873. --
  874. -- Dumping data for table `exp_cp_search_index`
  875. --
  876. INSERT INTO `exp_cp_search_index` (`search_id`, `controller`, `method`, `language`, `access`, `keywords`) VALUES
  877. (1, 'admin_system', 'general_configuration', 'english', 'can_access_sys_prefs', 'Is system on? License Number Name of your site Name of your site''s index page URL to the root directory of your site URL to your Control Panel index page URL to your "themes" folder Theme Folder Path Default Control Panel Theme Default Language Default XML Language Maximum Number of Cachable URIs New Version Auto Check URL to Documentation Directory'),
  878. (2, 'admin_system', 'output_debugging_preferences', 'english', 'can_access_sys_prefs', 'Generate HTTP Page Headers? Enable GZIP Output? Force URL query strings Redirection Method Debug Preference Display Output Profiler? Display Template Debugging?'),
  879. (3, 'admin_system', 'database_settings', 'english', 'can_access_sys_prefs', 'Enable Database Debugging Persistent Database Connection Enable SQL Query Caching'),
  880. (4, 'admin_system', 'security_session_preferences', 'english', 'can_access_sys_prefs', 'cookie cookies Control Panel Session Type User Session Type Process form data in Secure Mode? Deny Duplicate Data? Apply Rank Denial to User-submitted Links? Allow members to change their username? Allow multiple log-ins from a single account? Require IP Address and User Agent for Login? Require IP Address and User Agent for posting? Apply XSS Filtering to uploaded files? Enable Password Lockout? Time Interval for Lockout Require Secure Passwords? Allow Dictionary Words as Passwords? Name of Dictionary File Minimum Username Length Minimum Password Length'),
  881. (5, 'admin_system', 'throttling_configuration', 'english', 'can_access_sys_prefs', 'Enable Throttling Deny Access if No IP Address is Present Maximum Number of Page Loads Time Interval (in seconds) Lockout Time (in seconds) Action to Take URL for Redirect Custom Message'),
  882. (6, 'admin_system', 'localization_settings', 'english', 'can_access_sys_prefs', 'Server Time Zone Server Offset (in minutes) Default Time Formatting Daylight Saving Time'),
  883. (7, 'admin_system', 'email_configuration', 'english', 'can_access_sys_prefs', 'Return email address for auto-generated emails Webmaster or site name for auto-generated emails Email Character Encoding Enable Email Debugging? Email Protocol SMTP Server Address SMTP Username SMTP Password Use Batch Mode? Number of Emails Per Batch Default Mail Format Enable Word-wrapping by Default? Email Console Timelock Log Email Console Messages Enable CAPTCHAs for Tell-a-Friend and Contact emails'),
  884. (8, 'admin_system', 'cookie_settings', 'english', 'can_access_sys_prefs', 'cookies Cookie Domain Cookie Path Cookie Prefix'),
  885. (9, 'admin_system', 'image_resizing_preferences', 'english', 'can_access_sys_prefs', 'Image Resizing Protocol Image Converter Path Image Thumbnail Suffix'),
  886. (10, 'admin_system', 'captcha_preferences', 'english', 'can_access_sys_prefs', 'Server Path to CAPTCHA Folder Full URL to CAPTCHA Folder Use TrueType Font for CAPTCHA? Add Random Number to CAPTCHA Word Require CAPTCHA with logged-in members?'),
  887. (11, 'admin_system', 'word_censoring', 'english', 'can_access_sys_prefs', 'Enable Word Censoring? Censoring Replacement Word Censored Words'),
  888. (12, 'admin_system', 'mailing_list_preferences', 'english', 'can_access_sys_prefs', 'Mailing List is Enabled Enable recipient list for notification of new mailing list sign-ups Email Address of Notification Recipient(s) '),
  889. (13, 'admin_system', 'emoticon_preferences', 'english', 'can_access_sys_prefs', 'Display Smileys? URL to the directory containing your smileys '),
  890. (14, 'admin_system', 'tracking_preferences', 'english', 'can_access_sys_prefs', 'Enable Online User Tracking? Enable Template Hit Tracking? Enable Channel Entry View Tracking? Enable Referrer Tracking? Maximum number of recent referrers to save Suspend ALL tracking when number of online visitors exceeds:'),
  891. (15, 'admin_system', 'search_log_configuration', 'english', 'can_access_sys_prefs', 'Enable Search Term Logging Maximum number of recent search terms to save'),
  892. (16, 'admin_content', 'global_channel_preferences', 'english', 'can_admin_channels', 'Use Category URL Titles In Links? Category URL Indicator Auto-Assign Category Parents Clear all caches when new entries are posted? Cache Dynamic Channel Queries? Word Separator for URL Titles'),
  893. (17, 'admin_content', 'field_group_management', 'english', 'can_admin_channels', 'Field Group Management'),
  894. (18, 'admin_content', 'category_management', 'english', 'can_admin_categories', 'Category Management'),
  895. (19, 'addons_accessories', 'index', 'english', 'can_access_accessories', 'Accessories'),
  896. (20, 'addons_extensions', 'index', 'english', 'can_access_extensions', 'Extensions'),
  897. (21, 'addons_modules', 'index', 'english', 'can_access_modules', 'Modules'),
  898. (22, 'addons_plugins', 'index', 'english', 'can_access_plugins', 'Plugins'),
  899. (23, 'content_publish', 'index', 'english', 'all', 'publish new entry publ_index'),
  900. (24, 'content_files', 'index', 'english', 'can_access_files', 'File Manager'),
  901. (25, 'design', 'user_message', 'english', 'can_admin_design', 'User Message Template'),
  902. (26, 'design', 'global_template_preferences', 'english', 'can_admin_design', 'strict_urls 404 Page save_tmpl_revisions max_tmpl_revisions save_tmpl_files tmpl_file_basepath'),
  903. (27, 'design', 'system_offline', 'english', 'can_admin_design', 'System Offline Template'),
  904. (28, 'design', 'email_notification', 'english', 'can_admin_templates', 'Email Notification Template'),
  905. (29, 'design', 'member_profile_templates', 'english', 'can_admin_mbr_templates', 'Member Profile Template'),
  906. (30, 'members', 'register_member', 'english', 'can_admin_members', 'members_register_member'),
  907. (31, 'members', 'member_validation', 'english', 'can_admin_members', 'members_member_validation'),
  908. (32, 'members', 'view_members', 'english', 'can_access_members', 'members_view_members'),
  909. (33, 'members', 'ip_search', 'english', 'can_admin_members', 'ip IP members_ip_search'),
  910. (34, 'members', 'custom_profile_fields', 'english', 'can_admin_members', 'Custom Member Profile Fields'),
  911. (35, 'members', 'member_group_manager', 'english', 'can_admin_mbr_groups', 'Member Group Management'),
  912. (36, 'members', 'member_config', 'english', 'can_admin_members', 'members_member_config'),
  913. (37, 'members', 'member_banning', 'english', 'can_ban_users', 'members_member_banning'),
  914. (38, 'members', 'member_search', 'english', 'all', 'members_member_search'),
  915. (39, 'tools_data', 'sql_manager', 'english', 'can_access_data', 'Sql Manager'),
  916. (40, 'tools_data', 'search_and_replace', 'english', 'can_access_data', 'Search and Replace'),
  917. (41, 'tools_data', 'recount_stats', 'english', 'can_access_data', 'Recount Stats'),
  918. (42, 'tools_data', 'php_info', 'english', 'can_access_data', 'PHP Info'),
  919. (43, 'tools_data', 'clear_caching', 'english', 'can_access_data', 'Clear Caching'),
  920. (44, 'tools_logs', 'view_cp_log', 'english', 'can_access_logs', 'View Control Panel Log'),
  921. (45, 'tools_logs', 'view_throttle_log', 'english', 'can_access_logs', 'View Throttle Log'),
  922. (46, 'tools_logs', 'view_search_log', 'english', 'can_access_logs', 'View Search Log'),
  923. (47, 'tools_logs', 'view_email_log', 'english', 'can_access_logs', 'View Email Log'),
  924. (48, 'tools_utilities', 'member_import', 'english', 'can_access_utilities', 'Member Import'),
  925. (49, 'tools_utilities', 'import_from_mt', 'english', 'can_access_utilities', 'Import From MT'),
  926. (50, 'tools_utilities', 'import_from_xml', 'english', 'can_access_utilities', 'Import From XML'),
  927. (51, 'tools_utilities', 'translation_tool', 'english', 'can_access_utilities', 'Translation Utility');
  928. -- --------------------------------------------------------
  929. --
  930. -- Table structure for table `exp_email_cache`
  931. --
  932. DROP TABLE IF EXISTS `exp_email_cache`;
  933. CREATE TABLE `exp_email_cache` (
  934. `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  935. `cache_date` int(10) unsigned NOT NULL DEFAULT '0',
  936. `total_sent` int(6) unsigned NOT NULL,
  937. `from_name` varchar(70) NOT NULL,
  938. `from_email` varchar(70) NOT NULL,
  939. `recipient` text NOT NULL,
  940. `cc` text NOT NULL,
  941. `bcc` text NOT NULL,
  942. `recipient_array` mediumtext NOT NULL,
  943. `subject` varchar(120) NOT NULL,
  944. `message` mediumtext NOT NULL,
  945. `plaintext_alt` mediumtext NOT NULL,
  946. `mailinglist` char(1) NOT NULL DEFAULT 'n',
  947. `mailtype` varchar(6) NOT NULL,
  948. `text_fmt` varchar(40) NOT NULL,
  949. `wordwrap` char(1) NOT NULL DEFAULT 'y',
  950. `priority` char(1) NOT NULL DEFAULT '3',
  951. PRIMARY KEY (`cache_id`)
  952. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  953. --
  954. -- Dumping data for table `exp_email_cache`
  955. --
  956. -- --------------------------------------------------------
  957. --
  958. -- Table structure for table `exp_email_cache_mg`
  959. --
  960. DROP TABLE IF EXISTS `exp_email_cache_mg`;
  961. CREATE TABLE `exp_email_cache_mg` (
  962. `cache_id` int(6) unsigned NOT NULL,
  963. `group_id` smallint(4) NOT NULL,
  964. PRIMARY KEY (`cache_id`,`group_id`)
  965. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  966. --
  967. -- Dumping data for table `exp_email_cache_mg`
  968. --
  969. -- --------------------------------------------------------
  970. --
  971. -- Table structure for table `exp_email_cache_ml`
  972. --
  973. DROP TABLE IF EXISTS `exp_email_cache_ml`;
  974. CREATE TABLE `exp_email_cache_ml` (
  975. `cache_id` int(6) unsigned NOT NULL,
  976. `list_id` smallint(4) NOT NULL,
  977. PRIMARY KEY (`cache_id`,`list_id`)
  978. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  979. --
  980. -- Dumping data for table `exp_email_cache_ml`
  981. --
  982. -- --------------------------------------------------------
  983. --
  984. -- Table structure for table `exp_email_console_cache`
  985. --
  986. DROP TABLE IF EXISTS `exp_email_console_cache`;
  987. CREATE TABLE `exp_email_console_cache` (
  988. `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  989. `cache_date` int(10) unsigned NOT NULL DEFAULT '0',
  990. `member_id` int(10) unsigned NOT NULL,
  991. `member_name` varchar(50) NOT NULL,
  992. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  993. `recipient` varchar(70) NOT NULL,
  994. `recipient_name` varchar(50) NOT NULL,
  995. `subject` varchar(120) NOT NULL,
  996. `message` mediumtext NOT NULL,
  997. PRIMARY KEY (`cache_id`)
  998. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  999. --
  1000. -- Dumping data for table `exp_email_console_cache`
  1001. --
  1002. -- --------------------------------------------------------
  1003. --
  1004. -- Table structure for table `exp_email_tracker`
  1005. --
  1006. DROP TABLE IF EXISTS `exp_email_tracker`;
  1007. CREATE TABLE `exp_email_tracker` (
  1008. `email_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1009. `email_date` int(10) unsigned NOT NULL DEFAULT '0',
  1010. `sender_ip` varchar(16) NOT NULL,
  1011. `sender_email` varchar(75) NOT NULL,
  1012. `sender_username` varchar(50) NOT NULL,
  1013. `number_recipients` int(4) unsigned NOT NULL DEFAULT '1',
  1014. PRIMARY KEY (`email_id`)
  1015. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  1016. --
  1017. -- Dumping data for table `exp_email_tracker`
  1018. --
  1019. -- --------------------------------------------------------
  1020. --
  1021. -- Table structure for table `exp_entry_ping_status`
  1022. --
  1023. DROP TABLE IF EXISTS `exp_entry_ping_status`;
  1024. CREATE TABLE `exp_entry_ping_status` (
  1025. `entry_id` int(10) unsigned NOT NULL,
  1026. `ping_id` int(10) unsigned NOT NULL,
  1027. PRIMARY KEY (`entry_id`,`ping_id`)
  1028. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1029. --
  1030. -- Dumping data for table `exp_entry_ping_status`
  1031. --
  1032. -- --------------------------------------------------------
  1033. --
  1034. -- Table structure for table `exp_entry_versioning`
  1035. --
  1036. DROP TABLE IF EXISTS `exp_entry_versioning`;
  1037. CREATE TABLE `exp_entry_versioning` (
  1038. `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1039. `entry_id` int(10) unsigned NOT NULL,
  1040. `channel_id` int(4) unsigned NOT NULL,
  1041. `author_id` int(10) unsigned NOT NULL,
  1042. `version_date` int(10) NOT NULL,
  1043. `version_data` mediumtext NOT NULL,
  1044. PRIMARY KEY (`version_id`),
  1045. KEY `entry_id` (`entry_id`)
  1046. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  1047. --
  1048. -- Dumping data for table `exp_entry_versioning`
  1049. --
  1050. -- --------------------------------------------------------
  1051. --
  1052. -- Table structure for table `exp_extensions`
  1053. --
  1054. DROP TABLE IF EXISTS `exp_extensions`;
  1055. CREATE TABLE `exp_extensions` (
  1056. `extension_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1057. `class` varchar(50) NOT NULL DEFAULT '',
  1058. `method` varchar(50) NOT NULL DEFAULT '',
  1059. `hook` varchar(50) NOT NULL DEFAULT '',
  1060. `settings` text NOT NULL,
  1061. `priority` int(2) NOT NULL DEFAULT '10',
  1062. `version` varchar(10) NOT NULL DEFAULT '',
  1063. `enabled` char(1) NOT NULL DEFAULT 'y',
  1064. PRIMARY KEY (`extension_id`)
  1065. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
  1066. --
  1067. -- Dumping data for table `exp_extensions`
  1068. --
  1069. INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES
  1070. (1, 'Safecracker_ext', 'form_declaration_modify_data', 'form_declaration_modify_data', '', 10, '2.1', 'y'),
  1071. (2, 'Matrix_ext', 'channel_entries_tagdata', 'channel_entries_tagdata', '', 10, '2.2.3.2', 'y');
  1072. -- --------------------------------------------------------
  1073. --
  1074. -- Table structure for table `exp_fieldtypes`
  1075. --
  1076. DROP TABLE IF EXISTS `exp_fieldtypes`;
  1077. CREATE TABLE `exp_fieldtypes` (
  1078. `fieldtype_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  1079. `name` varchar(50) NOT NULL,
  1080. `version` varchar(12) NOT NULL,
  1081. `settings` text,
  1082. `has_global_settings` char(1) DEFAULT 'n',
  1083. PRIMARY KEY (`fieldtype_id`)
  1084. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
  1085. --
  1086. -- Dumping data for table `exp_fieldtypes`
  1087. --
  1088. INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES
  1089. (1, 'select', '1.0', 'YTowOnt9', 'n'),
  1090. (2, 'text', '1.0', 'YTowOnt9', 'n'),
  1091. (3, 'textarea', '1.0', 'YTowOnt9', 'n'),
  1092. (4, 'date', '1.0', 'YTowOnt9', 'n'),
  1093. (5, 'file', '1.0', 'YTowOnt9', 'n'),
  1094. (6, 'multi_select', '1.0', 'YTowOnt9', 'n'),
  1095. (7, 'checkboxes', '1.0', 'YTowOnt9', 'n'),
  1096. (8, 'radio', '1.0', 'YTowOnt9', 'n'),
  1097. (9, 'rel', '1.0', 'YTowOnt9', 'n'),
  1098. (10, 'matrix', '2.2.3.2', 'YTowOnt9', 'y');
  1099. -- --------------------------------------------------------
  1100. --
  1101. -- Table structure for table `exp_field_formatting`
  1102. --
  1103. DROP TABLE IF EXISTS `exp_field_formatting`;
  1104. CREATE TABLE `exp_field_formatting` (
  1105. `formatting_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1106. `field_id` int(10) unsigned NOT NULL,
  1107. `field_fmt` varchar(40) NOT NULL,
  1108. PRIMARY KEY (`formatting_id`)
  1109. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=105 ;
  1110. --
  1111. -- Dumping data for table `exp_field_formatting`
  1112. --
  1113. INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES
  1114. (1, 1, 'none'),
  1115. (2, 1, 'br'),
  1116. (3, 1, 'xhtml'),
  1117. (4, 2, 'none'),
  1118. (5, 2, 'br'),
  1119. (6, 2, 'xhtml'),
  1120. (101, 3, 'xhtml'),
  1121. (100, 3, 'br'),
  1122. (99, 3, 'none'),
  1123. (10, 4, 'none'),
  1124. (11, 4, 'br'),
  1125. (12, 4, 'xhtml'),
  1126. (13, 5, 'none'),
  1127. (14, 5, 'br'),
  1128. (15, 5, 'xhtml'),
  1129. (16, 6, 'none'),
  1130. (17, 6, 'br'),
  1131. (18, 6, 'xhtml'),
  1132. (24, 8, 'xhtml'),
  1133. (23, 8, 'br'),
  1134. (22, 8, 'none'),
  1135. (63, 21, 'xhtml'),
  1136. (62, 21, 'br'),
  1137. (61, 21, 'none'),
  1138. (31, 11, 'none'),
  1139. (32, 11, 'br'),
  1140. (33, 11, 'xhtml'),
  1141. (57, 19, 'xhtml'),
  1142. (56, 19, 'br'),
  1143. (55, 19, 'none'),
  1144. (54, 18, 'xhtml'),
  1145. (53, 18, 'br'),
  1146. (52, 18, 'none'),
  1147. (64, 22, 'none'),
  1148. (65, 22, 'br'),
  1149. (66, 22, 'xhtml'),
  1150. (104, 33, 'xhtml'),
  1151. (103, 33, 'br'),
  1152. (102, 33, 'none'),
  1153. (70, 24, 'none'),
  1154. (71, 24, 'br'),
  1155. (72, 24, 'xhtml'),
  1156. (73, 25, 'none'),
  1157. (74, 25, 'br'),
  1158. (75, 25, 'xhtml'),
  1159. (76, 26, 'none'),
  1160. (77, 26, 'br'),
  1161. (78, 26, 'xhtml'),
  1162. (79, 27, 'none'),
  1163. (80, 27, 'br'),
  1164. (81, 27, 'xhtml'),
  1165. (82, 28, 'none'),
  1166. (83, 28, 'br'),
  1167. (84, 28, 'xhtml'),
  1168. (85, 29, 'none'),
  1169. (86, 29, 'br'),
  1170. (87, 29, 'xhtml'),
  1171. (88, 30, 'none'),
  1172. (89, 30, 'br'),
  1173. (90, 30, 'xhtml'),
  1174. (91, 31, 'none'),
  1175. (92, 31, 'br'),
  1176. (93, 31, 'xhtml'),
  1177. (94, 32, 'none'),
  1178. (95, 32, 'br'),
  1179. (96, 32, 'xhtml');
  1180. -- --------------------------------------------------------
  1181. --
  1182. -- Table structure for table `exp_field_groups`
  1183. --
  1184. DROP TABLE IF EXISTS `exp_field_groups`;
  1185. CREATE TABLE `exp_field_groups` (
  1186. `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  1187. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  1188. `group_name` varchar(50) NOT NULL,
  1189. PRIMARY KEY (`group_id`),
  1190. KEY `site_id` (`site_id`)
  1191. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
  1192. --
  1193. -- Dumping data for table `exp_field_groups`
  1194. --
  1195. INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES
  1196. (1, 1, 'departments'),
  1197. (2, 1, 'events'),
  1198. (3, 1, 'blog'),
  1199. (4, 1, 'careers'),
  1200. (5, 1, 'specials'),
  1201. (6, 1, 'news'),
  1202. (10, 1, 'slider');
  1203. -- --------------------------------------------------------
  1204. --
  1205. -- Table structure for table `exp_files`
  1206. --
  1207. DROP TABLE IF EXISTS `exp_files`;
  1208. CREATE TABLE `exp_files` (
  1209. `file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1210. `site_id` int(4) unsigned DEFAULT '1',
  1211. `title` varchar(255) DEFAULT NULL,
  1212. `upload_location_id` int(4) unsigned DEFAULT '0',
  1213. `rel_path` varchar(255) DEFAULT NULL,
  1214. `status` char(1) DEFAULT 'o',
  1215. `mime_type` varchar(255) DEFAULT NULL,
  1216. `file_name` varchar(255) DEFAULT NULL,
  1217. `file_size` int(10) DEFAULT '0',
  1218. `caption` text,
  1219. `field_1` text,
  1220. `field_1_fmt` tinytext,
  1221. `field_2` text,
  1222. `field_2_fmt` tinytext,
  1223. `field_3` text,
  1224. `field_3_fmt` tinytext,
  1225. `field_4` text,
  1226. `field_4_fmt` tinytext,
  1227. `field_5` text,
  1228. `field_5_fmt` tinytext,
  1229. `field_6` text,
  1230. `field_6_fmt` tinytext,
  1231. `metadata` mediumtext,
  1232. `uploaded_by_member_id` int(10) unsigned DEFAULT '0',
  1233. `upload_date` int(10) DEFAULT NULL,
  1234. `modified_by_member_id` int(10) unsigned DEFAULT '0',
  1235. `modified_date` int(10) DEFAULT NULL,
  1236. `file_hw_original` varchar(20) NOT NULL DEFAULT '',
  1237. PRIMARY KEY (`file_id`),
  1238. KEY `upload_location_id` (`upload_location_id`),
  1239. KEY `site_id` (`site_id`)
  1240. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=192 ;
  1241. --
  1242. -- Dumping data for table `exp_files`
  1243. --
  1244. INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `status`, `mime_type`, `file_name`, `file_size`, `caption`, `field_1`, `field_1_fmt`, `field_2`, `field_2_fmt`, `field_3`, `field_3_fmt`, `field_4`, `field_4_fmt`, `field_5`, `field_5_fmt`, `field_6`, `field_6_fmt`, `metadata`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES
  1245. (48, 1, 'shutterstock_78657055.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/shutterstock_78657055.jpg', 'o', 'image/jpeg', 'shutterstock_78657055.jpg', 639468, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328110358, 2, 1328110358, '667 1000'),
  1246. (29, 1, 'viewallspecials2.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/viewallspecials2.jpg', 'o', 'image/jpeg', 'viewallspecials2.jpg', 5233, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1327953085, 2, 1327953085, '24 118'),
  1247. (40, 1, 'slider1.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/slider1.jpg', 'o', 'image/jpeg', 'slider1.jpg', 56933, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328046561, 2, 1328120154, '340 637'),
  1248. (41, 1, 'slider2.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/slider2.jpg', 'o', 'image/jpeg', 'slider2.jpg', 82099, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328046585, 2, 1328120165, '340 637'),
  1249. (39, 1, 'shutterstock_12162169.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/shutterstock_12162169.jpg', 'o', 'image/jpeg', 'shutterstock_12162169.jpg', 44394, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328046127, 2, 1328046178, '340 640'),
  1250. (61, 1, 'shutterstock_20065717.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/shutterstock_20065717.jpg', 'o', 'image/jpeg', 'shutterstock_20065717.jpg', 83558, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328120502, 2, 1328120580, '340 637'),
  1251. (62, 1, 'shutterstock_3075095.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_3075095.jpg', 'o', 'image/jpeg', 'shutterstock_3075095.jpg', 44468, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328281729, 2, 1328281879, '200 620'),
  1252. (67, 1, 'shutterstock_47865241.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_47865241.jpg', 'o', 'image/jpeg', 'shutterstock_47865241.jpg', 51102, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328284412, 2, 1328284784, '200 620'),
  1253. (68, 1, 'shutterstock_69273055.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_69273055.jpg', 'o', 'image/jpeg', 'shutterstock_69273055.jpg', 19298, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328284807, 2, 1328284848, '200 620'),
  1254. (69, 1, 'shutterstock_3075095.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_3075095.jpg', 'o', 'image/jpeg', 'shutterstock_3075095.jpg', 17723, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328285021, 2, 1328285075, '190 190'),
  1255. (70, 1, 'stock-photo-boy-drinking-water-from-bottle-3965554.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-boy-drinking-water-from-bottle-3965554.jpg', 'o', 'image/jpeg', 'stock-photo-boy-drinking-water-from-bottle-3965554.jpg', 23296, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328299909, 2, 1328300054, '200 620'),
  1256. (71, 1, 'pic.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/pic.jpg', 'o', 'image/jpeg', 'pic.jpg', 39374, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328300849, 3, 1328300986, '200 620'),
  1257. (72, 1, 'stock-photo-happy-cute-little-baby-in-a-cook-cap-with-a-pan-66116038.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-happy-cute-little-baby-in-a-cook-cap-with-a-pan-66116038.jpg', 'o', 'image/jpeg', 'stock-photo-happy-cute-little-baby-in-a-cook-cap-with-a-pan-66116038.jpg', 14009, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328301098, 3, 1328301290, '200 620'),
  1258. (73, 1, 'fruit.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/fruit.jpg', 'o', 'image/jpeg', 'fruit.jpg', 93381, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328302756, 3, 1328302819, '340 637'),
  1259. (75, 1, 'ethical-bean-contest-erin-ireland.jpeg', 10, '/www/eh17362/public_html/images/uploads/departments_images/ethical-bean-contest-erin-ireland.jpeg', 'o', 'image/jpeg', 'ethical-bean-contest-erin-ireland.jpeg', 25063, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328675612, 3, 1328675997, '348 300'),
  1260. (79, 1, 'amys_pizza_roasted_veg.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/amys_pizza_roasted_veg.jpg', 'o', 'image/jpeg', 'amys_pizza_roasted_veg.jpg', 48540, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328676210, 3, 1328676262, '300 300'),
  1261. (80, 1, 'stock-photo-meat-section-in-supermarket-269932.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-meat-section-in-supermarket-269932.jpg', 'o', 'image/jpeg', 'stock-photo-meat-section-in-supermarket-269932.jpg', 88463, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328676384, 3, 1328676384, '379 450'),
  1262. (81, 1, 'stock-photo-cake-and-sun-83472505.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-cake-and-sun-83472505.jpg', 'o', 'image/jpeg', 'stock-photo-cake-and-sun-83472505.jpg', 65362, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328676457, 3, 1328676457, '320 450'),
  1263. (82, 1, 'stock-photo-raw-hamburger-patties-on-a-kitchen-bench-54485347.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-raw-hamburger-patties-on-a-kitchen-bench-54485347.jpg', 'o', 'image/jpeg', 'stock-photo-raw-hamburger-patties-on-a-kitchen-bench-54485347.jpg', 32353, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328676593, 3, 1328676648, '279 371'),
  1264. (83, 1, 'stock-photo-raw-salmon-on-a-cutting-board-76190782.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-raw-salmon-on-a-cutting-board-76190782.jpg', 'o', 'image/jpeg', 'stock-photo-raw-salmon-on-a-cutting-board-76190782.jpg', 11522, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328676740, 3, 1328676867, '126 213'),
  1265. (84, 1, 'stock-photo-fresh-raw-rib-eye-beef-steak-93933370.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-fresh-raw-rib-eye-beef-steak-93933370.jpg', 'o', 'image/jpeg', 'stock-photo-fresh-raw-rib-eye-beef-steak-93933370.jpg', 26066, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328676989, 3, 1328677118, '210 325'),
  1266. (85, 1, 'stock-photo-coffee-63309568.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-coffee-63309568.jpg', 'o', 'image/jpeg', 'stock-photo-coffee-63309568.jpg', 37607, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328677792, 3, 1328677889, '360 350'),
  1267. (87, 1, 'apply_now_online.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/apply_now_online.jpg', 'o', 'image/jpeg', 'apply_now_online.jpg', 5325, 'Apply Online', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328727346, 2, 1329842047, '24 118'),
  1268. (88, 1, 'view_all_careers.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/view_all_careers.jpg', 'o', 'image/jpeg', 'view_all_careers.jpg', 5202, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328727370, 2, 1328727370, '24 118'),
  1269. (89, 1, 'view_all_events.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/view_all_events.jpg', 'o', 'image/jpeg', 'view_all_events.jpg', 5140, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328727390, 2, 1328727390, '24 118'),
  1270. (90, 1, 'view_department.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/view_department.jpg', 'o', 'image/jpeg', 'view_department.jpg', 5530, 'View Department', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328727405, 2, 1329842035, '24 118'),
  1271. (91, 1, 'visit_our_blog.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/visit_our_blog.jpg', 'o', 'image/jpeg', 'visit_our_blog.jpg', 4772, 'Visit Our Blog', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328727419, 2, 1329842021, '24 118'),
  1272. (92, 1, 'free_layout_tester.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/free_layout_tester.jpg', 'o', 'image/jpeg', 'free_layout_tester.jpg', 19672, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328734809, 3, 1330445004, '140 300'),
  1273. (93, 1, 'free_layout_tester_2.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/free_layout_tester_2.jpg', 'o', 'image/jpeg', 'free_layout_tester_2.jpg', 12595, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1328735678, 3, 1330444946, '100 300'),
  1274. (94, 1, 'stock-photo-mom-giving-homogenized-food-to-her-daughter-on-high-chair-horizontal-shape-46492357.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-mom-giving-homogenized-food-to-her-daughter-on-high-chair-horizontal-shape-46492357.jpg', 'o', 'image/jpeg', 'stock-photo-mom-giving-homogenized-food-to-her-daughter-on-high-chair-horizontal-shape-46492357.jpg', 23456, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328743314, 3, 1328743671, '271 375'),
  1275. (95, 1, 'stock-photo-portrait-of-a-pretty-little-girl-biting-an-apple-57426460.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-portrait-of-a-pretty-little-girl-biting-an-apple-57426460.jpg', 'o', 'image/jpeg', 'stock-photo-portrait-of-a-pretty-little-girl-biting-an-apple-57426460.jpg', 33991, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328743778, 3, 1328743794, '398 375'),
  1276. (96, 1, 'stock-photo--month-old-boy-having-fun-and-smiling-in-bath-time-60435946.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo--month-old-boy-having-fun-and-smiling-in-bath-time-60435946.jpg', 'o', 'image/jpeg', 'stock-photo--month-old-boy-having-fun-and-smiling-in-bath-time-60435946.jpg', 52849, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328745759, 3, 1328745759, '320 450'),
  1277. (97, 1, 'stock-photo-mom-giving-homogenized-food-to-her-daughter-on-high-chair-vertical-shape-46625842.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-mom-giving-homogenized-food-to-her-daughter-on-high-chair-vertical-shape-46625842.jpg', 'o', 'image/jpeg', 'stock-photo-mom-giving-homogenized-food-to-her-daughter-on-high-chair-vertical-shape-46625842.jpg', 52224, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1328745953, 3, 1328745953, '470 338'),
  1278. (98, 1, 'stock-photo-variety-of-foods-rich-in-antioxidants-isolated-on-white-includes-broccoli-apple-green-tea-75558925.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-variety-of-foods-rich-in-antioxidants-isolated-on-white-includes-broccoli-apple-green-tea-75558925.jpg', 'o', 'image/jpeg', 'stock-photo-variety-of-foods-rich-in-antioxidants-isolated-on-white-includes-broccoli-apple-green-tea-75558925.jpg', 52460, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329240353, 3, 1329240353, '320 450'),
  1279. (99, 1, 'stock-photo-cup-of-coffee-63469789.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-cup-of-coffee-63469789.jpg', 'o', 'image/jpeg', 'stock-photo-cup-of-coffee-63469789.jpg', 25868, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329242565, 3, 1331222316, '272 250'),
  1280. (100, 1, 'stock-photo-cup-of-coffee-63469789.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-cup-of-coffee-63469789.jpg', 'o', 'image/jpeg', 'stock-photo-cup-of-coffee-63469789.jpg', 25639, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329242594, 3, 1329242722, '271 250'),
  1281. (101, 1, 'stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626.jpg', 'o', 'image/jpeg', 'stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626.jpg', 3860, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329243100, 3, 1329243100, '100 80'),
  1282. (102, 1, 'stock-photo-vintage-coffee-grinder-with-coffee-beans-around-it-801491.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-vintage-coffee-grinder-with-coffee-beans-around-it-801491.jpg', 'o', 'image/jpeg', 'stock-photo-vintage-coffee-grinder-with-coffee-beans-around-it-801491.jpg', 19719, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329243497, 3, 1329243548, '320 250'),
  1283. (103, 1, 'stock-photo-coffee-on-the-table-63633430.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-coffee-on-the-table-63633430.jpg', 'o', 'image/jpeg', 'stock-photo-coffee-on-the-table-63633430.jpg', 11033, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329243934, 3, 1329412291, '148 199'),
  1284. (104, 1, 'stock-photo-olive-oil-and-mature-olives-13334356.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-olive-oil-and-mature-olives-13334356.jpg', 'o', 'image/jpeg', 'stock-photo-olive-oil-and-mature-olives-13334356.jpg', 24526, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329251140, 3, 1329251255, '235 350'),
  1285. (105, 1, 'stock-photo-fresh-vegetables-with-heartin-shape-on-white-background-91012154.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-fresh-vegetables-with-heartin-shape-on-white-background-91012154.jpg', 'o', 'image/jpeg', 'stock-photo-fresh-vegetables-with-heartin-shape-on-white-background-91012154.jpg', 34977, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329251774, 3, 1329251832, '305 350'),
  1286. (107, 1, 'stock-photo-chocolate-and-vanilla-ice-cream-68444665.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-chocolate-and-vanilla-ice-cream-68444665.jpg', 'o', 'image/jpeg', 'stock-photo-chocolate-and-vanilla-ice-cream-68444665.jpg', 26982, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329252081, 3, 1329252108, '252 400'),
  1287. (108, 1, 'stock-photo-18042848-woman-arranging-products-on-shelf.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/stock-photo-18042848-woman-arranging-products-on-shelf.jpg', 'o', 'image/jpeg', 'stock-photo-18042848-woman-arranging-products-on-shelf.jpg', 52367, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329321737, 3, 1329321737, '253 380'),
  1288. (109, 1, 'stock-photo-woman-in-a-supermarket-at-the-vegetable-shelf-shopping-for-groceries-a-shop-assistant-is-helping-69171703.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/stock-photo-woman-in-a-supermarket-at-the-vegetable-shelf-shopping-for-groceries-a-shop-assistant-is-helping-69171703.jpg', 'o', 'image/jpeg', 'stock-photo-woman-in-a-supermarket-at-the-vegetable-shelf-shopping-for-groceries-a-shop-assistant-is-helping-69171703.jpg', 51575, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329322215, 2, 1329848039, '340 637'),
  1289. (110, 1, 'stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626_(1).jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626_(1).jpg', 'o', 'image/jpeg', 'stock-photo-photo-of-an-antique-coffee-grinder-with-coffee-beans-in-the-blurred-background-80042626_(1).jpg', 20173, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329412162, 3, 1329412228, '254 200'),
  1290. (111, 1, 'stock-photo-oil-and-balsamic-vinegar-glass-bottles-with-spouts-44684890.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-oil-and-balsamic-vinegar-glass-bottles-with-spouts-44684890.jpg', 'o', 'image/jpeg', 'stock-photo-oil-and-balsamic-vinegar-glass-bottles-with-spouts-44684890.jpg', 14487, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1329884990, 3, 1329885069, '242 150'),
  1291. (113, 1, 'stock-photo-olive-oil-over-olives-57426826.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/stock-photo-olive-oil-over-olives-57426826.jpg', 'o', 'image/jpeg', 'stock-photo-olive-oil-over-olives-57426826.jpg', 23429, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1330444322, 3, 1330444442, '200 397'),
  1292. (114, 1, 'example.jpg', 13, '/www/eh17362/public_html/images/uploads/flyer_images/example.jpg', 'o', 'image/jpeg', 'example.jpg', 178822, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1330620081, 2, 1330620081, '823 800'),
  1293. (115, 1, 'stock-photo-heart-of-fruits-and-vegetables-76317430.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-heart-of-fruits-and-vegetables-76317430.jpg', 'o', 'image/jpeg', 'stock-photo-heart-of-fruits-and-vegetables-76317430.jpg', 29362, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331006416, 3, 1331006486, '265 300'),
  1294. (116, 1, 'stock-photo-fresh-vegetables-on-the-white-background-57393478.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-fresh-vegetables-on-the-white-background-57393478.jpg', 'o', 'image/jpeg', 'stock-photo-fresh-vegetables-on-the-white-background-57393478.jpg', 68311, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331007215, 3, 1331007215, '320 450'),
  1295. (117, 1, 'stock-photo-fresh-vegetables-garden-radish-carrots-and-beet-60618118.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-fresh-vegetables-garden-radish-carrots-and-beet-60618118.jpg', 'o', 'image/jpeg', 'stock-photo-fresh-vegetables-garden-radish-carrots-and-beet-60618118.jpg', 115077, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331007952, 3, 1331007952, '319 450'),
  1296. (118, 1, 'stock-photo-attractive-brunette-woman-with-a-cake-close-up-portrait-88449322.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-attractive-brunette-woman-with-a-cake-close-up-portrait-88449322.jpg', 'o', 'image/jpeg', 'stock-photo-attractive-brunette-woman-with-a-cake-close-up-portrait-88449322.jpg', 26213, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331058943, 3, 1331060056, '265 400'),
  1297. (119, 1, 'stock-photo-young-attractive-blond-woman-drinking-coffee-66789925.jpg', 9, '/www/eh17362/public_html/images/uploads/applications/stock-photo-young-attractive-blond-woman-drinking-coffee-66789925.jpg', 'o', 'image/jpeg', 'stock-photo-young-attractive-blond-woman-drinking-coffee-66789925.jpg', 32635, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331064874, 3, 1331064874, '320 450'),
  1298. (120, 1, 'stock-photo-fresh-beet-82021111.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/stock-photo-fresh-beet-82021111.jpg', 'o', 'image/jpeg', 'stock-photo-fresh-beet-82021111.jpg', 72253, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331066264, 3, 1331066264, '470 299'),
  1299. (121, 1, 'stock-photo-fresh-beets-with-leaves-isolated-on-white-56956804.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/stock-photo-fresh-beets-with-leaves-isolated-on-white-56956804.jpg', 'o', 'image/jpeg', 'stock-photo-fresh-beets-with-leaves-isolated-on-white-56956804.jpg', 40144, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331067246, 3, 1331067351, '340 505'),
  1300. (122, 1, 'fruit.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/fruit.jpg', 'o', 'image/jpeg', 'fruit.jpg', 153060, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331081030, 3, 1331225715, '606 700'),
  1301. (123, 1, 'stock-photo-flowing-golden-tea-into-cup-1716929.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-flowing-golden-tea-into-cup-1716929.jpg', 'o', 'image/jpeg', 'stock-photo-flowing-golden-tea-into-cup-1716929.jpg', 46684, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331083405, 3, 1331083405, '470 300'),
  1302. (124, 1, 'stock-photo-cup-of-tea-with-teabag-in-spoon-67783273.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-cup-of-tea-with-teabag-in-spoon-67783273.jpg', 'o', 'image/jpeg', 'stock-photo-cup-of-tea-with-teabag-in-spoon-67783273.jpg', 14672, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331083826, 3, 1331083885, '314 250'),
  1303. (126, 1, 'stock-photo-the-image-of-a-beautiful-girl-in-a-cafe-48399229_(1).jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/stock-photo-the-image-of-a-beautiful-girl-in-a-cafe-48399229_(1).jpg', 'o', 'image/jpeg', 'stock-photo-the-image-of-a-beautiful-girl-in-a-cafe-48399229_(1).jpg', 23596, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331178112, 3, 1331178149, '268 328'),
  1304. (127, 1, 'CIMG3055.JPG', 10, '/www/eh17362/public_html/images/uploads/departments_images/CIMG3055.JPG', 'o', 'image/jpeg', 'CIMG3055.JPG', 129394, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331179294, 3, 1331179294, '465 620'),
  1305. (128, 1, 'CIMG2478.JPG', 10, '/www/eh17362/public_html/images/uploads/departments_images/CIMG2478.JPG', 'o', 'image/jpeg', 'CIMG2478.JPG', 68141, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331179361, 3, 1331179361, '465 620'),
  1306. (129, 1, 'stock-photo-refreshing-iced-tea-makes-a-perfect-drink-on-a-hot-summer-day-72602881.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/stock-photo-refreshing-iced-tea-makes-a-perfect-drink-on-a-hot-summer-day-72602881.jpg', 'o', 'image/jpeg', 'stock-photo-refreshing-iced-tea-makes-a-perfect-drink-on-a-hot-summer-day-72602881.jpg', 55759, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331225377, 3, 1331225544, '390 600'),
  1307. (130, 1, 'woman drinking tea or coffee 48399229.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_48399229.jpg', 'o', 'image/jpeg', 'shutterstock_48399229.jpg', 32468, '', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331444653, 3, 1331445107, '415 475'),
  1308. (132, 1, 'shutterstock_56956804.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/shutterstock_56956804.jpg', 'o', 'image/jpeg', 'shutterstock_56956804.jpg', 41435, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331445684, 3, 1331445767, '340 509'),
  1309. (133, 1, 'shutterstock_88449322.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_88449322.jpg', 'o', 'image/jpeg', 'shutterstock_88449322.jpg', 52540, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331446274, 3, 1331446513, '463 664'),
  1310. (134, 1, 'shutterstock_60859294.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_60859294.jpg', 'o', 'image/jpeg', 'shutterstock_60859294.jpg', 58182, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331446667, 3, 1331447039, '508 450'),
  1311. (135, 1, 'shutterstock_90632521.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_90632521.jpg', 'o', 'image/jpeg', 'shutterstock_90632521.jpg', 59447, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331447312, 3, 1331447465, '557 450'),
  1312. (136, 1, 'shutterstock_46492357.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_46492357.jpg', 'o', 'image/jpeg', 'shutterstock_46492357.jpg', 33787, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331447627, 3, 1331447754, '372 500'),
  1313. (137, 1, 'shutterstock_12869716.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_12869716.jpg', 'o', 'image/jpeg', 'shutterstock_12869716.jpg', 99503, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331447983, 3, 1331448078, '709 620'),
  1314. (138, 1, 'shutterstock_68444665.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/shutterstock_68444665.jpg', 'o', 'image/jpeg', 'shutterstock_68444665.jpg', 36279, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331448179, 3, 1331448318, '326 500'),
  1315. (139, 1, 'shutterstock_1716929.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_1716929.jpg', 'o', 'image/jpeg', 'shutterstock_1716929.jpg', 73947, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1331448453, 3, 1331448453, '931 620'),
  1316. (140, 1, 'shutterstock_80795062.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_80795062.jpg', 'o', 'image/jpeg', 'shutterstock_80795062.jpg', 123938, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332128061, 3, 1332128061, '930 620'),
  1317. (141, 1, 'baked_goods.jpg', 10, '/www/eh17362/public_html/images/uploads/departments_images/baked_goods.jpg', 'o', 'image/jpeg', 'baked_goods.jpg', 82010, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332129839, 3, 1332129858, '620 620'),
  1318. (142, 1, 'shutterstock_93294181.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_93294181.jpg', 'o', 'image/jpeg', 'shutterstock_93294181.jpg', 45013, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332270511, 3, 1332271003, '443 350'),
  1319. (143, 1, 'Nova_The_Pluto_Files.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/Nova_The_Pluto_Files.jpg', 'o', 'image/jpeg', 'Nova_The_Pluto_Files.jpg', 9386, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332449276, 2, 1332449276, '109 150'),
  1320. (144, 1, 'Nova_The_Pluto_Files.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/Nova_The_Pluto_Files.jpg', 'o', 'image/jpeg', 'Nova_The_Pluto_Files.jpg', 43248, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332449352, 2, 1332449391, '200 620'),
  1321. (145, 1, 'shutterstock_76366750b.jpg', 7, '/www/eh17362/public_html/images/uploads/slider_main_image/shutterstock_76366750b.jpg', 'o', 'image/jpeg', 'shutterstock_76366750b.jpg', 44754, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332515359, 3, 1332515548, '340 637'),
  1322. (146, 1, 'Nova_The_Pluto_Files.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/Nova_The_Pluto_Files.jpg', 'o', 'image/jpeg', 'Nova_The_Pluto_Files.jpg', 122391, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332517964, 2, 1332517972, '545 750'),
  1323. (151, 1, 'Nova-The-Pluto-Files_tyson.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/Nova-The-Pluto-Files_tyson.jpg', 'o', 'image/jpeg', 'Nova-The-Pluto-Files_tyson.jpg', 14060, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332770473, 2, 1332770473, '186 150'),
  1324. (149, 1, 'pluto.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/pluto.jpg', 'o', 'image/jpeg', 'pluto.jpg', 122360, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332524369, 2, 1332524376, '545 750'),
  1325. (150, 1, 'shutterstock_46492357.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/shutterstock_46492357.jpg', 'o', 'image/jpeg', 'shutterstock_46492357.jpg', 29632, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332531880, 2, 1332531930, '260 620'),
  1326. (152, 1, 'Nova-The-Pluto-Files_tyson2.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/Nova-The-Pluto-Files_tyson2.jpg', 'o', 'image/jpeg', 'Nova-The-Pluto-Files_tyson2.jpg', 14060, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332770565, 2, 1332770565, '186 150'),
  1327. (153, 1, 'Nova_The_Pluto_Filestesssst.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/Nova_The_Pluto_Filestesssst.jpg', 'o', 'image/jpeg', 'Nova_The_Pluto_Filestesssst.jpg', 9298, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332770659, 2, 1332770666, '109 150'),
  1328. (154, 1, 'example.jpg', 12, '/www/eh17362/public_html/images/uploads/specials_images/example.jpg', 'o', 'image/jpeg', 'example.jpg', 416870, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332774114, 2, 1332774114, '861 836'),
  1329. (160, 1, 'shutterstock_88449322_thumb.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_88449322_thumb.jpg', 'o', 'image/jpeg', 'shutterstock_88449322_thumb.jpg', 4152, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332787240, 2, 1332787300, '90 90'),
  1330. (158, 1, 'example5.jpg', 12, '/www/eh17362/public_html/images/uploads/specials_images/example5.jpg', 'o', 'image/jpeg', 'example5.jpg', 4079, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332774762, 2, 1332774766, '74 72'),
  1331. (159, 1, 'shutterstock_93294181_test.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_93294181_test.jpg', 'o', 'image/jpeg', 'shutterstock_93294181_test.jpg', 10007, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332786985, 2, 1332787057, '150 150'),
  1332. (161, 1, 'shutterstock_1716929_thumb.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_images/shutterstock_1716929_thumb.jpg', 'o', 'image/jpeg', 'shutterstock_1716929_thumb.jpg', 7087, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1332787354, 2, 1332787405, '150 150'),
  1333. (162, 1, 'shutterstock_90145933.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/shutterstock_90145933.jpg', 'o', 'image/jpeg', 'shutterstock_90145933.jpg', 158431, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332815053, 3, 1332815053, '1125 750'),
  1334. (163, 1, 'stock-photo-7159831-sneaking-a-cookie.jpg', 9, '/www/eh17362/public_html/images/uploads/applications/stock-photo-7159831-sneaking-a-cookie.jpg', 'o', 'image/jpeg', 'stock-photo-7159831-sneaking-a-cookie.jpg', 13435, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332871088, 3, 1332871088, '110 73'),
  1335. (164, 1, 'stock-photo-18042848-woman-arranging-products-on-shelf.jpg', 13, '/www/eh17362/public_html/images/uploads/flyer_images/stock-photo-18042848-woman-arranging-products-on-shelf.jpg', 'o', 'image/jpeg', 'stock-photo-18042848-woman-arranging-products-on-shelf.jpg', 52367, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332871194, 3, 1332871194, '253 380'),
  1336. (165, 1, 'shutterstock_75435250.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/shutterstock_75435250.jpg', 'o', 'image/jpeg', 'shutterstock_75435250.jpg', 29248, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332871749, 3, 1332872059, '275 400'),
  1337. (166, 1, 'shutterstock_28660328.jpg', 11, '/www/eh17362/public_html/images/uploads/free_layout/shutterstock_28660328.jpg', 'o', 'image/jpeg', 'shutterstock_28660328.jpg', 61478, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 3, 1332955618, 3, 1332956171, '340 419'),
  1338. (185, 1, 'l_circ.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_thumbnails/l_circ.jpg', 'o', 'image/jpeg', 'l_circ.jpg', 1386, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333459650, 2, 1333459650, '50 100'),
  1339. (184, 1, 'circ111.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/circ111.jpg', 'o', 'image/jpeg', 'circ111.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333392356, 2, 1333392368, '1000 500'),
  1340. (183, 1, 'circ6.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/circ6.jpg', 'o', 'image/jpeg', 'circ6.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333392043, 2, 1333392046, '1000 500'),
  1341. (182, 1, 'circ5.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/circ5.jpg', 'o', 'image/jpeg', 'circ5.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333391990, 2, 1333391994, '1000 500'),
  1342. (181, 1, 'employment.jpg', 5, '/www/eh17362/public_html/images/uploads/slider_button/employment.jpg', 'o', 'image/jpeg', 'employment.jpg', 4659, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333390942, 2, 1333390942, '24 118'),
  1343. (180, 1, 'l_circ2.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/l_circ2.jpg', 'o', 'image/jpeg', 'l_circ2.jpg', 27187, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333389992, 2, 1333389995, '500 1000'),
  1344. (179, 1, 'circ2.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/circ2.jpg', 'o', 'image/jpeg', 'circ2.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333389978, 2, 1333389981, '1000 500'),
  1345. (177, 1, 'circ.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/circ.jpg', 'o', 'image/jpeg', 'circ.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333389908, 2, 1333389908, '1000 500'),
  1346. (178, 1, 'l_circ.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/l_circ.jpg', 'o', 'image/jpeg', 'l_circ.jpg', 27187, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333389919, 2, 1333389919, '500 1000'),
  1347. (186, 1, 'l_circ2.jpg', 8, '/www/eh17362/public_html/images/uploads/blog_thumbnails/l_circ2.jpg', 'o', 'image/jpeg', 'l_circ2.jpg', 1244, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333459676, 2, 1333459834, '72 72'),
  1348. (187, 1, 'l_circ.jpg', 12, '/www/eh17362/public_html/images/uploads/specials_thumbnails/l_circ.jpg', 'o', 'image/jpeg', 'l_circ.jpg', 1386, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333462875, 2, 1333462875, '50 100'),
  1349. (188, 1, 'l_circ3.jpg', 12, '/www/eh17362/public_html/images/uploads/specials_thumbnails/l_circ3.jpg', 'o', 'image/jpeg', 'l_circ3.jpg', 1374, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333462888, 2, 1333462890, '50 100'),
  1350. (189, 1, 'circ.jpg', 13, '/www/eh17362/public_html/images/uploads/flyer_images/circ.jpg', 'o', 'image/jpeg', 'circ.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333463018, 2, 1333463018, '1000 500'),
  1351. (190, 1, 'circ55.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/circ55.jpg', 'o', 'image/jpeg', 'circ55.jpg', 26051, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333468013, 2, 1333468017, '1000 500'),
  1352. (191, 1, 'l_circ66.jpg', 14, '/www/eh17362/public_html/images/uploads/gallery/l_circ66.jpg', 'o', 'image/jpeg', 'l_circ66.jpg', 9604, NULL, NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 'xhtml', NULL, 2, 1333468051, 2, 1333468056, '375 750');
  1353. -- --------------------------------------------------------
  1354. --
  1355. -- Table structure for table `exp_file_categories`
  1356. --
  1357. DROP TABLE IF EXISTS `exp_file_categories`;
  1358. CREATE TABLE `exp_file_categories` (
  1359. `file_id` int(10) unsigned DEFAULT NULL,
  1360. `cat_id` int(10) unsigned DEFAULT NULL,
  1361. `sort` int(10) unsigned DEFAULT '0',
  1362. `is_cover` char(1) DEFAULT 'n',
  1363. KEY `file_id` (`file_id`),
  1364. KEY `cat_id` (`cat_id`)
  1365. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1366. --
  1367. -- Dumping data for table `exp_file_categories`
  1368. --
  1369. -- --------------------------------------------------------
  1370. --
  1371. -- Table structure for table `exp_file_dimensions`
  1372. --
  1373. DROP TABLE IF EXISTS `exp_file_dimensions`;
  1374. CREATE TABLE `exp_file_dimensions` (
  1375. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1376. `upload_location_id` int(4) unsigned DEFAULT NULL,
  1377. `title` varchar(255) DEFAULT '',
  1378. `short_name` varchar(255) DEFAULT '',
  1379. `resize_type` varchar(50) DEFAULT '',
  1380. `width` int(10) DEFAULT '0',
  1381. `height` int(10) DEFAULT '0',
  1382. `watermark_id` int(4) unsigned DEFAULT NULL,
  1383. PRIMARY KEY (`id`),
  1384. KEY `upload_location_id` (`upload_location_id`)
  1385. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
  1386. --
  1387. -- Dumping data for table `exp_file_dimensions`
  1388. --
  1389. INSERT INTO `exp_file_dimensions` (`id`, `upload_location_id`, `title`, `short_name`, `resize_type`, `width`, `height`, `watermark_id`) VALUES
  1390. (1, 1, 'blog_image_small', 'blog_image_small', 'crop', 68, 68, 0),
  1391. (2, 2, 'blog_top_image', 'blog_top_image', 'crop', 620, 200, 0),
  1392. (3, 1, 'blog_top_image', 'blog_top_image', 'crop', 620, 200, 0),
  1393. (4, 3, 'blog_thumb', 'blog_thumb', 'crop', 68, 68, 0),
  1394. (5, 3, 'blog_top', 'blog_top', 'crop', 620, 200, 0),
  1395. (6, 4, 'blog_image_thumb', 'blog_image_thumb', 'constrain', 68, 68, 0),
  1396. (7, 4, 'blog_image_top', 'blog_image_top', 'constrain', 620, 200, 0),
  1397. (8, 5, 'button', 'button', 'constrain', 118, 24, 0),
  1398. (9, 6, 'blog_thumb', 'blog_thumb', 'constrain', 68, 68, 0),
  1399. (10, 7, 'slider_main_image', 'slider_main_image', 'crop', 637, 340, 0),
  1400. (11, 8, 'blog_thumb', 'blog_thumb', 'crop', 72, 72, 0),
  1401. (16, 14, 'gallery_thumb', 'gallery_thumb', 'crop', 125, 125, 0),
  1402. (13, 10, 'departments_top', 'departments_top', 'constrain', 620, 200, 0),
  1403. (14, 13, 'flyer_small', 'flyer_small', 'constrain', 300, 0, 0),
  1404. (15, 13, 'flyer_large', 'flyer_large', 'constrain', 800, 0, 0),
  1405. (17, 14, 'gallery_large', 'gallery_large', 'constrain', 750, 0, 0),
  1406. (18, 12, 'special_thumb', 'special_thumb', 'crop', 72, 72, 0);
  1407. -- --------------------------------------------------------
  1408. --
  1409. -- Table structure for table `exp_file_watermarks`
  1410. --
  1411. DROP TABLE IF EXISTS `exp_file_watermarks`;
  1412. CREATE TABLE `exp_file_watermarks` (
  1413. `wm_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  1414. `wm_name` varchar(80) DEFAULT NULL,
  1415. `wm_type` varchar(10) DEFAULT 'text',
  1416. `wm_image_path` varchar(100) DEFAULT NULL,
  1417. `wm_test_image_path` varchar(100) DEFAULT NULL,
  1418. `wm_use_font` char(1) DEFAULT 'y',
  1419. `wm_font` varchar(30) DEFAULT NULL,
  1420. `wm_font_size` int(3) unsigned DEFAULT NULL,
  1421. `wm_text` varchar(100) DEFAULT NULL,
  1422. `wm_vrt_alignment` varchar(10) DEFAULT 'top',
  1423. `wm_hor_alignment` varchar(10) DEFAULT 'left',
  1424. `wm_padding` int(3) unsigned DEFAULT NULL,
  1425. `wm_opacity` int(3) unsigned DEFAULT NULL,
  1426. `wm_x_offset` int(4) unsigned DEFAULT NULL,
  1427. `wm_y_offset` int(4) unsigned DEFAULT NULL,
  1428. `wm_x_transp` int(4) DEFAULT NULL,
  1429. `wm_y_transp` int(4) DEFAULT NULL,
  1430. `wm_font_color` varchar(7) DEFAULT NULL,
  1431. `wm_use_drop_shadow` char(1) DEFAULT 'y',
  1432. `wm_shadow_distance` int(3) unsigned DEFAULT NULL,
  1433. `wm_shadow_color` varchar(7) DEFAULT NULL,
  1434. PRIMARY KEY (`wm_id`)
  1435. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  1436. --
  1437. -- Dumping data for table `exp_file_watermarks`
  1438. --
  1439. -- --------------------------------------------------------
  1440. --
  1441. -- Table structure for table `exp_freeform_attachments`
  1442. --
  1443. DROP TABLE IF EXISTS `exp_freeform_attachments`;
  1444. CREATE TABLE `exp_freeform_attachments` (
  1445. `attachment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1446. `entry_id` int(10) unsigned NOT NULL,
  1447. `pref_id` int(10) unsigned NOT NULL,
  1448. `entry_date` int(10) NOT NULL,
  1449. `server_path` varchar(150) NOT NULL,
  1450. `filename` varchar(150) NOT NULL,
  1451. `extension` varchar(7) NOT NULL,
  1452. `filesize` int(10) NOT NULL,
  1453. `emailed` char(1) NOT NULL DEFAULT 'n',
  1454. PRIMARY KEY (`attachment_id`),
  1455. KEY `entry_id` (`entry_id`),
  1456. KEY `pref_id` (`pref_id`)
  1457. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
  1458. --
  1459. -- Dumping data for table `exp_freeform_attachments`
  1460. --
  1461. INSERT INTO `exp_freeform_attachments` (`attachment_id`, `entry_id`, `pref_id`, `entry_date`, `server_path`, `filename`, `extension`, `filesize`, `emailed`) VALUES
  1462. (8, 16, 9, 1332785761, '/www/eh17362/public_html/images/uploads/applications/', 'applic', '.doc', 24, 'y'),
  1463. (9, 19, 9, 1333560099, '/www/eh17362/public_html/images/uploads/applications/', '40%_Off_Cat_Litter', '.pdf', 260, 'y'),
  1464. (10, 20, 9, 1333560253, '/www/eh17362/public_html/images/uploads/applications/', 'temp_file_40%_Off_Cat_Litter1', '.pdf', 260, 'y'),
  1465. (11, 22, 9, 1333560343, '/www/eh17362/public_html/images/uploads/applications/', 'temp_file_40%_Off_Cat_Litter2', '.pdf', 260, 'y'),
  1466. (12, 23, 9, 1333561047, '/www/eh17362/public_html/images/uploads/applications/', 'temp_file_40%_Off_Cat_Litter3', '.pdf', 260, 'y'),
  1467. (13, 24, 9, 1333561435, '/www/eh17362/public_html/images/uploads/applications/', 'circ', '.jpg', 25, 'y'),
  1468. (14, 25, 9, 1333561634, '/www/eh17362/public_html/images/uploads/applications/', 'l_circ', '.jpg', 27, 'y'),
  1469. (15, 26, 9, 1333561783, '/www/eh17362/public_html/images/uploads/applications/', 'l_circ1', '.jpg', 27, 'y'),
  1470. (16, 27, 9, 1333561922, '/www/eh17362/public_html/images/uploads/applications/', 'l_circ2', '.jpg', 27, 'y'),
  1471. (17, 28, 9, 1333562004, '/www/eh17362/public_html/images/uploads/applications/', 'l_circ3', '.jpg', 27, 'y');
  1472. -- --------------------------------------------------------
  1473. --
  1474. -- Table structure for table `exp_freeform_entries`
  1475. --
  1476. DROP TABLE IF EXISTS `exp_freeform_entries`;
  1477. CREATE TABLE `exp_freeform_entries` (
  1478. `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1479. `group_id` int(10) unsigned NOT NULL DEFAULT '0',
  1480. `weblog_id` int(4) unsigned NOT NULL,
  1481. `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  1482. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  1483. `form_name` varchar(50) NOT NULL,
  1484. `template` varchar(150) NOT NULL,
  1485. `entry_date` int(10) NOT NULL,
  1486. `edit_date` int(10) NOT NULL,
  1487. `status` char(10) NOT NULL DEFAULT 'open',
  1488. `name` varchar(50) NOT NULL,
  1489. `email` varchar(50) NOT NULL,
  1490. `website` varchar(50) NOT NULL,
  1491. `street1` varchar(50) NOT NULL,
  1492. `street2` varchar(50) NOT NULL,
  1493. `street3` varchar(50) NOT NULL,
  1494. `city` varchar(50) NOT NULL,
  1495. `state` varchar(50) NOT NULL,
  1496. `country` varchar(50) NOT NULL,
  1497. `postalcode` varchar(50) NOT NULL,
  1498. `phone1` varchar(50) NOT NULL,
  1499. `phone2` varchar(50) NOT NULL,
  1500. `fax` varchar(50) NOT NULL,
  1501. `question` text NOT NULL,
  1502. `position` text NOT NULL,
  1503. PRIMARY KEY (`entry_id`),
  1504. KEY `author_id` (`author_id`)
  1505. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=29 ;
  1506. --
  1507. -- Dumping data for table `exp_freeform_entries`
  1508. --
  1509. INSERT INTO `exp_freeform_entries` (`entry_id`, `group_id`, `weblog_id`, `author_id`, `ip_address`, `form_name`, `template`, `entry_date`, `edit_date`, `status`, `name`, `email`, `website`, `street1`, `street2`, `street3`, `city`, `state`, `country`, `postalcode`, `phone1`, `phone2`, `fax`, `question`, `position`) VALUES
  1510. (16, 3, 0, 0, '216.145.110.90', 'Application', 'default_template', 1332785761, 1332785761, 'open', 'Robin Funk', 'r.funk89@gmail.com', '', '', '', '', '', '', '', '', '123-456-7890', '', '', 'This is the first application sent that is working perfectly :)', 'Health and Beauty Clerk'),
  1511. (17, 3, 0, 0, '99.240.100.127', 'Application', '', 1333388045, 1333388045, 'open', 'testing', 'foxinsocks@live.com', '', '', '', '', '', '', '', '', '123-4567', '', '', '', 'Cashier'),
  1512. (18, 3, 0, 0, '99.240.100.127', 'Application', '', 1333388092, 1333388092, 'open', 'testing', 'foxinsocks@live.com', '', '', '', '', '', '', '', '', '123-4567', '', '', '', 'Cashier'),
  1513. (19, 3, 0, 0, '216.145.110.90', 'Application', 'default_template', 1333560099, 1333560099, 'open', 'Robin Test', 'Email@emailson.com', '', '', '', '', '', '', '', '', '905-565-6985', '', '', 'comment', 'Cashier'),
  1514. (20, 3, 0, 0, '216.145.110.90', 'Application', 'default_template', 1333560253, 1333560253, 'open', 'tester', 'tester@email.com', '', '', '', '', '', '', '', '', '506-965-8541', '', '', 'question?', 'Grocery Clerk'),
  1515. (21, 3, 0, 0, '216.145.110.90', 'Application', 'default_template', 1333560275, 1333560275, 'open', 'tester', 'tester@email.com', '', '', '', '', '', '', '', '', '506-965-8541', '', '', 'question?', 'Grocery Clerk'),
  1516. (22, 3, 0, 0, '216.145.110.90', 'Application', 'default_template', 1333560343, 1333560343, 'open', 'Name', 'email@email.com', '', '', '', '', '', '', '', '', '605-854-6582', '', '', 'question and comment', 'Health and Beauty Clerk'),
  1517. (23, 3, 0, 0, '216.145.110.90', 'Application', 'careers_template', 1333561047, 1333561047, 'open', 'Boba Fett', 'email@email.com', '', '', '', '', '', '', '', '', '509-859-6584', '', '', 'Question?', 'Cashier'),
  1518. (24, 3, 0, 0, '216.145.110.90', 'Application', 'careers_template', 1333561435, 1333561435, 'open', 'Luke Skywalker', 'email@email.com', '', '', '', '', '', '', '', '', '605-856-9658', '', '', 'comment', 'Grocery Clerk'),
  1519. (25, 3, 0, 0, '216.145.110.90', 'Application', 'careers_template', 1333561634, 1333561634, 'open', 'Han Solo', 'email@emailson.com', '', '', '', '', '', '', '', '', '605-856-9856', '', '', 'Why me?', 'Grocery Clerk'),
  1520. (26, 3, 0, 0, '216.145.110.90', 'Application', 'careers_template', 1333561783, 1333561783, 'open', 'C3PO', 'ihateR2@gmail.com', '', '', '', '', '', '', '', '', '605-698-5412', '', '', 'yeeeeeeeah!', 'Health and Beauty Clerk'),
  1521. (27, 3, 0, 0, '216.145.110.90', 'Application', 'careers_template', 1333561922, 1333561922, 'open', 'R2D2', 'emailssss@email.com', '', '', '', '', '', '', '', '', '562-456-4578', '', '', 'comment', 'Cashier'),
  1522. (28, 3, 0, 0, '216.145.110.90', 'Application', 'careers_template', 1333562004, 1333562004, 'open', 'Lando Cal', 'landoemailsssss@email.com', '', '', '', '', '', '', '', '', '506-654-8954', '', '', 'ahh', 'Reciever');
  1523. -- --------------------------------------------------------
  1524. --
  1525. -- Table structure for table `exp_freeform_fields`
  1526. --
  1527. DROP TABLE IF EXISTS `exp_freeform_fields`;
  1528. CREATE TABLE `exp_freeform_fields` (
  1529. `field_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1530. `field_order` int(10) NOT NULL DEFAULT '0',
  1531. `field_type` varchar(50) NOT NULL DEFAULT 'text',
  1532. `field_length` int(3) NOT NULL DEFAULT '150',
  1533. `form_name` varchar(50) NOT NULL,
  1534. `name` varchar(50) NOT NULL,
  1535. `name_old` varchar(50) NOT NULL,
  1536. `label` varchar(100) NOT NULL,
  1537. `weblog_id` int(4) unsigned NOT NULL,
  1538. `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  1539. `entry_date` int(10) NOT NULL,
  1540. `edit_date` int(10) NOT NULL,
  1541. `editable` char(1) NOT NULL DEFAULT 'y',
  1542. `status` char(10) NOT NULL DEFAULT 'open',
  1543. PRIMARY KEY (`field_id`),
  1544. KEY `name` (`name`),
  1545. KEY `author_id` (`author_id`)
  1546. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
  1547. --
  1548. -- Dumping data for table `exp_freeform_fields`
  1549. --
  1550. INSERT INTO `exp_freeform_fields` (`field_id`, `field_order`, `field_type`, `field_length`, `form_name`, `name`, `name_old`, `label`, `weblog_id`, `author_id`, `entry_date`, `edit_date`, `editable`, `status`) VALUES
  1551. (1, 1, 'text', 150, '', 'name', '', 'Name', 0, 0, 0, 0, 'n', ''),
  1552. (2, 2, 'text', 150, '', 'email', '', 'Email', 0, 0, 0, 0, 'n', ''),
  1553. (3, 16, 'text', 150, '', 'website', '', 'Website', 0, 0, 0, 0, 'n', ''),
  1554. (4, 4, 'text', 150, '', 'street1', '', 'Street 1', 0, 0, 0, 0, 'n', ''),
  1555. (5, 5, 'text', 150, '', 'street2', '', 'Street 2', 0, 0, 0, 0, 'n', ''),
  1556. (6, 6, 'text', 150, '', 'street3', '', 'Street 3', 0, 0, 0, 0, 'n', ''),
  1557. (7, 7, 'text', 150, '', 'city', '', 'City', 0, 0, 0, 0, 'n', ''),
  1558. (8, 8, 'text', 150, '', 'state', '', 'State', 0, 0, 0, 0, 'n', ''),
  1559. (9, 9, 'text', 150, '', 'country', '', 'Country', 0, 0, 0, 0, 'n', ''),
  1560. (10, 10, 'text', 150, '', 'postalcode', '', 'Postal Code', 0, 0, 0, 0, 'n', ''),
  1561. (11, 11, 'text', 150, '', 'phone1', '', 'Phone 1', 0, 0, 0, 0, 'n', ''),
  1562. (12, 12, 'text', 150, '', 'phone2', '', 'Phone 2', 0, 0, 0, 0, 'n', ''),
  1563. (13, 13, 'text', 150, '', 'fax', '', 'Fax', 0, 0, 0, 0, 'n', ''),
  1564. (15, 15, 'textarea', 150, '', 'question', '', 'question', 0, 0, 0, 0, 'y', 'open'),
  1565. (16, 3, 'textarea', 150, '', 'position', '', 'position', 0, 0, 0, 0, 'y', 'open');
  1566. -- --------------------------------------------------------
  1567. --
  1568. -- Table structure for table `exp_freeform_params`
  1569. --
  1570. DROP TABLE IF EXISTS `exp_freeform_params`;
  1571. CREATE TABLE `exp_freeform_params` (
  1572. `params_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1573. `entry_date` int(10) NOT NULL,
  1574. `data` text NOT NULL,
  1575. PRIMARY KEY (`params_id`)
  1576. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=782 ;
  1577. --
  1578. -- Dumping data for table `exp_freeform_params`
  1579. --
  1580. INSERT INTO `exp_freeform_params` (`params_id`, `entry_date`, `data`) VALUES
  1581. (781, 1333561974, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1582. (780, 1333561974, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1583. (779, 1333561973, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1584. (778, 1333561891, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1585. (777, 1333561891, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1586. (775, 1333561747, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1587. (776, 1333561890, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1588. (774, 1333561746, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1589. (773, 1333561746, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1590. (772, 1333561606, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1591. (767, 1333561409, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1592. (768, 1333561410, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1593. (769, 1333561410, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1594. (771, 1333561606, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1595. (770, 1333561605, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1596. (766, 1333561015, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1597. (765, 1333561015, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1598. (764, 1333561013, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"careers_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1599. (763, 1333560429, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1600. (762, 1333560429, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1601. (761, 1333560428, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1602. (760, 1333560322, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1603. (759, 1333560322, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1604. (758, 1333560316, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1605. (757, 1333560272, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1606. (756, 1333560272, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1607. (755, 1333560271, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1608. (754, 1333560214, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1609. (753, 1333560214, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1610. (752, 1333560213, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1611. (751, 1333560066, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1612. (749, 1333560065, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}'),
  1613. (750, 1333560066, 'a:23:{s:15:"require_captcha";s:2:"no";s:9:"form_name";s:11:"Application";s:10:"require_ip";s:0:"";s:11:"ee_required";s:10:"name|email";s:9:"ee_notify";s:18:"r.funk89@gmail.com";s:18:"allowed_file_types";s:16:"jpg|pdf|doc|docx";s:8:"reply_to";b:0;s:20:"reply_to_email_field";s:0:"";s:19:"reply_to_name_field";s:0:"";s:10:"recipients";s:1:"n";s:15:"recipient_limit";s:1:"2";s:17:"static_recipients";b:0;s:22:"static_recipients_list";a:0:{}s:18:"recipient_template";s:16:"default_template";s:13:"discard_field";s:0:"";s:15:"send_attachment";s:3:"yes";s:15:"send_user_email";s:0:"";s:20:"send_user_attachment";s:0:"";s:19:"user_email_template";s:16:"default_template";s:8:"template";s:16:"default_template";s:20:"prevent_duplicate_on";s:0:"";s:11:"file_upload";s:12:"applications";s:12:"upload_limit";i:1;}');
  1614. -- --------------------------------------------------------
  1615. --
  1616. -- Table structure for table `exp_freeform_preferences`
  1617. --
  1618. DROP TABLE IF EXISTS `exp_freeform_preferences`;
  1619. CREATE TABLE `exp_freeform_preferences` (
  1620. `preference_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1621. `preference_name` varchar(80) NOT NULL,
  1622. `preference_value` text NOT NULL,
  1623. PRIMARY KEY (`preference_id`)
  1624. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
  1625. --
  1626. -- Dumping data for table `exp_freeform_preferences`
  1627. --
  1628. INSERT INTO `exp_freeform_preferences` (`preference_id`, `preference_name`, `preference_value`) VALUES
  1629. (1, 'max_user_recipients', '2'),
  1630. (2, 'spam_count', '15'),
  1631. (3, 'spam_interval', '60');
  1632. -- --------------------------------------------------------
  1633. --
  1634. -- Table structure for table `exp_freeform_templates`
  1635. --
  1636. DROP TABLE IF EXISTS `exp_freeform_templates`;
  1637. CREATE TABLE `exp_freeform_templates` (
  1638. `template_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  1639. `enable_template` char(1) NOT NULL DEFAULT 'y',
  1640. `wordwrap` char(1) NOT NULL DEFAULT 'y',
  1641. `html` char(1) NOT NULL DEFAULT 'n',
  1642. `template_name` varchar(150) NOT NULL,
  1643. `template_label` varchar(150) NOT NULL,
  1644. `data_from_name` varchar(150) NOT NULL,
  1645. `data_from_email` varchar(200) NOT NULL,
  1646. `data_title` varchar(80) NOT NULL,
  1647. `template_data` text NOT NULL,
  1648. PRIMARY KEY (`template_id`),
  1649. KEY `template_name` (`template_name`)
  1650. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
  1651. --
  1652. -- Dumping data for table `exp_freeform_templates`
  1653. --
  1654. INSERT INTO `exp_freeform_templates` (`template_id`, `enable_template`, `wordwrap`, `html`, `template_name`, `template_label`, `data_from_name`, `data_from_email`, `data_title`, `template_data`) VALUES
  1655. (1, 'y', 'y', 'n', 'default_template', 'Default Template', '', '', 'Someone has posted to Freeform', 'Someone has posted to Freeform. Here are the details: \n \nEntry Date: {entry_date}\n{all_custom_fields}'),
  1656. (2, 'y', 'n', 'y', 'careers_template', 'Careers', '{name} - Heartbeets Application', '{email}', 'Someone has applied to: {position}', '<strong>{name}</strong> has applied for the position <strong>{position}</strong><br/><br/>\n\n<strong>Entry Date:</strong> {entry_date}<br/>\n<strong>Name:</strong> {name}<br/>\n<strong>Email:</strong> {email}<br/>\n<strong>Phone:</strong> {phone1}<br/>\n<strong>Position:</strong> {position}<br/>\n<strong>Resumé:</strong> {attachments} {fileurl} {filename} {/attachments}<br/>\n<strong>Question/Comment:</strong> {question}\n');
  1657. -- --------------------------------------------------------
  1658. --
  1659. -- Table structure for table `exp_freeform_user_email`
  1660. --
  1661. DROP TABLE IF EXISTS `exp_freeform_user_email`;
  1662. CREATE TABLE `exp_freeform_user_email` (
  1663. `email_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1664. `entry_id` int(10) unsigned NOT NULL,
  1665. `email_count` int(10) unsigned NOT NULL DEFAULT '0',
  1666. PRIMARY KEY (`email_id`)
  1667. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  1668. --
  1669. -- Dumping data for table `exp_freeform_user_email`
  1670. --
  1671. -- --------------------------------------------------------
  1672. --
  1673. -- Table structure for table `exp_global_variables`
  1674. --
  1675. DROP TABLE IF EXISTS `exp_global_variables`;
  1676. CREATE TABLE `exp_global_variables` (
  1677. `variable_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  1678. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  1679. `variable_name` varchar(50) NOT NULL,
  1680. `variable_data` text NOT NULL,
  1681. PRIMARY KEY (`variable_id`),
  1682. KEY `variable_name` (`variable_name`),
  1683. KEY `site_id` (`site_id`)
  1684. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  1685. --
  1686. -- Dumping data for table `exp_global_variables`
  1687. --
  1688. INSERT INTO `exp_global_variables` (`variable_id`, `site_id`, `variable_name`, `variable_data`) VALUES
  1689. (1, 1, 'web_root', 'heartbeets.ehclients.com');
  1690. -- --------------------------------------------------------
  1691. --
  1692. -- Table structure for table `exp_html_buttons`
  1693. --
  1694. DROP TABLE IF EXISTS `exp_html_buttons`;
  1695. CREATE TABLE `exp_html_buttons` (
  1696. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1697. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  1698. `member_id` int(10) NOT NULL DEFAULT '0',
  1699. `tag_name` varchar(32) NOT NULL,
  1700. `tag_open` varchar(120) NOT NULL,
  1701. `tag_close` varchar(120) NOT NULL,
  1702. `accesskey` varchar(32) NOT NULL,
  1703. `tag_order` int(3) unsigned NOT NULL,
  1704. `tag_row` char(1) NOT NULL DEFAULT '1',
  1705. `classname` varchar(20) DEFAULT NULL,
  1706. PRIMARY KEY (`id`),
  1707. KEY `site_id` (`site_id`)
  1708. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=518 ;
  1709. --
  1710. -- Dumping data for table `exp_html_buttons`
  1711. --
  1712. INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES
  1713. (1, 1, 0, 'b', '<strong>', '</strong>', 'b', 1, '1', 'btn_b'),
  1714. (2, 1, 0, 'i', '<em>', '</em>', 'i', 2, '1', 'btn_i'),
  1715. (3, 1, 0, 'blockquote', '<blockquote>', '</blockquote>', 'q', 3, '1', 'btn_blockquote'),
  1716. (4, 1, 0, 'a', '<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', '</a>', 'a', 4, '1', 'btn_a'),
  1717. (5, 1, 0, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" />', '', '', 5, '1', 'btn_img'),
  1718. (307, 1, 3, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" class="imgRight"/>', '', 'RIGHT', 11, '1', 'btn_img'),
  1719. (308, 1, 3, 'clear', '<div class="clear">', '</div>', 'clear', 12, '1', 'btn_clear'),
  1720. (306, 1, 3, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" class="imgLeft"/>', '', 'LEFT', 10, '1', 'btn_img'),
  1721. (305, 1, 3, 'h2', '<h2>', '</h2>', '', 9, '1', 'btn_h2'),
  1722. (304, 1, 3, 'h1', '<h1>', '</h1>', '', 8, '1', 'btn_h1'),
  1723. (303, 1, 3, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" />', '', '', 7, '1', 'btn_img'),
  1724. (516, 1, 2, 'clear', '<div class="clear">', '</div>', '', 14, '1', 'btn_clear'),
  1725. (513, 1, 2, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" class="imgLeft"/>', '', 'LEFT', 11, '1', 'btn_img'),
  1726. (515, 1, 2, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" class="imgMid" />', '', 'MID', 13, '1', 'btn_img'),
  1727. (514, 1, 2, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" class="imgRight"/>', '', 'RIGHT', 12, '1', 'btn_img'),
  1728. (509, 1, 2, 'a', '<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', '</a>', 'a', 7, '1', 'btn_a'),
  1729. (511, 1, 2, 'h2', '<h2>', '</h2>', '', 9, '1', 'btn_h2'),
  1730. (512, 1, 2, 'h3', '<h3>', '</h3>', '', 10, '1', 'btn_h3'),
  1731. (510, 1, 2, 'h1', '<h1>', '</h1>', '', 8, '1', 'btn_h1'),
  1732. (508, 1, 2, 'blockquote', '<blockquote>', '</blockquote>', 'q', 6, '1', 'btn_blockquote'),
  1733. (506, 1, 2, 'b', '<strong>', '</strong>', 'b', 4, '1', 'btn_b'),
  1734. (507, 1, 2, 'i', '<i>', '</i>', 'i', 5, '1', 'btn_i'),
  1735. (301, 1, 3, 'blockquote', '<blockquote>', '</blockquote>', 'q', 5, '1', 'btn_blockquote'),
  1736. (302, 1, 3, 'a', '<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', '</a>', 'a', 6, '1', 'btn_a'),
  1737. (300, 1, 3, 'i', '<em>', '</em>', 'i', 4, '1', 'btn_i'),
  1738. (297, 1, 3, 'li', '<li>', '</li>', 'o', 1, '1', 'btn_li'),
  1739. (298, 1, 3, 'ol', '<ol>', '</ol>', 'o', 2, '1', 'btn_ol'),
  1740. (299, 1, 3, 'b', '<strong>', '</strong>', 'b', 3, '1', 'btn_b'),
  1741. (296, 1, 3, 'ul', '<ul>', '</ul>', 'u', 0, '1', 'btn_ul'),
  1742. (505, 1, 2, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" />', '', '', 3, '1', 'btn_img'),
  1743. (504, 1, 2, 'ol', '<ol>', '</ol>', 'o', 2, '1', 'btn_ol'),
  1744. (502, 1, 2, 'ul', '<ul>', '</ul>', 'u', 0, '1', 'btn_ul'),
  1745. (503, 1, 2, 'li', '<li>', '</li>', 'o', 1, '1', 'btn_li'),
  1746. (517, 1, 2, 'break', '<br/>', '', 'break', 15, '1', 'btn_break');
  1747. -- --------------------------------------------------------
  1748. --
  1749. -- Table structure for table `exp_layout_publish`
  1750. --
  1751. DROP TABLE IF EXISTS `exp_layout_publish`;
  1752. CREATE TABLE `exp_layout_publish` (
  1753. `layout_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1754. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  1755. `member_group` int(4) unsigned NOT NULL DEFAULT '0',
  1756. `channel_id` int(4) unsigned NOT NULL DEFAULT '0',
  1757. `field_layout` text,
  1758. PRIMARY KEY (`layout_id`),
  1759. KEY `site_id` (`site_id`),
  1760. KEY `member_group` (`member_group`),
  1761. KEY `channel_id` (`channel_id`)
  1762. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
  1763. --
  1764. -- Dumping data for table `exp_layout_publish`
  1765. --
  1766. INSERT INTO `exp_layout_publish` (`layout_id`, `site_id`, `member_group`, `channel_id`, `field_layout`) VALUES
  1767. (2, 1, 1, 3, 'a:5:{s:7:"publish";a:7:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:25;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}i:3;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:8;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:3:"50%";}i:22;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:3:"50%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1768. (5, 1, 1, 6, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:31;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}i:6;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:33;a:4:{s:7:"visible";s:4:"true";s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1769. (6, 1, 6, 6, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:31;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}i:6;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:33;a:4:{s:7:"visible";s:4:"true";s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1770. (7, 1, 1, 4, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:29;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}i:4;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:11;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1771. (8, 1, 6, 4, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:29;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}i:4;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:11;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1772. (11, 1, 1, 5, 'a:5:{s:7:"publish";a:8:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:32;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:5;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:27;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:3:"30%";}i:24;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:3:"70%";}i:28;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1773. (12, 1, 6, 5, 'a:5:{s:7:"publish";a:8:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:32;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:5;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:27;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:3:"30%";}i:24;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:3:"70%";}i:28;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:0;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1774. (13, 1, 1, 2, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:30;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:2;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:26;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}'),
  1775. (14, 1, 6, 2, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:30;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:2;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:26;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:4:"date";a:4:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:23:"comment_expiration_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:6:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:4:"ping";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:5:"pages";a:3:{s:10:"_tab_label";s:5:"Pages";s:16:"pages__pages_uri";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}}');
  1776. -- --------------------------------------------------------
  1777. --
  1778. -- Table structure for table `exp_mailing_list`
  1779. --
  1780. DROP TABLE IF EXISTS `exp_mailing_list`;
  1781. CREATE TABLE `exp_mailing_list` (
  1782. `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1783. `list_id` int(7) unsigned NOT NULL,
  1784. `authcode` varchar(10) NOT NULL,
  1785. `email` varchar(50) NOT NULL,
  1786. `ip_address` varchar(16) NOT NULL,
  1787. PRIMARY KEY (`user_id`),
  1788. KEY `list_id` (`list_id`)
  1789. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  1790. --
  1791. -- Dumping data for table `exp_mailing_list`
  1792. --
  1793. -- --------------------------------------------------------
  1794. --
  1795. -- Table structure for table `exp_mailing_lists`
  1796. --
  1797. DROP TABLE IF EXISTS `exp_mailing_lists`;
  1798. CREATE TABLE `exp_mailing_lists` (
  1799. `list_id` int(7) unsigned NOT NULL AUTO_INCREMENT,
  1800. `list_name` varchar(40) NOT NULL,
  1801. `list_title` varchar(100) NOT NULL,
  1802. `list_template` text NOT NULL,
  1803. PRIMARY KEY (`list_id`),
  1804. KEY `list_name` (`list_name`)
  1805. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  1806. --
  1807. -- Dumping data for table `exp_mailing_lists`
  1808. --
  1809. INSERT INTO `exp_mailing_lists` (`list_id`, `list_name`, `list_title`, `list_template`) VALUES
  1810. (1, 'default', 'Default Mailing List', '{message_text}\n\nTo remove your email from this mailing list, click here:\n{if html_email}<a href=\\"{unsubscribe_url}\\">{unsubscribe_url}</a>{/if}\n{if plain_email}{unsubscribe_url}{/if}');
  1811. -- --------------------------------------------------------
  1812. --
  1813. -- Table structure for table `exp_mailing_list_queue`
  1814. --
  1815. DROP TABLE IF EXISTS `exp_mailing_list_queue`;
  1816. CREATE TABLE `exp_mailing_list_queue` (
  1817. `queue_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1818. `email` varchar(50) NOT NULL,
  1819. `list_id` int(7) unsigned NOT NULL DEFAULT '0',
  1820. `authcode` varchar(10) NOT NULL,
  1821. `date` int(10) NOT NULL,
  1822. PRIMARY KEY (`queue_id`)
  1823. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  1824. --
  1825. -- Dumping data for table `exp_mailing_list_queue`
  1826. --
  1827. -- --------------------------------------------------------
  1828. --
  1829. -- Table structure for table `exp_matrix_cols`
  1830. --
  1831. DROP TABLE IF EXISTS `exp_matrix_cols`;
  1832. CREATE TABLE `exp_matrix_cols` (
  1833. `col_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  1834. `site_id` int(4) unsigned DEFAULT '1',
  1835. `field_id` int(6) unsigned DEFAULT NULL,
  1836. `col_name` varchar(32) DEFAULT NULL,
  1837. `col_label` varchar(50) DEFAULT NULL,
  1838. `col_instructions` text,
  1839. `col_type` varchar(50) DEFAULT 'text',
  1840. `col_required` char(1) DEFAULT 'n',
  1841. `col_search` char(1) DEFAULT 'n',
  1842. `col_order` int(3) unsigned DEFAULT NULL,
  1843. `col_width` varchar(4) DEFAULT NULL,
  1844. `col_settings` text,
  1845. PRIMARY KEY (`col_id`),
  1846. KEY `site_id` (`site_id`),
  1847. KEY `field_id` (`field_id`)
  1848. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
  1849. --
  1850. -- Dumping data for table `exp_matrix_cols`
  1851. --
  1852. INSERT INTO `exp_matrix_cols` (`col_id`, `site_id`, `field_id`, `col_name`, `col_label`, `col_instructions`, `col_type`, `col_required`, `col_search`, `col_order`, `col_width`, `col_settings`) VALUES
  1853. (2, 1, 19, 'button_image', 'Button Image', '', 'file', 'n', 'n', 0, '33%', 'YToyOntzOjk6ImRpcmVjdG9yeSI7czoxOiI1IjtzOjEyOiJjb250ZW50X3R5cGUiO3M6NToiaW1hZ2UiO30='),
  1854. (3, 1, 19, 'button_link', 'Button Link', '', 'text', 'n', 'n', 1, '', 'YTo0OntzOjQ6Im1heGwiO3M6MzoiMTQwIjtzOjk6Im11bHRpbGluZSI7czoxOiJ5IjtzOjM6ImZtdCI7czo0OiJub25lIjtzOjc6ImNvbnRlbnQiO3M6MzoiYWxsIjt9'),
  1855. (4, 1, 26, 'gallery_image', 'Gallery Image', '', 'file', 'n', 'n', 0, '33%', 'YToyOntzOjk6ImRpcmVjdG9yeSI7czoyOiIxNCI7czoxMjoiY29udGVudF90eXBlIjtzOjU6ImltYWdlIjt9'),
  1856. (5, 1, 24, 'flyer_image', 'Flyer Image', '', 'file', 'n', 'n', 0, '33%', 'YToyOntzOjk6ImRpcmVjdG9yeSI7czozOiJhbGwiO3M6MTI6ImNvbnRlbnRfdHlwZSI7czozOiJhbGwiO30=');
  1857. -- --------------------------------------------------------
  1858. --
  1859. -- Table structure for table `exp_matrix_data`
  1860. --
  1861. DROP TABLE IF EXISTS `exp_matrix_data`;
  1862. CREATE TABLE `exp_matrix_data` (
  1863. `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1864. `site_id` int(4) unsigned DEFAULT '1',
  1865. `entry_id` int(10) unsigned DEFAULT NULL,
  1866. `field_id` int(6) unsigned DEFAULT NULL,
  1867. `row_order` int(4) unsigned DEFAULT NULL,
  1868. `col_id_2` text,
  1869. `col_id_3` text,
  1870. `col_id_4` text,
  1871. `col_id_5` text,
  1872. PRIMARY KEY (`row_id`),
  1873. KEY `site_id` (`site_id`),
  1874. KEY `entry_id` (`entry_id`),
  1875. KEY `field_id` (`field_id`)
  1876. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=36 ;
  1877. --
  1878. -- Dumping data for table `exp_matrix_data`
  1879. --
  1880. INSERT INTO `exp_matrix_data` (`row_id`, `site_id`, `entry_id`, `field_id`, `row_order`, `col_id_2`, `col_id_3`, `col_id_4`, `col_id_5`) VALUES
  1881. (2, 1, 56, 19, 0, '{filedir_5}employment.jpg', '{web_root}/index.php/site/careers/employment-at-Heart-Beets', NULL, NULL),
  1882. (3, 1, 14, 26, 0, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1883. (4, 1, 14, 26, 1, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1884. (5, 1, 14, 26, 2, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1885. (6, 1, 14, 26, 3, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1886. (8, 1, 14, 26, 4, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1887. (9, 1, 14, 26, 5, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1888. (10, 1, 14, 26, 6, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1889. (11, 1, 14, 26, 7, NULL, NULL, '{filedir_14}pluto.jpg', NULL),
  1890. (12, 1, 67, 24, 0, NULL, NULL, NULL, '{filedir_13}example.jpg'),
  1891. (13, 1, 67, 24, 1, NULL, NULL, NULL, '{filedir_13}example.jpg'),
  1892. (14, 1, 67, 24, 2, NULL, NULL, NULL, '{filedir_13}example.jpg'),
  1893. (15, 1, 67, 24, 3, NULL, NULL, NULL, '{filedir_13}example.jpg'),
  1894. (35, 1, 14, 26, 8, NULL, NULL, '{filedir_14}l_circ66.jpg', NULL);
  1895. -- --------------------------------------------------------
  1896. --
  1897. -- Table structure for table `exp_members`
  1898. --
  1899. DROP TABLE IF EXISTS `exp_members`;
  1900. CREATE TABLE `exp_members` (
  1901. `member_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1902. `group_id` smallint(4) NOT NULL DEFAULT '0',
  1903. `username` varchar(50) NOT NULL,
  1904. `screen_name` varchar(50) NOT NULL,
  1905. `password` varchar(128) NOT NULL,
  1906. `salt` varchar(128) NOT NULL DEFAULT '',
  1907. `unique_id` varchar(40) NOT NULL,
  1908. `remember_me` varchar(32) NOT NULL DEFAULT '',
  1909. `crypt_key` varchar(40) DEFAULT NULL,
  1910. `authcode` varchar(10) DEFAULT NULL,
  1911. `email` varchar(72) NOT NULL,
  1912. `url` varchar(150) DEFAULT NULL,
  1913. `location` varchar(50) DEFAULT NULL,
  1914. `occupation` varchar(80) DEFAULT NULL,
  1915. `interests` varchar(120) DEFAULT NULL,
  1916. `bday_d` int(2) DEFAULT NULL,
  1917. `bday_m` int(2) DEFAULT NULL,
  1918. `bday_y` int(4) DEFAULT NULL,
  1919. `aol_im` varchar(50) DEFAULT NULL,
  1920. `yahoo_im` varchar(50) DEFAULT NULL,
  1921. `msn_im` varchar(50) DEFAULT NULL,
  1922. `icq` varchar(50) DEFAULT NULL,
  1923. `bio` text,
  1924. `signature` text,
  1925. `avatar_filename` varchar(120) DEFAULT NULL,
  1926. `avatar_width` int(4) unsigned DEFAULT NULL,
  1927. `avatar_height` int(4) unsigned DEFAULT NULL,
  1928. `photo_filename` varchar(120) DEFAULT NULL,
  1929. `photo_width` int(4) unsigned DEFAULT NULL,
  1930. `photo_height` int(4) unsigned DEFAULT NULL,
  1931. `sig_img_filename` varchar(120) DEFAULT NULL,
  1932. `sig_img_width` int(4) unsigned DEFAULT NULL,
  1933. `sig_img_height` int(4) unsigned DEFAULT NULL,
  1934. `ignore_list` text,
  1935. `private_messages` int(4) unsigned NOT NULL DEFAULT '0',
  1936. `accept_messages` char(1) NOT NULL DEFAULT 'y',
  1937. `last_view_bulletins` int(10) NOT NULL DEFAULT '0',
  1938. `last_bulletin_date` int(10) NOT NULL DEFAULT '0',
  1939. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  1940. `join_date` int(10) unsigned NOT NULL DEFAULT '0',
  1941. `last_visit` int(10) unsigned NOT NULL DEFAULT '0',
  1942. `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  1943. `total_entries` smallint(5) unsigned NOT NULL DEFAULT '0',
  1944. `total_comments` smallint(5) unsigned NOT NULL DEFAULT '0',
  1945. `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0',
  1946. `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0',
  1947. `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  1948. `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  1949. `last_forum_post_date` int(10) unsigned NOT NULL DEFAULT '0',
  1950. `last_email_date` int(10) unsigned NOT NULL DEFAULT '0',
  1951. `in_authorlist` char(1) NOT NULL DEFAULT 'n',
  1952. `accept_admin_email` char(1) NOT NULL DEFAULT 'y',
  1953. `accept_user_email` char(1) NOT NULL DEFAULT 'y',
  1954. `notify_by_default` char(1) NOT NULL DEFAULT 'y',
  1955. `notify_of_pm` char(1) NOT NULL DEFAULT 'y',
  1956. `display_avatars` char(1) NOT NULL DEFAULT 'y',
  1957. `display_signatures` char(1) NOT NULL DEFAULT 'y',
  1958. `parse_smileys` char(1) NOT NULL DEFAULT 'y',
  1959. `smart_notifications` char(1) NOT NULL DEFAULT 'y',
  1960. `language` varchar(50) NOT NULL,
  1961. `timezone` varchar(8) NOT NULL,
  1962. `daylight_savings` char(1) NOT NULL DEFAULT 'n',
  1963. `localization_is_site_default` char(1) NOT NULL DEFAULT 'n',
  1964. `time_format` char(2) NOT NULL DEFAULT 'us',
  1965. `cp_theme` varchar(32) DEFAULT NULL,
  1966. `profile_theme` varchar(32) DEFAULT NULL,
  1967. `forum_theme` varchar(32) DEFAULT NULL,
  1968. `tracker` text,
  1969. `template_size` varchar(2) NOT NULL DEFAULT '20',
  1970. `notepad` text,
  1971. `notepad_size` varchar(2) NOT NULL DEFAULT '18',
  1972. `quick_links` text,
  1973. `quick_tabs` text,
  1974. `show_sidebar` char(1) NOT NULL DEFAULT 'n',
  1975. `pmember_id` int(10) NOT NULL DEFAULT '0',
  1976. PRIMARY KEY (`member_id`),
  1977. KEY `group_id` (`group_id`),
  1978. KEY `unique_id` (`unique_id`),
  1979. KEY `password` (`password`)
  1980. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
  1981. --
  1982. -- Dumping data for table `exp_members`
  1983. --
  1984. INSERT INTO `exp_members` (`member_id`, `group_id`, `username`, `screen_name`, `password`, `salt`, `unique_id`, `remember_me`, `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`, `daylight_savings`, `localization_is_site_default`, `time_format`, `cp_theme`, `profile_theme`, `forum_theme`, `tracker`, `template_size`, `notepad`, `notepad_size`, `quick_links`, `quick_tabs`, `show_sidebar`, `pmember_id`) VALUES
  1985. (1, 1, 'dodgson', 'dodgson', 'b9ae0eab98fc29162a7997d463e694fcc8c06426ab6babdb2d329d7cef242ae12002e3454ec1901cfa2698059788f1448451bab4d8d9fd5be157ad8c7565638d', ',hifDV;N;o}dnLeH`zR>F]f''jE?dxwTk#!X]G*I/}b@_/u{6|wQ>5#Iv7Es_Va>#Szid7rTuF5cbk=Y9#$q}4Wv4IDOC$C,;$)8)JHwxX:T|g~IOBd^h_"2<5nT@K4zc', '8ce65b0aaf3d4ec8068d23005c9899f28684f760', '', 'beb12ebf5db26af94c04a0b031854aac1869ccf2', NULL, 'mdodgson@simsadvertising.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, '216.145.110.90', 1325864094, 1328298688, 1333473890, 0, 0, 0, 0, 0, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'UM5', 'n', 'n', 'us', NULL, NULL, NULL, NULL, '20', NULL, '18', '', 'Template Manager|index.php?S=9708345c987a54f9f4937eb37eb7934d12389d98&amp;D=cp&amp;C=design&M=manager|1', 'n', 0),
  1986. (2, 1, 'robinf', 'Robin Funk', 'c739034929d9257c1cfebbd124fe7e56160eba258542524e84995e89b0c6180f52ff0947882db143166747e734f53409f5d588b8efe6079681e916bab270c724', '3N9gK''UuSz$rxj0hOBUQ@*PFD5$ZCwBZx:"mRW;}T0iaV*b:h8a:,+9d=b+RJf"jz7,E<Q,''[.tLZW^N[[.i^OR6Gj%noJ*fpW&OJt-!d|;t@W<vohL@+a$]fkvaqCj0', 'b3cba1d928d1a25d289783f4dda688d1fd5dd289', '', 'ce3df6519ea16b7dbea3118f910ffa979671d3dc', NULL, 'rfunk@simsadvertising.com', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '216.145.110.90', 1326310919, 1333561862, 1333646373, 23, 0, 0, 0, 1333464901, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'UM5', 'n', 'n', 'us', NULL, NULL, NULL, NULL, '20', NULL, '18', NULL, 'Template Manager|index.php?S=5ac60573318dc3c8adeda38b0651c80b97ba8612&amp;D=cp&amp;C=design&M=manager|1\napplications|index.php?S=8ec9b54196201e6d4d8680efab1c399d7b1b1747&amp;D=cp&amp;C=addons_modules&M=show_module_cp&module=freeform|2', 'n', 0),
  1987. (3, 6, 'mhamilton', 'M. Hamilton', 'a859bda9ef53f9d02edfff8463cdb81ea51c34848407819c30f1857bb0be9bc050005ec1cfe3ffb776097b567e41cc012a896cc7c7357f8eaa19e9353d1b5a98', 'z{|qON0b>I=%83s(OZuZ$sPCdP\\oes+E{4''nzbY.gqI<=F=M<r:dN3E)(n-KzL%cO?jwRoRU8`im;4)$^{z|S4G&7~)`PcGb+y[,);7\\mBu"<65G|{-/%i-4_+(Fu(.M', 'ed856ec89c738568a24ae7ab5054d854a7102710', '', 'b534d15f3ab7b8f21b431a2a5220e27a815d41af', NULL, 'marissa@heartbeets.ca', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '216.145.110.90', 1327094959, 1332873308, 1332955973, 5, 0, 0, 0, 1332268626, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'UM5', 'n', 'n', 'us', NULL, NULL, NULL, NULL, '20', NULL, '18', NULL, 'Edit|index.php?S=c3214ce8c1cffc0bbce3c245fd78c5d9615304dc&amp;D=cp&amp;C=content_edit|1\nFile Manager|index.php?S=f9ee77152c4a71e5f1ad14dabbcbb920630e9c0f&amp;D=cp&amp;C=content_files|2\nEmployment|index.php?S=7aedc94e7de109d28ff189e1a74fea6adcf476ab&amp;D=cp&amp;C=addons_modules&M=show_module_cp&module=freeform|3', 'n', 0),
  1988. (4, 1, 'jbonner', 'J Bonner', '921f298978619b6b4a294f3b47f2e47c036a4fc0f2f6af5a43efa9d3d6c4a011ab7d589c9192a1369b210f6b4b95c69f29ed602d3b267e8d4cc82b7afff5507f', 'jn>CH1*E"-:#PzVQrt;bi\\-j58j<B<p`1BlYhRc~v,xn~Yr2L4~|1SPHTj5ThM_g6$YhV[aYn-%eKs_{lyyaI3""=s#k&hv_OUlOqf:F|$v_!4yUF}\\TIE|MoDg0IZ9a', 'd4f7c5b1695ed0fa4c17a4589a3b4b86f6ac88db', '', 'c0f08c6b9482b68e006a4487eb9b04de13c107c5', NULL, 'jbonner@simsadvertising.com', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '216.145.110.90', 1332788149, 1332860006, 1332875294, 1, 0, 0, 0, 1332855405, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'UM5', 'n', 'n', 'us', NULL, NULL, NULL, NULL, '20', NULL, '18', NULL, NULL, 'n', 0);
  1989. -- --------------------------------------------------------
  1990. --
  1991. -- Table structure for table `exp_member_bulletin_board`
  1992. --
  1993. DROP TABLE IF EXISTS `exp_member_bulletin_board`;
  1994. CREATE TABLE `exp_member_bulletin_board` (
  1995. `bulletin_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1996. `sender_id` int(10) unsigned NOT NULL,
  1997. `bulletin_group` int(8) unsigned NOT NULL,
  1998. `bulletin_date` int(10) unsigned NOT NULL,
  1999. `hash` varchar(10) NOT NULL DEFAULT '',
  2000. `bulletin_expires` int(10) unsigned NOT NULL DEFAULT '0',
  2001. `bulletin_message` text NOT NULL,
  2002. PRIMARY KEY (`bulletin_id`),
  2003. KEY `sender_id` (`sender_id`),
  2004. KEY `hash` (`hash`)
  2005. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2006. --
  2007. -- Dumping data for table `exp_member_bulletin_board`
  2008. --
  2009. -- --------------------------------------------------------
  2010. --
  2011. -- Table structure for table `exp_member_data`
  2012. --
  2013. DROP TABLE IF EXISTS `exp_member_data`;
  2014. CREATE TABLE `exp_member_data` (
  2015. `member_id` int(10) unsigned NOT NULL,
  2016. PRIMARY KEY (`member_id`)
  2017. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2018. --
  2019. -- Dumping data for table `exp_member_data`
  2020. --
  2021. INSERT INTO `exp_member_data` (`member_id`) VALUES
  2022. (1),
  2023. (2),
  2024. (3),
  2025. (4);
  2026. -- --------------------------------------------------------
  2027. --
  2028. -- Table structure for table `exp_member_fields`
  2029. --
  2030. DROP TABLE IF EXISTS `exp_member_fields`;
  2031. CREATE TABLE `exp_member_fields` (
  2032. `m_field_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  2033. `m_field_name` varchar(32) NOT NULL,
  2034. `m_field_label` varchar(50) NOT NULL,
  2035. `m_field_description` text NOT NULL,
  2036. `m_field_type` varchar(12) NOT NULL DEFAULT 'text',
  2037. `m_field_list_items` text NOT NULL,
  2038. `m_field_ta_rows` tinyint(2) DEFAULT '8',
  2039. `m_field_maxl` smallint(3) NOT NULL,
  2040. `m_field_width` varchar(6) NOT NULL,
  2041. `m_field_search` char(1) NOT NULL DEFAULT 'y',
  2042. `m_field_required` char(1) NOT NULL DEFAULT 'n',
  2043. `m_field_public` char(1) NOT NULL DEFAULT 'y',
  2044. `m_field_reg` char(1) NOT NULL DEFAULT 'n',
  2045. `m_field_cp_reg` char(1) NOT NULL DEFAULT 'n',
  2046. `m_field_fmt` char(5) NOT NULL DEFAULT 'none',
  2047. `m_field_order` int(3) unsigned NOT NULL,
  2048. PRIMARY KEY (`m_field_id`)
  2049. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2050. --
  2051. -- Dumping data for table `exp_member_fields`
  2052. --
  2053. -- --------------------------------------------------------
  2054. --
  2055. -- Table structure for table `exp_member_groups`
  2056. --
  2057. DROP TABLE IF EXISTS `exp_member_groups`;
  2058. CREATE TABLE `exp_member_groups` (
  2059. `group_id` smallint(4) unsigned NOT NULL,
  2060. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2061. `group_title` varchar(100) NOT NULL,
  2062. `group_description` text NOT NULL,
  2063. `is_locked` char(1) NOT NULL DEFAULT 'y',
  2064. `can_view_offline_system` char(1) NOT NULL DEFAULT 'n',
  2065. `can_view_online_system` char(1) NOT NULL DEFAULT 'y',
  2066. `can_access_cp` char(1) NOT NULL DEFAULT 'y',
  2067. `can_access_content` char(1) NOT NULL DEFAULT 'n',
  2068. `can_access_publish` char(1) NOT NULL DEFAULT 'n',
  2069. `can_access_edit` char(1) NOT NULL DEFAULT 'n',
  2070. `can_access_files` char(1) NOT NULL DEFAULT 'n',
  2071. `can_access_fieldtypes` char(1) NOT NULL DEFAULT 'n',
  2072. `can_access_design` char(1) NOT NULL DEFAULT 'n',
  2073. `can_access_addons` char(1) NOT NULL DEFAULT 'n',
  2074. `can_access_modules` char(1) NOT NULL DEFAULT 'n',
  2075. `can_access_extensions` char(1) NOT NULL DEFAULT 'n',
  2076. `can_access_accessories` char(1) NOT NULL DEFAULT 'n',
  2077. `can_access_plugins` char(1) NOT NULL DEFAULT 'n',
  2078. `can_access_members` char(1) NOT NULL DEFAULT 'n',
  2079. `can_access_admin` char(1) NOT NULL DEFAULT 'n',
  2080. `can_access_sys_prefs` char(1) NOT NULL DEFAULT 'n',
  2081. `can_access_content_prefs` char(1) NOT NULL DEFAULT 'n',
  2082. `can_access_tools` char(1) NOT NULL DEFAULT 'n',
  2083. `can_access_comm` char(1) NOT NULL DEFAULT 'n',
  2084. `can_access_utilities` char(1) NOT NULL DEFAULT 'n',
  2085. `can_access_data` char(1) NOT NULL DEFAULT 'n',
  2086. `can_access_logs` char(1) NOT NULL DEFAULT 'n',
  2087. `can_admin_channels` char(1) NOT NULL DEFAULT 'n',
  2088. `can_admin_upload_prefs` char(1) NOT NULL DEFAULT 'n',
  2089. `can_admin_design` char(1) NOT NULL DEFAULT 'n',
  2090. `can_admin_members` char(1) NOT NULL DEFAULT 'n',
  2091. `can_delete_members` char(1) NOT NULL DEFAULT 'n',
  2092. `can_admin_mbr_groups` char(1) NOT NULL DEFAULT 'n',
  2093. `can_admin_mbr_templates` char(1) NOT NULL DEFAULT 'n',
  2094. `can_ban_users` char(1) NOT NULL DEFAULT 'n',
  2095. `can_admin_modules` char(1) NOT NULL DEFAULT 'n',
  2096. `can_admin_templates` char(1) NOT NULL DEFAULT 'n',
  2097. `can_admin_accessories` char(1) NOT NULL DEFAULT 'n',
  2098. `can_edit_categories` char(1) NOT NULL DEFAULT 'n',
  2099. `can_delete_categories` char(1) NOT NULL DEFAULT 'n',
  2100. `can_view_other_entries` char(1) NOT NULL DEFAULT 'n',
  2101. `can_edit_other_entries` char(1) NOT NULL DEFAULT 'n',
  2102. `can_assign_post_authors` char(1) NOT NULL DEFAULT 'n',
  2103. `can_delete_self_entries` char(1) NOT NULL DEFAULT 'n',
  2104. `can_delete_all_entries` char(1) NOT NULL DEFAULT 'n',
  2105. `can_view_other_comments` char(1) NOT NULL DEFAULT 'n',
  2106. `can_edit_own_comments` char(1) NOT NULL DEFAULT 'n',
  2107. `can_delete_own_comments` char(1) NOT NULL DEFAULT 'n',
  2108. `can_edit_all_comments` char(1) NOT NULL DEFAULT 'n',
  2109. `can_delete_all_comments` char(1) NOT NULL DEFAULT 'n',
  2110. `can_moderate_comments` char(1) NOT NULL DEFAULT 'n',
  2111. `can_send_email` char(1) NOT NULL DEFAULT 'n',
  2112. `can_send_cached_email` char(1) NOT NULL DEFAULT 'n',
  2113. `can_email_member_groups` char(1) NOT NULL DEFAULT 'n',
  2114. `can_email_mailinglist` char(1) NOT NULL DEFAULT 'n',
  2115. `can_email_from_profile` char(1) NOT NULL DEFAULT 'n',
  2116. `can_view_profiles` char(1) NOT NULL DEFAULT 'n',
  2117. `can_edit_html_buttons` char(1) NOT NULL DEFAULT 'n',
  2118. `can_delete_self` char(1) NOT NULL DEFAULT 'n',
  2119. `mbr_delete_notify_emails` varchar(255) DEFAULT NULL,
  2120. `can_post_comments` char(1) NOT NULL DEFAULT 'n',
  2121. `exclude_from_moderation` char(1) NOT NULL DEFAULT 'n',
  2122. `can_search` char(1) NOT NULL DEFAULT 'n',
  2123. `search_flood_control` mediumint(5) unsigned NOT NULL,
  2124. `can_send_private_messages` char(1) NOT NULL DEFAULT 'n',
  2125. `prv_msg_send_limit` smallint(5) unsigned NOT NULL DEFAULT '20',
  2126. `prv_msg_storage_limit` smallint(5) unsigned NOT NULL DEFAULT '60',
  2127. `can_attach_in_private_messages` char(1) NOT NULL DEFAULT 'n',
  2128. `can_send_bulletins` char(1) NOT NULL DEFAULT 'n',
  2129. `include_in_authorlist` char(1) NOT NULL DEFAULT 'n',
  2130. `include_in_memberlist` char(1) NOT NULL DEFAULT 'y',
  2131. `include_in_mailinglists` char(1) NOT NULL DEFAULT 'y',
  2132. PRIMARY KEY (`group_id`,`site_id`)
  2133. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2134. --
  2135. -- Dumping data for table `exp_member_groups`
  2136. --
  2137. 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_admin_accessories`, `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
  2138. (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', 'y', 0, 'y', 20, 60, 'y', 'y', 'y', 'y', 'y'),
  2139. (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', 'n', 60, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n'),
  2140. (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', 'n', 'y', 'n', 'n', 'n', 'n', '', 'y', 'n', 'y', 15, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n'),
  2141. (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', 'n', 'y', 'n', 'n', 'n', 'n', '', 'y', 'n', 'y', 15, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n'),
  2142. (5, 1, 'Members', '', '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', 'n', 'n', 'y', 'y', 'y', 'n', '', 'y', 'n', 'y', 10, 'y', 20, 60, 'y', 'n', 'n', 'y', 'y'),
  2143. (6, 1, 'admin', '', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', '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');
  2144. -- --------------------------------------------------------
  2145. --
  2146. -- Table structure for table `exp_member_homepage`
  2147. --
  2148. DROP TABLE IF EXISTS `exp_member_homepage`;
  2149. CREATE TABLE `exp_member_homepage` (
  2150. `member_id` int(10) unsigned NOT NULL,
  2151. `recent_entries` char(1) NOT NULL DEFAULT 'l',
  2152. `recent_entries_order` int(3) unsigned NOT NULL DEFAULT '0',
  2153. `recent_comments` char(1) NOT NULL DEFAULT 'l',
  2154. `recent_comments_order` int(3) unsigned NOT NULL DEFAULT '0',
  2155. `recent_members` char(1) NOT NULL DEFAULT 'n',
  2156. `recent_members_order` int(3) unsigned NOT NULL DEFAULT '0',
  2157. `site_statistics` char(1) NOT NULL DEFAULT 'r',
  2158. `site_statistics_order` int(3) unsigned NOT NULL DEFAULT '0',
  2159. `member_search_form` char(1) NOT NULL DEFAULT 'n',
  2160. `member_search_form_order` int(3) unsigned NOT NULL DEFAULT '0',
  2161. `notepad` char(1) NOT NULL DEFAULT 'r',
  2162. `notepad_order` int(3) unsigned NOT NULL DEFAULT '0',
  2163. `bulletin_board` char(1) NOT NULL DEFAULT 'r',
  2164. `bulletin_board_order` int(3) unsigned NOT NULL DEFAULT '0',
  2165. `pmachine_news_feed` char(1) NOT NULL DEFAULT 'n',
  2166. `pmachine_news_feed_order` int(3) unsigned NOT NULL DEFAULT '0',
  2167. PRIMARY KEY (`member_id`)
  2168. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2169. --
  2170. -- Dumping data for table `exp_member_homepage`
  2171. --
  2172. 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
  2173. (1, 'l', 1, 'l', 2, 'n', 0, 'r', 1, 'n', 0, 'r', 2, 'r', 0, 'l', 0),
  2174. (2, 'l', 0, 'l', 0, 'n', 0, 'r', 0, 'n', 0, 'r', 0, 'r', 0, 'n', 0),
  2175. (3, 'l', 0, 'l', 0, 'n', 0, 'r', 0, 'n', 0, 'r', 0, 'r', 0, 'n', 0),
  2176. (4, 'l', 0, 'l', 0, 'n', 0, 'r', 0, 'n', 0, 'r', 0, 'r', 0, 'n', 0);
  2177. -- --------------------------------------------------------
  2178. --
  2179. -- Table structure for table `exp_member_search`
  2180. --
  2181. DROP TABLE IF EXISTS `exp_member_search`;
  2182. CREATE TABLE `exp_member_search` (
  2183. `search_id` varchar(32) NOT NULL,
  2184. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2185. `search_date` int(10) unsigned NOT NULL,
  2186. `keywords` varchar(200) NOT NULL,
  2187. `fields` varchar(200) NOT NULL,
  2188. `member_id` int(10) unsigned NOT NULL,
  2189. `ip_address` varchar(16) NOT NULL,
  2190. `total_results` int(8) unsigned NOT NULL,
  2191. `query` text NOT NULL,
  2192. PRIMARY KEY (`search_id`),
  2193. KEY `member_id` (`member_id`),
  2194. KEY `site_id` (`site_id`)
  2195. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2196. --
  2197. -- Dumping data for table `exp_member_search`
  2198. --
  2199. -- --------------------------------------------------------
  2200. --
  2201. -- Table structure for table `exp_message_attachments`
  2202. --
  2203. DROP TABLE IF EXISTS `exp_message_attachments`;
  2204. CREATE TABLE `exp_message_attachments` (
  2205. `attachment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2206. `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  2207. `message_id` int(10) unsigned NOT NULL DEFAULT '0',
  2208. `attachment_name` varchar(50) NOT NULL DEFAULT '',
  2209. `attachment_hash` varchar(40) NOT NULL DEFAULT '',
  2210. `attachment_extension` varchar(20) NOT NULL DEFAULT '',
  2211. `attachment_location` varchar(150) NOT NULL DEFAULT '',
  2212. `attachment_date` int(10) unsigned NOT NULL DEFAULT '0',
  2213. `attachment_size` int(10) unsigned NOT NULL DEFAULT '0',
  2214. `is_temp` char(1) NOT NULL DEFAULT 'y',
  2215. PRIMARY KEY (`attachment_id`)
  2216. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2217. --
  2218. -- Dumping data for table `exp_message_attachments`
  2219. --
  2220. -- --------------------------------------------------------
  2221. --
  2222. -- Table structure for table `exp_message_copies`
  2223. --
  2224. DROP TABLE IF EXISTS `exp_message_copies`;
  2225. CREATE TABLE `exp_message_copies` (
  2226. `copy_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2227. `message_id` int(10) unsigned NOT NULL DEFAULT '0',
  2228. `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  2229. `recipient_id` int(10) unsigned NOT NULL DEFAULT '0',
  2230. `message_received` char(1) NOT NULL DEFAULT 'n',
  2231. `message_read` char(1) NOT NULL DEFAULT 'n',
  2232. `message_time_read` int(10) unsigned NOT NULL DEFAULT '0',
  2233. `attachment_downloaded` char(1) NOT NULL DEFAULT 'n',
  2234. `message_folder` int(10) unsigned NOT NULL DEFAULT '1',
  2235. `message_authcode` varchar(10) NOT NULL DEFAULT '',
  2236. `message_deleted` char(1) NOT NULL DEFAULT 'n',
  2237. `message_status` varchar(10) NOT NULL DEFAULT '',
  2238. PRIMARY KEY (`copy_id`),
  2239. KEY `message_id` (`message_id`),
  2240. KEY `recipient_id` (`recipient_id`),
  2241. KEY `sender_id` (`sender_id`)
  2242. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2243. --
  2244. -- Dumping data for table `exp_message_copies`
  2245. --
  2246. -- --------------------------------------------------------
  2247. --
  2248. -- Table structure for table `exp_message_data`
  2249. --
  2250. DROP TABLE IF EXISTS `exp_message_data`;
  2251. CREATE TABLE `exp_message_data` (
  2252. `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2253. `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  2254. `message_date` int(10) unsigned NOT NULL DEFAULT '0',
  2255. `message_subject` varchar(255) NOT NULL DEFAULT '',
  2256. `message_body` text NOT NULL,
  2257. `message_tracking` char(1) NOT NULL DEFAULT 'y',
  2258. `message_attachments` char(1) NOT NULL DEFAULT 'n',
  2259. `message_recipients` varchar(200) NOT NULL DEFAULT '',
  2260. `message_cc` varchar(200) NOT NULL DEFAULT '',
  2261. `message_hide_cc` char(1) NOT NULL DEFAULT 'n',
  2262. `message_sent_copy` char(1) NOT NULL DEFAULT 'n',
  2263. `total_recipients` int(5) unsigned NOT NULL DEFAULT '0',
  2264. `message_status` varchar(25) NOT NULL DEFAULT '',
  2265. PRIMARY KEY (`message_id`),
  2266. KEY `sender_id` (`sender_id`)
  2267. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2268. --
  2269. -- Dumping data for table `exp_message_data`
  2270. --
  2271. -- --------------------------------------------------------
  2272. --
  2273. -- Table structure for table `exp_message_folders`
  2274. --
  2275. DROP TABLE IF EXISTS `exp_message_folders`;
  2276. CREATE TABLE `exp_message_folders` (
  2277. `member_id` int(10) unsigned NOT NULL DEFAULT '0',
  2278. `folder1_name` varchar(50) NOT NULL DEFAULT 'InBox',
  2279. `folder2_name` varchar(50) NOT NULL DEFAULT 'Sent',
  2280. `folder3_name` varchar(50) NOT NULL DEFAULT '',
  2281. `folder4_name` varchar(50) NOT NULL DEFAULT '',
  2282. `folder5_name` varchar(50) NOT NULL DEFAULT '',
  2283. `folder6_name` varchar(50) NOT NULL DEFAULT '',
  2284. `folder7_name` varchar(50) NOT NULL DEFAULT '',
  2285. `folder8_name` varchar(50) NOT NULL DEFAULT '',
  2286. `folder9_name` varchar(50) NOT NULL DEFAULT '',
  2287. `folder10_name` varchar(50) NOT NULL DEFAULT '',
  2288. PRIMARY KEY (`member_id`)
  2289. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2290. --
  2291. -- Dumping data for table `exp_message_folders`
  2292. --
  2293. 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
  2294. (1, 'InBox', 'Sent', '', '', '', '', '', '', '', ''),
  2295. (2, 'InBox', 'Sent', '', '', '', '', '', '', '', ''),
  2296. (3, 'InBox', 'Sent', '', '', '', '', '', '', '', '');
  2297. -- --------------------------------------------------------
  2298. --
  2299. -- Table structure for table `exp_message_listed`
  2300. --
  2301. DROP TABLE IF EXISTS `exp_message_listed`;
  2302. CREATE TABLE `exp_message_listed` (
  2303. `listed_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2304. `member_id` int(10) unsigned NOT NULL DEFAULT '0',
  2305. `listed_member` int(10) unsigned NOT NULL DEFAULT '0',
  2306. `listed_description` varchar(100) NOT NULL DEFAULT '',
  2307. `listed_type` varchar(10) NOT NULL DEFAULT 'blocked',
  2308. PRIMARY KEY (`listed_id`)
  2309. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2310. --
  2311. -- Dumping data for table `exp_message_listed`
  2312. --
  2313. -- --------------------------------------------------------
  2314. --
  2315. -- Table structure for table `exp_modules`
  2316. --
  2317. DROP TABLE IF EXISTS `exp_modules`;
  2318. CREATE TABLE `exp_modules` (
  2319. `module_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  2320. `module_name` varchar(50) NOT NULL,
  2321. `module_version` varchar(12) NOT NULL,
  2322. `has_cp_backend` char(1) NOT NULL DEFAULT 'n',
  2323. `has_publish_fields` char(1) NOT NULL DEFAULT 'n',
  2324. PRIMARY KEY (`module_id`)
  2325. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;
  2326. --
  2327. -- Dumping data for table `exp_modules`
  2328. --
  2329. INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`) VALUES
  2330. (1, 'Comment', '2.2', 'y', 'n'),
  2331. (2, 'Email', '2.0', 'n', 'n'),
  2332. (3, 'File', '1.0.0', 'n', 'n'),
  2333. (4, 'Jquery', '1.0', 'n', 'n'),
  2334. (5, 'Mailinglist', '3.0', 'y', 'n'),
  2335. (6, 'Pages', '2.2', 'y', 'y'),
  2336. (7, 'Query', '2.0', 'n', 'n'),
  2337. (8, 'Rss', '2.0', 'n', 'n'),
  2338. (9, 'Referrer', '2.0', 'y', 'n'),
  2339. (10, 'Safecracker', '2.1', 'y', 'n'),
  2340. (11, 'Search', '2.1', 'n', 'n'),
  2341. (12, 'Channel', '2.0.1', 'n', 'n'),
  2342. (13, 'Member', '2.1', 'n', 'n'),
  2343. (14, 'Stats', '2.0', 'n', 'n'),
  2344. (15, 'Freeform', '3.1.1', 'y', 'n');
  2345. -- --------------------------------------------------------
  2346. --
  2347. -- Table structure for table `exp_module_member_groups`
  2348. --
  2349. DROP TABLE IF EXISTS `exp_module_member_groups`;
  2350. CREATE TABLE `exp_module_member_groups` (
  2351. `group_id` smallint(4) unsigned NOT NULL,
  2352. `module_id` mediumint(5) unsigned NOT NULL,
  2353. PRIMARY KEY (`group_id`,`module_id`)
  2354. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2355. --
  2356. -- Dumping data for table `exp_module_member_groups`
  2357. --
  2358. INSERT INTO `exp_module_member_groups` (`group_id`, `module_id`) VALUES
  2359. (6, 15);
  2360. -- --------------------------------------------------------
  2361. --
  2362. -- Table structure for table `exp_online_users`
  2363. --
  2364. DROP TABLE IF EXISTS `exp_online_users`;
  2365. CREATE TABLE `exp_online_users` (
  2366. `online_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2367. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2368. `member_id` int(10) NOT NULL DEFAULT '0',
  2369. `in_forum` char(1) NOT NULL DEFAULT 'n',
  2370. `name` varchar(50) NOT NULL DEFAULT '0',
  2371. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  2372. `date` int(10) unsigned NOT NULL DEFAULT '0',
  2373. `anon` char(1) NOT NULL,
  2374. PRIMARY KEY (`online_id`),
  2375. KEY `date` (`date`),
  2376. KEY `site_id` (`site_id`)
  2377. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=394 ;
  2378. --
  2379. -- Dumping data for table `exp_online_users`
  2380. --
  2381. INSERT INTO `exp_online_users` (`online_id`, `site_id`, `member_id`, `in_forum`, `name`, `ip_address`, `date`, `anon`) VALUES
  2382. (391, 1, 0, 'n', '', '216.145.110.90', 1333562006, ''),
  2383. (392, 1, 0, 'n', '', '99.240.100.127', 1333583709, ''),
  2384. (389, 1, 0, 'n', '', '216.145.110.90', 1333562006, ''),
  2385. (393, 1, 0, 'n', '', '216.145.110.90', 1333645788, ''),
  2386. (386, 1, 0, 'n', '', '216.145.110.90', 1333562006, ''),
  2387. (385, 1, 0, 'n', '', '216.145.110.90', 1333562006, ''),
  2388. (384, 1, 0, 'n', '', '216.145.110.90', 1333562006, '');
  2389. -- --------------------------------------------------------
  2390. --
  2391. -- Table structure for table `exp_pages_configuration`
  2392. --
  2393. DROP TABLE IF EXISTS `exp_pages_configuration`;
  2394. CREATE TABLE `exp_pages_configuration` (
  2395. `configuration_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2396. `site_id` int(8) unsigned NOT NULL DEFAULT '1',
  2397. `configuration_name` varchar(60) NOT NULL,
  2398. `configuration_value` varchar(100) NOT NULL,
  2399. PRIMARY KEY (`configuration_id`)
  2400. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2401. --
  2402. -- Dumping data for table `exp_pages_configuration`
  2403. --
  2404. -- --------------------------------------------------------
  2405. --
  2406. -- Table structure for table `exp_password_lockout`
  2407. --
  2408. DROP TABLE IF EXISTS `exp_password_lockout`;
  2409. CREATE TABLE `exp_password_lockout` (
  2410. `lockout_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2411. `login_date` int(10) unsigned NOT NULL,
  2412. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  2413. `user_agent` varchar(120) NOT NULL,
  2414. `username` varchar(50) NOT NULL,
  2415. PRIMARY KEY (`lockout_id`),
  2416. KEY `login_date` (`login_date`),
  2417. KEY `ip_address` (`ip_address`),
  2418. KEY `user_agent` (`user_agent`)
  2419. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
  2420. --
  2421. -- Dumping data for table `exp_password_lockout`
  2422. --
  2423. INSERT INTO `exp_password_lockout` (`lockout_id`, `login_date`, `ip_address`, `user_agent`, `username`) VALUES
  2424. (7, 1332852639, '216.145.110.90', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7', 'robinf');
  2425. -- --------------------------------------------------------
  2426. --
  2427. -- Table structure for table `exp_ping_servers`
  2428. --
  2429. DROP TABLE IF EXISTS `exp_ping_servers`;
  2430. CREATE TABLE `exp_ping_servers` (
  2431. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2432. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2433. `member_id` int(10) NOT NULL DEFAULT '0',
  2434. `server_name` varchar(32) NOT NULL,
  2435. `server_url` varchar(150) NOT NULL,
  2436. `port` varchar(4) NOT NULL DEFAULT '80',
  2437. `ping_protocol` varchar(12) NOT NULL DEFAULT 'xmlrpc',
  2438. `is_default` char(1) NOT NULL DEFAULT 'y',
  2439. `server_order` int(3) unsigned NOT NULL,
  2440. PRIMARY KEY (`id`),
  2441. KEY `site_id` (`site_id`)
  2442. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2443. --
  2444. -- Dumping data for table `exp_ping_servers`
  2445. --
  2446. -- --------------------------------------------------------
  2447. --
  2448. -- Table structure for table `exp_referrers`
  2449. --
  2450. DROP TABLE IF EXISTS `exp_referrers`;
  2451. CREATE TABLE `exp_referrers` (
  2452. `ref_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2453. `site_id` int(4) DEFAULT '1',
  2454. `ref_from` varchar(150) DEFAULT NULL,
  2455. `ref_to` varchar(120) DEFAULT NULL,
  2456. `ref_ip` varchar(16) DEFAULT NULL,
  2457. `ref_date` int(10) unsigned DEFAULT '0',
  2458. `ref_agent` varchar(100) DEFAULT NULL,
  2459. PRIMARY KEY (`ref_id`),
  2460. KEY `site_id` (`site_id`)
  2461. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2462. --
  2463. -- Dumping data for table `exp_referrers`
  2464. --
  2465. -- --------------------------------------------------------
  2466. --
  2467. -- Table structure for table `exp_relationships`
  2468. --
  2469. DROP TABLE IF EXISTS `exp_relationships`;
  2470. CREATE TABLE `exp_relationships` (
  2471. `rel_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  2472. `rel_parent_id` int(10) NOT NULL DEFAULT '0',
  2473. `rel_child_id` int(10) NOT NULL DEFAULT '0',
  2474. `rel_type` varchar(12) NOT NULL,
  2475. `rel_data` mediumtext NOT NULL,
  2476. `reverse_rel_data` mediumtext NOT NULL,
  2477. PRIMARY KEY (`rel_id`),
  2478. KEY `rel_parent_id` (`rel_parent_id`),
  2479. KEY `rel_child_id` (`rel_child_id`)
  2480. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2481. --
  2482. -- Dumping data for table `exp_relationships`
  2483. --
  2484. -- --------------------------------------------------------
  2485. --
  2486. -- Table structure for table `exp_reset_password`
  2487. --
  2488. DROP TABLE IF EXISTS `exp_reset_password`;
  2489. CREATE TABLE `exp_reset_password` (
  2490. `reset_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2491. `member_id` int(10) unsigned NOT NULL,
  2492. `resetcode` varchar(12) NOT NULL,
  2493. `date` int(10) NOT NULL,
  2494. PRIMARY KEY (`reset_id`)
  2495. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2496. --
  2497. -- Dumping data for table `exp_reset_password`
  2498. --
  2499. -- --------------------------------------------------------
  2500. --
  2501. -- Table structure for table `exp_revision_tracker`
  2502. --
  2503. DROP TABLE IF EXISTS `exp_revision_tracker`;
  2504. CREATE TABLE `exp_revision_tracker` (
  2505. `tracker_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2506. `item_id` int(10) unsigned NOT NULL,
  2507. `item_table` varchar(20) NOT NULL,
  2508. `item_field` varchar(20) NOT NULL,
  2509. `item_date` int(10) NOT NULL,
  2510. `item_author_id` int(10) unsigned NOT NULL,
  2511. `item_data` mediumtext NOT NULL,
  2512. PRIMARY KEY (`tracker_id`),
  2513. KEY `item_id` (`item_id`)
  2514. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
  2515. --
  2516. -- Dumping data for table `exp_revision_tracker`
  2517. --
  2518. INSERT INTO `exp_revision_tracker` (`tracker_id`, `item_id`, `item_table`, `item_field`, `item_date`, `item_author_id`, `item_data`) VALUES
  2519. (1, 1, 'exp_templates', 'template_data', 1326311617, 1, ''),
  2520. (2, 1, 'exp_templates', 'template_data', 1326312589, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml"><head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n\n<meta name="description" content="A descriptiong of Heartbeets Natural Martket. Will improve once imformation is acquired.">\n<meta name="keywords" content="heartbeets, heartbeats, natural market, all natural foods, healthy living, energy, Canada, healthy food, healthy foods, food choice ">\n<meta name="copyright" content="&copy; Heartbeets Natural Market"> \n\n<!--FAVICON-->\n <link rel="shortcut icon" href="favicon.ico" /> \n <link rel="icon" href="favicon.png" type="image/png" />\n \n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n\n \n <!--[if IE 6]>\n <link rel="stylesheet" type="text/css" href="css/ie6.css" />\n<![endif]-->\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}css/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}css/jquery.dualSlider.0.2.css" />\n <link rel="stylesheet" type="text/css" href="http://domain.tld/path/ie-specific.css" />\n \n \n\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n\n\n \n <script type="text/javascript">\n $(document).ready(function() {\n \n $(".carousel").dualSlider({\n auto:true,\n autoDelay: 6000,\n easingCarousel: "swing",\n easingDetails: "easeOutBack",\n durationCarousel: 1000,\n durationDetails: 600\n });\n \n });\n </script>\n \n <!-- Javascript -->\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n \n \n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n<span id="alImg1">\n <a href="#"><img border="0" src="images/logo.png" alt=""/></a>\n </span>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img border="0" src="images/contact_button.png" width="120" height="26"/></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n \n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n<!--START OF SLIDER-->\n<div class="slider">\n\n\n \n <div class="carousel clearfix">\n <div class="panel">\n <div class="details_wrapper">\n \n <div class="details">\n \n <div class="detail">\n <h5>dapibus acune facilisis inar.</h5>\n <p>Cras justo odio, dapibus facilisis in, egestas eget.</p>\n \n <div class="topmarg">\n <a href="#" title="View all Specials" class="more">\n <img src="images/viewallspecials2.png" width="118" height="24"/></a>\n </div>\n </div><!-- /detail -->\n \n <div class="detail">\n <h5>dapibus acune facilisis inar.</h5>\n <p>Cras justo odio, dapibus facilisis in, egestas eget. Here''s a little more text to see what it looks like.</p>\n \n <div class="topmarg">\n <a href="#" title="View all Specials" class="more">\n <img src="images/viewallspecials2.png" width="118" height="24" /></a>\n </div> \n </div><!-- /detail -->\n \n <div class="detail">\n <h5>dapibus acune facilisis inar.</h5>\n <p>Cras justo odio, dapibus facilisis in, egestas eget. Here''s a little more text to see what it looks like.</p>\n \n <div class="topmarg">\n <a href="#" title="View all Specials" class="more">\n <img src="images/viewallspecials2.png" width="118" height="24" /></a>\n </div> \n </div><!-- /detail -->\n \n </div>\n \n </div><!-- /details_wrapper -->\n \n <div class="paging">\n <div id="numbers"></div>\n <a href="javascript:void(0);" class="previous" title="Previous" >Previous</a>\n <a href="javascript:void(0);" class="next" title="Next">Next</a>\n </div><!-- /paging -->\n \n <a href="javascript:void(0);" class="play" title="Turn on autoplay">Play</a>\n <a href="javascript:void(0);" class="pause" title="Turn off autoplay">Pause</a>\n \n </div><!-- /panel -->\n \n \n \n <div class="backgrounds">\n <div class="item item_1"></div><!-- /item -->\n <div class="item item_2"></div><!-- /item -->\n <div class="item item_3"></div><!-- /item -->\n </div><!-- /backgrounds -->\n \n </div><!-- /carousel -->\n\n\n\n <!--board-->\n <div class="board">\n <div class="boardtext">\n <h1>Dolor Nullam Cras</h1>\n <p>Aenean eu leo quam. Pellentesque lacinia quam venenatis vestibu...<a href="#">[+]</a></p>\n <p><a href="#">> Learn More</a></p>\n \n <h1>Dolor Nullam Cras Venenatis</h1>\n <p>Aenean eu leo quam. Pellentesque lacinia quam venenatis vestibu...<a href="#">[+]</a></p>\n <p><a href="#">> Learn More</a></p>\n \n <h1>Dolor Nullam Cras</h1>\n <p>Aenean eu leo quam. Pellentesque lacinia quam venenatis vestibu...<a href="#">[+]</a></p>\n <p><a href="#">> Learn More</a></p>\n \n <p style="text-align:right;"><a href="#">View All Events</a></p>\n </div>\n \n <!-- <img src="images/BOARD.jpg" width="309" height="544"/>-->\n </div>\n\n <div class="clear"></div>\n\n</div><!-- /wrapper -->\n \n <div class="bottomshadow">\n <img src="images/bottomshadow.jpg"/>\n </div> \n <div class="clear"></div> \n <!--END OF SLIDER-->\n\n<div class="clearbar"></div>\n\n <div class="maincontent">\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n <p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n \n <div class="greenbox">\n <p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n \n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n </div>\n \n <p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n </p>\n \n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n <h2><span>Heart Beets</span> Monthly Newsletter</h2>\n <p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n \n <form>\n <p>Full Name:</p> <input type="text" name="fullname" /><br/>\n <p>Email Address:</p> <input type="text" name="email" />\n </form>\n \n <div class="topmarg">\n <a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n </div>\n \n <p><a href="#">Newsletter Archive</a></p>\n \n <div class="clear"></div>\n \n <div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n </div>\n </div>\n \n </div>\n\n <div class="clear"></div>\n\n\n\n <!--START OF FOOTER-->\n <div id="footer">\n <hr />\n <div id="footerleft">\n <p>� 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n </div>\n <!--END OF FOOTER-->\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2521. (3, 2, 'exp_templates', 'template_data', 1326312626, 2, ''),
  2522. (4, 2, 'exp_templates', 'template_data', 1326312767, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2523. (5, 3, 'exp_templates', 'template_data', 1326312798, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2524. (6, 3, 'exp_templates', 'template_data', 1326312810, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2525. (7, 3, 'exp_templates', 'template_data', 1326312811, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2526. (8, 4, 'exp_templates', 'template_data', 1326312835, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n');
  2527. INSERT INTO `exp_revision_tracker` (`tracker_id`, `item_id`, `item_table`, `item_field`, `item_date`, `item_author_id`, `item_data`) VALUES
  2528. (9, 5, 'exp_templates', 'template_data', 1326312862, 2, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2529. (10, 6, 'exp_templates', 'template_data', 1326316065, 2, ''),
  2530. (11, 7, 'exp_templates', 'template_data', 1326401913, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="5"}\n <h1>{title}</h1>\n\n{exp:word_limit total="20"}\n<p>{blog_body}</p>\n{/exp:word_limit}\n\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2531. (12, 8, 'exp_templates', 'template_data', 1326402990, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n {exp:channel:entries channel="careers" limit="1"}\n <h1>{title}</h1>\n <p>{careers_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2532. (13, 9, 'exp_templates', 'template_data', 1326403443, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="events" limit="1"}\n <h1>{title}</h1>\n <p>{events_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2533. (14, 10, 'exp_templates', 'template_data', 1326729669, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="specials" limit="1"}\n <h1>{title}</h1>\n <p>{specials_body}</p>\n {/exp:channel:entries}\n\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2534. (15, 3, 'exp_templates', 'template_data', 1326731215, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2535. (16, 3, 'exp_templates', 'template_data', 1326731218, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2536. (17, 11, 'exp_templates', 'template_data', 1326731242, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2537. (18, 12, 'exp_templates', 'template_data', 1326731340, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n'),
  2538. (19, 13, 'exp_templates', 'template_data', 1326748668, 2, '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="5"}\n <h1>{title}</h1>\n\n {exp:word_limit total="40"}\n <p>{blog_body}</p>\n \n {paginate}\n <p>Page {current_page} of {total_pages} pages {pagination_links}</p>\n {/paginate}\n \n {/exp:word_limit}\n \n <p><a href="{title_permalink="site/blog"}">Continue Reading</a> | <span class="grey">{blog_date format="%M %d, %Y"}</span></p>\n\n <hr>\n\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n <h2><span>Heart Beets</span> Monthly Newsletter</h2>\n <p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n \n <form>\n <p>Full Name:</p> <input type="text" name="fullname" size="40"/><br/>\n <p>Email Address:</p> <input type="text" name="email" size="40"/>\n </form>\n \n <div class="topmarg">\n <a href="#"><{site_url}img src="images/subscribe.png" width="120" height="26"/></a>\n </div>\n \n <p><a href="#">Newsletter Archive</a></p>\n \n <div class="clear"></div>\n \n <div class="socialmedia"> \n <a href="http://facebook.com" target="_blank"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="http://twitter.com" target="_blank"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="http://youtube.com" target="_blank"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n </div>\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n');
  2539. -- --------------------------------------------------------
  2540. --
  2541. -- Table structure for table `exp_search`
  2542. --
  2543. DROP TABLE IF EXISTS `exp_search`;
  2544. CREATE TABLE `exp_search` (
  2545. `search_id` varchar(32) NOT NULL,
  2546. `site_id` int(4) NOT NULL DEFAULT '1',
  2547. `search_date` int(10) NOT NULL,
  2548. `keywords` varchar(60) NOT NULL,
  2549. `member_id` int(10) unsigned NOT NULL,
  2550. `ip_address` varchar(16) NOT NULL,
  2551. `total_results` int(6) NOT NULL,
  2552. `per_page` tinyint(3) unsigned NOT NULL,
  2553. `query` mediumtext,
  2554. `custom_fields` mediumtext,
  2555. `result_page` varchar(70) NOT NULL,
  2556. PRIMARY KEY (`search_id`)
  2557. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2558. --
  2559. -- Dumping data for table `exp_search`
  2560. --
  2561. -- --------------------------------------------------------
  2562. --
  2563. -- Table structure for table `exp_search_log`
  2564. --
  2565. DROP TABLE IF EXISTS `exp_search_log`;
  2566. CREATE TABLE `exp_search_log` (
  2567. `id` int(10) NOT NULL AUTO_INCREMENT,
  2568. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2569. `member_id` int(10) unsigned NOT NULL,
  2570. `screen_name` varchar(50) NOT NULL,
  2571. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  2572. `search_date` int(10) NOT NULL,
  2573. `search_type` varchar(32) NOT NULL,
  2574. `search_terms` varchar(200) NOT NULL,
  2575. PRIMARY KEY (`id`),
  2576. KEY `site_id` (`site_id`)
  2577. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2578. --
  2579. -- Dumping data for table `exp_search_log`
  2580. --
  2581. -- --------------------------------------------------------
  2582. --
  2583. -- Table structure for table `exp_security_hashes`
  2584. --
  2585. DROP TABLE IF EXISTS `exp_security_hashes`;
  2586. CREATE TABLE `exp_security_hashes` (
  2587. `hash_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2588. `date` int(10) unsigned NOT NULL,
  2589. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  2590. `hash` varchar(40) NOT NULL,
  2591. PRIMARY KEY (`hash_id`),
  2592. KEY `hash` (`hash`)
  2593. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=14670 ;
  2594. --
  2595. -- Dumping data for table `exp_security_hashes`
  2596. --
  2597. INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `ip_address`, `hash`) VALUES
  2598. (14640, 1333645794, '216.145.110.90', 'db3efaadb23d24c1b837ba72f9b13b45313b2375'),
  2599. (14669, 1333646480, '216.145.110.90', 'ee39e69557cfc9d1def55750ff5ee327a09f0a65'),
  2600. (14668, 1333646478, '216.145.110.90', 'c997f4f81e6eeb89019f96b47487ecd4dae794a2'),
  2601. (14667, 1333646477, '216.145.110.90', '721facf08fc0bb0f33f0b18ebeb0d55bd93d8a39'),
  2602. (14666, 1333646477, '216.145.110.90', 'df6dc827b042a8651a97c1e785c0b825ad331f41'),
  2603. (14665, 1333646476, '216.145.110.90', '6bb59b6745cd7a5b23230756b575ca7efd757c2d'),
  2604. (14664, 1333646475, '216.145.110.90', '261e996d93fa87a1bed660210179d6a8275578f3'),
  2605. (14663, 1333646474, '216.145.110.90', '2ee5df6b083e22b1bf9f06b006c624517714e3b9'),
  2606. (14662, 1333646465, '216.145.110.90', '90a6d389ffcbe72e1bb0a4efc6cb843f23c14dd7'),
  2607. (14661, 1333646463, '216.145.110.90', '1762b50ced9cf98bd8421cca6413f6c17c83e724'),
  2608. (14660, 1333646463, '216.145.110.90', '3122a5b364742bc7504550fb153ae9b12feca5b8'),
  2609. (14659, 1333646462, '216.145.110.90', 'b09a21f443b85dd11087d4d08222416be00d9fff'),
  2610. (14658, 1333646461, '216.145.110.90', '9dc36b25fc738de83807feba52b410ded7bc535d'),
  2611. (14657, 1333646460, '216.145.110.90', '4654e6076d2ea4ca56cddf952a8189bc7048c90c'),
  2612. (14656, 1333646458, '216.145.110.90', '2ce97988c2f217df4092b03128ef973ddf7dbd2a'),
  2613. (14655, 1333646425, '216.145.110.90', 'fe1558545bf03b04cb60725e12444d328e7a0781'),
  2614. (14654, 1333646423, '216.145.110.90', '8dbef97600f26bb3076a625568674a32a1cec12c'),
  2615. (14653, 1333646422, '216.145.110.90', 'c6b228d704e2f891d9631bb829123021b0e68b18'),
  2616. (14652, 1333646422, '216.145.110.90', 'da675dae2d91052228ddc5104ab04dd7c7c914a6'),
  2617. (14651, 1333646421, '216.145.110.90', '4f31bcec77e6c8cb3e19a9aa6f22e751c7f35939'),
  2618. (14650, 1333646421, '216.145.110.90', '1c6efe38196b164c4303831b74d2a1ea98990638'),
  2619. (14649, 1333646419, '216.145.110.90', 'acbaf168ee4616356f83d7e377fa31d620fd083a'),
  2620. (14648, 1333646405, '216.145.110.90', '27978655ed92f6ec0bc3957b2ada589ba7b60ce7'),
  2621. (14647, 1333646385, '216.145.110.90', '0f5b18f605b9f6f3825cd512d09afd67e4e58e0e'),
  2622. (14646, 1333646384, '216.145.110.90', '5b2f8580a0f794e8d4822b7361a7a672a4a7600f'),
  2623. (14645, 1333646384, '216.145.110.90', 'a2baf2e6ec933e75402cc67aac23a1be746607eb'),
  2624. (14644, 1333646380, '216.145.110.90', '070e420114c47e32b164f69bea7c778b1969132d'),
  2625. (14643, 1333646373, '216.145.110.90', '05704e1baa21e7281984d2de09bb9e6799c8c7fe'),
  2626. (14642, 1333645800, '216.145.110.90', 'cef2809a5a02315679e16e9552556783e4f9fcba'),
  2627. (14641, 1333645800, '216.145.110.90', '0608cd59ec1422a8d4343995f98fe07f90e51dd1');
  2628. -- --------------------------------------------------------
  2629. --
  2630. -- Table structure for table `exp_sessions`
  2631. --
  2632. DROP TABLE IF EXISTS `exp_sessions`;
  2633. CREATE TABLE `exp_sessions` (
  2634. `session_id` varchar(40) NOT NULL DEFAULT '0',
  2635. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2636. `member_id` int(10) NOT NULL DEFAULT '0',
  2637. `admin_sess` tinyint(1) NOT NULL DEFAULT '0',
  2638. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  2639. `user_agent` varchar(120) NOT NULL,
  2640. `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  2641. PRIMARY KEY (`session_id`),
  2642. KEY `member_id` (`member_id`),
  2643. KEY `site_id` (`site_id`),
  2644. KEY `last_activity_idx` (`last_activity`)
  2645. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2646. --
  2647. -- Dumping data for table `exp_sessions`
  2648. --
  2649. INSERT INTO `exp_sessions` (`session_id`, `site_id`, `member_id`, `admin_sess`, `ip_address`, `user_agent`, `last_activity`) VALUES
  2650. ('e1d36319512d388a9744c2ed909717dbcff46558', 1, 2, 1, '216.145.110.90', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7', 1333646480),
  2651. ('1fcbd707d354b92cdf2f6c70ca7f8e903f40149b', 1, 2, 1, '216.145.110.90', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7', 1333561967);
  2652. -- --------------------------------------------------------
  2653. --
  2654. -- Table structure for table `exp_sites`
  2655. --
  2656. DROP TABLE IF EXISTS `exp_sites`;
  2657. CREATE TABLE `exp_sites` (
  2658. `site_id` int(5) unsigned NOT NULL AUTO_INCREMENT,
  2659. `site_label` varchar(100) NOT NULL DEFAULT '',
  2660. `site_name` varchar(50) NOT NULL DEFAULT '',
  2661. `site_description` text,
  2662. `site_system_preferences` text NOT NULL,
  2663. `site_mailinglist_preferences` text NOT NULL,
  2664. `site_member_preferences` text NOT NULL,
  2665. `site_template_preferences` text NOT NULL,
  2666. `site_channel_preferences` text NOT NULL,
  2667. `site_bootstrap_checksums` text NOT NULL,
  2668. `site_pages` text NOT NULL,
  2669. PRIMARY KEY (`site_id`),
  2670. KEY `site_name` (`site_name`)
  2671. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  2672. --
  2673. -- Dumping data for table `exp_sites`
  2674. --
  2675. 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`, `site_pages`) VALUES
  2676. (1, 'Heart Beets', 'default_site', NULL, 'YTo5MDp7czoxMDoic2l0ZV9pbmRleCI7czo5OiJpbmRleC5waHAiO3M6ODoic2l0ZV91cmwiO3M6MzI6Imh0dHA6Ly9oZWFydGJlZXRzLmVoY2xpZW50cy5jb20vIjtzOjE2OiJ0aGVtZV9mb2xkZXJfdXJsIjtzOjM5OiJodHRwOi8vaGVhcnRiZWV0cy5laGNsaWVudHMuY29tL3RoZW1lcy8iO3M6MTU6IndlYm1hc3Rlcl9lbWFpbCI7czoyODoibWRvZGdzb25Ac2ltc2FkdmVydGlzaW5nLmNvbSI7czoxNDoid2VibWFzdGVyX25hbWUiO3M6MDoiIjtzOjIwOiJjaGFubmVsX25vbWVuY2xhdHVyZSI7czo3OiJjaGFubmVsIjtzOjEwOiJtYXhfY2FjaGVzIjtzOjM6IjE1MCI7czoxMToiY2FwdGNoYV91cmwiO3M6NDg6Imh0dHA6Ly9oZWFydGJlZXRzLmVoY2xpZW50cy5jb20vaW1hZ2VzL2NhcHRjaGFzLyI7czoxMjoiY2FwdGNoYV9wYXRoIjtzOjQxOiIvd3d3L2VoMTczNjIvcHVibGljX2h0bWwvaW1hZ2VzL2NhcHRjaGFzLyI7czoxMjoiY2FwdGNoYV9mb250IjtzOjE6InkiO3M6MTI6ImNhcHRjaGFfcmFuZCI7czoxOiJ5IjtzOjIzOiJjYXB0Y2hhX3JlcXVpcmVfbWVtYmVycyI7czoxOiJuIjtzOjE3OiJlbmFibGVfZGJfY2FjaGluZyI7czoxOiJuIjtzOjE4OiJlbmFibGVfc3FsX2NhY2hpbmciO3M6MToibiI7czoxODoiZm9yY2VfcXVlcnlfc3RyaW5nIjtzOjE6Im4iO3M6MTM6InNob3dfcHJvZmlsZXIiO3M6MToibiI7czoxODoidGVtcGxhdGVfZGVidWdnaW5nIjtzOjE6Im4iO3M6MTU6ImluY2x1ZGVfc2Vjb25kcyI7czoxOiJuIjtzOjEzOiJjb29raWVfZG9tYWluIjtzOjA6IiI7czoxMToiY29va2llX3BhdGgiO3M6MDoiIjtzOjE3OiJ1c2VyX3Nlc3Npb25fdHlwZSI7czoxOiJjIjtzOjE4OiJhZG1pbl9zZXNzaW9uX3R5cGUiO3M6MjoiY3MiO3M6MjE6ImFsbG93X3VzZXJuYW1lX2NoYW5nZSI7czoxOiJ5IjtzOjE4OiJhbGxvd19tdWx0aV9sb2dpbnMiO3M6MToieSI7czoxNjoicGFzc3dvcmRfbG9ja291dCI7czoxOiJ5IjtzOjI1OiJwYXNzd29yZF9sb2Nrb3V0X2ludGVydmFsIjtzOjE6IjEiO3M6MjA6InJlcXVpcmVfaXBfZm9yX2xvZ2luIjtzOjE6InkiO3M6MjI6InJlcXVpcmVfaXBfZm9yX3Bvc3RpbmciO3M6MToieSI7czoyNDoicmVxdWlyZV9zZWN1cmVfcGFzc3dvcmRzIjtzOjE6Im4iO3M6MTk6ImFsbG93X2RpY3Rpb25hcnlfcHciO3M6MToieSI7czoyMzoibmFtZV9vZl9kaWN0aW9uYXJ5X2ZpbGUiO3M6MDoiIjtzOjE3OiJ4c3NfY2xlYW5fdXBsb2FkcyI7czoxOiJ5IjtzOjE1OiJyZWRpcmVjdF9tZXRob2QiO3M6ODoicmVkaXJlY3QiO3M6OToiZGVmdF9sYW5nIjtzOjc6ImVuZ2xpc2giO3M6ODoieG1sX2xhbmciO3M6MjoiZW4iO3M6MTI6InNlbmRfaGVhZGVycyI7czoxOiJ5IjtzOjExOiJnemlwX291dHB1dCI7czoxOiJuIjtzOjEzOiJsb2dfcmVmZXJyZXJzIjtzOjE6InkiO3M6MTM6Im1heF9yZWZlcnJlcnMiO3M6MzoiNTAwIjtzOjExOiJ0aW1lX2Zvcm1hdCI7czoyOiJ1cyI7czoxNToic2VydmVyX3RpbWV6b25lIjtzOjM6IlVNNSI7czoxMzoic2VydmVyX29mZnNldCI7czowOiIiO3M6MTY6ImRheWxpZ2h0X3NhdmluZ3MiO3M6MToibiI7czoyMToiZGVmYXVsdF9zaXRlX3RpbWV6b25lIjtzOjA6IiI7czoxNjoiZGVmYXVsdF9zaXRlX2RzdCI7czowOiIiO3M6MTU6Imhvbm9yX2VudHJ5X2RzdCI7czoxOiJ5IjtzOjEzOiJtYWlsX3Byb3RvY29sIjtzOjQ6Im1haWwiO3M6MTE6InNtdHBfc2VydmVyIjtzOjA6IiI7czoxMzoic210cF91c2VybmFtZSI7czowOiIiO3M6MTM6InNtdHBfcGFzc3dvcmQiO3M6MDoiIjtzOjExOiJlbWFpbF9kZWJ1ZyI7czoxOiJuIjtzOjEzOiJlbWFpbF9jaGFyc2V0IjtzOjU6InV0Zi04IjtzOjE1OiJlbWFpbF9iYXRjaG1vZGUiO3M6MToibiI7czoxNjoiZW1haWxfYmF0Y2hfc2l6ZSI7czowOiIiO3M6MTE6Im1haWxfZm9ybWF0IjtzOjU6InBsYWluIjtzOjk6IndvcmRfd3JhcCI7czoxOiJ5IjtzOjIyOiJlbWFpbF9jb25zb2xlX3RpbWVsb2NrIjtzOjE6IjUiO3M6MjI6ImxvZ19lbWFpbF9jb25zb2xlX21zZ3MiO3M6MToieSI7czo4OiJjcF90aGVtZSI7czo3OiJkZWZhdWx0IjtzOjIxOiJlbWFpbF9tb2R1bGVfY2FwdGNoYXMiO3M6MToibiI7czoxNjoibG9nX3NlYXJjaF90ZXJtcyI7czoxOiJ5IjtzOjEyOiJzZWN1cmVfZm9ybXMiO3M6MToieSI7czoxOToiZGVueV9kdXBsaWNhdGVfZGF0YSI7czoxOiJ5IjtzOjI0OiJyZWRpcmVjdF9zdWJtaXR0ZWRfbGlua3MiO3M6MToibiI7czoxNjoiZW5hYmxlX2NlbnNvcmluZyI7czoxOiJuIjtzOjE0OiJjZW5zb3JlZF93b3JkcyI7czowOiIiO3M6MTg6ImNlbnNvcl9yZXBsYWNlbWVudCI7czowOiIiO3M6MTA6ImJhbm5lZF9pcHMiO3M6MDoiIjtzOjEzOiJiYW5uZWRfZW1haWxzIjtzOjA6IiI7czoxNjoiYmFubmVkX3VzZXJuYW1lcyI7czowOiIiO3M6MTk6ImJhbm5lZF9zY3JlZW5fbmFtZXMiO3M6MDoiIjtzOjEwOiJiYW5fYWN0aW9uIjtzOjg6InJlc3RyaWN0IjtzOjExOiJiYW5fbWVzc2FnZSI7czozNDoiVGhpcyBzaXRlIGlzIGN1cnJlbnRseSB1bmF2YWlsYWJsZSI7czoxNToiYmFuX2Rlc3RpbmF0aW9uIjtzOjIxOiJodHRwOi8vd3d3LnlhaG9vLmNvbS8iO3M6MTY6ImVuYWJsZV9lbW90aWNvbnMiO3M6MToieSI7czoxMjoiZW1vdGljb25fdXJsIjtzOjQ3OiJodHRwOi8vaGVhcnRiZWV0cy5laGNsaWVudHMuY29tL2ltYWdlcy9zbWlsZXlzLyI7czoxOToicmVjb3VudF9iYXRjaF90b3RhbCI7czo0OiIxMDAwIjtzOjE3OiJuZXdfdmVyc2lvbl9jaGVjayI7czoxOiJuIjtzOjE3OiJlbmFibGVfdGhyb3R0bGluZyI7czoxOiJuIjtzOjE3OiJiYW5pc2hfbWFza2VkX2lwcyI7czoxOiJ5IjtzOjE0OiJtYXhfcGFnZV9sb2FkcyI7czoyOiIxMCI7czoxMzoidGltZV9pbnRlcnZhbCI7czoxOiI4IjtzOjEyOiJsb2Nrb3V0X3RpbWUiO3M6MjoiMzAiO3M6MTU6ImJhbmlzaG1lbnRfdHlwZSI7czo3OiJtZXNzYWdlIjtzOjE0OiJiYW5pc2htZW50X3VybCI7czowOiIiO3M6MTg6ImJhbmlzaG1lbnRfbWVzc2FnZSI7czo1MDoiWW91IGhhdmUgZXhjZWVkZWQgdGhlIGFsbG93ZWQgcGFnZSBsb2FkIGZyZXF1ZW5jeS4iO3M6MTc6ImVuYWJsZV9zZWFyY2hfbG9nIjtzOjE6InkiO3M6MTk6Im1heF9sb2dnZWRfc2VhcmNoZXMiO3M6MzoiNTAwIjtzOjE3OiJ0aGVtZV9mb2xkZXJfcGF0aCI7czozMjoiL3d3dy9laDE3MzYyL3B1YmxpY19odG1sL3RoZW1lcy8iO3M6MTA6ImlzX3NpdGVfb24iO3M6MToieSI7fQ==', 'YTozOntzOjE5OiJtYWlsaW5nbGlzdF9lbmFibGVkIjtzOjE6InkiO3M6MTg6Im1haWxpbmdsaXN0X25vdGlmeSI7czoxOiJuIjtzOjI1OiJtYWlsaW5nbGlzdF9ub3RpZnlfZW1haWxzIjtzOjA6IiI7fQ==', 'YTo0NDp7czoxMDoidW5fbWluX2xlbiI7czoxOiI0IjtzOjEwOiJwd19taW5fbGVuIjtzOjE6IjUiO3M6MjU6ImFsbG93X21lbWJlcl9yZWdpc3RyYXRpb24iO3M6MToibiI7czoyNToiYWxsb3dfbWVtYmVyX2xvY2FsaXphdGlvbiI7czoxOiJ5IjtzOjE4OiJyZXFfbWJyX2FjdGl2YXRpb24iO3M6NToiZW1haWwiO3M6MjM6Im5ld19tZW1iZXJfbm90aWZpY2F0aW9uIjtzOjE6Im4iO3M6MjM6Im1icl9ub3RpZmljYXRpb25fZW1haWxzIjtzOjA6IiI7czoyNDoicmVxdWlyZV90ZXJtc19vZl9zZXJ2aWNlIjtzOjE6InkiO3M6MjI6InVzZV9tZW1iZXJzaGlwX2NhcHRjaGEiO3M6MToibiI7czoyMDoiZGVmYXVsdF9tZW1iZXJfZ3JvdXAiO3M6MToiNSI7czoxNToicHJvZmlsZV90cmlnZ2VyIjtzOjY6Im1lbWJlciI7czoxMjoibWVtYmVyX3RoZW1lIjtzOjc6ImRlZmF1bHQiO3M6MTQ6ImVuYWJsZV9hdmF0YXJzIjtzOjE6InkiO3M6MjA6ImFsbG93X2F2YXRhcl91cGxvYWRzIjtzOjE6Im4iO3M6MTA6ImF2YXRhcl91cmwiO3M6NDc6Imh0dHA6Ly9oZWFydGJlZXRzLmVoY2xpZW50cy5jb20vaW1hZ2VzL2F2YXRhcnMvIjtzOjExOiJhdmF0YXJfcGF0aCI7czo0MDoiL3d3dy9laDE3MzYyL3B1YmxpY19odG1sL2ltYWdlcy9hdmF0YXJzLyI7czoxNjoiYXZhdGFyX21heF93aWR0aCI7czozOiIxMDAiO3M6MTc6ImF2YXRhcl9tYXhfaGVpZ2h0IjtzOjM6IjEwMCI7czoxMzoiYXZhdGFyX21heF9rYiI7czoyOiI1MCI7czoxMzoiZW5hYmxlX3Bob3RvcyI7czoxOiJuIjtzOjk6InBob3RvX3VybCI7czo1MzoiaHR0cDovL2hlYXJ0YmVldHMuZWhjbGllbnRzLmNvbS9pbWFnZXMvbWVtYmVyX3Bob3Rvcy8iO3M6MTA6InBob3RvX3BhdGgiO3M6NDY6Ii93d3cvZWgxNzM2Mi9wdWJsaWNfaHRtbC9pbWFnZXMvbWVtYmVyX3Bob3Rvcy8iO3M6MTU6InBob3RvX21heF93aWR0aCI7czozOiIxMDAiO3M6MTY6InBob3RvX21heF9oZWlnaHQiO3M6MzoiMTAwIjtzOjEyOiJwaG90b19tYXhfa2IiO3M6MjoiNTAiO3M6MTY6ImFsbG93X3NpZ25hdHVyZXMiO3M6MToieSI7czoxMzoic2lnX21heGxlbmd0aCI7czozOiI1MDAiO3M6MjE6InNpZ19hbGxvd19pbWdfaG90bGluayI7czoxOiJuIjtzOjIwOiJzaWdfYWxsb3dfaW1nX3VwbG9hZCI7czoxOiJuIjtzOjExOiJzaWdfaW1nX3VybCI7czo2MToiaHR0cDovL2hlYXJ0YmVldHMuZWhjbGllbnRzLmNvbS9pbWFnZXMvc2lnbmF0dXJlX2F0dGFjaG1lbnRzLyI7czoxMjoic2lnX2ltZ19wYXRoIjtzOjU0OiIvd3d3L2VoMTczNjIvcHVibGljX2h0bWwvaW1hZ2VzL3NpZ25hdHVyZV9hdHRhY2htZW50cy8iO3M6MTc6InNpZ19pbWdfbWF4X3dpZHRoIjtzOjM6IjQ4MCI7czoxODoic2lnX2ltZ19tYXhfaGVpZ2h0IjtzOjI6IjgwIjtzOjE0OiJzaWdfaW1nX21heF9rYiI7czoyOiIzMCI7czoxOToicHJ2X21zZ191cGxvYWRfcGF0aCI7czo0NzoiL3d3dy9laDE3MzYyL3B1YmxpY19odG1sL2ltYWdlcy9wbV9hdHRhY2htZW50cy8iO3M6MjM6InBydl9tc2dfbWF4X2F0dGFjaG1lbnRzIjtzOjE6IjMiO3M6MjI6InBydl9tc2dfYXR0YWNoX21heHNpemUiO3M6MzoiMjUwIjtzOjIwOiJwcnZfbXNnX2F0dGFjaF90b3RhbCI7czozOiIxMDAiO3M6MTk6InBydl9tc2dfaHRtbF9mb3JtYXQiO3M6NDoic2FmZSI7czoxODoicHJ2X21zZ19hdXRvX2xpbmtzIjtzOjE6InkiO3M6MTc6InBydl9tc2dfbWF4X2NoYXJzIjtzOjQ6IjYwMDAiO3M6MTk6Im1lbWJlcmxpc3Rfb3JkZXJfYnkiO3M6MTE6InRvdGFsX3Bvc3RzIjtzOjIxOiJtZW1iZXJsaXN0X3NvcnRfb3JkZXIiO3M6NDoiZGVzYyI7czoyMDoibWVtYmVybGlzdF9yb3dfbGltaXQiO3M6MjoiMjAiO30=', 'YTo2OntzOjExOiJzdHJpY3RfdXJscyI7czoxOiJuIjtzOjg6InNpdGVfNDA0IjtzOjA6IiI7czoxOToic2F2ZV90bXBsX3JldmlzaW9ucyI7czoxOiJ5IjtzOjE4OiJtYXhfdG1wbF9yZXZpc2lvbnMiO3M6MToiNSI7czoxNToic2F2ZV90bXBsX2ZpbGVzIjtzOjE6InkiO3M6MTg6InRtcGxfZmlsZV9iYXNlcGF0aCI7czo1OToiL3d3dy9laDE3MzYyL3B1YmxpY19odG1sL3N5c3RlbS9leHByZXNzaW9uZW5naW5lL3RlbXBsYXRlcy8iO30=', 'YTo5OntzOjIxOiJpbWFnZV9yZXNpemVfcHJvdG9jb2wiO3M6MzoiZ2QyIjtzOjE4OiJpbWFnZV9saWJyYXJ5X3BhdGgiO3M6MDoiIjtzOjE2OiJ0aHVtYm5haWxfcHJlZml4IjtzOjU6InRodW1iIjtzOjE0OiJ3b3JkX3NlcGFyYXRvciI7czo0OiJkYXNoIjtzOjE3OiJ1c2VfY2F0ZWdvcnlfbmFtZSI7czoxOiJuIjtzOjIyOiJyZXNlcnZlZF9jYXRlZ29yeV93b3JkIjtzOjg6ImNhdGVnb3J5IjtzOjIzOiJhdXRvX2NvbnZlcnRfaGlnaF9hc2NpaSI7czoxOiJuIjtzOjIyOiJuZXdfcG9zdHNfY2xlYXJfY2FjaGVzIjtzOjE6InkiO3M6MjM6ImF1dG9fYXNzaWduX2NhdF9wYXJlbnRzIjtzOjE6InkiO30=', 'YToxOntzOjM0OiIvd3d3L2VoMTczNjIvcHVibGljX2h0bWwvaW5kZXgucGhwIjtzOjMyOiJmOTQ4M2I1YjFiMDdlMWQ2MGRhYmE2ZTY5YmFmYmE0OCI7fQ==', 'YToxOntpOjE7YTozOntzOjM6InVybCI7czo0MjoiaHR0cDovL2hlYXJ0YmVldHMuZWhjbGllbnRzLmNvbS9pbmRleC5waHAvIjtzOjQ6InVyaXMiO2E6MDp7fXM6OToidGVtcGxhdGVzIjthOjA6e319fQ==');
  2677. -- --------------------------------------------------------
  2678. --
  2679. -- Table structure for table `exp_snippets`
  2680. --
  2681. DROP TABLE IF EXISTS `exp_snippets`;
  2682. CREATE TABLE `exp_snippets` (
  2683. `snippet_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2684. `site_id` int(4) NOT NULL,
  2685. `snippet_name` varchar(75) NOT NULL,
  2686. `snippet_contents` text,
  2687. PRIMARY KEY (`snippet_id`),
  2688. KEY `site_id` (`site_id`)
  2689. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
  2690. --
  2691. -- Dumping data for table `exp_snippets`
  2692. --
  2693. INSERT INTO `exp_snippets` (`snippet_id`, `site_id`, `snippet_name`, `snippet_contents`) VALUES
  2694. (1, 1, 'document_head', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml"><head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n\n<meta name="description" content="A descriptiong of Heartbeets Natural Martket. Will improve once imformation is acquired.">\n<meta name="keywords" content="heartbeets, heartbeats, natural market, all natural foods, healthy living, energy, Canada, healthy food, healthy foods, food choice ">\n<meta name="copyright" content="&copy; Heartbeets Natural Market"> \n\n<!--FAVICON-->\n <link rel="shortcut icon" href="favicon.ico" /> \n <link rel="icon" href="favicon.png" type="image/png" />\n \n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link type="text/css" href="{site_url}css/dropmenu.css" rel="stylesheet" />\n<link type="text/css" href="{site_url}css/structure.css" rel="stylesheet" />\n<link type="text/css" href="{site_url}css/form.css" rel="stylesheet" />\n\n\n \n <!--[if IE 6]>\n <link rel="stylesheet" type="text/css" href="css/ie6.css" />\n<![endif]-->\n\n<!--lightbox-->\n<link rel="stylesheet" href="{site_url}css/lightbox.css" type="text/css" media="screen" />\n<script type="text/javascript" src="{site_url}js/lightbox.js"></script>\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}css/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}css/jquery.dualSlider.0.2.css" />\n\n\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n\n\n\n \n <script type="text/javascript">\n \n $(document).ready(function() {\n \n $(".carousel").dualSlider({\n auto:true,\n autoDelay: 6000,\n easingCarousel: "swing",\n durationCarousel: 1000,\n durationDetails: 500\n });\n \n });\n \n \n </script>\n\n\n</head>'),
  2695. (2, 1, 'header', '<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n<span id="alImg1">\n <a href="{path=''site_index''}"><img border="0" src="{site_url}images/logo.png" alt=""/></a>\n </span>\n</div>\n\n<div class="time">\n <p>\n <table>\n <tr style="font-weight:600;" align="right">\n <td width="110" align="right">Store Hours</td>\n <td width="120" align="right"></td>\n </tr>\n <tr>\n <td align="right">Monday – Friday</td>\n <td align="right">9:00am-9:00pm</td>\n </tr>\n <tr>\n <td align="right">Saturday</td>\n <td align="right">9:00am-8:00pm</td>\n </tr>\n <tr>\n <td align="right">Sunday</td>\n <td align="right">10:00am-6:00pm</td>\n </tr>\n </table>\n </p> \n <div class="topmarg">\n <a href="{site_url}index.php/site/contact_us"><img border="0" src="{site_url}images/contact_button.png" width="120" height="26" style="float:right;" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n <ul class="menu">\n \n \n <li><a href="{path="site/specials_view"}" class="parent" style="padding-left:0; margin-left:0;"><span><img src="{site_url}images/viewallspecials.jpg" width="140" height="26" style="margin-top:6px;"/></span></a></li>\n \n \n \n \n <li><a href="{path=''site_index''}"><img src="{site_url}images/homeicon.jpg" width="21" height="17"/><span>Home</span></a></li>\n \n <li><a href="#"><img src="{site_url}images/basketicon.jpg" width="19" height="17" /><span>Departments</span></a>\n <div><ul>\n {exp:channel:entries channel="departments" dynamic="no" orderby="title" sort="asc"}\n <li><a href="{title_permalink="site/departments"}"><span>{title}</span></a></li>\n {/exp:channel:entries}\n </ul></div>\n </li>\n \n {exp:channel:entries channel="events" dynamic="no" limit="1"} \n <li><a href="{path="site/events_view"}" class="parent"><span>Events</span></a></li>\n {/exp:channel:entries}\n \n {exp:channel:entries channel="blog" dynamic="no" limit="1"}\n <li><a href="{path="site/blog_view"}" class="parent"><span>Blog</span></a></li>\n {/exp:channel:entries}\n \n {exp:channel:entries channel="careers" dynamic="no" limit="1"}\n <li class="last"><a href="{path="site/careers_view"}"><span>Employment</span></a></li>\n {/exp:channel:entries}\n </ul>\n</div>\n<!-- END OF NAV-->\n</div>\n<!--END OF HEADER-->'),
  2696. (3, 1, 'footer', '<!--START OF FOOTER-->\n <div id="footer">\n <hr>\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="http://heartbeets.ca/system" target="_blank">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>3087 Winston Churchill Blvd. Mississauga, ON, L5L 2V8 - (905) 997-1302</p>\n </div>\n </div>\n <!--END OF FOOTER-->\n\n</div>\n<!--ENG OF WRAPPER-->\n\n<!--Google Analytics-->\n<script type="text/javascript">\n\n var _gaq = _gaq || [];\n _gaq.push([''_setAccount'', ''UA-30375279-1'']);\n _gaq.push([''_trackPageview'']);\n\n (function() {\n var ga = document.createElement(''script''); ga.type = ''text/javascript''; ga.async = true;\n ga.src = (''https:'' == document.location.protocol ? ''https://ssl'' : ''http://www'') + ''.google-analytics.com/ga.js'';\n var s = document.getElementsByTagName(''script'')[0]; s.parentNode.insertBefore(ga, s);\n })();\n\n</script>\n\n</body>\n</html>');
  2697. -- --------------------------------------------------------
  2698. --
  2699. -- Table structure for table `exp_specialty_templates`
  2700. --
  2701. DROP TABLE IF EXISTS `exp_specialty_templates`;
  2702. CREATE TABLE `exp_specialty_templates` (
  2703. `template_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  2704. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2705. `enable_template` char(1) NOT NULL DEFAULT 'y',
  2706. `template_name` varchar(50) NOT NULL,
  2707. `data_title` varchar(80) NOT NULL,
  2708. `template_data` text NOT NULL,
  2709. PRIMARY KEY (`template_id`),
  2710. KEY `template_name` (`template_name`),
  2711. KEY `site_id` (`site_id`)
  2712. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
  2713. --
  2714. -- Dumping data for table `exp_specialty_templates`
  2715. --
  2716. INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES
  2717. (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>'),
  2718. (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>'),
  2719. (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}'),
  2720. (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'),
  2721. (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}'),
  2722. (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}'),
  2723. (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}'),
  2724. (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\nYour password will be automatically reset, and a new password will be emailed to you.\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}'),
  2725. (9, 1, 'y', 'reset_password_notification', 'New Login Information', '{name},\n\nHere is your new login information:\n\nUsername: {username}\nPassword: {password}\n\n{site_name}\n{site_url}'),
  2726. (10, 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}'),
  2727. (11, 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}'),
  2728. (12, 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}'),
  2729. (13, 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}'),
  2730. (14, 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}'),
  2731. (15, 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}'),
  2732. (16, 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}');
  2733. -- --------------------------------------------------------
  2734. --
  2735. -- Table structure for table `exp_stats`
  2736. --
  2737. DROP TABLE IF EXISTS `exp_stats`;
  2738. CREATE TABLE `exp_stats` (
  2739. `stat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2740. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2741. `total_members` mediumint(7) NOT NULL DEFAULT '0',
  2742. `recent_member_id` int(10) NOT NULL DEFAULT '0',
  2743. `recent_member` varchar(50) NOT NULL,
  2744. `total_entries` mediumint(8) NOT NULL DEFAULT '0',
  2745. `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0',
  2746. `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0',
  2747. `total_comments` mediumint(8) NOT NULL DEFAULT '0',
  2748. `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  2749. `last_forum_post_date` int(10) unsigned NOT NULL DEFAULT '0',
  2750. `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  2751. `last_visitor_date` int(10) unsigned NOT NULL DEFAULT '0',
  2752. `most_visitors` mediumint(7) NOT NULL DEFAULT '0',
  2753. `most_visitor_date` int(10) unsigned NOT NULL DEFAULT '0',
  2754. `last_cache_clear` int(10) unsigned NOT NULL DEFAULT '0',
  2755. PRIMARY KEY (`stat_id`),
  2756. KEY `site_id` (`site_id`)
  2757. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  2758. --
  2759. -- Dumping data for table `exp_stats`
  2760. --
  2761. 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
  2762. (1, 1, 4, 4, 'J Bonner', 29, 0, 0, 0, 1333464847, 0, 0, 1333645788, 25, 1328297846, 1333716242);
  2763. -- --------------------------------------------------------
  2764. --
  2765. -- Table structure for table `exp_statuses`
  2766. --
  2767. DROP TABLE IF EXISTS `exp_statuses`;
  2768. CREATE TABLE `exp_statuses` (
  2769. `status_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  2770. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2771. `group_id` int(4) unsigned NOT NULL,
  2772. `status` varchar(50) NOT NULL,
  2773. `status_order` int(3) unsigned NOT NULL,
  2774. `highlight` varchar(30) NOT NULL,
  2775. PRIMARY KEY (`status_id`),
  2776. KEY `group_id` (`group_id`),
  2777. KEY `site_id` (`site_id`)
  2778. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
  2779. --
  2780. -- Dumping data for table `exp_statuses`
  2781. --
  2782. INSERT INTO `exp_statuses` (`status_id`, `site_id`, `group_id`, `status`, `status_order`, `highlight`) VALUES
  2783. (1, 1, 1, 'open', 1, '009933'),
  2784. (2, 1, 1, 'closed', 2, '990000');
  2785. -- --------------------------------------------------------
  2786. --
  2787. -- Table structure for table `exp_status_groups`
  2788. --
  2789. DROP TABLE IF EXISTS `exp_status_groups`;
  2790. CREATE TABLE `exp_status_groups` (
  2791. `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  2792. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2793. `group_name` varchar(50) NOT NULL,
  2794. PRIMARY KEY (`group_id`),
  2795. KEY `site_id` (`site_id`)
  2796. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  2797. --
  2798. -- Dumping data for table `exp_status_groups`
  2799. --
  2800. INSERT INTO `exp_status_groups` (`group_id`, `site_id`, `group_name`) VALUES
  2801. (1, 1, 'Statuses');
  2802. -- --------------------------------------------------------
  2803. --
  2804. -- Table structure for table `exp_status_no_access`
  2805. --
  2806. DROP TABLE IF EXISTS `exp_status_no_access`;
  2807. CREATE TABLE `exp_status_no_access` (
  2808. `status_id` int(6) unsigned NOT NULL,
  2809. `member_group` smallint(4) unsigned NOT NULL,
  2810. PRIMARY KEY (`status_id`,`member_group`)
  2811. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2812. --
  2813. -- Dumping data for table `exp_status_no_access`
  2814. --
  2815. -- --------------------------------------------------------
  2816. --
  2817. -- Table structure for table `exp_templates`
  2818. --
  2819. DROP TABLE IF EXISTS `exp_templates`;
  2820. CREATE TABLE `exp_templates` (
  2821. `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2822. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2823. `group_id` int(6) unsigned NOT NULL,
  2824. `template_name` varchar(50) NOT NULL,
  2825. `save_template_file` char(1) NOT NULL DEFAULT 'n',
  2826. `template_type` varchar(16) NOT NULL DEFAULT 'webpage',
  2827. `template_data` mediumtext,
  2828. `template_notes` text,
  2829. `edit_date` int(10) NOT NULL DEFAULT '0',
  2830. `last_author_id` int(10) unsigned NOT NULL DEFAULT '0',
  2831. `cache` char(1) NOT NULL DEFAULT 'n',
  2832. `refresh` int(6) unsigned NOT NULL DEFAULT '0',
  2833. `no_auth_bounce` varchar(50) NOT NULL DEFAULT '',
  2834. `enable_http_auth` char(1) NOT NULL DEFAULT 'n',
  2835. `allow_php` char(1) NOT NULL DEFAULT 'n',
  2836. `php_parse_location` char(1) NOT NULL DEFAULT 'o',
  2837. `hits` int(10) unsigned NOT NULL DEFAULT '0',
  2838. PRIMARY KEY (`template_id`),
  2839. KEY `group_id` (`group_id`),
  2840. KEY `template_name` (`template_name`),
  2841. KEY `site_id` (`site_id`)
  2842. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
  2843. --
  2844. -- Dumping data for table `exp_templates`
  2845. --
  2846. 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
  2847. (1, 1, 1, 'index', 'y', 'webpage', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml"><head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n\n<meta name="description" content="A descriptiong of Heartbeets Natural Martket. Will improve once imformation is acquired.">\n<meta name="keywords" content="heartbeets, heartbeats, natural market, all natural foods, healthy living, energy, Canada, healthy food, healthy foods, food choice ">\n<meta name="copyright" content="&copy; Heartbeets Natural Market"> \n\n<!--FAVICON-->\n <link rel="shortcut icon" href="favicon.ico" /> \n <link rel="icon" href="favicon.png" type="image/png" />\n \n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n\n \n <!--[if IE 6]>\n <link rel="stylesheet" type="text/css" href="css/ie6.css" />\n<![endif]-->\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}css/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}css/jquery.dualSlider.0.2.css" />\n <link rel="stylesheet" type="text/css" href="http://domain.tld/path/ie-specific.css" />\n \n \n\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n\n\n \n <script type="text/javascript">\n $(document).ready(function() {\n \n $(".carousel").dualSlider({\n auto:true,\n autoDelay: 6000,\n easingCarousel: "swing",\n easingDetails: "easeOutBack",\n durationCarousel: 1000,\n durationDetails: 600\n });\n \n });\n </script>\n \n <!-- Javascript -->\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n \n \n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n<span id="alImg1">\n <a href="#"><img border="0" src="images/logo.png" alt=""/></a>\n </span>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img border="0" src="images/contact_button.png" width="120" height="26"/></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n \n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n<!--START OF SLIDER-->\n<div class="slider">\n\n\n \n <div class="carousel clearfix">\n <div class="panel">\n <div class="details_wrapper">\n \n <div class="details">\n \n <div class="detail">\n <h5>dapibus acune facilisis inar.</h5>\n <p>Cras justo odio, dapibus facilisis in, egestas eget.</p>\n \n <div class="topmarg">\n <a href="#" title="View all Specials" class="more">\n <img src="images/viewallspecials2.png" width="118" height="24"/></a>\n </div>\n </div><!-- /detail -->\n \n <div class="detail">\n <h5>dapibus acune facilisis inar.</h5>\n <p>Cras justo odio, dapibus facilisis in, egestas eget. Here''s a little more text to see what it looks like.</p>\n \n <div class="topmarg">\n <a href="#" title="View all Specials" class="more">\n <img src="images/viewallspecials2.png" width="118" height="24" /></a>\n </div> \n </div><!-- /detail -->\n \n <div class="detail">\n <h5>dapibus acune facilisis inar.</h5>\n <p>Cras justo odio, dapibus facilisis in, egestas eget. Here''s a little more text to see what it looks like.</p>\n \n <div class="topmarg">\n <a href="#" title="View all Specials" class="more">\n <img src="images/viewallspecials2.png" width="118" height="24" /></a>\n </div> \n </div><!-- /detail -->\n \n </div>\n \n </div><!-- /details_wrapper -->\n \n <div class="paging">\n <div id="numbers"></div>\n <a href="javascript:void(0);" class="previous" title="Previous" >Previous</a>\n <a href="javascript:void(0);" class="next" title="Next">Next</a>\n </div><!-- /paging -->\n \n <a href="javascript:void(0);" class="play" title="Turn on autoplay">Play</a>\n <a href="javascript:void(0);" class="pause" title="Turn off autoplay">Pause</a>\n \n </div><!-- /panel -->\n \n \n \n <div class="backgrounds">\n <div class="item item_1"></div><!-- /item -->\n <div class="item item_2"></div><!-- /item -->\n <div class="item item_3"></div><!-- /item -->\n </div><!-- /backgrounds -->\n \n </div><!-- /carousel -->\n\n\n\n <!--board-->\n <div class="board">\n <div class="boardtext">\n <h1>Dolor Nullam Cras</h1>\n <p>Aenean eu leo quam. Pellentesque lacinia quam venenatis vestibu...<a href="#">[+]</a></p>\n <p><a href="#">> Learn More</a></p>\n \n <h1>Dolor Nullam Cras Venenatis</h1>\n <p>Aenean eu leo quam. Pellentesque lacinia quam venenatis vestibu...<a href="#">[+]</a></p>\n <p><a href="#">> Learn More</a></p>\n \n <h1>Dolor Nullam Cras</h1>\n <p>Aenean eu leo quam. Pellentesque lacinia quam venenatis vestibu...<a href="#">[+]</a></p>\n <p><a href="#">> Learn More</a></p>\n \n <p style="text-align:right;"><a href="#">View All Events</a></p>\n </div>\n \n <!-- <img src="images/BOARD.jpg" width="309" height="544"/>-->\n </div>\n\n <div class="clear"></div>\n\n</div><!-- /wrapper -->\n \n <div class="bottomshadow">\n <img src="images/bottomshadow.jpg"/>\n </div> \n <div class="clear"></div> \n <!--END OF SLIDER-->\n\n<div class="clearbar"></div>\n\n <div class="maincontent">\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n <p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n \n <div class="greenbox">\n <p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n \n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n </div>\n \n <p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n </p>\n \n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n <h2><span>Heart Beets</span> Monthly Newsletter</h2>\n <p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n \n <form>\n <p>Full Name:</p> <input type="text" name="fullname" /><br/>\n <p>Email Address:</p> <input type="text" name="email" />\n </form>\n \n <div class="topmarg">\n <a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n </div>\n \n <p><a href="#">Newsletter Archive</a></p>\n \n <div class="clear"></div>\n \n <div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n </div>\n </div>\n \n </div>\n\n <div class="clear"></div>\n\n\n\n <!--START OF FOOTER-->\n <div id="footer">\n <hr />\n <div id="footerleft">\n <p>� 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n </div>\n <!--END OF FOOTER-->\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326312589, 2, 'n', 0, '', 'n', 'n', 'o', 4627),
  2848. (2, 1, 1, 'departments', 'y', 'webpage', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326312767, 2, 'n', 0, '', 'n', 'n', 'o', 2300),
  2849. (3, 1, 1, 'blog', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326731218, 2, 'n', 0, '', 'n', 'n', 'o', 1825),
  2850. (12, 1, 1, 'news_view', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326731340, 2, 'n', 0, '', 'n', 'n', 'o', 48),
  2851. (15, 1, 1, 'thankyou', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn_view">\n \n <h1>You''re now signed up to recieve Heartbeets eNews Letters!</h1>\n <p>You may unsubscribe in the emails</p>\n\n</div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n <h2><span>Heart Beets</span> Monthly Newsletter</h2>\n <p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n \n <form>\n <p>Full Name:</p> <input type="text" name="fullname" size="40"/><br/>\n <p>Email Address:</p> <input type="text" name="email" size="40"/>\n </form>\n \n <div class="topmarg">\n <a href="#"><{site_url}img src="images/subscribe.png" width="120" height="26"/></a>\n </div>\n <a href="#"><img src="{site_url}images/SUBMIT.png"/></a>\n <!--<p><a href="#">Newsletter Archive</a></p>-->\n \n <div class="clear"></div>\n \n \n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n\n', NULL, 1332861780, 1, 'n', 0, '', 'n', 'n', 'o', 9),
  2852. (16, 1, 1, 'thankyou_application', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn_view">\n \n <h1>You''ve applied to Heartbeets! <br/> You''re application will be considered!</h1>\n\n</div>\n \n <div class="rightcolumn2">\n <h1>Heartbeets News</h1>\n {exp:channel:entries channel="news" limit="2"}\n \n <h2 style="color:#4B1325;">{title}</h2>\n \n {exp:word_limit total="35"}\n <p>{news_body}</p>\n {/exp:word_limit}\n \n \n <p style="margin-bottom:8px;"><a href="{title_permalink="site/news"}">Learn More</a></p>\n {/exp:channel:entries}\n \n<p style="text-align:right;"><a href="{path="site/news_view"}">View All Events</a></p>\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n\n', NULL, 1333560344, 1, 'n', 0, '', 'n', 'n', 'o', 11),
  2853. (4, 1, 1, 'specials', 'y', 'webpage', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326312835, 2, 'n', 0, '', 'n', 'n', 'o', 841),
  2854. (5, 1, 1, 'careers', 'y', 'webpage', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>Heart Beets | Natural Market</title>\n<!--CSS-->\n <link href="{site_url}css/reset.css" rel="stylesheet" type="text/css" />\n <link href="{site_url}css/styles.css" rel="stylesheet" type="text/css" />\n <link rel="stylesheet" href="{site_url}css/nav.css" type="text/css" />\n\n \n<!--SLIDER CSS--> \n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/clearfix.css" />\n <link rel="stylesheet" type="text/css" media="all" href="{site_url}slidercss/jquery.dualSlider.0.2.css" />\n \n<!--JAVASCRIPT--> \n <script src="{site_url}js/jquery-1.3.2.min.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.easing.1.3.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.timers-1.2.js" type="text/javascript"></script>\n <script src="{site_url}js/jquery.dualSlider.0.3.min.js" type="text/javascript"></script>\n \n \n \n <!-- Javascript -->\n <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>\n <script type="text/javascript">\n$(function(){\n\n //Hide SubLevel Menus\n $(''#nav ul li ul'').hide();\n\n //OnHover Show SubLevel Menus\n $(''#nav ul li'').hover(\n //OnHover\n function(){\n //Hide Other Menus\n $(''#nav ul li'').not($(''ul'', this)).stop();\n \n //Add the Arrow\n $(''ul li:first-child'', this).before(\n ''<li class="arrow">arrow</li>''\n );\n\n //Remove the Border\n $(''ul li.arrow'', this).css(''border-bottom'', ''0'');\n\n // Show Hoved Menu\n $(''ul'', this).slideDown();\n },\n //OnOut\n function(){\n // Hide Other Menus\n $(''ul'', this).slideUp();\n\n //Remove the Arrow\n $(''ul li.arrow'', this).remove();\n }\n );\n\n});\n \n </script>\n \n \n</head>\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n<!--START OF HEADER-->\n<div id="header">\n\n<div class="logo"> \n <a href="#"><img src="images/logo.png" /></a>\n</div>\n\n<div class="time">\n <p><strong> 1 (800) 123-4567</strong><br/>\n Store Hours:<br/>\n Mon-Fri 9am to 9pm <br/>\n Sat 9am to 8pm <br/>\n Sun 9am to 6pm \n </p>\n <div class="topmarg">\n <a href="#"><img src="images/contact_button.png" width="120" height="26" /></a>\n </div>\n</div>\n\n<!-- START OF NAV-->\n<div id="nav">\n \n <ul class="navigation">\n <li><h3><a href="#"><img src="images/viewallspecials.jpg" width="140" height="26" /></a></h3>\n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="index.html"><img src="images/homeicon.jpg" width="21" height="17"/>Home</a></h3></li>\n \n <li><h3><a href="#"><img src="images/basketicon.jpg" width="19" height="17" />Departments</a></h3>\n \n <ul>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n <li><a href="#">fish</a></li>\n </ul>\n </li>\n \n <li><h3><a href="events.html">Events</a></h3></li>\n \n <li><h3><a href="#">Blog</a></h3></li>\n \n <li><h3><a href="#">Careers</a></h3></li>\n </ul>\n</div>\n<!-- END OF NAV-->\n\n\n</div>\n<!--END OF HEADER-->\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n <h1>Through The Doors. </h1>\n<p>Welcome to <span>Heart Beets!</span> We are an independent full-size, natural grocery store, <br/>located in Western Mississauga.</p>\n\n\n<p>Our vision is to be a trusted source of foods, goods, and information for our growing community. <br/>When you walk through the doors of <span>Heart Beets</span> Natural Market you will find:</p>\n\n <ul>\n <li>High quality natural and/or organic food, nutritional supplements, personal care and household products</li> \n <li>Fairly-priced items that reflect our customers'' needs </li>\n <li>An atmosphere of trust and respect </li>\n <li>A clean and comfortable store </li>\n <li>A pleasant shopping experience </li>\n <li>Good communication and information to assist our customers in making educated choices </li>\n <li>An enjoyable and rewarding workplace for our employees </li>\n </ul>\n \n\n<p>We are committed to helping our community learn more about choosing, preparing, and consuming wholesome and natural foods. We take pride in being a unique and welcoming neighborhood market selling just GOOD STUFF. Please return often to our website or join us on face-book and twitter to stay informed with what''s happening at <span>Heart Beets</span>. We thank you for your business. \n</p>\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326312862, 2, 'n', 0, '', 'n', 'n', 'o', 1009),
  2855. (11, 1, 1, 'news', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="1"}\n <h1>{title}</h1>\n <p>{blog_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326731242, 2, 'n', 0, '', 'n', 'n', 'o', 129),
  2856. (6, 1, 1, 'events', 'y', 'webpage', '', '', 1326316065, 2, 'n', 0, '', 'n', 'n', 'o', 424),
  2857. (7, 1, 1, 'blog_view', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="blog" limit="5"}\n <h1>{title}</h1>\n\n{exp:word_limit total="20"}\n<p>{blog_body}</p>\n{/exp:word_limit}\n\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326401913, 2, 'n', 0, '', 'n', 'n', 'o', 1061),
  2858. (8, 1, 1, 'careers_view', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n {exp:channel:entries channel="careers" limit="1"}\n <h1>{title}</h1>\n <p>{careers_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326402990, 2, 'n', 0, '', 'n', 'n', 'o', 318),
  2859. (9, 1, 1, 'events_view', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="events" limit="1"}\n <h1>{title}</h1>\n <p>{events_body}</p>\n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n<!--START OF FOOTER-->\n<div id="footer">\n <hr />\n <div id="footerleft">\n <p>© 2011 - Heart Beets Natural Market | <a href="#">Login</a></p>\n </div>\n \n <div id="footerright">\n <p>1234 Any Street, Any Town, Ontario - (000) 000-0000</p>\n </div>\n</div>\n<!--END OF FOOTER-->\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326403443, 2, 'n', 0, '', 'n', 'n', 'o', 229),
  2860. (10, 1, 1, 'specials_view', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n<div class="maincontent">\n\n <div class="leftcolumn">\n \n {exp:channel:entries channel="specials" limit="1"}\n <h1>{title}</h1>\n <p>{specials_body}</p>\n {/exp:channel:entries}\n\n\n </div>\n \n <div class="rightcolumn">\n <h1>Stay Connected!</h1>\n<h2><span>Heart Beets</span> Monthly Newsletter</h2>\n<p>Sign-up Today to receive Weekly Coupons, Subscriber only incentives, Recipes &amp; More...</p>\n\n<form>\n<p>Full Name:</p> <input type="text" name="fullname" /><br/>\n<p>Email Address:</p> <input type="text" name="email" />\n</form>\n\n<div class="topmarg">\n<a href="#"><img src="{site_url}images/subscribe.png" width="120" height="26"/></a>\n</div>\n\n<br/>\n<p><a href="#">Newsletter Archive</a></p>\n\n<div class="clear"></div>\n\n<div class="socialmedia"> \n <a href="#"><img src="{site_url}images/facebook.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/twitter.jpg" width="76" height="28"/></a>\n <a href="#"><img src="{site_url}images/youtube.jpg" width="64" height="28"/></a>\n</div>\n\n\n\n\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', '', 1326729669, 2, 'n', 0, '', 'n', 'n', 'o', 230),
  2861. (14, 1, 1, 'contact_us', 'y', 'webpage', '{document_head}\n\n<body>\n\n<!--START OF WRAPPER-->\n<div id="wrapper">\n\n{header}\n\n\n\n\n<div class="maincontent">\n\n <div class="leftcolumn_view">\n {exp:channel:entries channel="careers" limit="5" paginate="bottom"}\n <h1>{title}</h1>\n \n {exp:word_limit total="40"}\n <p>{careers_body}</p>\n \n {paginate}\n <p>Page {current_page} of {total_pages} pages {pagination_links}</p>\n {/paginate}\n \n {/exp:word_limit}\n \n <p><a href="{title_permalink="site/careers"}">Continue Reading</a> | <span class="grey">{careers_date format="%M %d, %Y"}</span></p>\n <hr>\n \n \n {/exp:channel:entries}\n\n </div>\n \n <div class="rightcolumn2">\n <h1>Heartbeets News</h1>\n {exp:channel:entries channel="news" limit="2" dynamic="no"}\n \n <h2 style="color:#4B1325">{title}</h2>\n \n {exp:word_limit total="35"}\n <p>{news_body}</p>\n {/exp:word_limit}\n \n \n <p style="margin-bottom:8px;"><a href="{title_permalink="site/news"}">Learn More</a></p>\n {/exp:channel:entries}\n \n <p style="text-align:right;"><a href="{path="site/news_view"}">View All Events</a></p>\n </div>\n\n</div>\n\n<div class="clear"></div>\n\n{footer}\n\n\n\n</div>\n<!--ENG OF WRAPPER-->\n\n</body>\n</html>\n', NULL, 1332853295, 2, 'n', 0, '', 'n', 'n', 'o', 91);
  2862. -- --------------------------------------------------------
  2863. --
  2864. -- Table structure for table `exp_template_groups`
  2865. --
  2866. DROP TABLE IF EXISTS `exp_template_groups`;
  2867. CREATE TABLE `exp_template_groups` (
  2868. `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  2869. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2870. `group_name` varchar(50) NOT NULL,
  2871. `group_order` int(3) unsigned NOT NULL,
  2872. `is_site_default` char(1) NOT NULL DEFAULT 'n',
  2873. PRIMARY KEY (`group_id`),
  2874. KEY `site_id` (`site_id`)
  2875. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
  2876. --
  2877. -- Dumping data for table `exp_template_groups`
  2878. --
  2879. INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES
  2880. (1, 1, 'site', 1, 'y');
  2881. -- --------------------------------------------------------
  2882. --
  2883. -- Table structure for table `exp_template_member_groups`
  2884. --
  2885. DROP TABLE IF EXISTS `exp_template_member_groups`;
  2886. CREATE TABLE `exp_template_member_groups` (
  2887. `group_id` smallint(4) unsigned NOT NULL,
  2888. `template_group_id` mediumint(5) unsigned NOT NULL,
  2889. PRIMARY KEY (`group_id`,`template_group_id`)
  2890. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2891. --
  2892. -- Dumping data for table `exp_template_member_groups`
  2893. --
  2894. INSERT INTO `exp_template_member_groups` (`group_id`, `template_group_id`) VALUES
  2895. (6, 1);
  2896. -- --------------------------------------------------------
  2897. --
  2898. -- Table structure for table `exp_template_no_access`
  2899. --
  2900. DROP TABLE IF EXISTS `exp_template_no_access`;
  2901. CREATE TABLE `exp_template_no_access` (
  2902. `template_id` int(6) unsigned NOT NULL,
  2903. `member_group` smallint(4) unsigned NOT NULL,
  2904. PRIMARY KEY (`template_id`,`member_group`)
  2905. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2906. --
  2907. -- Dumping data for table `exp_template_no_access`
  2908. --
  2909. -- --------------------------------------------------------
  2910. --
  2911. -- Table structure for table `exp_throttle`
  2912. --
  2913. DROP TABLE IF EXISTS `exp_throttle`;
  2914. CREATE TABLE `exp_throttle` (
  2915. `throttle_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2916. `ip_address` varchar(16) NOT NULL DEFAULT '0',
  2917. `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  2918. `hits` int(10) unsigned NOT NULL,
  2919. `locked_out` char(1) NOT NULL DEFAULT 'n',
  2920. PRIMARY KEY (`throttle_id`),
  2921. KEY `ip_address` (`ip_address`),
  2922. KEY `last_activity` (`last_activity`)
  2923. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2924. --
  2925. -- Dumping data for table `exp_throttle`
  2926. --
  2927. -- --------------------------------------------------------
  2928. --
  2929. -- Table structure for table `exp_upload_no_access`
  2930. --
  2931. DROP TABLE IF EXISTS `exp_upload_no_access`;
  2932. CREATE TABLE `exp_upload_no_access` (
  2933. `upload_id` int(6) unsigned NOT NULL,
  2934. `upload_loc` varchar(3) NOT NULL,
  2935. `member_group` smallint(4) unsigned NOT NULL,
  2936. PRIMARY KEY (`upload_id`,`member_group`)
  2937. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2938. --
  2939. -- Dumping data for table `exp_upload_no_access`
  2940. --
  2941. -- --------------------------------------------------------
  2942. --
  2943. -- Table structure for table `exp_upload_prefs`
  2944. --
  2945. DROP TABLE IF EXISTS `exp_upload_prefs`;
  2946. CREATE TABLE `exp_upload_prefs` (
  2947. `id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  2948. `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  2949. `name` varchar(50) NOT NULL,
  2950. `server_path` varchar(255) NOT NULL DEFAULT '',
  2951. `url` varchar(100) NOT NULL,
  2952. `allowed_types` varchar(3) NOT NULL DEFAULT 'img',
  2953. `max_size` varchar(16) DEFAULT NULL,
  2954. `max_height` varchar(6) DEFAULT NULL,
  2955. `max_width` varchar(6) DEFAULT NULL,
  2956. `properties` varchar(120) DEFAULT NULL,
  2957. `pre_format` varchar(120) DEFAULT NULL,
  2958. `post_format` varchar(120) DEFAULT NULL,
  2959. `file_properties` varchar(120) DEFAULT NULL,
  2960. `file_pre_format` varchar(120) DEFAULT NULL,
  2961. `file_post_format` varchar(120) DEFAULT NULL,
  2962. `cat_group` varchar(255) DEFAULT NULL,
  2963. `batch_location` varchar(255) DEFAULT NULL,
  2964. PRIMARY KEY (`id`),
  2965. KEY `site_id` (`site_id`)
  2966. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;
  2967. --
  2968. -- Dumping data for table `exp_upload_prefs`
  2969. --
  2970. 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
  2971. (8, 1, 'blog_thumbnails', '/www/eh17362/public_html/images/uploads/blog_thumbnails/', 'http://heartbeets.ehclients.com/images/uploads/blog_thumbnails/', 'img', '', '', '100', '', '', '', '', '', '', '', NULL),
  2972. (5, 1, 'slider_button', '/www/eh17362/public_html/images/uploads/slider_button/', 'http://heartbeets.ehclients.com/images/uploads/slider_button/', 'img', '', '', '', '', '', '', '', '', '', '', NULL),
  2973. (7, 1, 'slider_main_image', '/www/eh17362/public_html/images/uploads/slider_main_image/', 'http://heartbeets.ehclients.com/images/uploads/slider_main_image/', 'img', '', '', '637', '', '', '', '', '', '', '', NULL),
  2974. (9, 1, 'applications', '/www/eh17362/public_html/images/uploads/applications/', 'http://heartbeets.ehclients.com/images/uploads/applications/', 'img', '', '', '', '', '', '', '', '', '', '', NULL),
  2975. (10, 1, 'departments_images', '/www/eh17362/public_html/images/uploads/departments_images/', 'http://heartbeets.ehclients.com/images/uploads/departments_images/', 'img', '', '', '620', '', '', '', '', '', '', '', NULL),
  2976. (11, 1, 'free_layout', '/www/eh17362/public_html/images/uploads/free_layout/', 'http://heartbeets.ehclients.com/images/uploads/free_layout/', 'img', '', '', '620', '', '', '', '', '', '', '', NULL),
  2977. (12, 1, 'specials_thumbnails', '/www/eh17362/public_html/images/uploads/specials_thumbnails/', 'http://heartbeets.ehclients.com/images/uploads/specials_thumbnails/', 'img', '', '', '100', '', '', '', '', '', '', '', NULL),
  2978. (13, 1, 'flyer_images', '/www/eh17362/public_html/images/uploads/flyer_images/', 'http://heartbeets.ehclients.com/images/uploads/flyer_images/', 'img', '', '', '800', '', '', '', '', '', '', '', NULL),
  2979. (14, 1, 'gallery', '/www/eh17362/public_html/images/uploads/gallery/', 'http://heartbeets.ehclients.com/images/uploads/gallery/', 'img', '', '', '750', '', '', '', '', '', '', '', NULL);