File: /home/design11/seo-ri.com/seo_ri.sql
-- MySQL dump 10.11
--
-- Host: dbmaster-83 Database: g129631
-- ------------------------------------------------------
-- Server version 5.0.51a-3ubuntu5.7-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `actions`
--
DROP TABLE IF EXISTS `actions`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `actions` (
`aid` varchar(255) NOT NULL default '0' COMMENT 'Primary Key: Unique actions ID.',
`type` varchar(32) NOT NULL default '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)',
`callback` varchar(255) NOT NULL default '' COMMENT 'The callback function that executes when the action runs.',
`parameters` longblob NOT NULL COMMENT 'Parameters to be passed to the callback function.',
`label` varchar(255) NOT NULL default '0' COMMENT 'Label of the action.',
PRIMARY KEY (`aid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores action information.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `actions`
--
LOCK TABLES `actions` WRITE;
/*!40000 ALTER TABLE `actions` DISABLE KEYS */;
INSERT INTO `actions` VALUES ('comment_publish_action','comment','comment_publish_action','','Publish comment');
INSERT INTO `actions` VALUES ('comment_save_action','comment','comment_save_action','','Save comment');
INSERT INTO `actions` VALUES ('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment');
INSERT INTO `actions` VALUES ('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky');
INSERT INTO `actions` VALUES ('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky');
INSERT INTO `actions` VALUES ('node_promote_action','node','node_promote_action','','Promote content to front page');
INSERT INTO `actions` VALUES ('node_publish_action','node','node_publish_action','','Publish content');
INSERT INTO `actions` VALUES ('node_save_action','node','node_save_action','','Save content');
INSERT INTO `actions` VALUES ('node_unpromote_action','node','node_unpromote_action','','Remove content from front page');
INSERT INTO `actions` VALUES ('node_unpublish_action','node','node_unpublish_action','','Unpublish content');
INSERT INTO `actions` VALUES ('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user');
INSERT INTO `actions` VALUES ('user_block_user_action','user','user_block_user_action','','Block current user');
/*!40000 ALTER TABLE `actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `aggregator_category`
--
DROP TABLE IF EXISTS `aggregator_category`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `aggregator_category` (
`cid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique aggregator category ID.',
`title` varchar(255) NOT NULL default '' COMMENT 'Title of the category.',
`description` longtext NOT NULL COMMENT 'Description of the category',
`block` tinyint(4) NOT NULL default '0' COMMENT 'The number of recent items to show within the category block.',
PRIMARY KEY (`cid`),
UNIQUE KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores categories for aggregator feeds and feed items.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `aggregator_category`
--
LOCK TABLES `aggregator_category` WRITE;
/*!40000 ALTER TABLE `aggregator_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `aggregator_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `aggregator_category_feed`
--
DROP TABLE IF EXISTS `aggregator_category_feed`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `aggregator_category_feed` (
`fid` int(11) NOT NULL default '0' COMMENT 'The feed’s aggregator_feed.fid.',
`cid` int(11) NOT NULL default '0' COMMENT 'The aggregator_category.cid to which the feed is being assigned.',
PRIMARY KEY (`cid`,`fid`),
KEY `fid` (`fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bridge table; maps feeds to categories.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `aggregator_category_feed`
--
LOCK TABLES `aggregator_category_feed` WRITE;
/*!40000 ALTER TABLE `aggregator_category_feed` DISABLE KEYS */;
/*!40000 ALTER TABLE `aggregator_category_feed` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `aggregator_category_item`
--
DROP TABLE IF EXISTS `aggregator_category_item`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `aggregator_category_item` (
`iid` int(11) NOT NULL default '0' COMMENT 'The feed item’s aggregator_item.iid.',
`cid` int(11) NOT NULL default '0' COMMENT 'The aggregator_category.cid to which the feed item is being assigned.',
PRIMARY KEY (`cid`,`iid`),
KEY `iid` (`iid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bridge table; maps feed items to categories.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `aggregator_category_item`
--
LOCK TABLES `aggregator_category_item` WRITE;
/*!40000 ALTER TABLE `aggregator_category_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `aggregator_category_item` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `aggregator_feed`
--
DROP TABLE IF EXISTS `aggregator_feed`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `aggregator_feed` (
`fid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique feed ID.',
`title` varchar(255) NOT NULL default '' COMMENT 'Title of the feed.',
`url` varchar(255) NOT NULL default '' COMMENT 'URL to the feed.',
`refresh` int(11) NOT NULL default '0' COMMENT 'How often to check for new feed items, in seconds.',
`checked` int(11) NOT NULL default '0' COMMENT 'Last time feed was checked for new items, as Unix timestamp.',
`queued` int(11) NOT NULL default '0' COMMENT 'Time when this feed was queued for refresh, 0 if not queued.',
`link` varchar(255) NOT NULL default '' COMMENT 'The parent website of the feed; comes from the <link> element in the feed.',
`description` longtext NOT NULL COMMENT 'The parent website’s description; comes from the <description> element in the feed.',
`image` longtext NOT NULL COMMENT 'An image representing the feed.',
`hash` varchar(64) NOT NULL default '' COMMENT 'Calculated hash of the feed data, used for validating cache.',
`etag` varchar(255) NOT NULL default '' COMMENT 'Entity tag HTTP response header, used for validating cache.',
`modified` int(11) NOT NULL default '0' COMMENT 'When the feed was last modified, as a Unix timestamp.',
`block` tinyint(4) NOT NULL default '0' COMMENT 'Number of items to display in the feed’s block.',
PRIMARY KEY (`fid`),
UNIQUE KEY `url` (`url`),
UNIQUE KEY `title` (`title`),
KEY `queued` (`queued`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores feeds to be parsed by the aggregator.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `aggregator_feed`
--
LOCK TABLES `aggregator_feed` WRITE;
/*!40000 ALTER TABLE `aggregator_feed` DISABLE KEYS */;
INSERT INTO `aggregator_feed` VALUES (1,'Overheard on Twitter','http://twitter.com/statuses/user_timeline/132262589.rss',3600,1283189500,0,'http://twitter.com/statuses/user_timeline/132262589.rss','','','08d9a433f0b8fb7f67283b20ed6bdf7eac62d1c43c972844e3475d456cb91533','\"e3ddab3712c09aef87a59fc310667243\"',1282630655,5);
/*!40000 ALTER TABLE `aggregator_feed` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `aggregator_item`
--
DROP TABLE IF EXISTS `aggregator_item`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `aggregator_item` (
`iid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique ID for feed item.',
`fid` int(11) NOT NULL default '0' COMMENT 'The aggregator_feed.fid to which this item belongs.',
`title` varchar(255) NOT NULL default '' COMMENT 'Title of the feed item.',
`link` varchar(255) NOT NULL default '' COMMENT 'Link to the feed item.',
`author` varchar(255) NOT NULL default '' COMMENT 'Author of the feed item.',
`description` longtext NOT NULL COMMENT 'Body of the feed item.',
`timestamp` int(11) default NULL COMMENT 'Posted date of the feed item, as a Unix timestamp.',
`guid` varchar(255) default NULL COMMENT 'Unique identifier for the feed item.',
PRIMARY KEY (`iid`),
KEY `fid` (`fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the individual items imported from feeds.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `aggregator_item`
--
LOCK TABLES `aggregator_item` WRITE;
/*!40000 ALTER TABLE `aggregator_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `aggregator_item` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `authmap`
--
DROP TABLE IF EXISTS `authmap`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `authmap` (
`aid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique authmap ID.',
`uid` int(11) NOT NULL default '0' COMMENT 'User’s users.uid.',
`authname` varchar(128) NOT NULL default '' COMMENT 'Unique authentication name.',
`module` varchar(128) NOT NULL default '' COMMENT 'Module which is controlling the authentication.',
PRIMARY KEY (`aid`),
UNIQUE KEY `authname` (`authname`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `batch`
--
DROP TABLE IF EXISTS `batch`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `batch` (
`bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.',
`token` varchar(64) NOT NULL COMMENT 'A string token generated against the current user’s session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.',
`timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.',
`batch` longblob COMMENT 'A serialized array containing the processing data for the batch.',
PRIMARY KEY (`bid`),
KEY `token` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores details about batches (processes that run in...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `batch`
--
LOCK TABLES `batch` WRITE;
/*!40000 ALTER TABLE `batch` DISABLE KEYS */;
/*!40000 ALTER TABLE `batch` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `block`
--
DROP TABLE IF EXISTS `block`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block` (
`bid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique block ID.',
`module` varchar(64) NOT NULL default '' COMMENT 'The module from which the block originates; for example, ’user’ for the Who’s Online block, and ’block’ for any custom blocks.',
`delta` varchar(32) NOT NULL default '0' COMMENT 'Unique ID for block within a module.',
`theme` varchar(64) NOT NULL default '' COMMENT 'The theme under which the block settings apply.',
`status` tinyint(4) NOT NULL default '0' COMMENT 'Block enabled status. (1 = enabled, 0 = disabled)',
`weight` int(11) NOT NULL default '0' COMMENT 'Block weight within region.',
`region` varchar(64) NOT NULL default '' COMMENT 'Theme region within which the block is set.',
`custom` tinyint(4) NOT NULL default '0' COMMENT 'Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)',
`visibility` tinyint(4) NOT NULL default '0' COMMENT 'Flag to indicate how to show blocks on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)',
`pages` text NOT NULL COMMENT 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.',
`title` varchar(64) NOT NULL default '' COMMENT 'Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)',
`cache` tinyint(4) NOT NULL default '1' COMMENT 'Binary flag to indicate block cache mode. (-2: Custom cache, -1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See DRUPAL_CACHE_* constants in ../includes/common.inc for more detailed information.',
PRIMARY KEY (`bid`),
UNIQUE KEY `tmd` (`theme`,`module`,`delta`),
KEY `list` (`theme`,`status`,`region`,`weight`,`module`)
) ENGINE=InnoDB AUTO_INCREMENT=957 DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `block`
--
LOCK TABLES `block` WRITE;
/*!40000 ALTER TABLE `block` DISABLE KEYS */;
INSERT INTO `block` VALUES (1,'system','main','bartik',1,0,'content',0,0,'','',-1);
INSERT INTO `block` VALUES (6,'search','form','bartik',1,-1,'sidebar_first',0,0,'','',-1);
INSERT INTO `block` VALUES (11,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1);
INSERT INTO `block` VALUES (16,'user','login','bartik',1,0,'sidebar_first',0,0,'','',-1);
INSERT INTO `block` VALUES (21,'system','navigation','bartik',1,0,'sidebar_first',0,0,'','',-1);
INSERT INTO `block` VALUES (26,'system','management','bartik',1,1,'sidebar_first',0,0,'','',-1);
INSERT INTO `block` VALUES (31,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1);
INSERT INTO `block` VALUES (36,'system','help','bartik',1,0,'help',0,0,'','',-1);
INSERT INTO `block` VALUES (41,'system','main','seven',1,0,'content',0,0,'','',-1);
INSERT INTO `block` VALUES (46,'system','help','seven',1,0,'help',0,0,'','',-1);
INSERT INTO `block` VALUES (51,'user','login','seven',1,10,'content',0,0,'','',-1);
INSERT INTO `block` VALUES (56,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1);
INSERT INTO `block` VALUES (61,'search','form','seven',1,-10,'dashboard_sidebar',0,0,'','',-1);
INSERT INTO `block` VALUES (116,'gardens_client','site-manager','seven',1,-100,'dashboard_sidebar',0,0,'','',-1);
INSERT INTO `block` VALUES (121,'system','main','impact',1,1,'content',0,0,'','',-1);
INSERT INTO `block` VALUES (126,'system','powered-by','impact',1,1,'copyright',0,0,'','',-1);
INSERT INTO `block` VALUES (131,'system','help','impact',1,1,'help',0,0,'','',-1);
INSERT INTO `block` VALUES (136,'system','main-menu','impact',1,1,'navigation',0,0,'','<none>',-1);
INSERT INTO `block` VALUES (141,'system','user-menu','impact',1,1,'preheader_second',0,0,'','<none>',-1);
INSERT INTO `block` VALUES (146,'system','secondary-menu','impact',1,1,'preheader_second',0,0,'','',-1);
INSERT INTO `block` VALUES (151,'search','form','impact',1,20,'preheader_first',0,0,'','',-1);
INSERT INTO `block` VALUES (156,'gardens_client','login','impact',1,1,'sidebar_b',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (161,'system','navigation','impact',0,1,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (166,'user','login','impact',1,1,'sidebar_b',0,0,'','',-1);
INSERT INTO `block` VALUES (171,'comment','recent','impact',1,2,'sidebar_b',0,1,'blog\r\nblog/*\r\nforum\r\nforum/*','Comments',1);
INSERT INTO `block` VALUES (176,'gardens_client','site-manager','impact',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (181,'node','syndicate','impact',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (186,'node','recent','impact',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (191,'poll','recent','impact',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (196,'profile','author-information','impact',0,0,'-1',0,0,'','',5);
INSERT INTO `block` VALUES (201,'shortcut','shortcuts','impact',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (206,'system','management','impact',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (211,'user','new','impact',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (216,'user','online','impact',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (221,'follow','site','impact',1,1,'prefooter_first',0,0,'','Stay connected',1);
INSERT INTO `block` VALUES (226,'follow','user','impact',0,0,'-1',0,0,'','',2);
INSERT INTO `block` VALUES (231,'addthis','addthis','impact',0,0,'-1',0,0,'','',4);
INSERT INTO `block` VALUES (236,'blog','recent','impact',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (241,'mailing_list','1','impact',1,1,'prefooter_second',0,0,'','Join our mailing list',1);
INSERT INTO `block` VALUES (246,'rotating_banner','1','impact',1,1,'banner',0,1,'<front>','',1);
INSERT INTO `block` VALUES (251,'forum','active','impact',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (256,'forum','new','impact',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (261,'aggregator','feed-1','impact',1,3,'sidebar_b',0,1,'testimonials','',1);
INSERT INTO `block` VALUES (266,'media_gallery','46','impact',1,4,'sidebar_b',0,0,'node/46\ngalleries','',1);
INSERT INTO `block` VALUES (271,'sqbs','11','impact',1,1,'prefooter_third',0,0,'','Overheard',1);
INSERT INTO `block` VALUES (276,'sqbs','16','impact',1,5,'sidebar_b',0,1,'<front>','',1);
INSERT INTO `block` VALUES (281,'block','1','impact',1,1,'precontent_first',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (286,'block','6','impact',1,1,'precontent_second',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (291,'block','11','impact',1,1,'precontent_third',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (296,'block','1','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (301,'block','6','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (306,'block','11','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (311,'addthis','addthis','seven',0,0,'-1',0,0,'','',4);
INSERT INTO `block` VALUES (316,'aggregator','feed-1','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (321,'blog','recent','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (326,'comment','recent','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (331,'follow','site','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (336,'follow','user','seven',0,0,'-1',0,0,'','',2);
INSERT INTO `block` VALUES (341,'gardens_client','login','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (346,'mailing_list','1','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (351,'media_gallery','46','seven',0,0,'-1',0,0,'node/46\ngalleries','',1);
INSERT INTO `block` VALUES (356,'node','syndicate','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (361,'poll','recent','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (366,'profile','author-information','seven',0,0,'-1',0,0,'','',5);
INSERT INTO `block` VALUES (371,'rotating_banner','1','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (376,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (381,'sqbs','11','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (386,'sqbs','16','seven',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (391,'system','powered-by','seven',0,10,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (396,'system','navigation','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (401,'system','management','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (406,'system','user-menu','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (411,'system','main-menu','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (416,'system','secondary-menu','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (421,'user','online','seven',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (426,'forum','active','seven',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (431,'forum','new','seven',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (611,'addthis','addthis','acq_kmedialab_session',0,0,'-1',0,0,'','',4);
INSERT INTO `block` VALUES (616,'aggregator','feed-1','acq_kmedialab_session',1,3,'sidebar_b',0,1,'testimonials','',1);
INSERT INTO `block` VALUES (621,'block','1','acq_kmedialab_session',1,1,'precontent_first',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (626,'block','11','acq_kmedialab_session',1,1,'precontent_third',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (631,'block','6','acq_kmedialab_session',1,1,'precontent_second',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (636,'blog','recent','acq_kmedialab_session',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (641,'comment','recent','acq_kmedialab_session',1,2,'sidebar_b',0,1,'blog\r\nblog/*\r\nforum\r\nforum/*','Comments',1);
INSERT INTO `block` VALUES (646,'follow','site','acq_kmedialab_session',1,1,'prefooter_first',0,0,'','Stay connected',1);
INSERT INTO `block` VALUES (651,'follow','user','acq_kmedialab_session',0,0,'-1',0,0,'','',2);
INSERT INTO `block` VALUES (656,'forum','active','acq_kmedialab_session',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (661,'forum','new','acq_kmedialab_session',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (666,'gardens_client','login','acq_kmedialab_session',1,1,'sidebar_b',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (671,'gardens_client','site-manager','acq_kmedialab_session',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (676,'mailing_list','1','acq_kmedialab_session',1,1,'prefooter_second',0,0,'','Join our mailing list',1);
INSERT INTO `block` VALUES (681,'media_gallery','46','acq_kmedialab_session',1,4,'sidebar_b',0,0,'node/46\ngalleries','',1);
INSERT INTO `block` VALUES (686,'node','recent','acq_kmedialab_session',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (691,'node','syndicate','acq_kmedialab_session',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (696,'poll','recent','acq_kmedialab_session',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (701,'profile','author-information','acq_kmedialab_session',0,0,'-1',0,0,'','',5);
INSERT INTO `block` VALUES (706,'rotating_banner','1','acq_kmedialab_session',1,1,'banner',0,1,'<front>','',1);
INSERT INTO `block` VALUES (711,'search','form','acq_kmedialab_session',1,20,'preheader_first',0,0,'','',-1);
INSERT INTO `block` VALUES (716,'shortcut','shortcuts','acq_kmedialab_session',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (721,'sqbs','11','acq_kmedialab_session',1,1,'prefooter_third',0,0,'','Overheard',1);
INSERT INTO `block` VALUES (726,'sqbs','16','acq_kmedialab_session',1,5,'sidebar_b',0,1,'<front>','',1);
INSERT INTO `block` VALUES (731,'system','help','acq_kmedialab_session',1,1,'help',0,0,'','',-1);
INSERT INTO `block` VALUES (736,'system','main','acq_kmedialab_session',1,1,'content',0,0,'','',-1);
INSERT INTO `block` VALUES (741,'system','main-menu','acq_kmedialab_session',1,1,'navigation',0,0,'','<none>',-1);
INSERT INTO `block` VALUES (746,'system','management','acq_kmedialab_session',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (751,'system','navigation','acq_kmedialab_session',0,1,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (756,'system','powered-by','acq_kmedialab_session',1,1,'copyright',0,0,'','',-1);
INSERT INTO `block` VALUES (761,'system','secondary-menu','acq_kmedialab_session',1,1,'preheader_second',0,0,'','',-1);
INSERT INTO `block` VALUES (766,'system','user-menu','acq_kmedialab_session',1,1,'preheader_second',0,0,'','<none>',-1);
INSERT INTO `block` VALUES (771,'user','login','acq_kmedialab_session',1,1,'sidebar_b',0,0,'','',-1);
INSERT INTO `block` VALUES (776,'user','new','acq_kmedialab_session',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (781,'user','online','acq_kmedialab_session',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (786,'addthis','addthis','acq_seo_ri',0,0,'-1',0,0,'','',4);
INSERT INTO `block` VALUES (791,'aggregator','feed-1','acq_seo_ri',1,3,'sidebar_b',0,1,'testimonials','',1);
INSERT INTO `block` VALUES (796,'block','1','acq_seo_ri',1,1,'precontent_first',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (801,'block','11','acq_seo_ri',1,1,'precontent_third',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (806,'block','6','acq_seo_ri',1,1,'precontent_second',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (811,'blog','recent','acq_seo_ri',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (816,'comment','recent','acq_seo_ri',1,2,'sidebar_b',0,1,'blog\r\nblog/*\r\nforum\r\nforum/*','Comments',1);
INSERT INTO `block` VALUES (821,'follow','site','acq_seo_ri',1,1,'prefooter_first',0,0,'','Stay connected',1);
INSERT INTO `block` VALUES (826,'follow','user','acq_seo_ri',0,0,'-1',0,0,'','',2);
INSERT INTO `block` VALUES (831,'forum','active','acq_seo_ri',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (836,'forum','new','acq_seo_ri',0,0,'-1',0,0,'','',-2);
INSERT INTO `block` VALUES (841,'gardens_client','login','acq_seo_ri',1,1,'sidebar_b',0,1,'<front>','',-1);
INSERT INTO `block` VALUES (846,'gardens_client','site-manager','acq_seo_ri',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (851,'mailing_list','1','acq_seo_ri',1,1,'prefooter_second',0,0,'','Join our mailing list',1);
INSERT INTO `block` VALUES (856,'media_gallery','46','acq_seo_ri',1,4,'sidebar_b',0,0,'node/46\ngalleries','',1);
INSERT INTO `block` VALUES (861,'node','recent','acq_seo_ri',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (866,'node','syndicate','acq_seo_ri',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (871,'poll','recent','acq_seo_ri',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (876,'profile','author-information','acq_seo_ri',0,0,'-1',0,0,'','',5);
INSERT INTO `block` VALUES (881,'rotating_banner','1','acq_seo_ri',1,1,'banner',0,1,'<front>','',1);
INSERT INTO `block` VALUES (886,'search','form','acq_seo_ri',1,20,'preheader_first',0,0,'','',-1);
INSERT INTO `block` VALUES (891,'shortcut','shortcuts','acq_seo_ri',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (896,'sqbs','11','acq_seo_ri',1,1,'prefooter_third',0,0,'','Overheard',1);
INSERT INTO `block` VALUES (901,'sqbs','16','acq_seo_ri',1,5,'sidebar_b',0,1,'<front>','',1);
INSERT INTO `block` VALUES (906,'system','help','acq_seo_ri',1,1,'help',0,0,'','',-1);
INSERT INTO `block` VALUES (911,'system','main','acq_seo_ri',1,1,'content',0,0,'','',-1);
INSERT INTO `block` VALUES (916,'system','main-menu','acq_seo_ri',1,1,'navigation',0,0,'','<none>',-1);
INSERT INTO `block` VALUES (921,'system','management','acq_seo_ri',0,0,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (926,'system','navigation','acq_seo_ri',0,1,'-1',0,0,'','',-1);
INSERT INTO `block` VALUES (931,'system','powered-by','acq_seo_ri',1,1,'copyright',0,0,'','',-1);
INSERT INTO `block` VALUES (936,'system','secondary-menu','acq_seo_ri',1,1,'preheader_second',0,0,'','',-1);
INSERT INTO `block` VALUES (941,'system','user-menu','acq_seo_ri',1,1,'preheader_second',0,0,'','<none>',-1);
INSERT INTO `block` VALUES (946,'user','login','acq_seo_ri',1,1,'sidebar_b',0,0,'','',-1);
INSERT INTO `block` VALUES (951,'user','new','acq_seo_ri',0,0,'-1',0,0,'','',1);
INSERT INTO `block` VALUES (956,'user','online','acq_seo_ri',0,0,'-1',0,0,'','',-1);
/*!40000 ALTER TABLE `block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `block_custom`
--
DROP TABLE IF EXISTS `block_custom`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_custom` (
`bid` int(10) unsigned NOT NULL auto_increment COMMENT 'The block’s block.bid.',
`body` longtext COMMENT 'Block contents.',
`info` varchar(128) NOT NULL default '' COMMENT 'Block description.',
`format` smallint(6) NOT NULL default '0' COMMENT 'The filter_format.format of the block body.',
PRIMARY KEY (`bid`),
UNIQUE KEY `info` (`info`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `block_custom`
--
LOCK TABLES `block_custom` WRITE;
/*!40000 ALTER TABLE `block_custom` DISABLE KEYS */;
INSERT INTO `block_custom` VALUES (1,'[[{\"type\":\"media\",\"view_mode\":\"media_large\",\"attributes\":{\"typeof\":\"foaf:Image\",\"title\":\"Product feature 1\",\"class\":\"media-image\",\"alt\":\"Product feature 1\"},\"fid\":\"31\"}]]<h2>Product feature 1</h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam tempus erat ut urna interdum sollicitudin. Donec sit amet urna at mauris imperdiet gravida vel in metus. Aenean eu dignissim urna. Etiam dignissim lorem sed enim mattis.','Product feature 1',16);
INSERT INTO `block_custom` VALUES (6,'[[{\"type\":\"media\",\"view_mode\":\"media_large\",\"attributes\":{\"typeof\":\"foaf:Image\",\"title\":\"Product feature 1\",\"class\":\"media-image\",\"alt\":\"Product feature 1\"},\"title\":\"Product feature 2\",\"alt\":\"Product feature 2\",\"fid\":\"36\"}]]<h2>Product feature 2</h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas pretium mauris et ipsum fringilla vulputate non eu nibh. Aliquam condimentum aliquet augue, eget interdum mauris sollicitudin vitae. Sed sagittis facilisis pretium.','Product feature 2',16);
INSERT INTO `block_custom` VALUES (11,'[[{\"type\":\"media\",\"view_mode\":\"media_large\",\"attributes\":{\"typeof\":\"foaf:Image\",\"title\":\"Product feature 1\",\"class\":\"media-image\",\"alt\":\"Product feature 1\"},\"title\":\"Product feature 3\",\"alt\":\"Product feature 3\",\"fid\":\"41\"}]]<h2>Product feature 3</h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse nec erat sem, vitae mattis lorem. Ut luctus convallis nunc, suscipit fringilla nibh molestie vel. Morbi tempus porttitor massa, nec elementum justo gravida ut.','Product feature 3',16);
/*!40000 ALTER TABLE `block_custom` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `block_node_type`
--
DROP TABLE IF EXISTS `block_node_type`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_node_type` (
`module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
`delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
`type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type from node_type.type.',
PRIMARY KEY (`module`,`delta`,`type`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets up display criteria for blocks based on content types';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `block_node_type`
--
LOCK TABLES `block_node_type` WRITE;
/*!40000 ALTER TABLE `block_node_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `block_node_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `block_role`
--
DROP TABLE IF EXISTS `block_role`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_role` (
`module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
`delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
`rid` int(10) unsigned NOT NULL COMMENT 'The user’s role ID from users_roles.rid.',
PRIMARY KEY (`module`,`delta`,`rid`),
KEY `rid` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets up access permissions for blocks based on user roles';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `block_role`
--
LOCK TABLES `block_role` WRITE;
/*!40000 ALTER TABLE `block_role` DISABLE KEYS */;
/*!40000 ALTER TABLE `block_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blocked_ips`
--
DROP TABLE IF EXISTS `blocked_ips`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `blocked_ips` (
`iid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: unique ID for IP addresses.',
`ip` varchar(40) NOT NULL default '' COMMENT 'IP address',
PRIMARY KEY (`iid`),
KEY `blocked_ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores blocked IP addresses.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `blocked_ips`
--
LOCK TABLES `blocked_ips` WRITE;
/*!40000 ALTER TABLE `blocked_ips` DISABLE KEYS */;
/*!40000 ALTER TABLE `blocked_ips` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_block`
--
DROP TABLE IF EXISTS `cache_block`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_block` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Block module to store already built...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_bootstrap`
--
DROP TABLE IF EXISTS `cache_bootstrap`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_bootstrap` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for data required to bootstrap Drupal, may be...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_field`
--
DROP TABLE IF EXISTS `cache_field`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_field` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_file_styles`
--
DROP TABLE IF EXISTS `cache_file_styles`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_file_styles` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store information file manipulations...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_filter`
--
DROP TABLE IF EXISTS `cache_filter`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_filter` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Filter module to store already...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_form`
--
DROP TABLE IF EXISTS `cache_form`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_form` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the form system to store recently built...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_htmlpurifier`
--
DROP TABLE IF EXISTS `cache_htmlpurifier`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_htmlpurifier` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the HTML Purifier module just like cache...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `cache_htmlpurifier`
--
LOCK TABLES `cache_htmlpurifier` WRITE;
/*!40000 ALTER TABLE `cache_htmlpurifier` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_htmlpurifier` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_image`
--
DROP TABLE IF EXISTS `cache_image`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_image` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store information about image...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_media_xml`
--
DROP TABLE IF EXISTS `cache_media_xml`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_media_xml` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the the results of retreived XML...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_menu`
--
DROP TABLE IF EXISTS `cache_menu`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_menu` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the menu system to store router...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_page`
--
DROP TABLE IF EXISTS `cache_page`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_page` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store compressed pages for anonymous...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_path`
--
DROP TABLE IF EXISTS `cache_path`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_path` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for path alias lookup.';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `cache_styles`
--
DROP TABLE IF EXISTS `cache_styles`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cache_styles` (
`cid` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store information display...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `comment`
--
DROP TABLE IF EXISTS `comment`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `comment` (
`cid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique comment ID.',
`pid` int(11) NOT NULL default '0' COMMENT 'The comment.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.',
`nid` int(11) NOT NULL default '0' COMMENT 'The node.nid to which this comment is a reply.',
`uid` int(11) NOT NULL default '0' COMMENT 'The users.uid who authored the comment. If set to 0, this comment was created by an anonymous user.',
`subject` varchar(64) NOT NULL default '' COMMENT 'The comment title.',
`hostname` varchar(128) NOT NULL default '' COMMENT 'The author’s host name.',
`created` int(11) NOT NULL default '0' COMMENT 'The time that the comment was created, as a Unix timestamp.',
`changed` int(11) NOT NULL default '0' COMMENT 'The time that the comment was last edited, as a Unix timestamp.',
`status` tinyint(3) unsigned NOT NULL default '1' COMMENT 'The published status of a comment. (0 = Not Published, 1 = Published)',
`thread` varchar(255) NOT NULL COMMENT 'The vancode representation of the comment’s place in a thread.',
`name` varchar(60) default NULL COMMENT 'The comment author’s name. Uses users.name if the user is logged in, otherwise uses the value typed into the comment form.',
`mail` varchar(64) default NULL COMMENT 'The comment author’s e-mail address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
`homepage` varchar(255) default NULL COMMENT 'The comment author’s home page address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
`language` varchar(12) NOT NULL default '' COMMENT 'The languages.language of this comment.',
PRIMARY KEY (`cid`),
KEY `comment_status_pid` (`pid`,`status`),
KEY `comment_num_new` (`nid`,`status`,`created`,`cid`,`thread`),
KEY `comment_uid` (`uid`),
KEY `comment_nid_language` (`nid`,`language`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `comment`
--
LOCK TABLES `comment` WRITE;
/*!40000 ALTER TABLE `comment` DISABLE KEYS */;
INSERT INTO `comment` VALUES (1,0,11,0,'Sample comment','127.0.0.1',1282630635,1282630635,1,'01/','','','','und');
INSERT INTO `comment` VALUES (6,0,16,0,'Sample comment','127.0.0.1',1282630639,1282630639,1,'01/','','','','und');
INSERT INTO `comment` VALUES (11,0,21,0,'Sample comment','127.0.0.1',1282630639,1282630639,1,'01/','','','','und');
/*!40000 ALTER TABLE `comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `comment_notify`
--
DROP TABLE IF EXISTS `comment_notify`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `comment_notify` (
`cid` int(10) unsigned NOT NULL COMMENT 'The comment id from comments.cid',
`notify` tinyint(4) NOT NULL COMMENT 'A boolean indicator for whether or not they subscribed: 1 means subscribed, 0 means not subscribed.',
`notify_hash` varchar(128) NOT NULL default '' COMMENT 'A hash of unique information about the commenter. Used for unsubscribing users.',
`notified` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicator for whether or not a notification for the comment has been sent: 1 means yes, 0 means no.',
PRIMARY KEY (`cid`),
KEY `notify_hash` (`notify_hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about which commenters on the site...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `comment_notify`
--
LOCK TABLES `comment_notify` WRITE;
/*!40000 ALTER TABLE `comment_notify` DISABLE KEYS */;
INSERT INTO `comment_notify` VALUES (1,0,'lQat7QhzKGAFrJIppJuwaHACE6PQZ87KDWsTYOrJQS8',0);
INSERT INTO `comment_notify` VALUES (6,0,'uahAlW7IsqBeeEQeBpVb_U4Vy_9HmjOYgsK8cBJ87UY',0);
INSERT INTO `comment_notify` VALUES (11,0,'-sSTJPc5MkSgHAcQLkZRH10s2-fmaieyezb7AhCahTM',0);
/*!40000 ALTER TABLE `comment_notify` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `comment_notify_user_settings`
--
DROP TABLE IF EXISTS `comment_notify_user_settings`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `comment_notify_user_settings` (
`uid` int(10) unsigned NOT NULL COMMENT 'The user id from users.cid',
`node_notify` tinyint(4) NOT NULL default '0',
`comment_notify` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `comment_notify_user_settings`
--
LOCK TABLES `comment_notify_user_settings` WRITE;
/*!40000 ALTER TABLE `comment_notify_user_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `comment_notify_user_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact`
--
DROP TABLE IF EXISTS `contact`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `contact` (
`cid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique category ID.',
`category` varchar(255) NOT NULL default '' COMMENT 'Category name.',
`recipients` longtext NOT NULL COMMENT 'Comma-separated list of recipient e-mail addresses.',
`reply` longtext NOT NULL COMMENT 'Text of the auto-reply message.',
`weight` int(11) NOT NULL default '0' COMMENT 'The category’s weight.',
`selected` tinyint(4) NOT NULL default '0' COMMENT 'Flag to indicate whether or not category is selected by default. (1 = Yes, 0 = No)',
PRIMARY KEY (`cid`),
UNIQUE KEY `category` (`category`),
KEY `list` (`weight`,`category`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Contact form category settings.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `contact`
--
LOCK TABLES `contact` WRITE;
/*!40000 ALTER TABLE `contact` DISABLE KEYS */;
INSERT INTO `contact` VALUES (1,'General feedback','kmedialab@gmail.com','',0,1);
/*!40000 ALTER TABLE `contact` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `date_format_locale`
--
DROP TABLE IF EXISTS `date_format_locale`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `date_format_locale` (
`format` varchar(100) NOT NULL COMMENT 'The date format string.',
`type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
`language` varchar(12) NOT NULL COMMENT 'A languages.language for this format to be used with.',
PRIMARY KEY (`type`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats for each locale.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `date_format_locale`
--
LOCK TABLES `date_format_locale` WRITE;
/*!40000 ALTER TABLE `date_format_locale` DISABLE KEYS */;
/*!40000 ALTER TABLE `date_format_locale` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `date_format_type`
--
DROP TABLE IF EXISTS `date_format_type`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `date_format_type` (
`type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
`title` varchar(255) NOT NULL COMMENT 'The human readable name of the format type.',
`locked` tinyint(4) NOT NULL default '0' COMMENT 'Whether or not this is a system provided format.',
PRIMARY KEY (`type`),
KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date format types.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `date_format_type`
--
LOCK TABLES `date_format_type` WRITE;
/*!40000 ALTER TABLE `date_format_type` DISABLE KEYS */;
INSERT INTO `date_format_type` VALUES ('long','Long',1);
INSERT INTO `date_format_type` VALUES ('medium','Medium',1);
INSERT INTO `date_format_type` VALUES ('short','Short',1);
/*!40000 ALTER TABLE `date_format_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `date_formats`
--
DROP TABLE IF EXISTS `date_formats`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `date_formats` (
`dfid` int(10) unsigned NOT NULL auto_increment COMMENT 'The date format identifier.',
`format` varchar(100) NOT NULL COMMENT 'The date format string.',
`type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
`locked` tinyint(4) NOT NULL default '0' COMMENT 'Whether or not this format can be modified.',
PRIMARY KEY (`dfid`),
UNIQUE KEY `formats` (`format`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=172 DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `date_formats`
--
LOCK TABLES `date_formats` WRITE;
/*!40000 ALTER TABLE `date_formats` DISABLE KEYS */;
INSERT INTO `date_formats` VALUES (1,'Y-m-d H:i','short',1);
INSERT INTO `date_formats` VALUES (6,'m/d/Y - H:i','short',1);
INSERT INTO `date_formats` VALUES (11,'d/m/Y - H:i','short',1);
INSERT INTO `date_formats` VALUES (16,'Y/m/d - H:i','short',1);
INSERT INTO `date_formats` VALUES (21,'d.m.Y - H:i','short',1);
INSERT INTO `date_formats` VALUES (26,'m/d/Y - g:ia','short',1);
INSERT INTO `date_formats` VALUES (31,'d/m/Y - g:ia','short',1);
INSERT INTO `date_formats` VALUES (36,'Y/m/d - g:ia','short',1);
INSERT INTO `date_formats` VALUES (41,'M j Y - H:i','short',1);
INSERT INTO `date_formats` VALUES (46,'j M Y - H:i','short',1);
INSERT INTO `date_formats` VALUES (51,'Y M j - H:i','short',1);
INSERT INTO `date_formats` VALUES (56,'M j Y - g:ia','short',1);
INSERT INTO `date_formats` VALUES (61,'j M Y - g:ia','short',1);
INSERT INTO `date_formats` VALUES (66,'Y M j - g:ia','short',1);
INSERT INTO `date_formats` VALUES (71,'D, Y-m-d H:i','medium',1);
INSERT INTO `date_formats` VALUES (76,'D, m/d/Y - H:i','medium',1);
INSERT INTO `date_formats` VALUES (81,'D, d/m/Y - H:i','medium',1);
INSERT INTO `date_formats` VALUES (86,'D, Y/m/d - H:i','medium',1);
INSERT INTO `date_formats` VALUES (91,'F j, Y - H:i','medium',1);
INSERT INTO `date_formats` VALUES (96,'j F, Y - H:i','medium',1);
INSERT INTO `date_formats` VALUES (101,'Y, F j - H:i','medium',1);
INSERT INTO `date_formats` VALUES (106,'D, m/d/Y - g:ia','medium',1);
INSERT INTO `date_formats` VALUES (111,'D, d/m/Y - g:ia','medium',1);
INSERT INTO `date_formats` VALUES (116,'D, Y/m/d - g:ia','medium',1);
INSERT INTO `date_formats` VALUES (121,'F j, Y - g:ia','medium',1);
INSERT INTO `date_formats` VALUES (126,'j F Y - g:ia','medium',1);
INSERT INTO `date_formats` VALUES (131,'Y, F j - g:ia','medium',1);
INSERT INTO `date_formats` VALUES (136,'j. F Y - G:i','medium',1);
INSERT INTO `date_formats` VALUES (141,'l, F j, Y - H:i','long',1);
INSERT INTO `date_formats` VALUES (146,'l, j F, Y - H:i','long',1);
INSERT INTO `date_formats` VALUES (151,'l, Y, F j - H:i','long',1);
INSERT INTO `date_formats` VALUES (156,'l, F j, Y - g:ia','long',1);
INSERT INTO `date_formats` VALUES (161,'l, j F Y - g:ia','long',1);
INSERT INTO `date_formats` VALUES (166,'l, Y, F j - g:ia','long',1);
INSERT INTO `date_formats` VALUES (171,'l, j. F Y - G:i','long',1);
/*!40000 ALTER TABLE `date_formats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_config`
--
DROP TABLE IF EXISTS `field_config`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_config` (
`id` int(11) NOT NULL auto_increment COMMENT 'The primary identifier for a field',
`field_name` varchar(32) NOT NULL COMMENT 'The name of this field. Non-deleted field names are unique, but multiple deleted fields can have the same name.',
`type` varchar(128) NOT NULL COMMENT 'The type of this field.',
`module` varchar(128) NOT NULL default '' COMMENT 'The module that implements the field type.',
`active` tinyint(4) NOT NULL default '0' COMMENT 'Boolean indicating whether the module that implements the field type is enabled.',
`storage_type` varchar(128) NOT NULL COMMENT 'The storage backend for the field.',
`storage_module` varchar(128) NOT NULL default '' COMMENT 'The module that implements the storage backend.',
`storage_active` tinyint(4) NOT NULL default '0' COMMENT 'Boolean indicating whether the module that implements the storage backend is enabled.',
`locked` tinyint(4) NOT NULL default '0' COMMENT '@TODO',
`data` longblob NOT NULL COMMENT 'Serialized data containing the field properties that do not warrant a dedicated column.',
`cardinality` tinyint(4) NOT NULL default '0',
`translatable` tinyint(4) NOT NULL default '0',
`deleted` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `field_name` (`field_name`),
KEY `active` (`active`),
KEY `storage_active` (`storage_active`),
KEY `deleted` (`deleted`),
KEY `module` (`module`),
KEY `storage_module` (`storage_module`),
KEY `type` (`type`),
KEY `storage_type` (`storage_type`)
) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_config`
--
LOCK TABLES `field_config` WRITE;
/*!40000 ALTER TABLE `field_config` DISABLE KEYS */;
INSERT INTO `field_config` VALUES (1,'comment_body','text_long','text',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (6,'file','file','file',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:3:{s:13:\"display_field\";i:0;s:15:\"display_default\";i:0;s:10:\"uri_scheme\";s:6:\"public\";}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (11,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";b:1;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,1,0);
INSERT INTO `field_config` VALUES (16,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:3:\"vid\";s:1:\"1\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',-1,0,0);
INSERT INTO `field_config` VALUES (21,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:12:\"translatable\";b:1;s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}s:8:\"settings\";a:2:{s:10:\"uri_scheme\";s:6:\"public\";s:13:\"default_image\";b:0;}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"entity_types\";a:0:{}}',1,1,0);
INSERT INTO `field_config` VALUES (26,'taxonomy_forums','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:3:\"vid\";s:1:\"6\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (31,'media_gallery_media','media','media',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}}',-1,0,0);
INSERT INTO `field_config` VALUES (36,'media_gallery_description','text_long','text',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (41,'media_gallery_format','list_text','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:32:\"_media_gallery_get_format_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (46,'media_gallery_columns','list_number','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:33:\"_media_gallery_get_columns_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (51,'media_gallery_rows','number_integer','number',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:0:{}}',1,0,0);
INSERT INTO `field_config` VALUES (56,'media_gallery_image_info_where','list_text','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:46:\"_media_gallery_get_image_info_placement_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (61,'media_gallery_image_info','list_text','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:36:\"_media_gallery_get_image_info_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (66,'media_gallery_allow_download','list_boolean','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:40:\"_media_gallery_get_allow_download_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (71,'media_gallery_expose_block','list_boolean','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:38:\"_media_gallery_get_expose_block_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (76,'media_gallery_block_columns','list_number','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:39:\"_media_gallery_get_block_columns_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (81,'media_gallery_block_rows','number_integer','number',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:0:{}}',1,0,0);
INSERT INTO `field_config` VALUES (86,'media_gallery_collection','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:3:\"vid\";s:2:\"11\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (91,'media_gallery_gallery_info','list_text','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:38:\"_media_gallery_get_gallery_info_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (96,'media_description','text_long','text',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"translatable\";b:1;s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,1,0);
INSERT INTO `field_config` VALUES (101,'media_title','text','text',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"translatable\";b:1;s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:1:{s:10:\"max_length\";i:255;}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,1,0);
INSERT INTO `field_config` VALUES (106,'field_license','list_text','list',1,'field_sql_storage','field_sql_storage',1,1,'a:5:{s:12:\"translatable\";b:1;s:8:\"settings\";a:2:{s:23:\"allowed_values_function\";s:39:\"_media_gallery_get_field_license_values\";s:14:\"allowed_values\";s:0:\"\";}s:12:\"entity_types\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}}}',1,1,0);
INSERT INTO `field_config` VALUES (111,'field_testimonial_author','text','text',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:1:{s:10:\"max_length\";i:255;}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0);
INSERT INTO `field_config` VALUES (116,'field_testimonial_affiliation','text','text',1,'field_sql_storage','field_sql_storage',1,0,'a:5:{s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:8:\"settings\";a:1:{s:10:\"max_length\";i:255;}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0);
/*!40000 ALTER TABLE `field_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_config_entity_type`
--
DROP TABLE IF EXISTS `field_config_entity_type`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_config_entity_type` (
`etid` int(10) unsigned NOT NULL auto_increment COMMENT 'The unique id for this entity type',
`type` varchar(128) NOT NULL COMMENT 'An entity type',
PRIMARY KEY (`etid`),
UNIQUE KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_config_entity_type`
--
LOCK TABLES `field_config_entity_type` WRITE;
/*!40000 ALTER TABLE `field_config_entity_type` DISABLE KEYS */;
INSERT INTO `field_config_entity_type` VALUES (6,'comment');
INSERT INTO `field_config_entity_type` VALUES (11,'media');
INSERT INTO `field_config_entity_type` VALUES (1,'node');
INSERT INTO `field_config_entity_type` VALUES (16,'taxonomy_term');
/*!40000 ALTER TABLE `field_config_entity_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_config_instance`
--
DROP TABLE IF EXISTS `field_config_instance`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_config_instance` (
`id` int(11) NOT NULL auto_increment COMMENT 'The primary identifier for a field instance',
`field_id` int(11) NOT NULL COMMENT 'The identifier of the field attached by this instance',
`field_name` varchar(32) NOT NULL default '',
`entity_type` varchar(32) NOT NULL default '',
`bundle` varchar(128) NOT NULL default '',
`data` longblob NOT NULL,
`deleted` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `field_name_bundle` (`field_name`,`entity_type`,`bundle`),
KEY `deleted` (`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=297 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_config_instance`
--
LOCK TABLES `field_config_instance` WRITE;
/*!40000 ALTER TABLE `field_config_instance` DISABLE KEYS */;
INSERT INTO `field_config_instance` VALUES (1,6,'file','media','default','a:8:{s:5:\"label\";s:4:\"File\";s:11:\"widget_type\";s:9:\"file_file\";s:6:\"widget\";a:4:{s:6:\"weight\";i:-5;s:4:\"type\";s:12:\"file_generic\";s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:6:\"module\";s:4:\"file\";}s:8:\"required\";b:1;s:6:\"locked\";b:1;s:7:\"display\";a:6:{s:13:\"media_preview\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:16:\"media_large_icon\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";s:5:\"media\";}s:14:\"media_original\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"file_generic\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";N;}s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:12:\"file_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";s:6:\"weight\";i:0;}s:10:\"media_link\";a:5:{s:4:\"type\";s:12:\"file_generic\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";N;}s:11:\"media_small\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:11:\"media_large\";a:5:{s:4:\"type\";s:12:\"file_generic\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";N;}}s:8:\"settings\";a:4:{s:15:\"file_extensions\";s:3:\"txt\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:17:\"description_field\";i:0;}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (6,6,'file','media','image','a:8:{s:5:\"label\";s:4:\"File\";s:11:\"widget_type\";s:9:\"file_file\";s:6:\"widget\";a:4:{s:6:\"weight\";i:-5;s:4:\"type\";s:12:\"file_generic\";s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:6:\"module\";s:4:\"file\";}s:8:\"required\";b:1;s:6:\"locked\";b:1;s:7:\"display\";a:11:{s:13:\"media_preview\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:28:\"styles_file_square_thumbnail\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"styles\";}s:14:\"media_original\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:20:\"styles_file_original\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"styles\";}s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:12:\"file_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";s:6:\"weight\";i:0;}s:10:\"media_link\";a:5:{s:4:\"type\";s:12:\"file_default\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"file\";}s:11:\"media_small\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:11:\"media_large\";a:5:{s:4:\"type\";s:17:\"styles_file_large\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";s:6:\"styles\";}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:35:\"styles_file_media_gallery_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";N;s:6:\"weight\";i:0;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:17:\"styles_file_large\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"styles\";s:6:\"weight\";i:0;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:17:\"styles_file_large\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"styles\";s:6:\"weight\";i:0;}s:29:\"media_gallery_block_thumbnail\";a:5:{s:4:\"type\";s:35:\"styles_file_media_gallery_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";N;s:6:\"weight\";i:0;}s:34:\"media_gallery_collection_thumbnail\";a:5:{s:4:\"type\";s:35:\"styles_file_media_gallery_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";N;s:6:\"weight\";i:0;}}s:8:\"settings\";a:4:{s:15:\"file_extensions\";s:3:\"txt\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:17:\"description_field\";i:0;}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (11,6,'file','media','audio','a:8:{s:5:\"label\";s:4:\"File\";s:11:\"widget_type\";s:9:\"file_file\";s:6:\"widget\";a:4:{s:6:\"weight\";i:-5;s:4:\"type\";s:12:\"file_generic\";s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:6:\"module\";s:4:\"file\";}s:8:\"required\";b:1;s:6:\"locked\";b:1;s:7:\"display\";a:6:{s:13:\"media_preview\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:16:\"media_large_icon\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";s:5:\"media\";}s:14:\"media_original\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"file_generic\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";N;}s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:12:\"file_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";s:6:\"weight\";i:0;}s:10:\"media_link\";a:5:{s:4:\"type\";s:12:\"file_generic\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";N;}s:11:\"media_small\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:11:\"media_large\";a:5:{s:4:\"type\";s:12:\"file_generic\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";N;}}s:8:\"settings\";a:4:{s:15:\"file_extensions\";s:3:\"txt\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:17:\"description_field\";i:0;}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (16,6,'file','media','video','a:8:{s:5:\"label\";s:4:\"File\";s:11:\"widget_type\";s:9:\"file_file\";s:6:\"widget\";a:4:{s:6:\"weight\";i:-5;s:4:\"type\";s:12:\"file_generic\";s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:6:\"module\";s:4:\"file\";}s:8:\"required\";b:1;s:6:\"locked\";b:1;s:7:\"display\";a:6:{s:13:\"media_preview\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:16:\"media_large_icon\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";s:5:\"media\";}s:14:\"media_original\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"file_generic\";s:6:\"weight\";i:-5;s:8:\"settings\";a:0:{}s:6:\"module\";N;}s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:12:\"file_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";s:6:\"weight\";i:0;}s:10:\"media_link\";a:5:{s:4:\"type\";s:12:\"file_generic\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";N;}s:11:\"media_small\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:11:\"media_large\";a:5:{s:4:\"type\";s:12:\"file_generic\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";N;}}s:8:\"settings\";a:4:{s:15:\"file_extensions\";s:3:\"txt\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:17:\"description_field\";i:0;}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (21,1,'comment_body','comment','comment_node_page','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (26,11,'body','node','page','a:7:{s:5:\"label\";s:4:\"Body\";s:11:\"widget_type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (31,1,'comment_body','comment','comment_node_article','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (36,11,'body','node','article','a:7:{s:5:\"label\";s:4:\"Body\";s:11:\"widget_type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (41,16,'field_tags','node','article','a:6:{s:5:\"label\";s:4:\"Tags\";s:11:\"description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"weight\";i:4;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (46,16,'field_tags','node','poll','a:7:{s:5:\"label\";s:4:\"Tags\";s:11:\"description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"weight\";i:4;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:6:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:3:\"rss\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:12:\"search_index\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:13:\"search_result\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;s:13:\"default_value\";N;}',0);
INSERT INTO `field_config_instance` VALUES (51,1,'comment_body','comment','comment_node_poll','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (56,1,'comment_body','comment','comment_node_blog','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (61,11,'body','node','blog','a:7:{s:5:\"label\";s:4:\"Body\";s:11:\"widget_type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (66,16,'field_tags','node','blog','a:7:{s:5:\"label\";s:4:\"Tags\";s:11:\"description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"weight\";i:4;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:6:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:3:\"rss\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:12:\"search_index\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:13:\"search_result\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;s:13:\"default_value\";N;}',0);
INSERT INTO `field_config_instance` VALUES (71,26,'taxonomy_forums','node','forum','a:6:{s:5:\"label\";s:6:\"Forums\";s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (76,1,'comment_body','comment','comment_node_forum','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (81,11,'body','node','forum','a:7:{s:5:\"label\";s:4:\"Body\";s:11:\"widget_type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:11;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:11;}}s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:1;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (86,16,'field_tags','node','forum','a:7:{s:5:\"label\";s:4:\"Tags\";s:11:\"description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"weight\";i:4;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:6:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:3:\"rss\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:12:\"search_index\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:13:\"search_result\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;s:13:\"default_value\";N;}',0);
INSERT INTO `field_config_instance` VALUES (91,1,'comment_body','comment','comment_node_faq_item','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (96,11,'body','node','faq_item','a:7:{s:5:\"label\";s:6:\"Answer\";s:11:\"widget_type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (101,46,'media_gallery_columns','taxonomy_term','gallery_collections','a:7:{s:5:\"label\";s:17:\"Number of columns\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:4;}}s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:2:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;}}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (106,51,'media_gallery_rows','taxonomy_term','gallery_collections','a:7:{s:5:\"label\";s:14:\"Number of rows\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:3;}}s:8:\"settings\";a:4:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:6:\"number\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;s:6:\"module\";s:6:\"number\";}s:7:\"display\";a:2:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;}}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (111,56,'media_gallery_image_info_where','taxonomy_term','gallery_collections','a:7:{s:5:\"label\";s:19:\"Gallery information\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:5:\"hover\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:2:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (116,106,'field_license','taxonomy_term','gallery_collections','a:8:{s:5:\"label\";s:24:\"Default license settings\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:7:\"nothing\";}}s:11:\"description\";s:148:\"Choose a default <a href=\"http://creativecommons.org\">Creative Commons</a> license for all Gallery media. Later you can change each image\'s license.\";s:6:\"weight\";i:14;s:7:\"display\";a:1:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;s:6:\"module\";s:7:\"options\";}}',0);
INSERT INTO `field_config_instance` VALUES (121,91,'media_gallery_gallery_info','taxonomy_term','gallery_collections','a:7:{s:5:\"label\";s:29:\"Gallery information displayed\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:9:\"title_num\";}}s:7:\"display\";a:1:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;s:6:\"module\";s:7:\"options\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (126,36,'media_gallery_description','node','media_gallery','a:6:{s:5:\"label\";s:11:\"Description\";s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:4;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:7:\"display\";a:4:{s:7:\"default\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:4:\"full\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (131,31,'media_gallery_media','node','media_gallery','a:6:{s:5:\"label\";s:14:\"Gallery images\";s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"media_generic\";s:8:\"settings\";a:3:{s:13:\"allowed_types\";a:1:{s:5:\"image\";s:5:\"image\";}s:15:\"allowed_schemes\";a:1:{s:6:\"public\";s:6:\"public\";}s:18:\"progress_indicator\";s:8:\"throbber\";}s:6:\"weight\";i:1;s:6:\"module\";s:5:\"media\";}s:7:\"display\";a:4:{s:7:\"default\";a:5:{s:4:\"type\";s:23:\"media_gallery_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:2;s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"media_gallery\";}s:4:\"full\";a:5:{s:4:\"type\";s:23:\"media_gallery_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:2;s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"media_gallery\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:34:\"media_gallery_collection_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:2;s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"media_gallery\";}s:19:\"media_gallery_block\";a:5:{s:4:\"type\";s:29:\"media_gallery_block_thumbnail\";s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:2;s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"media_gallery\";}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (136,41,'media_gallery_format','node','media_gallery','a:7:{s:5:\"label\";s:14:\"Gallery format\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:8:\"lightbox\";}}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}}s:6:\"widget\";a:4:{s:4:\"type\";s:15:\"options_buttons\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;s:6:\"module\";s:7:\"options\";}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (141,46,'media_gallery_columns','node','media_gallery','a:7:{s:5:\"label\";s:17:\"Number of columns\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:4;}}s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (146,51,'media_gallery_rows','node','media_gallery','a:7:{s:5:\"label\";s:14:\"Number of rows\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:3;}}s:8:\"settings\";a:4:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:6:\"number\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;s:6:\"module\";s:6:\"number\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;}}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (151,56,'media_gallery_image_info_where','node','media_gallery','a:7:{s:5:\"label\";s:17:\"Image information\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:5:\"hover\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:5;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:6;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:6;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:6;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:6;}}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (156,61,'media_gallery_image_info','node','media_gallery','a:7:{s:5:\"label\";s:27:\"Image information displayed\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:5:\"title\";}}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:7;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:7;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:7;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:7;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:6;s:6:\"module\";s:7:\"options\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (161,66,'media_gallery_allow_download','node','media_gallery','a:7:{s:5:\"label\";s:39:\"Allow downloading of the original image\";s:11:\"description\";s:40:\"Display a \"download original image\" link\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:1;}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"options_onoff\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:7;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:8;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:8;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:8;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:8;}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (166,71,'media_gallery_expose_block','node','media_gallery','a:7:{s:5:\"label\";s:43:\"Create a block of most recently added media\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:1;}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"options_onoff\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:8;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:9;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:9;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:9;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:9;}}s:8:\"settings\";a:0:{}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (171,76,'media_gallery_block_columns','node','media_gallery','a:7:{s:5:\"label\";s:17:\"Number of columns\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:2;}}s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:9;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:10;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:10;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:10;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:10;}}s:8:\"settings\";a:0:{}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (176,81,'media_gallery_block_rows','node','media_gallery','a:7:{s:5:\"label\";s:14:\"Number of rows\";s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";i:3;}}s:8:\"required\";b:1;s:8:\"settings\";a:4:{s:3:\"min\";i:1;s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}s:6:\"widget\";a:4:{s:4:\"type\";s:6:\"number\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:10;s:6:\"module\";s:6:\"number\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:11;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:11;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:11;}s:19:\"media_gallery_block\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:11;}}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (181,86,'media_gallery_collection','node','media_gallery','a:7:{s:5:\"label\";s:18:\"Gallery collection\";s:13:\"default_value\";a:1:{i:0;a:1:{s:3:\"tid\";s:2:\"16\";}}s:7:\"display\";a:2:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:12;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:12;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:11;s:6:\"module\";s:7:\"options\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (186,101,'media_title','media','audio','a:6:{s:5:\"label\";s:5:\"Title\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"text_textfield\";s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (191,96,'media_description','media','audio','a:6:{s:5:\"label\";s:11:\"Description\";s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:4;}s:6:\"weight\";i:-3;s:6:\"module\";s:4:\"text\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (196,16,'field_tags','media','audio','a:6:{s:5:\"label\";s:4:\"Tags\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"weight\";i:-2;s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:1:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}}s:11:\"description\";s:61:\"Enter a comma-separated list of words to describe your audio.\";s:8:\"settings\";a:0:{}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (201,106,'field_license','media','audio','a:7:{s:5:\"label\";s:31:\"License settings for this image\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:7:\"nothing\";}}s:11:\"description\";s:219:\"Select a <a href=\"http://creativecommons.org\" target=\"_new\">Creative Commons</a> license for others who use this image. Or change the <a href=\"/admin/config/media/galleries\">default license</a> used for uploaded images.\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:7:\"options\";}}',0);
INSERT INTO `field_config_instance` VALUES (206,101,'media_title','media','image','a:6:{s:5:\"label\";s:5:\"Title\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"text_textfield\";s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (211,96,'media_description','media','image','a:6:{s:5:\"label\";s:11:\"Description\";s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:4;}s:6:\"weight\";i:-3;s:6:\"module\";s:4:\"text\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (216,16,'field_tags','media','image','a:6:{s:5:\"label\";s:4:\"Tags\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"weight\";i:-2;s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:1:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}}s:11:\"description\";s:61:\"Enter a comma-separated list of words to describe your image.\";s:8:\"settings\";a:0:{}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (221,106,'field_license','media','image','a:7:{s:5:\"label\";s:31:\"License settings for this image\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:7:\"nothing\";}}s:11:\"description\";s:219:\"Select a <a href=\"http://creativecommons.org\" target=\"_new\">Creative Commons</a> license for others who use this image. Or change the <a href=\"/admin/config/media/galleries\">default license</a> used for uploaded images.\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:7:\"options\";}}',0);
INSERT INTO `field_config_instance` VALUES (226,101,'media_title','media','video','a:6:{s:5:\"label\";s:5:\"Title\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"text_textfield\";s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (231,96,'media_description','media','video','a:6:{s:5:\"label\";s:11:\"Description\";s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:4;}s:6:\"weight\";i:-3;s:6:\"module\";s:4:\"text\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (236,16,'field_tags','media','video','a:6:{s:5:\"label\";s:4:\"Tags\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"weight\";i:-2;s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:1:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}}s:11:\"description\";s:61:\"Enter a comma-separated list of words to describe your video.\";s:8:\"settings\";a:0:{}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (241,106,'field_license','media','video','a:7:{s:5:\"label\";s:31:\"License settings for this image\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:7:\"nothing\";}}s:11:\"description\";s:219:\"Select a <a href=\"http://creativecommons.org\" target=\"_new\">Creative Commons</a> license for others who use this image. Or change the <a href=\"/admin/config/media/galleries\">default license</a> used for uploaded images.\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:7:\"options\";}}',0);
INSERT INTO `field_config_instance` VALUES (246,101,'media_title','media','default','a:6:{s:5:\"label\";s:5:\"Title\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:1;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:1;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"text_textfield\";s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (251,96,'media_description','media','default','a:6:{s:5:\"label\";s:11:\"Description\";s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:4;}s:6:\"weight\";i:-3;s:6:\"module\";s:4:\"text\";}s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:2;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"text_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:2;}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (256,16,'field_tags','media','default','a:6:{s:5:\"label\";s:4:\"Tags\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"weight\";i:-2;s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:1:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:3;}}s:11:\"description\";s:60:\"Enter a comma-separated list of words to describe your file.\";s:8:\"settings\";a:0:{}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (261,106,'field_license','media','default','a:7:{s:5:\"label\";s:31:\"License settings for this image\";s:8:\"required\";b:1;s:13:\"default_value\";a:1:{i:0;a:1:{s:5:\"value\";s:7:\"nothing\";}}s:11:\"description\";s:219:\"Select a <a href=\"http://creativecommons.org\" target=\"_new\">Creative Commons</a> license for others who use this image. Or change the <a href=\"/admin/config/media/galleries\">default license</a> used for uploaded images.\";s:7:\"display\";a:4:{s:7:\"default\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:4;}s:23:\"media_gallery_thumbnail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:22:\"media_gallery_lightbox\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}s:20:\"media_gallery_detail\";a:5:{s:4:\"type\";s:12:\"list_default\";s:5:\"label\";s:6:\"hidden\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";s:6:\"weight\";i:3;}}s:8:\"settings\";a:0:{}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:7:\"options\";}}',0);
INSERT INTO `field_config_instance` VALUES (266,1,'comment_body','comment','comment_node_media_gallery','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (271,1,'comment_body','comment','comment_node_testimonial','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (276,11,'body','node','testimonial','a:7:{s:5:\"label\";s:5:\"Quote\";s:11:\"widget_type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (281,111,'field_testimonial_author','node','testimonial','a:6:{s:5:\"label\";s:6:\"Author\";s:11:\"description\";s:24:\"The author of the quote.\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:10;s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:10;s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"text_textfield\";s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"weight\";i:-3;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (286,116,'field_testimonial_affiliation','node','testimonial','a:6:{s:5:\"label\";s:11:\"Affiliation\";s:11:\"description\";s:57:\"The author\'s affiliation (e.g., company or organization).\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:10;s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"weight\";i:10;s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"text_textfield\";s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"weight\";i:-2;s:6:\"module\";s:4:\"text\";}s:8:\"required\";b:0;}',0);
INSERT INTO `field_config_instance` VALUES (291,1,'comment_body','comment','comment_node_customer','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0);
INSERT INTO `field_config_instance` VALUES (296,21,'field_image','node','customer','a:6:{s:5:\"label\";s:13:\"Customer icon\";s:11:\"description\";s:33:\"Upload an icon for this customer.\";s:8:\"required\";b:0;s:8:\"settings\";a:7:{s:14:\"file_directory\";s:11:\"field/image\";s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:12:\"max_filesize\";s:0:\"\";s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:9:\"alt_field\";b:1;s:11:\"title_field\";s:0:\"\";}s:6:\"widget\";a:4:{s:4:\"type\";s:11:\"image_image\";s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:7:\"display\";a:5:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"image__large\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"image__large\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:3:\"rss\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"image__large\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:12:\"search_index\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"image__large\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:14:\"search_results\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"image__large\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}}',0);
/*!40000 ALTER TABLE `field_config_instance` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_body`
--
DROP TABLE IF EXISTS `field_data_body`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_body` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`body_value` longtext,
`body_summary` longtext,
`body_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `body_format` (`body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 11 (body)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_body`
--
LOCK TABLES `field_data_body` WRITE;
/*!40000 ALTER TABLE `field_data_body` DISABLE KEYS */;
INSERT INTO `field_data_body` VALUES (1,'page',0,1,1,'und',0,'To change this embedded map, <a href=\"http://maps.google.com/maps?q=map+Hilda+Ramstraat+39+2600+Berchem+Belgium&oe=utf-8&ie=UTF8&hq=&hnear=Hilda+Ramstraat+39,+Berchem+2600+Antwerp,+Flemish+Region,+Belgium&gl=us&ei=1XfHS4O5LsGBlAeQwLzFAQ&ved=0CAoQ8gEwAA&ll=51.188752,4.421507&spn=0.002122,0.005423&t=h&z=18&source=embed\">view it on Google Maps</a>, select \"Link\" at the top, and follow the provided instructions. Then edit this page and paste the HTML in place of the existing code.\n\n<iframe width=\"100%\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?q=map+Hilda+Ramstraat+39+2600+Berchem+Belgium&oe=utf-8&ie=UTF8&hq=&hnear=Hilda+Ramstraat+39,+Berchem+2600+Antwerp,+Flemish+Region,+Belgium&gl=us&ei=1XfHS4O5LsGBlAeQwLzFAQ&ved=0CAoQ8gEwAA&ll=51.188752,4.421507&spn=0.002122,0.005423&t=h&z=18&output=embed\"></iframe><br /><small><a href=\"http://maps.google.com/maps?q=map+Hilda+Ramstraat+39+2600+Berchem+Belgium&oe=utf-8&ie=UTF8&hq=&hnear=Hilda+Ramstraat+39,+Berchem+2600+Antwerp,+Flemish+Region,+Belgium&gl=us&ei=1XfHS4O5LsGBlAeQwLzFAQ&ved=0CAoQ8gEwAA&ll=51.188752,4.421507&spn=0.002122,0.005423&t=h&z=18&source=embed\">View Larger Map</a></small>\n\n<h2>Office address</h2>\n\nHilda Ramstraat 39\n2600 Berchem\nBelgium\n\n<a href=\"/contact\">Contact us</a>','',11);
INSERT INTO `field_data_body` VALUES (1,'blog',0,6,6,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi luctus pharetra velit ut tincidunt. Phasellus pellentesque diam ullamcorper nunc bibendum sed aliquam odio tempus. Ut eget magna vitae nibh lobortis rhoncus. Cras blandit convallis erat, vel mollis massa porttitor a. Duis nisi diam, elementum in porta sit amet, hendrerit et nisl.','',16);
INSERT INTO `field_data_body` VALUES (1,'blog',0,11,11,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi luctus pharetra velit ut tincidunt. Phasellus pellentesque diam ullamcorper nunc bibendum sed aliquam odio tempus. Ut eget magna vitae nibh lobortis rhoncus. Cras blandit convallis erat, vel mollis massa porttitor a. Duis nisi diam, elementum in porta sit amet, hendrerit et nisl.','',16);
INSERT INTO `field_data_body` VALUES (1,'forum',0,16,16,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus arcu nisi, eleifend vel luctus id, imperdiet auctor nisi. Aliquam tempus odio et mauris pharetra scelerisque. Integer pretium, urna non viverra gravida, nisi tellus pellentesque lectus, vel tempus est odio eget dui. Duis eu ligula est. Phasellus ac odio sed felis aliquet placerat. Phasellus tincidunt cursus euismod. Aliquam dignissim est eu augue interdum tempor. Aliquam bibendum venenatis imperdiet.\n\nCurabitur eleifend ullamcorper mattis. Duis condimentum euismod tellus quis accumsan. Vestibulum consectetur erat id justo blandit vel eleifend augue suscipit. Integer interdum purus augue. Mauris at arcu non dui auctor cursus. In metus nulla, bibendum quis fringilla a, lobortis sed risus. Aliquam erat volutpat. Praesent tempor euismod consequat. Etiam porta ipsum nec nibh tristique ut dictum dui aliquam. Vivamus ac dolor urna, in luctus mi.','',16);
INSERT INTO `field_data_body` VALUES (1,'forum',0,21,21,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus arcu nisi, eleifend vel luctus id, imperdiet auctor nisi. Aliquam tempus odio et mauris pharetra scelerisque. Integer pretium, urna non viverra gravida, nisi tellus pellentesque lectus, vel tempus est odio eget dui. Duis eu ligula est. Phasellus ac odio sed felis aliquet placerat. Phasellus tincidunt cursus euismod. Aliquam dignissim est eu augue interdum tempor. Aliquam bibendum venenatis imperdiet.\n\nCurabitur eleifend ullamcorper mattis. Duis condimentum euismod tellus quis accumsan. Vestibulum consectetur erat id justo blandit vel eleifend augue suscipit. Integer interdum purus augue. Mauris at arcu non dui auctor cursus. In metus nulla, bibendum quis fringilla a, lobortis sed risus. Aliquam erat volutpat. Praesent tempor euismod consequat. Etiam porta ipsum nec nibh tristique ut dictum dui aliquam. Vivamus ac dolor urna, in luctus mi.','',16);
INSERT INTO `field_data_body` VALUES (1,'article',0,26,26,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent id ligula neque, vel fringilla orci. Aenean orci neque, elementum in consequat vitae, vestibulum interdum dolor. Proin ac nisi nec mauris pretium pharetra sit amet in neque. Donec eu metus quis dolor dapibus ultricies. Mauris pharetra, metus ac tempor condimentum, neque nunc ultricies magna, sit amet posuere massa enim vitae quam.','',16);
INSERT INTO `field_data_body` VALUES (1,'article',0,31,31,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent id ligula neque, vel fringilla orci. Aenean orci neque, elementum in consequat vitae, vestibulum interdum dolor. Proin ac nisi nec mauris pretium pharetra sit amet in neque. Donec eu metus quis dolor dapibus ultricies. Mauris pharetra, metus ac tempor condimentum, neque nunc ultricies magna, sit amet posuere massa enim vitae quam.','',16);
INSERT INTO `field_data_body` VALUES (1,'faq_item',0,36,36,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla dolor, sagittis eu faucibus et, pharetra sed orci. Fusce ullamcorper convallis odio non aliquam. Duis ullamcorper pharetra nulla, vel eleifend dui fringilla eu. Maecenas ornare nibh lacinia purus pharetra faucibus. Mauris eget turpis at arcu pharetra mollis. Aenean sodales neque sed elit ultricies laoreet. Aliquam luctus neque ac urna ullamcorper lacinia. Nunc sapien purus, tempus vel pretium ut, tempus vitae odio. Curabitur ut scelerisque risus. Praesent sodales pharetra augue vel lobortis. Cras quis orci sit amet urna tristique rhoncus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In volutpat faucibus mi, in elementum ipsum imperdiet non. Vestibulum aliquet volutpat mauris, nec porttitor libero fringilla a. Nulla et libero sit amet massa eleifend tempus et a erat.','',16);
INSERT INTO `field_data_body` VALUES (1,'faq_item',0,41,41,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla dolor, sagittis eu faucibus et, pharetra sed orci. Fusce ullamcorper convallis odio non aliquam. Duis ullamcorper pharetra nulla, vel eleifend dui fringilla eu. Maecenas ornare nibh lacinia purus pharetra faucibus. Mauris eget turpis at arcu pharetra mollis. Aenean sodales neque sed elit ultricies laoreet. Aliquam luctus neque ac urna ullamcorper lacinia. Nunc sapien purus, tempus vel pretium ut, tempus vitae odio. Curabitur ut scelerisque risus. Praesent sodales pharetra augue vel lobortis. Cras quis orci sit amet urna tristique rhoncus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In volutpat faucibus mi, in elementum ipsum imperdiet non. Vestibulum aliquet volutpat mauris, nec porttitor libero fringilla a. Nulla et libero sit amet massa eleifend tempus et a erat.','',16);
INSERT INTO `field_data_body` VALUES (1,'page',0,51,51,'und',0,'<strong>Feature 1</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum ac dui arcu. Curabitur sodales mauris vel ipsum tempor interdum. Morbi a magna id risus malesuada accumsan. Proin quis consectetur tellus. Aliquam erat volutpat. Donec vel neque et nisl eleifend suscipit.\n\n<strong>Feature 2</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eget lectus urna, sit amet elementum turpis. Sed sed orci neque. Nunc fermentum nunc quis tellus varius in tempor risus lobortis. Suspendisse est velit, aliquet ac consequat sed, sagittis in nulla.\n\n<strong>Feature 3</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ultrices, urna vel ultricies auctor, mi ligula gravida dolor, quis iaculis mauris velit in diam. Curabitur ultricies mollis congue. Nulla leo neque, tempus vitae egestas vel, pretium eu mi. Suspendisse adipiscing luctus velit.\n\n<strong>Feature 4</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc imperdiet nunc non mi hendrerit pharetra. In rhoncus metus eu nunc consequat at egestas elit commodo. Proin augue quam, tincidunt et accumsan a, mattis ac est. Aliquam erat volutpat. Donec rutrum volutpat posuere.\n\n<strong>Feature 5</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam blandit aliquet metus vitae ultrices. Ut nec arcu vitae tortor lacinia malesuada. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse semper placerat elit eget egestas.\n\n<strong>Feature 6</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut enim nibh, interdum quis iaculis in, consectetur ac ipsum. Aenean sit amet erat risus, sed adipiscing est. Nunc nec est et nisl tincidunt fermentum. Nulla eget erat ut enim mollis dignissim. Curabitur non risus ipsum, non egestas massa.','',16);
INSERT INTO `field_data_body` VALUES (1,'testimonial',0,56,56,'und',0,'I love my Drupal Gardens! It\'s so easy to build awesome sites.','',16);
INSERT INTO `field_data_body` VALUES (1,'testimonial',0,61,61,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed a aliquet erat. Aliquam erat volutpat. Aenean varius, est nec egestas convallis, ipsum magna vulputate nibh, eu facilisis turpis turpis a elit. Morbi rhoncus facilisis urna, quis adipiscing tortor semper accumsan.','',16);
INSERT INTO `field_data_body` VALUES (1,'testimonial',0,66,66,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas egestas ligula non lacus sagittis ac facilisis eros ullamcorper. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In commodo arcu a tellus interdum bibendum.','',16);
/*!40000 ALTER TABLE `field_data_body` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_comment_body`
--
DROP TABLE IF EXISTS `field_data_comment_body`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_comment_body` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`comment_body_value` longtext,
`comment_body_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `comment_body_format` (`comment_body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 1 (comment_body)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_comment_body`
--
LOCK TABLES `field_data_comment_body` WRITE;
/*!40000 ALTER TABLE `field_data_comment_body` DISABLE KEYS */;
INSERT INTO `field_data_comment_body` VALUES (6,'comment_node_blog',0,1,1,'und',0,'This is a sample comment to demonstrate how comments will appear on your site.',6);
INSERT INTO `field_data_comment_body` VALUES (6,'comment_node_forum',0,6,6,'und',0,'This is a sample comment to demonstrate how comments will appear on your site\'s forums.',6);
INSERT INTO `field_data_comment_body` VALUES (6,'comment_node_forum',0,11,11,'und',0,'This is a sample comment to demonstrate how comments will appear on your site\'s forums.',6);
/*!40000 ALTER TABLE `field_data_comment_body` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_field_image`
--
DROP TABLE IF EXISTS `field_data_field_image`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_field_image` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_image_fid` int(10) unsigned default NULL COMMENT 'The files.fid being referenced in this field.',
`field_image_alt` varchar(128) default NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
`field_image_title` varchar(128) default NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_image_fid` (`field_image_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 21 (field_image)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_field_image`
--
LOCK TABLES `field_data_field_image` WRITE;
/*!40000 ALTER TABLE `field_data_field_image` DISABLE KEYS */;
INSERT INTO `field_data_field_image` VALUES (1,'customer',0,71,71,'und',0,21,'Example customer 1','Example customer 1');
INSERT INTO `field_data_field_image` VALUES (1,'customer',0,76,76,'und',0,26,'Example customer 2','Example customer 2');
/*!40000 ALTER TABLE `field_data_field_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_field_license`
--
DROP TABLE IF EXISTS `field_data_field_license`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_field_license` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_license_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_license_value` (`field_license_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 106 (field_license)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_field_license`
--
LOCK TABLES `field_data_field_license` WRITE;
/*!40000 ALTER TABLE `field_data_field_license` DISABLE KEYS */;
INSERT INTO `field_data_field_license` VALUES (16,'gallery_collections',0,16,16,'und',0,'nothing');
/*!40000 ALTER TABLE `field_data_field_license` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_field_tags`
--
DROP TABLE IF EXISTS `field_data_field_tags`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_field_tags` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_tags_tid` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_tags_tid` (`field_tags_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 16 (field_tags)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_field_tags`
--
LOCK TABLES `field_data_field_tags` WRITE;
/*!40000 ALTER TABLE `field_data_field_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `field_data_field_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_field_testimonial_affiliation`
--
DROP TABLE IF EXISTS `field_data_field_testimonial_affiliation`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_field_testimonial_affiliation` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_testimonial_affiliation_value` varchar(255) default NULL,
`field_testimonial_affiliation_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_testimonial_affiliation_format` (`field_testimonial_affiliation_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 116 (field_testimonial_affiliation)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_field_testimonial_affiliation`
--
LOCK TABLES `field_data_field_testimonial_affiliation` WRITE;
/*!40000 ALTER TABLE `field_data_field_testimonial_affiliation` DISABLE KEYS */;
INSERT INTO `field_data_field_testimonial_affiliation` VALUES (1,'testimonial',0,56,56,'und',0,'Company',NULL);
INSERT INTO `field_data_field_testimonial_affiliation` VALUES (1,'testimonial',0,61,61,'und',0,'Company',NULL);
INSERT INTO `field_data_field_testimonial_affiliation` VALUES (1,'testimonial',0,66,66,'und',0,'Company',NULL);
/*!40000 ALTER TABLE `field_data_field_testimonial_affiliation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_field_testimonial_author`
--
DROP TABLE IF EXISTS `field_data_field_testimonial_author`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_field_testimonial_author` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_testimonial_author_value` varchar(255) default NULL,
`field_testimonial_author_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_testimonial_author_format` (`field_testimonial_author_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 111 (field_testimonial_author)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_field_testimonial_author`
--
LOCK TABLES `field_data_field_testimonial_author` WRITE;
/*!40000 ALTER TABLE `field_data_field_testimonial_author` DISABLE KEYS */;
INSERT INTO `field_data_field_testimonial_author` VALUES (1,'testimonial',0,56,56,'und',0,'Anonymous',NULL);
INSERT INTO `field_data_field_testimonial_author` VALUES (1,'testimonial',0,61,61,'und',0,'Anonymous',NULL);
INSERT INTO `field_data_field_testimonial_author` VALUES (1,'testimonial',0,66,66,'und',0,'Anonymous',NULL);
/*!40000 ALTER TABLE `field_data_field_testimonial_author` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_file`
--
DROP TABLE IF EXISTS `field_data_file`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_file` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`file_fid` int(10) unsigned default NULL COMMENT 'The files.fid being referenced in this field.',
`file_display` tinyint(3) unsigned NOT NULL default '1' COMMENT 'Flag to control whether this file should be displayed when viewing content.',
`file_description` text COMMENT 'A description of the file.',
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `file_fid` (`file_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 6 (file)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_file`
--
LOCK TABLES `field_data_file` WRITE;
/*!40000 ALTER TABLE `field_data_file` DISABLE KEYS */;
INSERT INTO `field_data_file` VALUES (11,'image',0,1,1,'und',0,1,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,6,6,'und',0,6,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,11,11,'und',0,11,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,16,16,'und',0,16,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,21,21,'und',0,21,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,26,26,'und',0,26,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,31,31,'und',0,31,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,36,36,'und',0,36,1,NULL);
INSERT INTO `field_data_file` VALUES (11,'image',0,41,41,'und',0,41,1,NULL);
/*!40000 ALTER TABLE `field_data_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_description`
--
DROP TABLE IF EXISTS `field_data_media_description`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_description` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_description_value` longtext,
`media_description_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_description_format` (`media_description_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 96 (media_description)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_description`
--
LOCK TABLES `field_data_media_description` WRITE;
/*!40000 ALTER TABLE `field_data_media_description` DISABLE KEYS */;
INSERT INTO `field_data_media_description` VALUES (11,'image',0,11,11,'und',0,'This sample image is demonstrating the Gallery feature.',NULL);
INSERT INTO `field_data_media_description` VALUES (11,'image',0,16,16,'und',0,'This sample image is demonstrating the Gallery feature.',NULL);
/*!40000 ALTER TABLE `field_data_media_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_allow_download`
--
DROP TABLE IF EXISTS `field_data_media_gallery_allow_download`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_allow_download` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_allow_download_value` int(11) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_allow_download_value` (`media_gallery_allow_download_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 66 (media_gallery_allow_download)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_allow_download`
--
LOCK TABLES `field_data_media_gallery_allow_download` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_allow_download` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_allow_download` VALUES (1,'media_gallery',0,46,46,'und',0,1);
/*!40000 ALTER TABLE `field_data_media_gallery_allow_download` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_block_columns`
--
DROP TABLE IF EXISTS `field_data_media_gallery_block_columns`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_block_columns` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_block_columns_value` float default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_block_columns_value` (`media_gallery_block_columns_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 76 (media_gallery_block_columns)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_block_columns`
--
LOCK TABLES `field_data_media_gallery_block_columns` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_block_columns` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_block_columns` VALUES (1,'media_gallery',0,46,46,'und',0,2);
/*!40000 ALTER TABLE `field_data_media_gallery_block_columns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_block_rows`
--
DROP TABLE IF EXISTS `field_data_media_gallery_block_rows`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_block_rows` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_block_rows_value` int(11) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 81 (media_gallery_block_rows)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_block_rows`
--
LOCK TABLES `field_data_media_gallery_block_rows` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_block_rows` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_block_rows` VALUES (1,'media_gallery',0,46,46,'und',0,3);
/*!40000 ALTER TABLE `field_data_media_gallery_block_rows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_collection`
--
DROP TABLE IF EXISTS `field_data_media_gallery_collection`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_collection` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_collection_tid` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_collection_tid` (`media_gallery_collection_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 86 (media_gallery_collection)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_collection`
--
LOCK TABLES `field_data_media_gallery_collection` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_collection` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_collection` VALUES (1,'media_gallery',0,46,46,'und',0,16);
/*!40000 ALTER TABLE `field_data_media_gallery_collection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_columns`
--
DROP TABLE IF EXISTS `field_data_media_gallery_columns`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_columns` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_columns_value` float default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_columns_value` (`media_gallery_columns_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 46 (media_gallery_columns)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_columns`
--
LOCK TABLES `field_data_media_gallery_columns` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_columns` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_columns` VALUES (1,'media_gallery',0,46,46,'und',0,4);
INSERT INTO `field_data_media_gallery_columns` VALUES (16,'gallery_collections',0,16,16,'und',0,4);
/*!40000 ALTER TABLE `field_data_media_gallery_columns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_description`
--
DROP TABLE IF EXISTS `field_data_media_gallery_description`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_description` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_description_value` longtext,
`media_gallery_description_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_description_format` (`media_gallery_description_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 36 (media_gallery_description)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_description`
--
LOCK TABLES `field_data_media_gallery_description` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_description` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_description` VALUES (1,'media_gallery',0,46,46,'und',0,'This is a sample description of the gallery.',16);
/*!40000 ALTER TABLE `field_data_media_gallery_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_expose_block`
--
DROP TABLE IF EXISTS `field_data_media_gallery_expose_block`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_expose_block` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_expose_block_value` int(11) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_expose_block_value` (`media_gallery_expose_block_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 71 (media_gallery_expose_block)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_expose_block`
--
LOCK TABLES `field_data_media_gallery_expose_block` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_expose_block` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_expose_block` VALUES (1,'media_gallery',0,46,46,'und',0,1);
/*!40000 ALTER TABLE `field_data_media_gallery_expose_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_format`
--
DROP TABLE IF EXISTS `field_data_media_gallery_format`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_format` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_format_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_format_value` (`media_gallery_format_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 41 (media_gallery_format)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_format`
--
LOCK TABLES `field_data_media_gallery_format` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_format` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_format` VALUES (1,'media_gallery',0,46,46,'und',0,'lightbox');
/*!40000 ALTER TABLE `field_data_media_gallery_format` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_gallery_info`
--
DROP TABLE IF EXISTS `field_data_media_gallery_gallery_info`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_gallery_info` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_gallery_info_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_gallery_info_value` (`media_gallery_gallery_info_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 91 (media_gallery_gallery_info)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_gallery_info`
--
LOCK TABLES `field_data_media_gallery_gallery_info` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_gallery_info` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_gallery_info` VALUES (16,'gallery_collections',0,16,16,'und',0,'title_num');
/*!40000 ALTER TABLE `field_data_media_gallery_gallery_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_image_info`
--
DROP TABLE IF EXISTS `field_data_media_gallery_image_info`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_image_info` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_image_info_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_image_info_value` (`media_gallery_image_info_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 61 (media_gallery_image_info)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_image_info`
--
LOCK TABLES `field_data_media_gallery_image_info` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_image_info` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_image_info` VALUES (1,'media_gallery',0,46,46,'und',0,'title');
/*!40000 ALTER TABLE `field_data_media_gallery_image_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_image_info_where`
--
DROP TABLE IF EXISTS `field_data_media_gallery_image_info_where`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_image_info_where` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_image_info_where_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_image_info_where_value` (`media_gallery_image_info_where_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 56 (media_gallery_image_info_where)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_image_info_where`
--
LOCK TABLES `field_data_media_gallery_image_info_where` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_image_info_where` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_image_info_where` VALUES (1,'media_gallery',0,46,46,'und',0,'hover');
INSERT INTO `field_data_media_gallery_image_info_where` VALUES (16,'gallery_collections',0,16,16,'und',0,'hover');
/*!40000 ALTER TABLE `field_data_media_gallery_image_info_where` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_media`
--
DROP TABLE IF EXISTS `field_data_media_gallery_media`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_media` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_media_fid` int(10) unsigned default NULL,
`media_gallery_media_title` varchar(255) default NULL,
`media_gallery_media_data` longtext,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_media_fid` (`media_gallery_media_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 31 (media_gallery_media)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_media`
--
LOCK TABLES `field_data_media_gallery_media` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_media` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_media` VALUES (1,'media_gallery',0,46,46,'und',0,11,NULL,NULL);
INSERT INTO `field_data_media_gallery_media` VALUES (1,'media_gallery',0,46,46,'und',1,16,NULL,NULL);
/*!40000 ALTER TABLE `field_data_media_gallery_media` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_gallery_rows`
--
DROP TABLE IF EXISTS `field_data_media_gallery_rows`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_gallery_rows` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_rows_value` int(11) default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 51 (media_gallery_rows)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_gallery_rows`
--
LOCK TABLES `field_data_media_gallery_rows` WRITE;
/*!40000 ALTER TABLE `field_data_media_gallery_rows` DISABLE KEYS */;
INSERT INTO `field_data_media_gallery_rows` VALUES (1,'media_gallery',0,46,46,'und',0,3);
INSERT INTO `field_data_media_gallery_rows` VALUES (16,'gallery_collections',0,16,16,'und',0,3);
/*!40000 ALTER TABLE `field_data_media_gallery_rows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_media_title`
--
DROP TABLE IF EXISTS `field_data_media_title`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_media_title` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_title_value` varchar(255) default NULL,
`media_title_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_title_format` (`media_title_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 101 (media_title)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_media_title`
--
LOCK TABLES `field_data_media_title` WRITE;
/*!40000 ALTER TABLE `field_data_media_title` DISABLE KEYS */;
INSERT INTO `field_data_media_title` VALUES (11,'image',0,11,11,'und',0,'Sample image 1',NULL);
INSERT INTO `field_data_media_title` VALUES (11,'image',0,16,16,'und',0,'Sample image 2',NULL);
/*!40000 ALTER TABLE `field_data_media_title` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_data_taxonomy_forums`
--
DROP TABLE IF EXISTS `field_data_taxonomy_forums`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_data_taxonomy_forums` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned default NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`taxonomy_forums_tid` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`entity_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `taxonomy_forums_tid` (`taxonomy_forums_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 26 (taxonomy_forums)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_data_taxonomy_forums`
--
LOCK TABLES `field_data_taxonomy_forums` WRITE;
/*!40000 ALTER TABLE `field_data_taxonomy_forums` DISABLE KEYS */;
INSERT INTO `field_data_taxonomy_forums` VALUES (1,'forum',0,16,16,'und',0,6);
INSERT INTO `field_data_taxonomy_forums` VALUES (1,'forum',0,21,21,'und',0,11);
/*!40000 ALTER TABLE `field_data_taxonomy_forums` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_body`
--
DROP TABLE IF EXISTS `field_revision_body`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_body` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`body_value` longtext,
`body_summary` longtext,
`body_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `body_format` (`body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 11 (body)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_body`
--
LOCK TABLES `field_revision_body` WRITE;
/*!40000 ALTER TABLE `field_revision_body` DISABLE KEYS */;
INSERT INTO `field_revision_body` VALUES (1,'page',0,1,1,'und',0,'To change this embedded map, <a href=\"http://maps.google.com/maps?q=map+Hilda+Ramstraat+39+2600+Berchem+Belgium&oe=utf-8&ie=UTF8&hq=&hnear=Hilda+Ramstraat+39,+Berchem+2600+Antwerp,+Flemish+Region,+Belgium&gl=us&ei=1XfHS4O5LsGBlAeQwLzFAQ&ved=0CAoQ8gEwAA&ll=51.188752,4.421507&spn=0.002122,0.005423&t=h&z=18&source=embed\">view it on Google Maps</a>, select \"Link\" at the top, and follow the provided instructions. Then edit this page and paste the HTML in place of the existing code.\n\n<iframe width=\"100%\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?q=map+Hilda+Ramstraat+39+2600+Berchem+Belgium&oe=utf-8&ie=UTF8&hq=&hnear=Hilda+Ramstraat+39,+Berchem+2600+Antwerp,+Flemish+Region,+Belgium&gl=us&ei=1XfHS4O5LsGBlAeQwLzFAQ&ved=0CAoQ8gEwAA&ll=51.188752,4.421507&spn=0.002122,0.005423&t=h&z=18&output=embed\"></iframe><br /><small><a href=\"http://maps.google.com/maps?q=map+Hilda+Ramstraat+39+2600+Berchem+Belgium&oe=utf-8&ie=UTF8&hq=&hnear=Hilda+Ramstraat+39,+Berchem+2600+Antwerp,+Flemish+Region,+Belgium&gl=us&ei=1XfHS4O5LsGBlAeQwLzFAQ&ved=0CAoQ8gEwAA&ll=51.188752,4.421507&spn=0.002122,0.005423&t=h&z=18&source=embed\">View Larger Map</a></small>\n\n<h2>Office address</h2>\n\nHilda Ramstraat 39\n2600 Berchem\nBelgium\n\n<a href=\"/contact\">Contact us</a>','',11);
INSERT INTO `field_revision_body` VALUES (1,'blog',0,6,6,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi luctus pharetra velit ut tincidunt. Phasellus pellentesque diam ullamcorper nunc bibendum sed aliquam odio tempus. Ut eget magna vitae nibh lobortis rhoncus. Cras blandit convallis erat, vel mollis massa porttitor a. Duis nisi diam, elementum in porta sit amet, hendrerit et nisl.','',16);
INSERT INTO `field_revision_body` VALUES (1,'blog',0,11,11,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi luctus pharetra velit ut tincidunt. Phasellus pellentesque diam ullamcorper nunc bibendum sed aliquam odio tempus. Ut eget magna vitae nibh lobortis rhoncus. Cras blandit convallis erat, vel mollis massa porttitor a. Duis nisi diam, elementum in porta sit amet, hendrerit et nisl.','',16);
INSERT INTO `field_revision_body` VALUES (1,'forum',0,16,16,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus arcu nisi, eleifend vel luctus id, imperdiet auctor nisi. Aliquam tempus odio et mauris pharetra scelerisque. Integer pretium, urna non viverra gravida, nisi tellus pellentesque lectus, vel tempus est odio eget dui. Duis eu ligula est. Phasellus ac odio sed felis aliquet placerat. Phasellus tincidunt cursus euismod. Aliquam dignissim est eu augue interdum tempor. Aliquam bibendum venenatis imperdiet.\n\nCurabitur eleifend ullamcorper mattis. Duis condimentum euismod tellus quis accumsan. Vestibulum consectetur erat id justo blandit vel eleifend augue suscipit. Integer interdum purus augue. Mauris at arcu non dui auctor cursus. In metus nulla, bibendum quis fringilla a, lobortis sed risus. Aliquam erat volutpat. Praesent tempor euismod consequat. Etiam porta ipsum nec nibh tristique ut dictum dui aliquam. Vivamus ac dolor urna, in luctus mi.','',16);
INSERT INTO `field_revision_body` VALUES (1,'forum',0,21,21,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus arcu nisi, eleifend vel luctus id, imperdiet auctor nisi. Aliquam tempus odio et mauris pharetra scelerisque. Integer pretium, urna non viverra gravida, nisi tellus pellentesque lectus, vel tempus est odio eget dui. Duis eu ligula est. Phasellus ac odio sed felis aliquet placerat. Phasellus tincidunt cursus euismod. Aliquam dignissim est eu augue interdum tempor. Aliquam bibendum venenatis imperdiet.\n\nCurabitur eleifend ullamcorper mattis. Duis condimentum euismod tellus quis accumsan. Vestibulum consectetur erat id justo blandit vel eleifend augue suscipit. Integer interdum purus augue. Mauris at arcu non dui auctor cursus. In metus nulla, bibendum quis fringilla a, lobortis sed risus. Aliquam erat volutpat. Praesent tempor euismod consequat. Etiam porta ipsum nec nibh tristique ut dictum dui aliquam. Vivamus ac dolor urna, in luctus mi.','',16);
INSERT INTO `field_revision_body` VALUES (1,'article',0,26,26,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent id ligula neque, vel fringilla orci. Aenean orci neque, elementum in consequat vitae, vestibulum interdum dolor. Proin ac nisi nec mauris pretium pharetra sit amet in neque. Donec eu metus quis dolor dapibus ultricies. Mauris pharetra, metus ac tempor condimentum, neque nunc ultricies magna, sit amet posuere massa enim vitae quam.','',16);
INSERT INTO `field_revision_body` VALUES (1,'article',0,31,31,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent id ligula neque, vel fringilla orci. Aenean orci neque, elementum in consequat vitae, vestibulum interdum dolor. Proin ac nisi nec mauris pretium pharetra sit amet in neque. Donec eu metus quis dolor dapibus ultricies. Mauris pharetra, metus ac tempor condimentum, neque nunc ultricies magna, sit amet posuere massa enim vitae quam.','',16);
INSERT INTO `field_revision_body` VALUES (1,'faq_item',0,36,36,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla dolor, sagittis eu faucibus et, pharetra sed orci. Fusce ullamcorper convallis odio non aliquam. Duis ullamcorper pharetra nulla, vel eleifend dui fringilla eu. Maecenas ornare nibh lacinia purus pharetra faucibus. Mauris eget turpis at arcu pharetra mollis. Aenean sodales neque sed elit ultricies laoreet. Aliquam luctus neque ac urna ullamcorper lacinia. Nunc sapien purus, tempus vel pretium ut, tempus vitae odio. Curabitur ut scelerisque risus. Praesent sodales pharetra augue vel lobortis. Cras quis orci sit amet urna tristique rhoncus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In volutpat faucibus mi, in elementum ipsum imperdiet non. Vestibulum aliquet volutpat mauris, nec porttitor libero fringilla a. Nulla et libero sit amet massa eleifend tempus et a erat.','',16);
INSERT INTO `field_revision_body` VALUES (1,'faq_item',0,41,41,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla dolor, sagittis eu faucibus et, pharetra sed orci. Fusce ullamcorper convallis odio non aliquam. Duis ullamcorper pharetra nulla, vel eleifend dui fringilla eu. Maecenas ornare nibh lacinia purus pharetra faucibus. Mauris eget turpis at arcu pharetra mollis. Aenean sodales neque sed elit ultricies laoreet. Aliquam luctus neque ac urna ullamcorper lacinia. Nunc sapien purus, tempus vel pretium ut, tempus vitae odio. Curabitur ut scelerisque risus. Praesent sodales pharetra augue vel lobortis. Cras quis orci sit amet urna tristique rhoncus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In volutpat faucibus mi, in elementum ipsum imperdiet non. Vestibulum aliquet volutpat mauris, nec porttitor libero fringilla a. Nulla et libero sit amet massa eleifend tempus et a erat.','',16);
INSERT INTO `field_revision_body` VALUES (1,'page',0,51,51,'und',0,'<strong>Feature 1</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum ac dui arcu. Curabitur sodales mauris vel ipsum tempor interdum. Morbi a magna id risus malesuada accumsan. Proin quis consectetur tellus. Aliquam erat volutpat. Donec vel neque et nisl eleifend suscipit.\n\n<strong>Feature 2</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eget lectus urna, sit amet elementum turpis. Sed sed orci neque. Nunc fermentum nunc quis tellus varius in tempor risus lobortis. Suspendisse est velit, aliquet ac consequat sed, sagittis in nulla.\n\n<strong>Feature 3</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ultrices, urna vel ultricies auctor, mi ligula gravida dolor, quis iaculis mauris velit in diam. Curabitur ultricies mollis congue. Nulla leo neque, tempus vitae egestas vel, pretium eu mi. Suspendisse adipiscing luctus velit.\n\n<strong>Feature 4</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc imperdiet nunc non mi hendrerit pharetra. In rhoncus metus eu nunc consequat at egestas elit commodo. Proin augue quam, tincidunt et accumsan a, mattis ac est. Aliquam erat volutpat. Donec rutrum volutpat posuere.\n\n<strong>Feature 5</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam blandit aliquet metus vitae ultrices. Ut nec arcu vitae tortor lacinia malesuada. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse semper placerat elit eget egestas.\n\n<strong>Feature 6</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut enim nibh, interdum quis iaculis in, consectetur ac ipsum. Aenean sit amet erat risus, sed adipiscing est. Nunc nec est et nisl tincidunt fermentum. Nulla eget erat ut enim mollis dignissim. Curabitur non risus ipsum, non egestas massa.','',16);
INSERT INTO `field_revision_body` VALUES (1,'testimonial',0,56,56,'und',0,'I love my Drupal Gardens! It\'s so easy to build awesome sites.','',16);
INSERT INTO `field_revision_body` VALUES (1,'testimonial',0,61,61,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed a aliquet erat. Aliquam erat volutpat. Aenean varius, est nec egestas convallis, ipsum magna vulputate nibh, eu facilisis turpis turpis a elit. Morbi rhoncus facilisis urna, quis adipiscing tortor semper accumsan.','',16);
INSERT INTO `field_revision_body` VALUES (1,'testimonial',0,66,66,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas egestas ligula non lacus sagittis ac facilisis eros ullamcorper. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In commodo arcu a tellus interdum bibendum.','',16);
/*!40000 ALTER TABLE `field_revision_body` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_comment_body`
--
DROP TABLE IF EXISTS `field_revision_comment_body`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_comment_body` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`comment_body_value` longtext,
`comment_body_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `comment_body_format` (`comment_body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 1 (comment_body)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_comment_body`
--
LOCK TABLES `field_revision_comment_body` WRITE;
/*!40000 ALTER TABLE `field_revision_comment_body` DISABLE KEYS */;
INSERT INTO `field_revision_comment_body` VALUES (6,'comment_node_blog',0,1,1,'und',0,'This is a sample comment to demonstrate how comments will appear on your site.',6);
INSERT INTO `field_revision_comment_body` VALUES (6,'comment_node_forum',0,6,6,'und',0,'This is a sample comment to demonstrate how comments will appear on your site\'s forums.',6);
INSERT INTO `field_revision_comment_body` VALUES (6,'comment_node_forum',0,11,11,'und',0,'This is a sample comment to demonstrate how comments will appear on your site\'s forums.',6);
/*!40000 ALTER TABLE `field_revision_comment_body` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_field_image`
--
DROP TABLE IF EXISTS `field_revision_field_image`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_field_image` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_image_fid` int(10) unsigned default NULL COMMENT 'The files.fid being referenced in this field.',
`field_image_alt` varchar(128) default NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
`field_image_title` varchar(128) default NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_image_fid` (`field_image_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 21 (field_image)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_field_image`
--
LOCK TABLES `field_revision_field_image` WRITE;
/*!40000 ALTER TABLE `field_revision_field_image` DISABLE KEYS */;
INSERT INTO `field_revision_field_image` VALUES (1,'customer',0,71,71,'und',0,21,'Example customer 1','Example customer 1');
INSERT INTO `field_revision_field_image` VALUES (1,'customer',0,76,76,'und',0,26,'Example customer 2','Example customer 2');
/*!40000 ALTER TABLE `field_revision_field_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_field_license`
--
DROP TABLE IF EXISTS `field_revision_field_license`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_field_license` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_license_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_license_value` (`field_license_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 106 (field_license)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_field_license`
--
LOCK TABLES `field_revision_field_license` WRITE;
/*!40000 ALTER TABLE `field_revision_field_license` DISABLE KEYS */;
INSERT INTO `field_revision_field_license` VALUES (16,'gallery_collections',0,16,16,'und',0,'nothing');
/*!40000 ALTER TABLE `field_revision_field_license` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_field_tags`
--
DROP TABLE IF EXISTS `field_revision_field_tags`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_field_tags` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_tags_tid` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_tags_tid` (`field_tags_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 16 (field_tags)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_field_tags`
--
LOCK TABLES `field_revision_field_tags` WRITE;
/*!40000 ALTER TABLE `field_revision_field_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `field_revision_field_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_field_testimonial_affiliation`
--
DROP TABLE IF EXISTS `field_revision_field_testimonial_affiliation`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_field_testimonial_affiliation` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_testimonial_affiliation_value` varchar(255) default NULL,
`field_testimonial_affiliation_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_testimonial_affiliation_format` (`field_testimonial_affiliation_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 116 (field_testimonial...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_field_testimonial_affiliation`
--
LOCK TABLES `field_revision_field_testimonial_affiliation` WRITE;
/*!40000 ALTER TABLE `field_revision_field_testimonial_affiliation` DISABLE KEYS */;
INSERT INTO `field_revision_field_testimonial_affiliation` VALUES (1,'testimonial',0,56,56,'und',0,'Company',NULL);
INSERT INTO `field_revision_field_testimonial_affiliation` VALUES (1,'testimonial',0,61,61,'und',0,'Company',NULL);
INSERT INTO `field_revision_field_testimonial_affiliation` VALUES (1,'testimonial',0,66,66,'und',0,'Company',NULL);
/*!40000 ALTER TABLE `field_revision_field_testimonial_affiliation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_field_testimonial_author`
--
DROP TABLE IF EXISTS `field_revision_field_testimonial_author`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_field_testimonial_author` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_testimonial_author_value` varchar(255) default NULL,
`field_testimonial_author_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_testimonial_author_format` (`field_testimonial_author_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 111 (field_testimonial...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_field_testimonial_author`
--
LOCK TABLES `field_revision_field_testimonial_author` WRITE;
/*!40000 ALTER TABLE `field_revision_field_testimonial_author` DISABLE KEYS */;
INSERT INTO `field_revision_field_testimonial_author` VALUES (1,'testimonial',0,56,56,'und',0,'Anonymous',NULL);
INSERT INTO `field_revision_field_testimonial_author` VALUES (1,'testimonial',0,61,61,'und',0,'Anonymous',NULL);
INSERT INTO `field_revision_field_testimonial_author` VALUES (1,'testimonial',0,66,66,'und',0,'Anonymous',NULL);
/*!40000 ALTER TABLE `field_revision_field_testimonial_author` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_file`
--
DROP TABLE IF EXISTS `field_revision_file`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_file` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`file_fid` int(10) unsigned default NULL COMMENT 'The files.fid being referenced in this field.',
`file_display` tinyint(3) unsigned NOT NULL default '1' COMMENT 'Flag to control whether this file should be displayed when viewing content.',
`file_description` text COMMENT 'A description of the file.',
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `file_fid` (`file_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 6 (file)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_file`
--
LOCK TABLES `field_revision_file` WRITE;
/*!40000 ALTER TABLE `field_revision_file` DISABLE KEYS */;
INSERT INTO `field_revision_file` VALUES (11,'image',0,1,1,'und',0,1,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,6,6,'und',0,6,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,11,11,'und',0,11,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,16,16,'und',0,16,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,21,21,'und',0,21,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,26,26,'und',0,26,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,31,31,'und',0,31,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,36,36,'und',0,36,1,NULL);
INSERT INTO `field_revision_file` VALUES (11,'image',0,41,41,'und',0,41,1,NULL);
/*!40000 ALTER TABLE `field_revision_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_description`
--
DROP TABLE IF EXISTS `field_revision_media_description`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_description` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_description_value` longtext,
`media_description_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_description_format` (`media_description_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 96 (media_description)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_description`
--
LOCK TABLES `field_revision_media_description` WRITE;
/*!40000 ALTER TABLE `field_revision_media_description` DISABLE KEYS */;
INSERT INTO `field_revision_media_description` VALUES (11,'image',0,11,11,'und',0,'This sample image is demonstrating the Gallery feature.',NULL);
INSERT INTO `field_revision_media_description` VALUES (11,'image',0,16,16,'und',0,'This sample image is demonstrating the Gallery feature.',NULL);
/*!40000 ALTER TABLE `field_revision_media_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_allow_download`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_allow_download`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_allow_download` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_allow_download_value` int(11) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_allow_download_value` (`media_gallery_allow_download_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 66 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_allow_download`
--
LOCK TABLES `field_revision_media_gallery_allow_download` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_allow_download` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_allow_download` VALUES (1,'media_gallery',0,46,46,'und',0,1);
/*!40000 ALTER TABLE `field_revision_media_gallery_allow_download` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_block_columns`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_block_columns`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_block_columns` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_block_columns_value` float default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_block_columns_value` (`media_gallery_block_columns_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 76 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_block_columns`
--
LOCK TABLES `field_revision_media_gallery_block_columns` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_block_columns` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_block_columns` VALUES (1,'media_gallery',0,46,46,'und',0,2);
/*!40000 ALTER TABLE `field_revision_media_gallery_block_columns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_block_rows`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_block_rows`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_block_rows` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_block_rows_value` int(11) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 81 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_block_rows`
--
LOCK TABLES `field_revision_media_gallery_block_rows` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_block_rows` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_block_rows` VALUES (1,'media_gallery',0,46,46,'und',0,3);
/*!40000 ALTER TABLE `field_revision_media_gallery_block_rows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_collection`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_collection`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_collection` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_collection_tid` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_collection_tid` (`media_gallery_collection_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 86 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_collection`
--
LOCK TABLES `field_revision_media_gallery_collection` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_collection` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_collection` VALUES (1,'media_gallery',0,46,46,'und',0,16);
/*!40000 ALTER TABLE `field_revision_media_gallery_collection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_columns`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_columns`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_columns` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_columns_value` float default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_columns_value` (`media_gallery_columns_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 46 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_columns`
--
LOCK TABLES `field_revision_media_gallery_columns` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_columns` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_columns` VALUES (1,'media_gallery',0,46,46,'und',0,4);
INSERT INTO `field_revision_media_gallery_columns` VALUES (16,'gallery_collections',0,16,16,'und',0,4);
/*!40000 ALTER TABLE `field_revision_media_gallery_columns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_description`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_description`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_description` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_description_value` longtext,
`media_gallery_description_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_description_format` (`media_gallery_description_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 36 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_description`
--
LOCK TABLES `field_revision_media_gallery_description` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_description` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_description` VALUES (1,'media_gallery',0,46,46,'und',0,'This is a sample description of the gallery.',16);
/*!40000 ALTER TABLE `field_revision_media_gallery_description` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_expose_block`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_expose_block`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_expose_block` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_expose_block_value` int(11) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_expose_block_value` (`media_gallery_expose_block_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 71 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_expose_block`
--
LOCK TABLES `field_revision_media_gallery_expose_block` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_expose_block` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_expose_block` VALUES (1,'media_gallery',0,46,46,'und',0,1);
/*!40000 ALTER TABLE `field_revision_media_gallery_expose_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_format`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_format`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_format` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_format_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_format_value` (`media_gallery_format_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 41 (media_gallery_format)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_format`
--
LOCK TABLES `field_revision_media_gallery_format` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_format` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_format` VALUES (1,'media_gallery',0,46,46,'und',0,'lightbox');
/*!40000 ALTER TABLE `field_revision_media_gallery_format` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_gallery_info`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_gallery_info`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_gallery_info` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_gallery_info_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_gallery_info_value` (`media_gallery_gallery_info_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 91 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_gallery_info`
--
LOCK TABLES `field_revision_media_gallery_gallery_info` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_gallery_info` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_gallery_info` VALUES (16,'gallery_collections',0,16,16,'und',0,'title_num');
/*!40000 ALTER TABLE `field_revision_media_gallery_gallery_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_image_info`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_image_info`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_image_info` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_image_info_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_image_info_value` (`media_gallery_image_info_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 61 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_image_info`
--
LOCK TABLES `field_revision_media_gallery_image_info` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_image_info` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_image_info` VALUES (1,'media_gallery',0,46,46,'und',0,'title');
/*!40000 ALTER TABLE `field_revision_media_gallery_image_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_image_info_where`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_image_info_where`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_image_info_where` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_image_info_where_value` varchar(255) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_image_info_where_value` (`media_gallery_image_info_where_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 56 (media_gallery...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_image_info_where`
--
LOCK TABLES `field_revision_media_gallery_image_info_where` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_image_info_where` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_image_info_where` VALUES (1,'media_gallery',0,46,46,'und',0,'hover');
INSERT INTO `field_revision_media_gallery_image_info_where` VALUES (16,'gallery_collections',0,16,16,'und',0,'hover');
/*!40000 ALTER TABLE `field_revision_media_gallery_image_info_where` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_media`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_media`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_media` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_media_fid` int(10) unsigned default NULL,
`media_gallery_media_title` varchar(255) default NULL,
`media_gallery_media_data` longtext,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_gallery_media_fid` (`media_gallery_media_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 31 (media_gallery_media)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_media`
--
LOCK TABLES `field_revision_media_gallery_media` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_media` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_media` VALUES (1,'media_gallery',0,46,46,'und',0,11,NULL,NULL);
INSERT INTO `field_revision_media_gallery_media` VALUES (1,'media_gallery',0,46,46,'und',1,16,NULL,NULL);
/*!40000 ALTER TABLE `field_revision_media_gallery_media` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_gallery_rows`
--
DROP TABLE IF EXISTS `field_revision_media_gallery_rows`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_gallery_rows` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_gallery_rows_value` int(11) default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 51 (media_gallery_rows)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_gallery_rows`
--
LOCK TABLES `field_revision_media_gallery_rows` WRITE;
/*!40000 ALTER TABLE `field_revision_media_gallery_rows` DISABLE KEYS */;
INSERT INTO `field_revision_media_gallery_rows` VALUES (1,'media_gallery',0,46,46,'und',0,3);
INSERT INTO `field_revision_media_gallery_rows` VALUES (16,'gallery_collections',0,16,16,'und',0,3);
/*!40000 ALTER TABLE `field_revision_media_gallery_rows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_media_title`
--
DROP TABLE IF EXISTS `field_revision_media_title`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_media_title` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`media_title_value` varchar(255) default NULL,
`media_title_format` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `media_title_format` (`media_title_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 101 (media_title)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_media_title`
--
LOCK TABLES `field_revision_media_title` WRITE;
/*!40000 ALTER TABLE `field_revision_media_title` DISABLE KEYS */;
INSERT INTO `field_revision_media_title` VALUES (11,'image',0,11,11,'und',0,'Sample image 1',NULL);
INSERT INTO `field_revision_media_title` VALUES (11,'image',0,16,16,'und',0,'Sample image 2',NULL);
/*!40000 ALTER TABLE `field_revision_media_title` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `field_revision_taxonomy_forums`
--
DROP TABLE IF EXISTS `field_revision_taxonomy_forums`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `field_revision_taxonomy_forums` (
`etid` int(10) unsigned NOT NULL COMMENT 'The entity type id this data is attached to',
`bundle` varchar(128) NOT NULL default '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL default '0' COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL default '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`taxonomy_forums_tid` int(10) unsigned default NULL,
PRIMARY KEY (`etid`,`revision_id`,`deleted`,`delta`,`language`),
KEY `etid` (`etid`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `taxonomy_forums_tid` (`taxonomy_forums_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 26 (taxonomy_forums)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `field_revision_taxonomy_forums`
--
LOCK TABLES `field_revision_taxonomy_forums` WRITE;
/*!40000 ALTER TABLE `field_revision_taxonomy_forums` DISABLE KEYS */;
INSERT INTO `field_revision_taxonomy_forums` VALUES (1,'forum',0,16,16,'und',0,6);
INSERT INTO `field_revision_taxonomy_forums` VALUES (1,'forum',0,21,21,'und',0,11);
/*!40000 ALTER TABLE `field_revision_taxonomy_forums` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `file_effects`
--
DROP TABLE IF EXISTS `file_effects`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `file_effects` (
`meid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for an file effect.',
`msid` int(10) unsigned NOT NULL default '0' COMMENT 'The file_styles.isid for a file style.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of the effect in the style.',
`name` varchar(255) NOT NULL COMMENT 'The unique name of the effect to be executed.',
`data` longtext NOT NULL COMMENT 'The configuration data for the effect.',
PRIMARY KEY (`meid`),
KEY `msid` (`msid`),
KEY `weight` (`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for file effects.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `file_effects`
--
LOCK TABLES `file_effects` WRITE;
/*!40000 ALTER TABLE `file_effects` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_effects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `file_managed`
--
DROP TABLE IF EXISTS `file_managed`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `file_managed` (
`fid` int(10) unsigned NOT NULL auto_increment COMMENT 'File ID.',
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'The users.uid of the user who is associated with the file.',
`filename` varchar(255) NOT NULL default '' COMMENT 'Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.',
`uri` varchar(255) NOT NULL default '' COMMENT 'Path of the file relative to Drupal root.',
`filemime` varchar(255) NOT NULL default '' COMMENT 'The file’s MIME type.',
`filesize` int(10) unsigned NOT NULL default '0' COMMENT 'The size of the file in bytes.',
`status` tinyint(4) NOT NULL default '0' COMMENT 'A field indicating the status of the file. Two status are defined in core: temporary (0) and permanent (1). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.',
`timestamp` int(10) unsigned NOT NULL default '0' COMMENT 'UNIX timestamp for when the file was added.',
`type` varchar(50) default NULL COMMENT 'Type of file for use in Media Bundles',
PRIMARY KEY (`fid`),
UNIQUE KEY `uri` (`uri`),
KEY `uid` (`uid`),
KEY `status` (`status`),
KEY `timestamp` (`timestamp`),
KEY `file_type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `file_managed`
--
LOCK TABLES `file_managed` WRITE;
/*!40000 ALTER TABLE `file_managed` DISABLE KEYS */;
INSERT INTO `file_managed` VALUES (1,0,'sample-banner.png','public://sample-banner.png','image/png',9043,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (6,0,'sample-banner-2.png','public://sample-banner-2.png','image/png',13990,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (11,0,'gallery_sample_01.png','public://gallery_sample_01.png','image/png',31820,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (16,0,'gallery_sample_02.png','public://gallery_sample_02.png','image/png',41145,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (21,0,'customer-sample-DrupalGardens.png','public://field/image/customer-sample-DrupalGardens.png','image/png',62218,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (26,0,'customer-sample-acquia.png','public://field/image/customer-sample-acquia.png','image/png',71457,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (31,0,'lightbulb.png','public://lightbulb.png','image/png',1835,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (36,0,'compass.png','public://compass.png','image/png',3816,1,1282630544,'image');
INSERT INTO `file_managed` VALUES (41,0,'star.png','public://star.png','image/png',1432,1,1282630544,'image');
/*!40000 ALTER TABLE `file_managed` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `file_styles`
--
DROP TABLE IF EXISTS `file_styles`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `file_styles` (
`msid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a file style.',
`name` varchar(255) NOT NULL COMMENT 'The style name.',
PRIMARY KEY (`msid`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for file styles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `file_styles`
--
LOCK TABLES `file_styles` WRITE;
/*!40000 ALTER TABLE `file_styles` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `filter`
--
DROP TABLE IF EXISTS `filter`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `filter` (
`format` int(11) NOT NULL default '0' COMMENT 'Foreign key: The filter_format.format to which this filter is assigned.',
`module` varchar(64) NOT NULL default '' COMMENT 'The origin module of the filter.',
`name` varchar(32) NOT NULL default '' COMMENT 'Name of the filter being referenced.',
`weight` int(11) NOT NULL default '0' COMMENT 'Weight of filter within format.',
`status` int(11) NOT NULL default '0' COMMENT 'Filter enabled status. (1 = enabled, 0 = disabled)',
`settings` longblob COMMENT 'A serialized array of name value pairs that store the filter settings for the specific format.',
PRIMARY KEY (`format`,`name`),
KEY `list` (`weight`,`module`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table that maps filters (HTML corrector) to text formats ...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `filter`
--
LOCK TABLES `filter` WRITE;
/*!40000 ALTER TABLE `filter` DISABLE KEYS */;
INSERT INTO `filter` VALUES (1,'filter','filter_autop',2,1,'a:0:{}');
INSERT INTO `filter` VALUES (1,'filter','filter_html',10,0,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}');
INSERT INTO `filter` VALUES (1,'filter','filter_htmlcorrector',10,0,'a:0:{}');
INSERT INTO `filter` VALUES (1,'filter','filter_html_escape',0,1,'a:0:{}');
INSERT INTO `filter` VALUES (1,'filter','filter_url',1,1,'a:1:{s:17:\"filter_url_length\";i:72;}');
INSERT INTO `filter` VALUES (6,'filter','filter_autop',2,1,'a:0:{}');
INSERT INTO `filter` VALUES (6,'filter','filter_html',1,1,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}');
INSERT INTO `filter` VALUES (6,'filter','filter_htmlcorrector',10,1,'a:0:{}');
INSERT INTO `filter` VALUES (6,'filter','filter_html_escape',10,0,'a:0:{}');
INSERT INTO `filter` VALUES (6,'filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}');
INSERT INTO `filter` VALUES (6,'htmlpurifier','htmlpurifier_basic',10,0,'a:1:{s:17:\"htmlpurifier_help\";b:1;}');
INSERT INTO `filter` VALUES (6,'media','media_filter',10,1,'a:0:{}');
INSERT INTO `filter` VALUES (11,'filter','filter_autop',1,1,'a:0:{}');
INSERT INTO `filter` VALUES (11,'filter','filter_html',10,0,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}');
INSERT INTO `filter` VALUES (11,'filter','filter_htmlcorrector',10,1,'a:0:{}');
INSERT INTO `filter` VALUES (11,'filter','filter_html_escape',10,0,'a:0:{}');
INSERT INTO `filter` VALUES (11,'filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}');
INSERT INTO `filter` VALUES (11,'htmlpurifier','htmlpurifier_basic',10,0,'a:1:{s:17:\"htmlpurifier_help\";b:1;}');
INSERT INTO `filter` VALUES (11,'media','media_filter',10,1,'a:0:{}');
INSERT INTO `filter` VALUES (16,'filter','filter_autop',10,0,'a:0:{}');
INSERT INTO `filter` VALUES (16,'filter','filter_html',10,0,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}');
INSERT INTO `filter` VALUES (16,'filter','filter_htmlcorrector',10,0,'a:0:{}');
INSERT INTO `filter` VALUES (16,'filter','filter_html_escape',10,0,'a:0:{}');
INSERT INTO `filter` VALUES (16,'filter','filter_url',5,1,'a:1:{s:17:\"filter_url_length\";i:72;}');
INSERT INTO `filter` VALUES (16,'htmlpurifier','htmlpurifier_basic',6,1,'a:1:{s:17:\"htmlpurifier_help\";b:1;}');
INSERT INTO `filter` VALUES (16,'media','media_filter',7,1,'a:0:{}');
/*!40000 ALTER TABLE `filter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `filter_format`
--
DROP TABLE IF EXISTS `filter_format`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `filter_format` (
`format` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique ID for format.',
`name` varchar(255) NOT NULL default '' COMMENT 'Name of the text format (Filtered HTML).',
`cache` tinyint(4) NOT NULL default '0' COMMENT 'Flag to indicate whether format is cacheable. (1 = cacheable, 0 = not cacheable)',
`weight` int(11) NOT NULL default '0' COMMENT 'Weight of text format to use when listing.',
PRIMARY KEY (`format`),
UNIQUE KEY `name` (`name`),
KEY `weight` (`weight`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='Stores text formats: custom groupings of filters, such as...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `filter_format`
--
LOCK TABLES `filter_format` WRITE;
/*!40000 ALTER TABLE `filter_format` DISABLE KEYS */;
INSERT INTO `filter_format` VALUES (1,'Plain text',1,-8);
INSERT INTO `filter_format` VALUES (6,'Filtered HTML',1,0);
INSERT INTO `filter_format` VALUES (11,'Full HTML',1,1);
INSERT INTO `filter_format` VALUES (16,'Safe HTML',0,-10);
/*!40000 ALTER TABLE `filter_format` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `flood`
--
DROP TABLE IF EXISTS `flood`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `flood` (
`fid` int(11) NOT NULL auto_increment COMMENT 'Unique flood event ID.',
`event` varchar(64) NOT NULL default '' COMMENT 'Name of event (e.g. contact).',
`identifier` varchar(128) NOT NULL default '' COMMENT 'Identifier of the visitor, such as an IP address or hostname.',
`timestamp` int(11) NOT NULL default '0' COMMENT 'Timestamp of the event.',
`expiration` int(11) NOT NULL default '0' COMMENT 'Expiration timestamp. Expired events are purged on cron run.',
PRIMARY KEY (`fid`),
KEY `allow` (`event`,`identifier`,`timestamp`),
KEY `purge` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Flood controls the threshold of events, such as the...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `flood`
--
LOCK TABLES `flood` WRITE;
/*!40000 ALTER TABLE `flood` DISABLE KEYS */;
/*!40000 ALTER TABLE `flood` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `follow_links`
--
DROP TABLE IF EXISTS `follow_links`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `follow_links` (
`lid` int(10) unsigned NOT NULL auto_increment COMMENT 'Unique identifier for the follow_links.',
`name` varchar(255) NOT NULL default '' COMMENT 'The machine name of the follow_links.',
`uid` int(11) NOT NULL default '0' COMMENT 'User’s users uid. Sitewide follow_links use uid 0',
`path` varchar(255) NOT NULL default '' COMMENT 'The Drupal path or extenal URL the follow_links should point to.',
`options` text COMMENT 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.',
`title` varchar(255) NOT NULL default '' COMMENT 'The human readable name for the link.',
`weight` tinyint(4) NOT NULL default '0' COMMENT 'The weight of this follow_links.',
PRIMARY KEY (`lid`),
UNIQUE KEY `uid_name` (`uid`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Stores sitewide and user follow links.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `follow_links`
--
LOCK TABLES `follow_links` WRITE;
/*!40000 ALTER TABLE `follow_links` DISABLE KEYS */;
INSERT INTO `follow_links` VALUES (1,'this-site',0,'rss.xml','a:0:{}','',0);
INSERT INTO `follow_links` VALUES (6,'facebook',0,'http://www.facebook.com/pages/Drupal-Gardens/187669600960','a:2:{s:5:\"query\";a:0:{}s:8:\"fragment\";s:0:\"\";}','',-2);
INSERT INTO `follow_links` VALUES (11,'twitter',0,'http://twitter.com/drupalgardens','a:2:{s:5:\"query\";a:0:{}s:8:\"fragment\";s:0:\"\";}','',-1);
/*!40000 ALTER TABLE `follow_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum`
--
DROP TABLE IF EXISTS `forum`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `forum` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid of the node.',
`vid` int(10) unsigned NOT NULL default '0' COMMENT 'Primary Key: The node.vid of the node.',
`tid` int(10) unsigned NOT NULL default '0' COMMENT 'The taxonomy_term_data.tid of the forum term assigned to the node.',
PRIMARY KEY (`vid`),
KEY `forum_topic` (`nid`,`tid`),
KEY `tid` (`tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the relationship of nodes to forum terms.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `forum`
--
LOCK TABLES `forum` WRITE;
/*!40000 ALTER TABLE `forum` DISABLE KEYS */;
INSERT INTO `forum` VALUES (16,16,6);
INSERT INTO `forum` VALUES (21,21,11);
/*!40000 ALTER TABLE `forum` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum_index`
--
DROP TABLE IF EXISTS `forum_index`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `forum_index` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid this record tracks.',
`title` varchar(255) NOT NULL default '' COMMENT 'The title of this node, always treated as non-markup plain text.',
`tid` int(10) unsigned NOT NULL default '0' COMMENT 'The term ID.',
`sticky` tinyint(4) default '0' COMMENT 'Boolean indicating whether the node is sticky.',
`created` int(10) unsigned NOT NULL default '0' COMMENT 'The Unix timestamp when the node was created.',
`last_comment_timestamp` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp of the last comment that was posted within this node, from comment.timestamp.',
`comment_count` int(10) unsigned NOT NULL default '0' COMMENT 'The total number of comments on this node.',
KEY `forum_topics` (`tid`,`sticky`,`last_comment_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains denormalized information about node/term...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `forum_index`
--
LOCK TABLES `forum_index` WRITE;
/*!40000 ALTER TABLE `forum_index` DISABLE KEYS */;
INSERT INTO `forum_index` VALUES (16,'Sample forum topic for the \"General discussion\" forum',6,0,1282630547,1282630639,1);
INSERT INTO `forum_index` VALUES (21,'Sample forum topic for the \"Suggestions\" forum',11,0,1282630548,1282630639,1);
/*!40000 ALTER TABLE `forum_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `history`
--
DROP TABLE IF EXISTS `history`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `history` (
`uid` int(11) NOT NULL default '0' COMMENT 'The users.uid that read the node nid.',
`nid` int(11) NOT NULL default '0' COMMENT 'The node.nid that was read.',
`timestamp` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp at which the read occurred.',
PRIMARY KEY (`uid`,`nid`),
KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of which users have read which nodes.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `history`
--
LOCK TABLES `history` WRITE;
/*!40000 ALTER TABLE `history` DISABLE KEYS */;
INSERT INTO `history` VALUES (6,36,1282678375);
INSERT INTO `history` VALUES (6,51,1283192204);
/*!40000 ALTER TABLE `history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `image_effects`
--
DROP TABLE IF EXISTS `image_effects`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `image_effects` (
`ieid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for an image effect.',
`isid` int(10) unsigned NOT NULL default '0' COMMENT 'The image_styles.isid for an image style.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of the effect in the style.',
`name` varchar(255) NOT NULL COMMENT 'The unique name of the effect to be executed.',
`data` longblob NOT NULL COMMENT 'The configuration data for the effect.',
PRIMARY KEY (`ieid`),
KEY `isid` (`isid`),
KEY `weight` (`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for image effects.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `image_effects`
--
LOCK TABLES `image_effects` WRITE;
/*!40000 ALTER TABLE `image_effects` DISABLE KEYS */;
/*!40000 ALTER TABLE `image_effects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `image_styles`
--
DROP TABLE IF EXISTS `image_styles`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `image_styles` (
`isid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for an image style.',
`name` varchar(255) NOT NULL COMMENT 'The style name.',
PRIMARY KEY (`isid`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for image styles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `image_styles`
--
LOCK TABLES `image_styles` WRITE;
/*!40000 ALTER TABLE `image_styles` DISABLE KEYS */;
/*!40000 ALTER TABLE `image_styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mailing_list`
--
DROP TABLE IF EXISTS `mailing_list`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `mailing_list` (
`mlid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a mailing list.',
`name` varchar(255) NOT NULL COMMENT 'The title of this mailing list.',
PRIMARY KEY (`mlid`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='A mailing list consisting of names and e-mails.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `mailing_list`
--
LOCK TABLES `mailing_list` WRITE;
/*!40000 ALTER TABLE `mailing_list` DISABLE KEYS */;
INSERT INTO `mailing_list` VALUES (1,'Join our mailing list');
/*!40000 ALTER TABLE `mailing_list` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mailing_list_emails`
--
DROP TABLE IF EXISTS `mailing_list_emails`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `mailing_list_emails` (
`eid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a mailing list e-mail.',
`mlid` int(10) unsigned NOT NULL default '0' COMMENT 'The mailing_list this e-mail belongs to.',
`mail` varchar(255) NOT NULL COMMENT 'The e-mail of this subscriber.',
`name` varchar(255) NOT NULL COMMENT 'The name of this subscriber.',
PRIMARY KEY (`eid`),
UNIQUE KEY `mlid_mail` (`mlid`,`mail`),
KEY `mlid` (`mlid`),
KEY `name` (`name`),
KEY `mail` (`mail`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='An e-mail in a mailing list.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `mailing_list_emails`
--
LOCK TABLES `mailing_list_emails` WRITE;
/*!40000 ALTER TABLE `mailing_list_emails` DISABLE KEYS */;
/*!40000 ALTER TABLE `mailing_list_emails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `media_gallery_weight`
--
DROP TABLE IF EXISTS `media_gallery_weight`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `media_gallery_weight` (
`tid` int(10) unsigned NOT NULL COMMENT 'The taxonomy term id corresponding to a media gallery collection.',
`nid` int(10) unsigned NOT NULL COMMENT 'The node id of the media gallery.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of the media gallery within the collection.',
PRIMARY KEY (`tid`,`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The weight of media galleries within a given collection.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `media_gallery_weight`
--
LOCK TABLES `media_gallery_weight` WRITE;
/*!40000 ALTER TABLE `media_gallery_weight` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_gallery_weight` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `media_list_type`
--
DROP TABLE IF EXISTS `media_list_type`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `media_list_type` (
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'The user.uid of the user.',
`type` varchar(32) NOT NULL default '' COMMENT 'The type of display (table or images).',
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the user preference for whether to list as table...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `media_list_type`
--
LOCK TABLES `media_list_type` WRITE;
/*!40000 ALTER TABLE `media_list_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_list_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `media_type`
--
DROP TABLE IF EXISTS `media_type`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `media_type` (
`name` varchar(255) NOT NULL default '' COMMENT 'The machine name of the media type.',
`label` varchar(255) NOT NULL default '' COMMENT 'The label of the media type.',
`base` tinyint(4) NOT NULL default '0' COMMENT 'If this is a base type (i.e. cannot be deleted)',
`weight` int(11) NOT NULL default '0' COMMENT 'Weight of media type. Determines which one wins when claiming a piece of media (first wins)',
`type_callback` varchar(255) default '' COMMENT 'Callback to determine if provided media is of this type.',
`type_callback_args` longtext COMMENT 'A serialized array of name value pairs that will be passed to the callback function',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the settings for media types.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `media_type`
--
LOCK TABLES `media_type` WRITE;
/*!40000 ALTER TABLE `media_type` DISABLE KEYS */;
INSERT INTO `media_type` VALUES ('audio','Audio',1,0,'media_is_type','a:4:{s:10:\"match_type\";s:3:\"all\";s:9:\"mimetypes\";a:1:{i:0;s:8:\"/^audio/\";}s:10:\"extensions\";a:3:{i:0;s:3:\"mp3\";i:1;s:3:\"ogg\";i:2;s:3:\"wma\";}s:7:\"streams\";a:2:{i:0;s:6:\"public\";i:1;s:7:\"private\";}}');
INSERT INTO `media_type` VALUES ('default','Other',1,1000,'media_is_type','a:2:{s:10:\"match_type\";s:3:\"any\";s:9:\"mimetypes\";a:1:{i:0;s:4:\"/.*/\";}}');
INSERT INTO `media_type` VALUES ('image','Image',1,0,'media_is_type','a:4:{s:10:\"match_type\";s:3:\"all\";s:9:\"mimetypes\";a:1:{i:0;s:8:\"/^image/\";}s:10:\"extensions\";a:5:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"gif\";i:3;s:3:\"png\";i:4;s:4:\"tiff\";}s:7:\"streams\";a:2:{i:0;s:6:\"public\";i:1;s:7:\"private\";}}');
INSERT INTO `media_type` VALUES ('video','Video',1,0,'media_is_type','a:4:{s:10:\"match_type\";s:3:\"all\";s:9:\"mimetypes\";a:1:{i:0;s:8:\"/^video/\";}s:10:\"extensions\";a:3:{i:0;s:3:\"mov\";i:1;s:3:\"mp4\";i:2;s:3:\"avi\";}s:7:\"streams\";a:2:{i:0;s:6:\"public\";i:1;s:7:\"private\";}}');
/*!40000 ALTER TABLE `media_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menu_custom`
--
DROP TABLE IF EXISTS `menu_custom`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `menu_custom` (
`menu_name` varchar(32) NOT NULL default '' COMMENT 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
`title` varchar(255) NOT NULL default '' COMMENT 'Menu title; displayed at top of block.',
`description` text COMMENT 'Menu description.',
PRIMARY KEY (`menu_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Holds definitions for top-level custom menus (for example...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `menu_custom`
--
LOCK TABLES `menu_custom` WRITE;
/*!40000 ALTER TABLE `menu_custom` DISABLE KEYS */;
INSERT INTO `menu_custom` VALUES ('main-menu','Main menu','The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.');
INSERT INTO `menu_custom` VALUES ('management','Management','The <em>Management</em> menu contains links for administrative tasks.');
INSERT INTO `menu_custom` VALUES ('navigation','Navigation','The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.');
INSERT INTO `menu_custom` VALUES ('secondary-menu','Secondary menu','The <em>Secondary</em> menu is used on many sites for legal notices and contact pages.');
INSERT INTO `menu_custom` VALUES ('user-menu','User menu','The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.');
/*!40000 ALTER TABLE `menu_custom` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menu_links`
--
DROP TABLE IF EXISTS `menu_links`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `menu_links` (
`menu_name` varchar(32) NOT NULL default '' COMMENT 'The menu name. All links with the same menu name (such as ’navigation’) are part of the same menu.',
`mlid` int(10) unsigned NOT NULL auto_increment COMMENT 'The menu link ID (mlid) is the integer primary key.',
`plid` int(10) unsigned NOT NULL default '0' COMMENT 'The parent link ID (plid) is the mlid of the link above in the hierarchy, or zero if the link is at the top level in its menu.',
`link_path` varchar(255) NOT NULL default '' COMMENT 'The Drupal path or external path this link points to.',
`router_path` varchar(255) NOT NULL default '' COMMENT 'For links corresponding to a Drupal path (external = 0), this connects the link to a menu_router.path for joins.',
`link_title` varchar(255) NOT NULL default '' COMMENT 'The text displayed for the link, which may be modified by a title callback stored in menu_router.',
`options` blob COMMENT 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.',
`module` varchar(255) NOT NULL default 'system' COMMENT 'The name of the module that generated this link.',
`hidden` smallint(6) NOT NULL default '0' COMMENT 'A flag for whether the link should be rendered in menus. (1 = a disabled menu item that may be shown on admin screens, -1 = a menu callback, 0 = a normal, visible link)',
`external` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).',
`has_children` smallint(6) NOT NULL default '0' COMMENT 'Flag indicating whether any links have this link as a parent (1 = children exist, 0 = no children).',
`expanded` smallint(6) NOT NULL default '0' COMMENT 'Flag for whether this link should be rendered as expanded in menus - expanded links always have their child links displayed, instead of only when the link is in the active trail (1 = expanded, 0 = not expanded)',
`weight` int(11) NOT NULL default '0' COMMENT 'Link weight among links in the same menu at the same depth.',
`depth` smallint(6) NOT NULL default '0' COMMENT 'The depth relative to the top level. A link with plid == 0 will have depth == 1.',
`customized` smallint(6) NOT NULL default '0' COMMENT 'A flag to indicate that the user has manually created or edited the link (1 = customized, 0 = not customized).',
`p1` int(10) unsigned NOT NULL default '0' COMMENT 'The first mlid in the materialized path. If N = depth, then pN must equal the mlid. If depth > 1 then p(N-1) must equal the plid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.',
`p2` int(10) unsigned NOT NULL default '0' COMMENT 'The second mlid in the materialized path. See p1.',
`p3` int(10) unsigned NOT NULL default '0' COMMENT 'The third mlid in the materialized path. See p1.',
`p4` int(10) unsigned NOT NULL default '0' COMMENT 'The fourth mlid in the materialized path. See p1.',
`p5` int(10) unsigned NOT NULL default '0' COMMENT 'The fifth mlid in the materialized path. See p1.',
`p6` int(10) unsigned NOT NULL default '0' COMMENT 'The sixth mlid in the materialized path. See p1.',
`p7` int(10) unsigned NOT NULL default '0' COMMENT 'The seventh mlid in the materialized path. See p1.',
`p8` int(10) unsigned NOT NULL default '0' COMMENT 'The eighth mlid in the materialized path. See p1.',
`p9` int(10) unsigned NOT NULL default '0' COMMENT 'The ninth mlid in the materialized path. See p1.',
`updated` smallint(6) NOT NULL default '0' COMMENT 'Flag that indicates that this link was generated during the update from Drupal 5.',
PRIMARY KEY (`mlid`),
KEY `path_menu` (`link_path`(128),`menu_name`),
KEY `menu_plid_expand_child` (`menu_name`,`plid`,`expanded`,`has_children`),
KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`),
KEY `router_path` (`router_path`(128))
) ENGINE=InnoDB AUTO_INCREMENT=3027 DEFAULT CHARSET=utf8 COMMENT='Contains the individual links within a menu.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `menu_links`
--
LOCK TABLES `menu_links` WRITE;
/*!40000 ALTER TABLE `menu_links` DISABLE KEYS */;
INSERT INTO `menu_links` VALUES ('navigation',1,0,'node','node','Content','a:0:{}','system',-1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',6,0,'batch','batch','','a:0:{}','system',-1,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',11,0,'rss.xml','rss.xml','RSS feed','a:0:{}','system',-1,0,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',16,0,'user','user','User account','a:0:{}','system',-1,0,0,0,0,1,0,16,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',21,0,'admin','admin','Dashboard','a:0:{}','system',0,0,1,0,9,1,0,21,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',26,1,'node/%','node/%','','a:0:{}','system',-1,0,0,0,0,2,0,1,26,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',31,0,'file/progress','file/progress','','a:0:{}','system',-1,0,0,0,0,1,0,31,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',36,0,'file/ajax','file/ajax','','a:0:{}','system',-1,0,0,0,0,1,0,36,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',41,0,'system/ajax','system/ajax','AHAH callback','a:0:{}','system',-1,0,0,0,0,1,0,41,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',46,0,'taxonomy/autocomplete','taxonomy/autocomplete','Autocomplete taxonomy','a:0:{}','system',-1,0,0,0,0,1,0,46,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',51,0,'comment/%','comment/%','Comment permalink','a:0:{}','system',-1,0,0,0,0,1,0,51,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',56,0,'filter/tips','filter/tips','Compose tips','a:0:{}','system',1,0,0,0,0,1,0,56,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',61,16,'user/register','user/register','Create new account','a:0:{}','system',-1,0,0,0,0,2,0,16,61,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',66,0,'system/files','system/files','File download','a:0:{}','system',-1,0,0,0,0,1,0,66,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',71,16,'user/login','user/login','Log in','a:0:{}','system',-1,0,0,0,0,2,0,16,71,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',76,16,'user/password','user/password','Request new password','a:0:{}','system',-1,0,0,0,0,2,0,16,76,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',81,0,'system/temporary','system/temporary','Temporary files','a:0:{}','system',-1,0,0,0,0,1,0,81,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',86,0,'system/timezone','system/timezone','Time zone','a:0:{}','system',-1,0,0,0,0,1,0,86,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',91,16,'user/autocomplete','user/autocomplete','User autocomplete','a:0:{}','system',-1,0,0,0,0,2,0,16,91,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',96,0,'node/add','node/add','Add new content','a:0:{}','system',0,0,1,0,1,1,0,96,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',101,21,'admin/appearance','admin/appearance','Appearance','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Select and configure your themes\";}}','system',0,0,0,0,-6,2,0,21,101,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',106,21,'admin/by-module','admin/by-module','By module','a:0:{}','system',-1,0,0,0,2,2,0,21,106,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',111,21,'admin/by-task','admin/by-task','By task','a:0:{}','system',-1,0,0,0,0,2,0,21,111,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',116,21,'admin/compact','admin/compact','Compact mode','a:0:{}','system',-1,0,0,0,0,2,0,21,116,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',121,21,'admin/config','admin/config','Configuration','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"Administer settings\";}}','system',0,0,1,0,0,2,0,21,121,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',126,21,'admin/content','admin/content','Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Administer content and comments\";}}','system',0,0,0,0,-10,2,0,21,126,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',131,21,'admin/dashboard','admin/dashboard','Dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View and customize your dashboard\";}}','system',-1,0,0,0,-100,2,0,21,131,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',136,21,'admin/help','admin/help','Help','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:47:\"Reference for usage, configuration, and modules\";}}','system',0,0,0,0,9,2,0,21,136,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',141,0,'user/logout','user/logout','Log out','a:0:{}','system',0,0,0,0,10,1,0,141,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',146,21,'admin/modules','admin/modules','Modules','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Enable or disable modules\";}}','system',0,0,0,0,-2,2,0,21,146,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',151,0,'user/%','user/%','My account','a:0:{}','system',0,0,0,0,-10,1,0,151,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',156,21,'admin/people','admin/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:44:\"Manage user accounts, roles, and permissions\";}}','system',0,0,0,0,-4,2,0,21,156,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',161,21,'admin/reports','admin/reports','Reports','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View reports, updates, and errors\";}}','system',0,0,1,0,5,2,0,21,161,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',166,21,'admin/structure','admin/structure','Structure','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}','system',0,0,1,0,-8,2,0,21,166,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',171,0,'comment/reply/%','comment/reply/%','Add new comment','a:0:{}','system',-1,0,0,0,0,1,0,171,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',176,51,'comment/%/approve','comment/%/approve','Approve','a:0:{}','system',-1,0,0,0,1,2,0,51,176,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',181,51,'comment/%/delete','comment/%/delete','Delete','a:0:{}','system',-1,0,0,0,2,2,0,51,181,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',186,26,'node/%/delete','node/%/delete','Delete','a:0:{}','system',-1,0,0,0,1,3,0,1,26,186,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',191,51,'comment/%/edit','comment/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,51,191,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',196,26,'node/%/edit','node/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,3,0,1,26,196,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',201,0,'image/generate/%','image/generate/%','Generate image style','a:0:{}','system',-1,0,0,0,0,1,0,201,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',206,26,'node/%/revisions','node/%/revisions','Revisions','a:0:{}','system',-1,0,0,0,2,3,0,1,26,206,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',211,0,'taxonomy/term/%','taxonomy/term/%','Taxonomy term','a:0:{}','system',-1,0,0,0,0,1,0,211,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',216,26,'node/%/view','node/%/view','View','a:0:{}','system',-1,0,0,0,-10,3,0,1,26,216,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',221,51,'comment/%/view','comment/%/view','View comment','a:0:{}','system',-1,0,0,0,-10,2,0,51,221,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',246,131,'admin/dashboard/drawer','admin/dashboard/drawer','','a:0:{}','system',-1,0,0,0,0,3,0,21,131,246,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',251,166,'admin/structure/block','admin/structure/block','Blocks','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";}}','system',0,0,1,0,0,3,0,21,166,251,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',256,131,'admin/dashboard/update','admin/dashboard/update','','a:0:{}','system',-1,0,0,0,0,3,0,21,131,256,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',261,156,'admin/people/create','admin/people/create','Add user','a:0:{}','system',-1,0,0,0,0,3,0,21,156,261,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',266,151,'user/%/cancel','user/%/cancel','Cancel account','a:0:{}','system',-1,0,0,0,0,2,0,151,266,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',271,126,'admin/content/comment','admin/content/comment','Comments','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:59:\"List and edit site comments and the comment approval queue.\";}}','system',-1,0,0,0,0,3,0,21,126,271,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',276,126,'admin/content/node','admin/content/node','Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Administer content\";}}','system',-1,0,0,0,-10,3,0,21,126,276,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',281,121,'admin/config/content','admin/config/content','Content authoring','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}','system',0,0,1,0,-15,3,0,21,121,281,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',286,166,'admin/structure/types','admin/structure/types','Content types','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}','system',0,0,1,0,0,3,0,21,166,286,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',291,131,'admin/dashboard/customize','admin/dashboard/customize','Dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View and customize your dashboard\";}}','system',-1,0,0,0,0,3,0,21,131,291,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',296,121,'admin/config/development','admin/config/development','Development','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}','system',0,0,1,0,-10,3,0,21,121,296,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',306,151,'user/%/edit','user/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,151,306,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',316,161,'admin/reports/fields','admin/reports/fields','Field list','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}','system',0,0,0,0,0,3,0,21,161,316,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',321,146,'admin/modules/list','admin/modules/list','List','a:0:{}','system',-1,0,0,0,0,3,0,21,146,321,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',326,156,'admin/people/people','admin/people/people','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Find and manage people interacting with your site.\";}}','system',-1,0,0,0,-10,3,0,21,156,326,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',336,121,'admin/config/media','admin/config/media','Media','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}','system',0,0,1,0,-10,3,0,21,121,336,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',341,166,'admin/structure/menu','admin/structure/menu','Menus','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:86:\"Add new menus to your site, edit existing menus, and rename and reorganize menu links.\";}}','system',0,0,1,0,0,3,0,21,166,341,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',346,121,'admin/config/people','admin/config/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}','system',0,0,1,0,-20,3,0,21,121,346,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',351,156,'admin/people/permissions','admin/people/permissions','Permissions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}','system',-1,0,0,0,0,3,0,21,156,351,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',356,161,'admin/reports/dblog','admin/reports/dblog','Recent log entries','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}','system',0,0,0,0,-1,3,0,21,161,356,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',361,121,'admin/config/regional','admin/config/regional','Regional and language','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}','system',0,0,1,0,-5,3,0,21,121,361,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',366,121,'admin/config/search','admin/config/search','Search and metadata','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}','system',0,0,1,0,-10,3,0,21,121,366,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',386,161,'admin/reports/status','admin/reports/status','Status report','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";}}','system',0,0,0,0,-60,3,0,21,161,386,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',391,121,'admin/config/system','admin/config/system','System','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}','system',0,0,1,0,-20,3,0,21,121,391,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',396,166,'admin/structure/taxonomy','admin/structure/taxonomy','Taxonomy','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}','system',0,0,1,0,0,3,0,21,166,396,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',401,161,'admin/reports/access-denied','admin/reports/access-denied','Top \'access denied\' errors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}','system',0,0,0,0,0,3,0,21,161,401,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',406,161,'admin/reports/page-not-found','admin/reports/page-not-found','Top \'page not found\' errors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}','system',0,0,0,0,0,3,0,21,161,406,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',411,146,'admin/modules/uninstall','admin/modules/uninstall','Uninstall','a:0:{}','system',-1,0,0,0,20,3,0,21,146,411,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',416,121,'admin/config/user-interface','admin/config/user-interface','User interface','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}','system',0,0,1,0,-15,3,0,21,121,416,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',421,151,'user/%/view','user/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,151,421,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',426,121,'admin/config/services','admin/config/services','Web services','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}','system',0,0,1,0,0,3,0,21,121,426,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',431,121,'admin/config/workflow','admin/config/workflow','Workflow','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}','system',0,0,0,0,5,3,0,21,121,431,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',436,136,'admin/help/block','admin/help/block','block','a:0:{}','system',-1,0,0,0,0,3,0,21,136,436,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',441,136,'admin/help/comment','admin/help/comment','comment','a:0:{}','system',-1,0,0,0,0,3,0,21,136,441,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',446,136,'admin/help/contextual','admin/help/contextual','contextual','a:0:{}','system',-1,0,0,0,0,3,0,21,136,446,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',451,136,'admin/help/dashboard','admin/help/dashboard','dashboard','a:0:{}','system',-1,0,0,0,0,3,0,21,136,451,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',456,136,'admin/help/dblog','admin/help/dblog','dblog','a:0:{}','system',-1,0,0,0,0,3,0,21,136,456,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',461,136,'admin/help/field','admin/help/field','field','a:0:{}','system',-1,0,0,0,0,3,0,21,136,461,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',466,136,'admin/help/field_sql_storage','admin/help/field_sql_storage','field_sql_storage','a:0:{}','system',-1,0,0,0,0,3,0,21,136,466,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',471,136,'admin/help/field_ui','admin/help/field_ui','field_ui','a:0:{}','system',-1,0,0,0,0,3,0,21,136,471,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',476,136,'admin/help/file','admin/help/file','file','a:0:{}','system',-1,0,0,0,0,3,0,21,136,476,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',481,136,'admin/help/filter','admin/help/filter','filter','a:0:{}','system',-1,0,0,0,0,3,0,21,136,481,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',486,136,'admin/help/help','admin/help/help','help','a:0:{}','system',-1,0,0,0,0,3,0,21,136,486,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',491,136,'admin/help/image','admin/help/image','image','a:0:{}','system',-1,0,0,0,0,3,0,21,136,491,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',496,136,'admin/help/list','admin/help/list','list','a:0:{}','system',-1,0,0,0,0,3,0,21,136,496,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',501,136,'admin/help/menu','admin/help/menu','menu','a:0:{}','system',-1,0,0,0,0,3,0,21,136,501,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',506,136,'admin/help/node','admin/help/node','node','a:0:{}','system',-1,0,0,0,0,3,0,21,136,506,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',511,136,'admin/help/number','admin/help/number','number','a:0:{}','system',-1,0,0,0,0,3,0,21,136,511,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',516,136,'admin/help/options','admin/help/options','options','a:0:{}','system',-1,0,0,0,0,3,0,21,136,516,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',521,136,'admin/help/system','admin/help/system','system','a:0:{}','system',-1,0,0,0,0,3,0,21,136,521,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',526,136,'admin/help/taxonomy','admin/help/taxonomy','taxonomy','a:0:{}','system',-1,0,0,0,0,3,0,21,136,526,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',531,136,'admin/help/text','admin/help/text','text','a:0:{}','system',-1,0,0,0,0,3,0,21,136,531,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',536,136,'admin/help/user','admin/help/user','user','a:0:{}','system',-1,0,0,0,0,3,0,21,136,536,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',541,211,'taxonomy/term/%/edit','taxonomy/term/%/edit','Edit','a:0:{}','system',-1,0,0,0,10,2,0,211,541,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',546,211,'taxonomy/term/%/feed','taxonomy/term/%/feed','Taxonomy term','a:0:{}','system',-1,0,0,0,0,2,0,211,546,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',551,211,'taxonomy/term/%/view','taxonomy/term/%/view','View','a:0:{}','system',-1,0,0,0,0,2,0,211,551,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',556,346,'admin/config/people/accounts','admin/config/people/accounts','Account settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:109:\"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.\";}}','system',0,0,0,0,-10,4,0,21,121,346,556,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',561,391,'admin/config/system/actions','admin/config/system/actions','Actions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"Manage the actions defined for your site.\";}}','system',0,0,0,0,0,4,0,21,121,391,561,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',566,251,'admin/structure/block/add','admin/structure/block/add','Add block','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,566,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',571,286,'admin/structure/types/add','admin/structure/types/add','Add content type','a:0:{}','system',-1,0,0,0,0,4,0,21,166,286,571,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',576,341,'admin/structure/menu/add','admin/structure/menu/add','Add menu','a:0:{}','system',-1,0,0,0,0,4,0,21,166,341,576,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',581,396,'admin/structure/taxonomy/add','admin/structure/taxonomy/add','Add vocabulary','a:0:{}','system',-1,0,0,0,0,4,0,21,166,396,581,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',606,366,'admin/config/search/clean-urls','admin/config/search/clean-urls','Clean URLs','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Enable or disable clean URLs for your site.\";}}','system',0,0,0,0,5,4,0,21,121,366,606,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',611,361,'admin/config/regional/date-time','admin/config/regional/date-time','Date and time','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:44:\"Configure display formats for date and time.\";}}','system',0,0,0,0,-15,4,0,21,121,361,611,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',616,161,'admin/reports/event/%','admin/reports/event/%','Details','a:0:{}','system',-1,0,0,0,0,3,0,21,161,616,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',621,336,'admin/config/media/file-system','admin/config/media/file-system','File system','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:68:\"Tell Drupal where to store uploaded files and how they are accessed.\";}}','system',0,0,0,0,-10,4,0,21,121,336,621,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',636,346,'admin/config/people/ip-blocking','admin/config/people/ip-blocking','IP address blocking','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Manage blocked IP addresses.\";}}','system',0,0,0,0,10,4,0,21,121,346,636,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',641,336,'admin/config/media/image-styles','admin/config/media/image-styles','Image styles','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:78:\"Configure styles that can be used for resizing or adjusting images on display.\";}}','system',0,0,0,0,0,4,0,21,121,336,641,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',646,336,'admin/config/media/image-toolkit','admin/config/media/image-toolkit','Image toolkit','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Choose which image toolkit to use if you have installed optional toolkits.\";}}','system',0,0,0,0,20,4,0,21,121,336,646,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',661,251,'admin/structure/block/list','admin/structure/block/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,21,166,251,661,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',666,321,'admin/modules/list/confirm','admin/modules/list/confirm','List','a:0:{}','system',-1,0,0,0,0,4,0,21,146,321,666,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',671,286,'admin/structure/types/list','admin/structure/types/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,21,166,286,671,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',676,396,'admin/structure/taxonomy/list','admin/structure/taxonomy/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,21,166,396,676,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',681,341,'admin/structure/menu/list','admin/structure/menu/list','List menus','a:0:{}','system',-1,0,0,0,-10,4,0,21,166,341,681,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',686,296,'admin/config/development/logging','admin/config/development/logging','Logging and errors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:154:\"Settings for logging and alerts modules. Various modules can route Drupal\'s system events to different destinations, such as syslog, database, email, etc.\";}}','system',0,0,0,0,-15,4,0,21,121,296,686,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',691,296,'admin/config/development/maintenance','admin/config/development/maintenance','Maintenance mode','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:62:\"Take the site offline for maintenance or bring it back online.\";}}','system',0,0,0,0,-10,4,0,21,121,296,691,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',701,386,'admin/reports/status/php','admin/reports/status/php','PHP','a:0:{}','system',-1,0,0,0,0,4,0,21,161,386,701,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',706,341,'admin/structure/menu/parents','admin/structure/menu/parents','Parent menu items','a:0:{}','system',-1,0,0,0,0,4,0,21,166,341,706,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',711,296,'admin/config/development/performance','admin/config/development/performance','Performance','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:101:\"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.\";}}','system',0,0,0,0,-20,4,0,21,121,296,711,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',716,351,'admin/people/permissions/list','admin/people/permissions/list','Permissions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}','system',-1,0,0,0,-8,4,0,21,156,351,716,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',721,271,'admin/content/comment/new','admin/content/comment/new','Published comments','a:0:{}','system',-1,0,0,0,-10,4,0,21,126,271,721,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',726,426,'admin/config/services/rss-publishing','admin/config/services/rss-publishing','RSS publishing','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:114:\"Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.\";}}','system',0,0,0,0,0,4,0,21,121,426,726,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',731,386,'admin/reports/status/rebuild','admin/reports/status/rebuild','Rebuild permissions','a:0:{}','system',-1,0,0,0,0,4,0,21,161,386,731,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',736,361,'admin/config/regional/settings','admin/config/regional/settings','Regional settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:54:\"Settings for the site\'s default time zone and country.\";}}','system',0,0,0,0,-20,4,0,21,121,361,736,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',741,351,'admin/people/permissions/roles','admin/people/permissions/roles','Roles','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"List, edit, or add user roles.\";}}','system',-1,0,0,0,-5,4,0,21,156,351,741,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',746,386,'admin/reports/status/run-cron','admin/reports/status/run-cron','Run cron','a:0:{}','system',-1,0,0,0,0,4,0,21,161,386,746,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',751,341,'admin/structure/menu/settings','admin/structure/menu/settings','Settings','a:0:{}','system',-1,0,0,0,5,4,0,21,166,341,751,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',761,391,'admin/config/system/site-information','admin/config/system/site-information','Site information','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:109:\"Change site name, e-mail address, slogan, default front page, number of posts per page, error pages and cron.\";}}','system',0,0,0,0,-20,4,0,21,121,391,761,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',786,281,'admin/config/content/formats','admin/config/content/formats','Text formats','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:127:\"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.\";}}','system',0,0,0,0,0,4,0,21,121,281,786,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',791,271,'admin/content/comment/approval','admin/content/comment/approval','Unapproved comments','a:0:{}','system',-1,0,0,0,0,4,0,21,126,271,791,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',796,411,'admin/modules/uninstall/confirm','admin/modules/uninstall/confirm','Uninstall','a:0:{}','system',-1,0,0,0,0,4,0,21,146,411,796,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',806,396,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','','a:0:{}','system',0,0,0,0,0,4,0,21,166,396,806,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',816,306,'user/%/edit/account','user/%/edit/account','Account','a:0:{}','system',-1,0,0,0,0,3,0,151,306,816,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',821,16,'user/reset/%/%/%','user/reset/%/%/%','Reset password','a:0:{}','system',-1,0,0,0,0,2,0,16,821,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',826,131,'admin/dashboard/block-content/%/%','admin/dashboard/block-content/%/%','','a:0:{}','system',-1,0,0,0,0,3,0,21,131,826,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',831,786,'admin/config/content/formats/%','admin/config/content/formats/%','','a:0:{}','system',-1,0,0,0,0,5,0,21,121,281,786,831,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',836,641,'admin/config/media/image-styles/add','admin/config/media/image-styles/add','Add style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:22:\"Add a new image style.\";}}','system',-1,0,0,0,2,5,0,21,121,336,641,836,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',841,806,'admin/structure/taxonomy/%/add','admin/structure/taxonomy/%/add','Add term','a:0:{}','system',-1,0,0,0,0,5,0,21,166,396,806,841,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',846,786,'admin/config/content/formats/add','admin/config/content/formats/add','Add text format','a:0:{}','system',-1,0,0,0,1,5,0,21,121,281,786,846,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',851,251,'admin/structure/block/demo/barebones','admin/structure/block/demo/barebones','Bare Bones','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,851,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',856,661,'admin/structure/block/list/barebones','admin/structure/block/list/barebones','Bare Bones','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,856,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',861,251,'admin/structure/block/demo/bartik','admin/structure/block/demo/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,861,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',866,661,'admin/structure/block/list/bartik','admin/structure/block/list/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,866,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',871,251,'admin/structure/block/demo/broadway','admin/structure/block/demo/broadway','Broadway','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,871,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',876,661,'admin/structure/block/list/broadway','admin/structure/block/list/broadway','Broadway','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,876,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',881,251,'admin/structure/block/demo/campaign','admin/structure/block/demo/campaign','Campaign','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,881,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',886,661,'admin/structure/block/list/campaign','admin/structure/block/list/campaign','Campaign','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,886,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',891,606,'admin/config/search/clean-urls/check','admin/config/search/clean-urls/check','Clean URL check','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,606,891,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',896,561,'admin/config/system/actions/configure','admin/config/system/actions/configure','Configure an advanced action','a:0:{}','system',-1,0,0,0,0,5,0,21,121,391,561,896,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',901,341,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Customize menu','a:0:{}','system',-1,0,0,0,0,4,0,21,166,341,901,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',906,206,'node/%/revisions/%/delete','node/%/revisions/%/delete','Delete earlier revision','a:0:{}','system',-1,0,0,0,0,4,0,1,26,206,906,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',911,806,'admin/structure/taxonomy/%/edit','admin/structure/taxonomy/%/edit','Edit','a:0:{}','system',-1,0,0,0,-10,5,0,21,166,396,806,911,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',916,286,'admin/structure/types/manage/%','admin/structure/types/manage/%','Edit content type','a:0:{}','system',0,0,0,0,0,4,0,21,166,286,916,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',921,611,'admin/config/regional/date-time/formats','admin/config/regional/date-time/formats','Formats','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:51:\"Configure display format strings for date and time.\";}}','system',-1,0,0,0,-9,5,0,21,121,361,611,921,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',926,251,'admin/structure/block/demo/garland','admin/structure/block/demo/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,926,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',931,661,'admin/structure/block/list/garland','admin/structure/block/list/garland','Garland','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,931,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',936,251,'admin/structure/block/demo/impact','admin/structure/block/demo/impact','Impact','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,936,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',941,661,'admin/structure/block/list/impact','admin/structure/block/list/impact','Impact','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,941,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',946,251,'admin/structure/block/demo/kenwood','admin/structure/block/demo/kenwood','Kenwood','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,946,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',951,661,'admin/structure/block/list/kenwood','admin/structure/block/list/kenwood','Kenwood','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,951,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',956,786,'admin/config/content/formats/list','admin/config/content/formats/list','List','a:0:{}','system',-1,0,0,0,0,5,0,21,121,281,786,956,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',961,806,'admin/structure/taxonomy/%/list','admin/structure/taxonomy/%/list','List','a:0:{}','system',-1,0,0,0,-20,5,0,21,166,396,806,961,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',966,641,'admin/config/media/image-styles/list','admin/config/media/image-styles/list','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:42:\"List the current image styles on the site.\";}}','system',-1,0,0,0,1,5,0,21,121,336,641,966,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',971,561,'admin/config/system/actions/manage','admin/config/system/actions/manage','Manage actions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"Manage the actions defined for your site.\";}}','system',-1,0,0,0,-2,5,0,21,121,391,561,971,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',976,251,'admin/structure/block/demo/builderbase','admin/structure/block/demo/builderbase','Minima','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,976,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',981,661,'admin/structure/block/list/builderbase','admin/structure/block/list/builderbase','Minima','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,981,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',986,561,'admin/config/system/actions/orphan','admin/config/system/actions/orphan','Remove orphans','a:0:{}','system',-1,0,0,0,0,5,0,21,121,391,561,986,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',991,206,'node/%/revisions/%/revert','node/%/revisions/%/revert','Revert to earlier revision','a:0:{}','system',-1,0,0,0,0,4,0,1,26,206,991,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',996,206,'node/%/revisions/%/view','node/%/revisions/%/view','Revisions','a:0:{}','system',-1,0,0,0,0,4,0,1,26,206,996,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1001,556,'admin/config/people/accounts/settings','admin/config/people/accounts/settings','Settings','a:0:{}','system',-1,0,0,0,-10,5,0,21,121,346,556,1001,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1006,251,'admin/structure/block/demo/seven','admin/structure/block/demo/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1006,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1011,661,'admin/structure/block/list/seven','admin/structure/block/list/seven','Administration theme','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1011,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1016,251,'admin/structure/block/demo/sonoma','admin/structure/block/demo/sonoma','Sonoma','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1016,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1021,661,'admin/structure/block/list/sonoma','admin/structure/block/list/sonoma','Sonoma','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1021,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1026,251,'admin/structure/block/demo/sparks','admin/structure/block/demo/sparks','Sparks','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1026,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1031,661,'admin/structure/block/list/sparks','admin/structure/block/list/sparks','Sparks','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1031,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1036,251,'admin/structure/block/demo/stark','admin/structure/block/demo/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1036,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1041,661,'admin/structure/block/list/stark','admin/structure/block/list/stark','Stark','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1041,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1046,251,'admin/structure/block/demo/test_theme','admin/structure/block/demo/test_theme','Test theme','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1046,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1051,661,'admin/structure/block/list/test_theme','admin/structure/block/list/test_theme','Test theme','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1051,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1056,611,'admin/config/regional/date-time/types','admin/config/regional/date-time/types','Types','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:44:\"Configure display formats for date and time.\";}}','system',-1,0,0,0,-10,5,0,21,121,361,611,1056,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1061,251,'admin/structure/block/demo/update_test_basetheme','admin/structure/block/demo/update_test_basetheme','Update test base theme','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1061,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1066,661,'admin/structure/block/list/update_test_basetheme','admin/structure/block/list/update_test_basetheme','Update test base theme','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1066,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1071,251,'admin/structure/block/demo/update_test_subtheme','admin/structure/block/demo/update_test_subtheme','Update test subtheme','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,1071,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1076,661,'admin/structure/block/list/update_test_subtheme','admin/structure/block/list/update_test_subtheme','Update test subtheme','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,1076,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1086,856,'admin/structure/block/list/barebones/add','admin/structure/block/list/barebones/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,856,1086,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1091,876,'admin/structure/block/list/broadway/add','admin/structure/block/list/broadway/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,876,1091,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1096,981,'admin/structure/block/list/builderbase/add','admin/structure/block/list/builderbase/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,981,1096,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1101,886,'admin/structure/block/list/campaign/add','admin/structure/block/list/campaign/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,886,1101,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1106,931,'admin/structure/block/list/garland/add','admin/structure/block/list/garland/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,931,1106,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1116,951,'admin/structure/block/list/kenwood/add','admin/structure/block/list/kenwood/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,951,1116,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1121,1011,'admin/structure/block/list/seven/add','admin/structure/block/list/seven/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1011,1121,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1126,1021,'admin/structure/block/list/sonoma/add','admin/structure/block/list/sonoma/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1021,1126,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1136,1041,'admin/structure/block/list/stark/add','admin/structure/block/list/stark/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1041,1136,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1141,1051,'admin/structure/block/list/test_theme/add','admin/structure/block/list/test_theme/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1051,1141,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1146,1066,'admin/structure/block/list/update_test_basetheme/add','admin/structure/block/list/update_test_basetheme/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1066,1146,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1151,1076,'admin/structure/block/list/update_test_subtheme/add','admin/structure/block/list/update_test_subtheme/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1076,1151,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1156,1056,'admin/config/regional/date-time/types/add','admin/config/regional/date-time/types/add','Add date type','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Add new date type.\";}}','system',-1,0,0,0,-10,6,0,21,121,361,611,1056,1156,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1161,921,'admin/config/regional/date-time/formats/add','admin/config/regional/date-time/formats/add','Add format','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Allow users to add additional date formats.\";}}','system',-1,0,0,0,-10,6,0,21,121,361,611,921,1161,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1166,901,'admin/structure/menu/manage/%/add','admin/structure/menu/manage/%/add','Add link','a:0:{}','system',-1,0,0,0,0,5,0,21,166,341,901,1166,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1171,251,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Configure block','a:0:{}','system',0,0,0,0,0,4,0,21,166,251,1171,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',1176,266,'user/%/cancel/confirm/%/%','user/%/cancel/confirm/%/%','Confirm account cancellation','a:0:{}','system',-1,0,0,0,0,3,0,151,266,1176,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1181,921,'admin/config/regional/date-time/formats/lookup','admin/config/regional/date-time/formats/lookup','Date and time lookup','a:0:{}','system',-1,0,0,0,0,6,0,21,121,361,611,921,1181,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1186,916,'admin/structure/types/manage/%/delete','admin/structure/types/manage/%/delete','Delete','a:0:{}','system',-1,0,0,0,0,5,0,21,166,286,916,1186,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1191,636,'admin/config/people/ip-blocking/delete/%','admin/config/people/ip-blocking/delete/%','Delete IP address','a:0:{}','system',-1,0,0,0,0,5,0,21,121,346,636,1191,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1196,561,'admin/config/system/actions/delete/%','admin/config/system/actions/delete/%','Delete action','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:17:\"Delete an action.\";}}','system',-1,0,0,0,0,5,0,21,121,391,561,1196,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1201,901,'admin/structure/menu/manage/%/delete','admin/structure/menu/manage/%/delete','Delete menu','a:0:{}','system',-1,0,0,0,0,5,0,21,166,341,901,1201,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1206,341,'admin/structure/menu/item/%/delete','admin/structure/menu/item/%/delete','Delete menu link','a:0:{}','system',-1,0,0,0,0,4,0,21,166,341,1206,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1211,741,'admin/people/permissions/roles/delete/%','admin/people/permissions/roles/delete/%','Delete role','a:0:{}','system',-1,0,0,0,0,5,0,21,156,351,741,1211,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1216,831,'admin/config/content/formats/%/delete','admin/config/content/formats/%/delete','Delete text format','a:0:{}','system',-1,0,0,0,0,6,0,21,121,281,786,831,1216,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1221,916,'admin/structure/types/manage/%/edit','admin/structure/types/manage/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,5,0,21,166,286,916,1221,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1226,901,'admin/structure/menu/manage/%/edit','admin/structure/menu/manage/%/edit','Edit menu','a:0:{}','system',-1,0,0,0,0,5,0,21,166,341,901,1226,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1231,341,'admin/structure/menu/item/%/edit','admin/structure/menu/item/%/edit','Edit menu link','a:0:{}','system',-1,0,0,0,0,4,0,21,166,341,1231,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1236,741,'admin/people/permissions/roles/edit/%','admin/people/permissions/roles/edit/%','Edit role','a:0:{}','system',-1,0,0,0,0,5,0,21,156,351,741,1236,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1241,641,'admin/config/media/image-styles/edit/%','admin/config/media/image-styles/edit/%','Edit style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Configure an image style.\";}}','system',-1,0,0,0,0,5,0,21,121,336,641,1241,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1246,901,'admin/structure/menu/manage/%/list','admin/structure/menu/manage/%/list','List links','a:0:{}','system',-1,0,0,0,-10,5,0,21,166,341,901,1246,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1251,341,'admin/structure/menu/item/%/reset','admin/structure/menu/item/%/reset','Reset menu link','a:0:{}','system',-1,0,0,0,0,4,0,21,166,341,1251,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1256,641,'admin/config/media/image-styles/delete/%','admin/config/media/image-styles/delete/%','Delete style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:22:\"Delete an image style.\";}}','system',-1,0,0,0,0,5,0,21,121,336,641,1256,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1261,641,'admin/config/media/image-styles/revert/%','admin/config/media/image-styles/revert/%','Revert style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:22:\"Revert an image style.\";}}','system',-1,0,0,0,0,5,0,21,121,336,641,1261,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1266,916,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%/comment/display','Comment display','a:0:{}','system',-1,0,0,0,4,5,0,21,166,286,916,1266,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1271,916,'admin/structure/types/manage/%/comment/fields','admin/structure/types/manage/%/comment/fields','Comment fields','a:0:{}','system',-1,0,0,0,3,5,0,21,166,286,916,1271,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1276,1171,'admin/structure/block/manage/%/%/configure','admin/structure/block/manage/%/%/configure','Configure block','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,1171,1276,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1281,1171,'admin/structure/block/manage/%/%/delete','admin/structure/block/manage/%/%/delete','Delete block','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,1171,1281,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1286,921,'admin/config/regional/date-time/formats/%/delete','admin/config/regional/date-time/formats/%/delete','Delete date format','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:47:\"Allow users to delete a configured date format.\";}}','system',-1,0,0,0,0,6,0,21,121,361,611,921,1286,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1291,1056,'admin/config/regional/date-time/types/%/delete','admin/config/regional/date-time/types/%/delete','Delete date type','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Allow users to delete a configured date type.\";}}','system',-1,0,0,0,0,6,0,21,121,361,611,1056,1291,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1296,921,'admin/config/regional/date-time/formats/%/edit','admin/config/regional/date-time/formats/%/edit','Edit date format','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Allow users to edit a configured date format.\";}}','system',-1,0,0,0,0,6,0,21,121,361,611,921,1296,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1301,1241,'admin/config/media/image-styles/edit/%/add/%','admin/config/media/image-styles/edit/%/add/%','Add image effect','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Add a new effect to a style.\";}}','system',-1,0,0,0,0,6,0,21,121,336,641,1241,1301,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1306,1241,'admin/config/media/image-styles/edit/%/effects/%','admin/config/media/image-styles/edit/%/effects/%','Edit image effect','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Edit an existing effect within a style.\";}}','system',-1,0,0,0,0,6,0,21,121,336,641,1241,1306,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1311,1306,'admin/config/media/image-styles/edit/%/effects/%/delete','admin/config/media/image-styles/edit/%/effects/%/delete','Delete image effect','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Delete an existing effect from a style.\";}}','system',-1,0,0,0,0,7,0,21,121,336,641,1241,1306,1311,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1316,341,'admin/structure/menu/manage/main-menu','admin/structure/menu/manage/%','Main menu','a:0:{}','menu',0,0,0,0,0,4,0,21,166,341,1316,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1321,341,'admin/structure/menu/manage/management','admin/structure/menu/manage/%','Management','a:0:{}','menu',0,0,0,0,0,4,0,21,166,341,1321,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1326,341,'admin/structure/menu/manage/navigation','admin/structure/menu/manage/%','Navigation','a:0:{}','menu',0,0,0,0,0,4,0,21,166,341,1326,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1331,341,'admin/structure/menu/manage/secondary-menu','admin/structure/menu/manage/%','Secondary menu','a:0:{}','menu',0,0,0,0,0,4,0,21,166,341,1331,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1336,341,'admin/structure/menu/manage/user-menu','admin/structure/menu/manage/%','User menu','a:0:{}','menu',0,0,0,0,0,4,0,21,166,341,1336,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('shortcut-set-1',1341,0,'node/add','node/add','Add content','a:0:{}','menu',0,0,0,0,-20,1,0,1341,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('shortcut-set-1',1346,0,'admin/content','admin/content','Find content','a:0:{}','menu',0,0,0,0,-19,1,0,1346,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1386,0,'sitemap.xml','sitemap.xml','','a:0:{}','system',-1,0,0,0,0,1,0,1386,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1391,0,'multiform','multiform','','a:0:{}','system',0,0,0,0,0,1,0,1391,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1406,0,'plupload-handle-uploads','plupload-handle-uploads','Handles uploads','a:0:{}','system',-1,0,0,0,0,1,0,1406,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1426,0,'poll','poll','Polls','a:0:{}','system',1,0,0,0,0,1,0,1426,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1446,0,'search','search','Search','a:0:{}','system',1,0,0,0,0,1,0,1446,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1481,0,'sitemap.xsl','sitemap.xsl','','a:0:{}','system',-1,0,0,0,0,1,0,1481,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1536,0,'plupload-test','plupload-test','Test Plupload','a:0:{}','system',-1,0,0,0,0,1,0,1536,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1546,0,'profile','profile','User list','a:0:{}','system',1,0,0,0,0,1,0,1546,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1556,0,'overlay-ajax/%','overlay-ajax/%','','a:0:{}','system',-1,0,0,0,0,1,0,1556,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1566,0,'media/%','media/%','','a:0:{}','system',-1,0,0,0,0,1,0,1566,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1571,1446,'search/node','search/node','Content','a:0:{}','system',-1,0,0,0,-10,2,0,1446,1571,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1581,0,'media/js','media/js','','a:0:{}','system',-1,0,0,0,0,1,0,1581,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1596,0,'media/browser','media/browser','Media browser','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:55:\"Media Browser for picking media and uploading new media\";}}','system',-1,0,0,0,0,1,0,1596,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1601,0,'openid/authenticate','openid/authenticate','OpenID Login','a:0:{}','system',-1,0,0,0,0,1,0,1601,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1606,1546,'profile/autocomplete','profile/autocomplete','Profile autocomplete','a:0:{}','system',-1,0,0,0,0,2,0,1546,1606,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1611,0,'toolbar/toggle','toolbar/toggle','Toggle drawer visibility','a:0:{}','system',-1,0,0,0,0,1,0,1611,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1616,1446,'search/user','search/user','Users','a:0:{}','system',-1,0,0,0,0,2,0,1446,1616,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1621,0,'wysiwyg/%','wysiwyg/%','','a:0:{}','system',-1,0,0,0,0,1,0,1621,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1626,0,'media/add/from_url','media/add/from_url','Add media from URL','a:0:{}','system',-1,0,0,0,-1,1,0,1626,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1631,1571,'search/node/%','search/node/%','Content','a:0:{}','system',-1,0,0,0,0,3,0,1446,1571,1631,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1636,1566,'media/%/delete','media/%/delete','Delete','a:0:{}','system',-1,0,0,0,1,2,0,1566,1636,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1641,1566,'media/%/edit','media/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,1566,1641,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1646,1596,'media/browser/testbed','media/browser/testbed','Media Browser test','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Make it easier to test media browser\";}}','system',-1,0,0,0,0,2,0,1596,1646,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1651,1596,'media/browser/library','media/browser/library','Media browser library','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:55:\"Media Browser for picking media and uploading new media\";}}','system',-1,0,0,0,0,2,0,1596,1651,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1656,1596,'media/browser/list','media/browser/list','Media browser list','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Ajax Callback for getting media\";}}','system',-1,0,0,0,0,2,0,1596,1656,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1661,1566,'media/%/multiedit','media/%/multiedit','Multi Edit','a:0:{}','system',-1,0,0,0,0,2,0,1566,1661,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1671,1566,'media/%/format-form','media/%/format-form','Style selector','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Choose a format for a piece of media\";}}','system',-1,0,0,0,0,2,0,1566,1671,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1676,0,'media/add/upload','media/add/upload','Upload new file','a:0:{}','system',-1,0,0,0,-1,1,0,1676,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1681,1616,'search/user/%','search/user/%','Users','a:0:{}','system',-1,0,0,0,0,3,0,1446,1616,1681,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1686,1566,'media/%/view','media/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,1566,1686,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1691,96,'node/add/article','node/add/article','News item','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:87:\"Use <em>news items</em> for time-specific content like press releases or announcements.\";}}','system',0,0,0,0,0,2,0,96,1691,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1696,96,'node/add/page','node/add/page','Basic page','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";}}','system',0,0,0,0,0,2,0,96,1696,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1701,126,'admin/content/media','admin/content/media','Media','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Manage files used on your site.\";}}','system',-1,0,0,0,0,3,0,21,126,1701,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1706,166,'admin/structure/media','admin/structure/media','Media Types','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Manage files used on your site.\";}}','system',0,0,0,0,0,3,0,21,166,1706,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1711,161,'admin/reports/mollom','admin/reports/mollom','Mollom statistics','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:51:\"Reports and usage statistics for the Mollom module.\";}}','system',0,0,0,0,0,3,0,21,161,1711,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',1716,151,'user/%/openid','user/%/openid','OpenID identities','a:0:{}','system',-1,0,0,0,0,2,0,151,1716,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1721,96,'node/add/poll','node/add/poll','Poll','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:191:\"A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.\";}}','system',0,0,0,0,0,2,0,96,1721,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1726,26,'node/%/results','node/%/results','Results','a:0:{}','system',-1,0,0,0,3,3,0,1,26,1726,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',1731,151,'user/%/shortcuts','user/%/shortcuts','Shortcuts','a:0:{}','system',-1,0,0,0,0,2,0,151,1731,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1736,166,'admin/structure/simpleviews','admin/structure/simpleviews','Simple views','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:13:\"Manage views.\";}}','system',0,0,0,0,0,3,0,21,166,1736,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1741,161,'admin/reports/search','admin/reports/search','Top search phrases','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}','system',0,0,0,0,0,3,0,21,161,1741,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1746,26,'node/%/votes','node/%/votes','Votes','a:0:{}','system',-1,0,0,0,3,3,0,1,26,1746,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1751,136,'admin/help/gardens_features','admin/help/gardens_features','gardens_features','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1751,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1756,136,'admin/help/htmlpurifier','admin/help/htmlpurifier','htmlpurifier','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1756,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1761,136,'admin/help/media','admin/help/media','media','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1761,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1766,136,'admin/help/mollom','admin/help/mollom','mollom','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1766,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1771,136,'admin/help/openid','admin/help/openid','openid','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1771,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1776,136,'admin/help/overlay','admin/help/overlay','overlay','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1776,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1781,136,'admin/help/path','admin/help/path','path','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1781,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1786,136,'admin/help/pathauto','admin/help/pathauto','pathauto','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1786,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1791,136,'admin/help/poll','admin/help/poll','poll','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1791,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1796,136,'admin/help/profile','admin/help/profile','profile','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1796,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1801,136,'admin/help/rdf','admin/help/rdf','rdf','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1801,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1806,136,'admin/help/search','admin/help/search','search','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1806,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1811,136,'admin/help/shortcut','admin/help/shortcut','shortcut','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1811,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1816,136,'admin/help/syslog','admin/help/syslog','syslog','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1816,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1821,136,'admin/help/toolbar','admin/help/toolbar','toolbar','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1821,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1826,136,'admin/help/wysiwyg','admin/help/wysiwyg','wysiwyg','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1826,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1831,136,'admin/help/xmlsitemap','admin/help/xmlsitemap','xmlsitemap','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1831,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1836,136,'admin/help/xmlsitemap_engines','admin/help/xmlsitemap_engines','xmlsitemap_engines','a:0:{}','system',-1,0,0,0,0,3,0,21,136,1836,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1841,0,'mollom/report/%/%','mollom/report/%/%','Report to Mollom','a:0:{}','system',-1,0,0,0,0,1,0,1841,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1846,1736,'admin/structure/simpleviews/add','admin/structure/simpleviews/add','Add view','a:0:{}','system',-1,0,0,0,0,4,0,21,166,1736,1846,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',1856,1716,'user/%/openid/delete','user/%/openid/delete','Delete OpenID','a:0:{}','system',-1,0,0,0,0,3,0,151,1716,1856,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1861,281,'admin/config/content/htmlpurifier','admin/config/content/htmlpurifier','HTML Purifier settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:88:\"Configure overall settings for the HTML Purifier filters, including how they are cached.\";}}','system',0,0,0,0,0,4,0,21,121,281,1861,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1866,1701,'admin/content/media/import','admin/content/media/import','Import media','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"Import files into your media library.\";}}','system',-1,0,0,0,0,4,0,21,126,1701,1866,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1871,281,'admin/config/content/mollom','admin/config/content/mollom','Mollom','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Mollom is a web service that helps you manage your community.\";}}','system',0,0,1,0,0,4,0,21,121,281,1871,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1876,366,'admin/config/search/settings','admin/config/search/settings','Search settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Configure relevance settings for search and other indexing options.\";}}','system',0,0,0,0,-10,4,0,21,121,366,1876,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1881,416,'admin/config/user-interface/shortcut','admin/config/user-interface/shortcut','Shortcuts','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"Add and modify shortcut sets.\";}}','system',0,0,0,0,0,4,0,21,121,416,1881,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1891,366,'admin/config/search/path','admin/config/search/path','URL aliases','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site\'s URL paths by aliasing them.\";}}','system',0,0,0,0,-10,4,0,21,121,366,1891,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1901,366,'admin/config/search/verifications','admin/config/search/verifications','Verifications','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Add, change or remove verifications for your site.\";}}','system',0,0,0,0,0,4,0,21,121,366,1901,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1906,281,'admin/config/content/wysiwyg','admin/config/content/wysiwyg','Wysiwyg profiles','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Configure client-side editors.\";}}','system',0,0,0,0,0,4,0,21,121,281,1906,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1911,366,'admin/config/search/xmlsitemap','admin/config/search/xmlsitemap','XML sitemap','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:84:\"Configure your site\'s XML sitemap to help search engines index your important pages.\";}}','system',0,0,0,0,0,4,0,21,121,366,1911,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1916,346,'admin/config/people/profile','admin/config/people/profile','Profiles','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:42:\"Create customizable fields for your users.\";}}','system',0,0,0,0,0,4,0,21,121,346,1916,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',1921,0,'mollom/captcha/%/%/%','mollom/captcha/%/%/%','','a:0:{}','system',-1,0,0,0,0,1,0,1921,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1926,251,'admin/structure/block/rotating_banner/add','admin/structure/block/rotating_banner/add','Add a rotating banner','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:149:\"A rotating banner is a series of images with text overlays known as slides. The banner can be placed anywhere on your site through the block system.\";}}','system',-1,0,0,0,0,4,0,21,166,251,1926,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1931,1891,'admin/config/search/path/add','admin/config/search/path/add','Add alias','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1891,1931,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1936,1916,'admin/config/people/profile/add','admin/config/people/profile/add','Add field','a:0:{}','system',-1,0,0,0,0,5,0,21,121,346,1916,1936,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1941,1871,'admin/config/content/mollom/add','admin/config/content/mollom/add','Add form','a:0:{}','system',-1,0,0,0,0,5,0,21,121,281,1871,1941,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1946,1701,'admin/content/media/add/from_url','admin/content/media/add/from_url','Add media from URL','a:0:{}','system',-1,0,0,0,-1,4,0,21,126,1701,1946,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1951,1911,'admin/config/search/xmlsitemap/add','admin/config/search/xmlsitemap/add','Add new XML sitemap','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1911,1951,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1956,1881,'admin/config/user-interface/shortcut/add-set','admin/config/user-interface/shortcut/add-set','Add shortcut set','a:0:{}','system',-1,0,0,0,0,5,0,21,121,416,1881,1956,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1961,1901,'admin/config/search/verifications/add','admin/config/search/verifications/add','Add verification','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1901,1961,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1966,1891,'admin/config/search/path/pathauto','admin/config/search/path/pathauto','Automated alias settings','a:0:{}','system',-1,0,0,0,10,5,0,21,121,366,1891,1966,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1971,1871,'admin/config/content/mollom/blacklist','admin/config/content/mollom/blacklist','Blacklist','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Configure blacklist.\";}}','system',-1,0,0,0,0,5,0,21,121,281,1871,1971,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1976,1876,'admin/config/search/settings/reindex','admin/config/search/settings/reindex','Clear index','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1876,1976,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1981,1891,'admin/config/search/path/delete_bulk','admin/config/search/path/delete_bulk','Delete aliases','a:0:{}','system',-1,0,0,0,11,5,0,21,121,366,1891,1981,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1986,1916,'admin/config/people/profile/delete','admin/config/people/profile/delete','Delete field','a:0:{}','system',-1,0,0,0,0,5,0,21,121,346,1916,1986,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1991,1736,'admin/structure/simpleviews/%/delete','admin/structure/simpleviews/%/delete','Delete view','a:0:{}','system',-1,0,0,0,0,4,0,21,166,1736,1991,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',1996,1916,'admin/config/people/profile/edit','admin/config/people/profile/edit','Edit field','a:0:{}','system',-1,0,0,0,0,5,0,21,121,346,1916,1996,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2001,1881,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Edit shortcuts','a:0:{}','system',-1,0,0,0,0,5,0,21,121,416,1881,2001,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2006,1736,'admin/structure/simpleviews/%/edit','admin/structure/simpleviews/%/edit','Edit view','a:0:{}','system',-1,0,0,0,0,4,0,21,166,1736,2006,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2016,1871,'admin/config/content/mollom/forms','admin/config/content/mollom/forms','Forms','a:0:{}','system',-1,0,0,0,-10,5,0,21,121,281,1871,2016,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2021,1891,'admin/config/search/path/list','admin/config/search/path/list','List','a:0:{}','system',-1,0,0,0,-10,5,0,21,121,366,1891,2021,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2026,1911,'admin/config/search/xmlsitemap/list','admin/config/search/xmlsitemap/list','List','a:0:{}','system',-1,0,0,0,-10,5,0,21,121,366,1911,2026,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2031,1906,'admin/config/content/wysiwyg/profile','admin/config/content/wysiwyg/profile','List','a:0:{}','system',-1,0,0,0,0,5,0,21,121,281,1906,2031,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2036,1706,'admin/structure/media/manage/%','admin/structure/media/manage/%','Manage media','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Manage files used on your site.\";}}','system',-1,0,0,0,0,4,0,21,166,1706,2036,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2041,1916,'admin/config/people/profile/autocomplete','admin/config/people/profile/autocomplete','Profile category autocomplete','a:0:{}','system',-1,0,0,0,0,5,0,21,121,346,1916,2041,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2046,1911,'admin/config/search/xmlsitemap/rebuild','admin/config/search/xmlsitemap/rebuild','Rebuild links','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Rebuild the site map.\";}}','system',-1,0,0,0,20,5,0,21,121,366,1911,2046,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2051,1911,'admin/config/search/xmlsitemap/settings','admin/config/search/xmlsitemap/settings','Settings','a:0:{}','system',-1,0,0,0,10,5,0,21,121,366,1911,2051,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2056,1871,'admin/config/content/mollom/settings','admin/config/content/mollom/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:42:\"Configure Mollom keys and global settings.\";}}','system',-1,0,0,0,0,5,0,21,121,281,1871,2056,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2061,1701,'admin/content/media/add/upload','admin/content/media/add/upload','Upload new file','a:0:{}','system',-1,0,0,0,-1,4,0,21,126,1701,2061,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2066,1961,'admin/config/search/verifications/add/%','admin/config/search/verifications/add/%','Add','a:0:{}','system',-1,0,0,0,0,6,0,21,121,366,1901,1961,2066,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2071,166,'admin/structure/rotating_banner/slide/%/delete','admin/structure/rotating_banner/slide/%/delete','Create new slide','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Creates a new rotating banner slide.\";}}','system',-1,0,0,0,0,3,0,21,166,2071,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2076,166,'admin/structure/rotating_banner/slide/%/edit','admin/structure/rotating_banner/slide/%/edit','Create new slide','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Creates a new rotating banner slide.\";}}','system',-1,0,0,0,0,3,0,21,166,2076,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2081,1901,'admin/config/search/verifications/delete/%','admin/config/search/verifications/delete/%','','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1901,2081,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2086,1901,'admin/config/search/verifications/edit/%','admin/config/search/verifications/edit/%','','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1901,2086,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2091,1871,'admin/config/content/mollom/manage/%','admin/config/content/mollom/manage/%','Configure','a:0:{}','system',0,0,0,0,0,5,0,21,121,281,1871,2091,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2096,166,'admin/structure/rotating_banner/%/slide/add','admin/structure/rotating_banner/%/slide/add','Create new slide','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Creates a new rotating banner slide.\";}}','system',-1,0,0,0,0,3,0,21,166,2096,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2101,1911,'admin/config/search/xmlsitemap/delete/%','admin/config/search/xmlsitemap/delete/%','','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1911,2101,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2106,1911,'admin/config/search/xmlsitemap/edit/%','admin/config/search/xmlsitemap/edit/%','','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1911,2106,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2111,2001,'admin/config/user-interface/shortcut/%/add-link','admin/config/user-interface/shortcut/%/add-link','Add shortcut','a:0:{}','system',-1,0,0,0,0,6,0,21,121,416,1881,2001,2111,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2116,2001,'admin/config/user-interface/shortcut/%/add-link-inline','admin/config/user-interface/shortcut/%/add-link-inline','Add shortcut','a:0:{}','system',-1,0,0,0,0,6,0,21,121,416,1881,2001,2116,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2121,1971,'admin/config/content/mollom/blacklist/delete','admin/config/content/mollom/blacklist/delete','Delete','a:0:{}','system',-1,0,0,0,0,6,0,21,121,281,1871,1971,2121,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2126,1891,'admin/config/search/path/delete/%','admin/config/search/path/delete/%','Delete alias','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1891,2126,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2131,2001,'admin/config/user-interface/shortcut/%/delete','admin/config/user-interface/shortcut/%/delete','Delete shortcut set','a:0:{}','system',-1,0,0,0,0,6,0,21,121,416,1881,2001,2131,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2136,1891,'admin/config/search/path/edit/%','admin/config/search/path/edit/%','Edit alias','a:0:{}','system',-1,0,0,0,0,5,0,21,121,366,1891,2136,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2141,2001,'admin/config/user-interface/shortcut/%/edit','admin/config/user-interface/shortcut/%/edit','Edit set name','a:0:{}','system',-1,0,0,0,10,6,0,21,121,416,1881,2001,2141,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2146,1881,'admin/config/user-interface/shortcut/link/%','admin/config/user-interface/shortcut/link/%','Edit shortcut','a:0:{}','system',-1,0,0,0,0,5,0,21,121,416,1881,2146,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2151,2001,'admin/config/user-interface/shortcut/%/links','admin/config/user-interface/shortcut/%/links','List links','a:0:{}','system',-1,0,0,0,0,6,0,21,121,416,1881,2001,2151,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2156,2036,'admin/structure/media/manage/%/settings','admin/structure/media/manage/%/settings','Settings','a:0:{}','system',-1,0,0,0,-1,5,0,21,166,1706,2036,2156,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2161,1871,'admin/config/content/mollom/unprotect/%','admin/config/content/mollom/unprotect/%','Unprotect form','a:0:{}','system',-1,0,0,0,0,5,0,21,121,281,1871,2161,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2166,2146,'admin/config/user-interface/shortcut/link/%/delete','admin/config/user-interface/shortcut/link/%/delete','Delete shortcut','a:0:{}','system',-1,0,0,0,0,6,0,21,121,416,1881,2146,2166,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2171,2031,'admin/config/content/wysiwyg/profile/%/edit','admin/config/content/wysiwyg/profile/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,6,0,21,121,281,1906,2031,2171,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2176,2031,'admin/config/content/wysiwyg/profile/%/delete','admin/config/content/wysiwyg/profile/%/delete','Remove','a:0:{}','system',-1,0,0,0,10,6,0,21,121,281,1906,2031,2176,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',2186,306,'user/%/edit/Personal information','user/%/edit/Personal information','','a:0:{}','system',-1,0,0,0,3,3,0,151,306,2186,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2191,866,'admin/structure/block/list/bartik/add','admin/structure/block/list/bartik/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,866,2191,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2196,1031,'admin/structure/block/list/sparks/add','admin/structure/block/list/sparks/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,1031,2196,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',2201,0,'node/1','node/%','About','a:0:{}','menu',0,0,0,0,-24,1,0,2201,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',2206,0,'blog','blog','Blog','a:0:{}','menu',0,0,0,0,-20,1,0,2206,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',2211,0,'contact','contact','Contact','a:0:{}','menu',0,0,0,0,-12,1,0,2211,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('main-menu',2216,0,'forum','forum','Forum','a:0:{}','menu',0,0,0,0,-16,1,0,2216,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2221,0,'blog','blog','','a:0:{}','system',1,0,1,0,0,1,0,2221,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2226,0,'news','news','','a:0:{}','system',-1,0,0,0,0,1,0,2226,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2231,0,'contact','contact','Contact','a:0:{}','system',1,0,0,0,0,1,0,2231,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2236,0,'forum','forum','Forums','a:0:{}','system',0,0,1,0,0,1,0,2236,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2241,2221,'blog/feed','blog/feed','Blogs','a:0:{}','system',-1,0,0,0,0,2,0,2221,2241,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2246,2226,'news/feed','news/feed','','a:0:{}','system',-1,0,0,0,0,2,0,2226,2246,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2251,2236,'forum/%','forum/%','Forums','a:0:{}','system',0,0,0,0,0,2,0,2236,2251,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2256,2221,'blog/%','blog/%','My blog','a:0:{}','system',0,0,0,0,0,2,0,2221,2256,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2261,2256,'blog/%/feed','blog/%/feed','Blogs','a:0:{}','system',-1,0,0,0,0,3,0,2221,2256,2261,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2266,0,'comment_notify/disable/%','comment_notify/disable/%','Disable comment notification','a:0:{}','system',-1,0,0,0,0,1,0,2266,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2271,166,'admin/structure/contact','admin/structure/contact','Contact form','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:71:\"Create a system contact form and set up categories for the form to use.\";}}','system',0,0,0,0,0,3,0,21,166,2271,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2276,96,'node/add/blog','node/add/blog','Blog entry','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Use <em>blog entries</em> for a site-wide or multi-user blog.\";}}','system',0,0,0,0,0,2,0,96,2276,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',2281,151,'user/%/contact','user/%/contact','Contact','a:0:{}','system',-1,0,0,0,2,2,0,151,2281,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2286,96,'node/add/forum','node/add/forum','Forum topic','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";}}','system',0,0,0,0,0,2,0,96,2286,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2291,166,'admin/structure/forum','admin/structure/forum','Forums','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Control forum hierarchy settings.\";}}','system',0,0,0,0,0,3,0,21,166,2291,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2296,166,'admin/structure/mailing-list','admin/structure/mailing-list','Mailing lists','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Manage your mailing lists.\";}}','system',0,0,0,0,0,3,0,21,166,2296,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('user-menu',2301,151,'user/%/follow','user/%/follow','My follow links','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:17:\"edit follow links\";}}','system',-1,0,0,0,0,2,0,151,2301,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2306,136,'admin/help/blog','admin/help/blog','blog','a:0:{}','system',-1,0,0,0,0,3,0,21,136,2306,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2311,136,'admin/help/contact','admin/help/contact','contact','a:0:{}','system',-1,0,0,0,0,3,0,21,136,2311,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2316,136,'admin/help/follow','admin/help/follow','follow','a:0:{}','system',-1,0,0,0,0,3,0,21,136,2316,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2321,136,'admin/help/forum','admin/help/forum','forum','a:0:{}','system',-1,0,0,0,0,3,0,21,136,2321,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2326,136,'admin/help/mailing_list','admin/help/mailing_list','mailing_list','a:0:{}','system',-1,0,0,0,0,3,0,21,136,2326,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2331,2296,'admin/structure/mailing-list/add','admin/structure/mailing-list/add','Add','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2296,2331,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2336,2271,'admin/structure/contact/add','admin/structure/contact/add','Add category','a:0:{}','system',-1,0,0,0,1,4,0,21,166,2271,2336,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2341,391,'admin/config/system/addthis','admin/config/system/addthis','AddThis','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:98:\"Set username and customize look and feel for <a href=\"http://www.addthis.com/\">AddThis</a> button.\";}}','system',0,0,0,0,0,4,0,21,121,391,2341,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2346,281,'admin/config/content/blog','admin/config/content/blog','Blog settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:63:\"Configure settings that control the appearance of blog entries.\";}}','system',0,0,0,0,0,4,0,21,121,281,2346,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2351,346,'admin/config/people/comment_notify','admin/config/people/comment_notify','Comment notify','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Configure settings for e-mails about new comments.\";}}','system',0,0,0,0,0,4,0,21,121,346,2351,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2356,2291,'admin/structure/forum/list','admin/structure/forum/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,21,166,2291,2356,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2361,2296,'admin/structure/mailing-list/list','admin/structure/mailing-list/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,21,166,2296,2361,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2366,2296,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','List e-mails','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2296,2366,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2371,2296,'admin/structure/mailing-list/settings','admin/structure/mailing-list/settings','Settings','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2296,2371,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2376,426,'admin/config/services/follow','admin/config/services/follow','Site follow links','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Add sitewide follow links\";}}','system',0,0,0,0,0,4,0,21,121,426,2376,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2381,2291,'admin/structure/forum/settings','admin/structure/forum/settings','Settings','a:0:{}','system',-1,0,0,0,5,4,0,21,166,2291,2381,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2386,2366,'admin/structure/mailing-list/%/add','admin/structure/mailing-list/%/add','Add e-mail','a:0:{}','system',-1,0,0,0,-5,5,0,21,166,2296,2366,2386,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2391,2271,'admin/structure/contact/delete/%','admin/structure/contact/delete/%','Delete contact','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2271,2391,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2396,2366,'admin/structure/mailing-list/%/delete','admin/structure/mailing-list/%/delete','Delete list','a:0:{}','system',-1,0,0,0,10,5,0,21,166,2296,2366,2396,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2401,2271,'admin/structure/contact/edit/%','admin/structure/contact/edit/%','Edit contact category','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2271,2401,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2406,2366,'admin/structure/mailing-list/%/%','admin/structure/mailing-list/%/%','Edit e-mail','a:0:{}','system',-1,0,0,0,0,5,0,21,166,2296,2366,2406,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2411,2366,'admin/structure/mailing-list/%/export','admin/structure/mailing-list/%/export','Export list','a:0:{}','system',-1,0,0,0,0,5,0,21,166,2296,2366,2411,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2416,2366,'admin/structure/mailing-list/%/import','admin/structure/mailing-list/%/import','Import e-mails','a:0:{}','system',-1,0,0,0,-2,5,0,21,166,2296,2366,2416,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2421,2366,'admin/structure/mailing-list/%/list','admin/structure/mailing-list/%/list','List e-mails','a:0:{}','system',-1,0,0,0,-10,5,0,21,166,2296,2366,2421,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2426,2366,'admin/structure/mailing-list/%/edit','admin/structure/mailing-list/%/edit','Rename list','a:0:{}','system',-1,0,0,0,5,5,0,21,166,2296,2366,2426,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2431,2351,'admin/config/people/comment_notify/settings','admin/config/people/comment_notify/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Configure settings for e-mails about new comments.\";}}','system',-1,0,0,0,0,5,0,21,121,346,2351,2431,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2436,2351,'admin/config/people/comment_notify/unsubscribe','admin/config/people/comment_notify/unsubscribe','Unsubscribe','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:44:\"Unsubscribe an email from all notifications.\";}}','system',-1,0,0,0,2,5,0,21,121,346,2351,2436,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2441,2291,'admin/structure/forum/add/container','admin/structure/forum/add/container','Add container','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2291,2441,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2446,2291,'admin/structure/forum/add/forum','admin/structure/forum/add/forum','Add forum','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2291,2446,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2451,2366,'admin/structure/mailing-list/%/emails/delete','admin/structure/mailing-list/%/emails/delete','Delete e-mail','a:0:{}','system',-1,0,0,0,0,5,0,21,166,2296,2366,2451,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2456,2291,'admin/structure/forum/edit/container/%','admin/structure/forum/edit/container/%','Edit container','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2291,2456,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2461,2291,'admin/structure/forum/edit/forum/%','admin/structure/forum/edit/forum/%','Edit forum','a:0:{}','system',-1,0,0,0,0,4,0,21,166,2291,2461,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('main-menu',2466,0,'news','news','News','a:0:{}','menu',0,0,0,0,-18,1,0,2466,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2471,0,'faq','faq','','a:0:{}','system',-1,0,0,0,0,1,0,2471,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2476,2471,'faq/feed','faq/feed','','a:0:{}','system',-1,0,0,0,0,2,0,2471,2476,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2481,96,'node/add/faq-item','node/add/faq-item','FAQ item','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Use an <em>FAQ item</em> to provide a question and answer about your site.\";}}','system',0,0,0,0,0,2,0,96,2481,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('main-menu',2486,0,'faq','faq','FAQ','a:0:{}','menu',0,0,0,0,-14,1,0,2486,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('main-menu',2491,0,'taxonomy/term/16','taxonomy/term/%','Taxonomy term','a:0:{}','menu',0,0,0,0,10,1,0,2491,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('main-menu',2496,0,'node/51','node/%','Overview','a:0:{}','menu',0,0,0,0,-26,1,0,2496,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2501,0,'testimonials','testimonials','','a:0:{}','system',-1,0,0,0,0,1,0,2501,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2506,0,'aggregator','aggregator','Feed aggregator','a:0:{}','system',0,0,1,0,5,1,0,2506,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2511,2501,'testimonials/feed','testimonials/feed','','a:0:{}','system',-1,0,0,0,0,2,0,2501,2511,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2516,2506,'aggregator/categories','aggregator/categories','Categories','a:0:{}','system',0,0,1,0,0,2,0,2506,2516,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2521,2506,'aggregator/opml','aggregator/opml','OPML feed','a:0:{}','system',-1,0,0,0,0,2,0,2506,2521,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2526,2506,'aggregator/rss','aggregator/rss','RSS feed','a:0:{}','system',-1,0,0,0,0,2,0,2506,2526,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2531,2506,'aggregator/sources','aggregator/sources','Sources','a:0:{}','system',0,0,0,0,0,2,0,2506,2531,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2536,2516,'aggregator/categories/%','aggregator/categories/%','','a:0:{}','system',0,0,0,0,0,3,0,2506,2516,2536,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2541,2531,'aggregator/sources/%','aggregator/sources/%','','a:0:{}','system',-1,0,0,0,0,3,0,2506,2531,2541,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2546,1566,'media/%/download','media/%/download','Download','a:0:{}','system',-1,0,0,0,0,2,0,1566,2546,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2551,26,'node/%/multiedit','node/%/multiedit','Edit images','a:0:{}','system',-1,0,0,0,0,3,0,1,26,2551,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2556,96,'node/add/media-gallery','node/add/media-gallery','Gallery','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"A flexible gallery of images.\";}}','system',0,0,0,0,0,2,0,96,2556,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2561,96,'node/add/testimonial','node/add/testimonial','Testimonial','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:73:\"Use a <em>testimonial</em> to display a customer\'s quote about your site.\";}}','system',0,0,0,0,0,2,0,96,2561,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2566,136,'admin/help/aggregator','admin/help/aggregator','aggregator','a:0:{}','system',-1,0,0,0,0,3,0,21,136,2566,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2571,0,'media-gallery/add-images/%/%','media-gallery/add-images/%/%','','a:0:{}','system',0,0,0,0,0,1,0,2571,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2576,2541,'aggregator/sources/%/categorize','aggregator/sources/%/categorize','Categorize','a:0:{}','system',-1,0,0,0,0,4,0,2506,2531,2541,2576,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2581,0,'media-gallery/detail/%/%','media-gallery/detail/%/%','','a:0:{}','system',-1,0,0,0,0,1,0,2581,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2586,0,'media-gallery/lightbox/%/%','media-gallery/lightbox/%/%','','a:0:{}','system',-1,0,0,0,0,1,0,2586,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2591,2536,'aggregator/categories/%/categorize','aggregator/categories/%/categorize','Categorize','a:0:{}','system',-1,0,0,0,0,4,0,2506,2516,2536,2591,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2596,2536,'aggregator/categories/%/configure','aggregator/categories/%/configure','Configure','a:0:{}','system',-1,0,0,0,1,4,0,2506,2516,2536,2596,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2601,2541,'aggregator/sources/%/configure','aggregator/sources/%/configure','Configure','a:0:{}','system',-1,0,0,0,1,4,0,2506,2531,2541,2601,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2606,2541,'aggregator/sources/%/view','aggregator/sources/%/view','View','a:0:{}','system',-1,0,0,0,-10,4,0,2506,2531,2541,2606,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2611,2536,'aggregator/categories/%/view','aggregator/categories/%/view','View','a:0:{}','system',-1,0,0,0,-10,4,0,2506,2516,2536,2611,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2616,426,'admin/config/services/aggregator','admin/config/services/aggregator','Feed aggregator','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Configure which content your site aggregates from other sites, how often it polls them, and how they\'re categorized.\";}}','system',0,0,0,0,10,4,0,21,121,426,2616,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2621,336,'admin/config/media/galleries','admin/config/media/galleries','Gallery settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Configure settings for the \"All galleries\" page.\";}}','system',0,0,0,0,0,4,0,21,121,336,2621,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2626,2581,'media-gallery/detail/%/%/edit','media-gallery/detail/%/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,2581,2626,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2631,0,'media-gallery/sort/collection/%/%','media-gallery/sort/collection/%/%','Gallery sort callback','a:0:{}','system',0,0,0,0,0,1,0,2631,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2636,0,'media-gallery/sort/gallery/%/%','media-gallery/sort/gallery/%/%','Gallery sort callback','a:0:{}','system',0,0,0,0,0,1,0,2636,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2641,2581,'media-gallery/detail/%/%/remove','media-gallery/detail/%/%/remove','Remove','a:0:{}','system',-1,0,0,0,0,2,0,2581,2641,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2646,2581,'media-gallery/detail/%/%/view','media-gallery/detail/%/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,2581,2646,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2651,2616,'admin/config/services/aggregator/list','admin/config/services/aggregator/list','List','a:0:{}','system',-1,0,0,0,-10,5,0,21,121,426,2616,2651,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2656,2616,'admin/config/services/aggregator/settings','admin/config/services/aggregator/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:129:\"Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.\";}}','system',-1,0,0,0,0,5,0,21,121,426,2616,2656,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2661,2616,'admin/config/services/aggregator/add/category','admin/config/services/aggregator/add/category','Add category','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2661,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2666,2616,'admin/config/services/aggregator/add/feed','admin/config/services/aggregator/add/feed','Add feed','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2666,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2671,2616,'admin/config/services/aggregator/add/opml','admin/config/services/aggregator/add/opml','Import OPML','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2671,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2676,2616,'admin/config/services/aggregator/remove/%','admin/config/services/aggregator/remove/%','Remove items','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2676,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2681,2616,'admin/config/services/aggregator/update/%','admin/config/services/aggregator/update/%','Update items','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2681,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2686,2616,'admin/config/services/aggregator/edit/category/%','admin/config/services/aggregator/edit/category/%','Edit category','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2686,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2691,2616,'admin/config/services/aggregator/edit/feed/%','admin/config/services/aggregator/edit/feed/%','Edit feed','a:0:{}','system',-1,0,0,0,0,5,0,21,121,426,2616,2691,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('main-menu',2696,0,'testimonials','testimonials','Testimonials','a:0:{}','menu',0,0,0,0,-22,1,0,2696,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2701,0,'customers','customers','','a:0:{}','system',-1,0,0,0,0,1,0,2701,0,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('navigation',2706,2701,'customers/feed','customers/feed','','a:0:{}','system',-1,0,0,0,0,2,0,2701,2706,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2711,96,'node/add/customer','node/add/customer','Customer','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:83:\"Use <em>customer</em> content to display a profile of one of your site\'s customers.\";}}','system',0,0,0,0,0,2,0,96,2711,0,0,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2716,806,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,21,166,396,806,2716,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2721,556,'admin/config/people/accounts/display','admin/config/people/accounts/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,21,121,346,556,2721,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2726,806,'admin/structure/taxonomy/%/fields','admin/structure/taxonomy/%/fields','Manage fields','a:0:{}','system',-1,0,0,0,1,5,0,21,166,396,806,2726,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2731,556,'admin/config/people/accounts/fields','admin/config/people/accounts/fields','Manage fields','a:0:{}','system',-1,0,0,0,1,5,0,21,121,346,556,2731,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2736,2716,'admin/structure/taxonomy/%/display/default','admin/structure/taxonomy/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,21,166,396,806,2716,2736,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2741,2721,'admin/config/people/accounts/display/default','admin/config/people/accounts/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,21,121,346,556,2721,2741,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2746,2036,'admin/structure/media/manage/%/display','admin/structure/media/manage/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,21,166,1706,2036,2746,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2751,916,'admin/structure/types/manage/%/display','admin/structure/types/manage/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,21,166,286,916,2751,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2756,2036,'admin/structure/media/manage/%/fields','admin/structure/media/manage/%/fields','Manage fields','a:0:{}','system',-1,0,0,0,1,5,0,21,166,1706,2036,2756,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2761,916,'admin/structure/types/manage/%/fields','admin/structure/types/manage/%/fields','Manage fields','a:0:{}','system',-1,0,0,0,1,5,0,21,166,286,916,2761,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2766,2716,'admin/structure/taxonomy/%/display/full','admin/structure/taxonomy/%/display/full','Taxonomy term page','a:0:{}','system',-1,0,0,0,0,6,0,21,166,396,806,2716,2766,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2771,2721,'admin/config/people/accounts/display/full','admin/config/people/accounts/display/full','User account','a:0:{}','system',-1,0,0,0,0,6,0,21,121,346,556,2721,2771,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2776,2726,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','','a:0:{}','system',-1,0,0,0,0,6,0,21,166,396,806,2726,2776,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2781,2731,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','','a:0:{}','system',-1,0,0,0,0,6,0,21,121,346,556,2731,2781,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2786,2746,'admin/structure/media/manage/%/display/media_gallery_block_thumbnail','admin/structure/media/manage/%/display/media_gallery_block_thumbnail','Block thumbnail','a:0:{}','system',-1,0,0,0,8,6,0,21,166,1706,2036,2746,2786,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2791,2746,'admin/structure/media/manage/%/display/media_gallery_collection_thumbnail','admin/structure/media/manage/%/display/media_gallery_collection_thumbnail','Collection thumbnail','a:0:{}','system',-1,0,0,0,9,6,0,21,166,1706,2036,2746,2791,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2796,2746,'admin/structure/media/manage/%/display/default','admin/structure/media/manage/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,21,166,1706,2036,2746,2796,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2801,2751,'admin/structure/types/manage/%/display/default','admin/structure/types/manage/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,21,166,286,916,2751,2801,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2806,2751,'admin/structure/types/manage/%/display/full','admin/structure/types/manage/%/display/full','Full content','a:0:{}','system',-1,0,0,0,0,6,0,21,166,286,916,2751,2806,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2811,2746,'admin/structure/media/manage/%/display/media_gallery_detail','admin/structure/media/manage/%/display/media_gallery_detail','Gallery detail','a:0:{}','system',-1,0,0,0,7,6,0,21,166,1706,2036,2746,2811,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2816,2746,'admin/structure/media/manage/%/display/media_gallery_lightbox','admin/structure/media/manage/%/display/media_gallery_lightbox','Gallery lightbox','a:0:{}','system',-1,0,0,0,6,6,0,21,166,1706,2036,2746,2816,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2821,2746,'admin/structure/media/manage/%/display/media_gallery_thumbnail','admin/structure/media/manage/%/display/media_gallery_thumbnail','Gallery thumbnail','a:0:{}','system',-1,0,0,0,5,6,0,21,166,1706,2036,2746,2821,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2826,2746,'admin/structure/media/manage/%/display/media_large','admin/structure/media/manage/%/display/media_large','Large','a:0:{}','system',-1,0,0,0,3,6,0,21,166,1706,2036,2746,2826,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2831,2746,'admin/structure/media/manage/%/display/media_link','admin/structure/media/manage/%/display/media_link','Link','a:0:{}','system',-1,0,0,0,0,6,0,21,166,1706,2036,2746,2831,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2836,2751,'admin/structure/types/manage/%/display/media_gallery_block','admin/structure/types/manage/%/display/media_gallery_block','Media gallery block','a:0:{}','system',-1,0,0,0,5,6,0,21,166,286,916,2751,2836,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2841,2746,'admin/structure/media/manage/%/display/media_original','admin/structure/media/manage/%/display/media_original','Original','a:0:{}','system',-1,0,0,0,4,6,0,21,166,1706,2036,2746,2841,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2846,2746,'admin/structure/media/manage/%/display/media_preview','admin/structure/media/manage/%/display/media_preview','Preview','a:0:{}','system',-1,0,0,0,1,6,0,21,166,1706,2036,2746,2846,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2851,2751,'admin/structure/types/manage/%/display/rss','admin/structure/types/manage/%/display/rss','RSS','a:0:{}','system',-1,0,0,0,2,6,0,21,166,286,916,2751,2851,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2856,2751,'admin/structure/types/manage/%/display/search_index','admin/structure/types/manage/%/display/search_index','Search index','a:0:{}','system',-1,0,0,0,3,6,0,21,166,286,916,2751,2856,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2861,2751,'admin/structure/types/manage/%/display/search_result','admin/structure/types/manage/%/display/search_result','Search result','a:0:{}','system',-1,0,0,0,4,6,0,21,166,286,916,2751,2861,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2866,2746,'admin/structure/media/manage/%/display/media_small','admin/structure/media/manage/%/display/media_small','Small','a:0:{}','system',-1,0,0,0,2,6,0,21,166,1706,2036,2746,2866,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2871,2751,'admin/structure/types/manage/%/display/teaser','admin/structure/types/manage/%/display/teaser','Teaser','a:0:{}','system',-1,0,0,0,1,6,0,21,166,286,916,2751,2871,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2876,2756,'admin/structure/media/manage/%/fields/%','admin/structure/media/manage/%/fields/%','','a:0:{}','system',-1,0,0,0,0,6,0,21,166,1706,2036,2756,2876,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2881,2761,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','','a:0:{}','system',-1,0,0,0,0,6,0,21,166,286,916,2761,2881,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2886,2776,'admin/structure/taxonomy/%/fields/%/delete','admin/structure/taxonomy/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,21,166,396,806,2726,2776,2886,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2891,2776,'admin/structure/taxonomy/%/fields/%/edit','admin/structure/taxonomy/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,21,166,396,806,2726,2776,2891,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2896,2776,'admin/structure/taxonomy/%/fields/%/field-settings','admin/structure/taxonomy/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,21,166,396,806,2726,2776,2896,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2901,2776,'admin/structure/taxonomy/%/fields/%/widget-type','admin/structure/taxonomy/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,21,166,396,806,2726,2776,2901,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2906,2781,'admin/config/people/accounts/fields/%/delete','admin/config/people/accounts/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,21,121,346,556,2731,2781,2906,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2911,2781,'admin/config/people/accounts/fields/%/edit','admin/config/people/accounts/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,21,121,346,556,2731,2781,2911,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2916,2781,'admin/config/people/accounts/fields/%/field-settings','admin/config/people/accounts/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,21,121,346,556,2731,2781,2916,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2921,2781,'admin/config/people/accounts/fields/%/widget-type','admin/config/people/accounts/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,21,121,346,556,2731,2781,2921,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2926,1266,'admin/structure/types/manage/%/comment/display/default','admin/structure/types/manage/%/comment/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,21,166,286,916,1266,2926,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2931,1266,'admin/structure/types/manage/%/comment/display/full','admin/structure/types/manage/%/comment/display/full','Full comment','a:0:{}','system',-1,0,0,0,0,6,0,21,166,286,916,1266,2931,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2936,2876,'admin/structure/media/manage/%/fields/%/delete','admin/structure/media/manage/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,21,166,1706,2036,2756,2876,2936,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2941,1271,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','','a:0:{}','system',-1,0,0,0,0,6,0,21,166,286,916,1271,2941,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2946,2876,'admin/structure/media/manage/%/fields/%/edit','admin/structure/media/manage/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,21,166,1706,2036,2756,2876,2946,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2951,2876,'admin/structure/media/manage/%/fields/%/field-settings','admin/structure/media/manage/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,21,166,1706,2036,2756,2876,2951,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2956,2876,'admin/structure/media/manage/%/fields/%/widget-type','admin/structure/media/manage/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,21,166,1706,2036,2756,2876,2956,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2961,2881,'admin/structure/types/manage/%/fields/%/delete','admin/structure/types/manage/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,21,166,286,916,2761,2881,2961,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2966,2881,'admin/structure/types/manage/%/fields/%/edit','admin/structure/types/manage/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,21,166,286,916,2761,2881,2966,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2971,2881,'admin/structure/types/manage/%/fields/%/field-settings','admin/structure/types/manage/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,21,166,286,916,2761,2881,2971,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2976,2881,'admin/structure/types/manage/%/fields/%/widget-type','admin/structure/types/manage/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,21,166,286,916,2761,2881,2976,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2981,2941,'admin/structure/types/manage/%/comment/fields/%/delete','admin/structure/types/manage/%/comment/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,21,166,286,916,1271,2941,2981,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2986,2941,'admin/structure/types/manage/%/comment/fields/%/edit','admin/structure/types/manage/%/comment/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,21,166,286,916,1271,2941,2986,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2991,2941,'admin/structure/types/manage/%/comment/fields/%/field-settings','admin/structure/types/manage/%/comment/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,21,166,286,916,1271,2941,2991,0,0,0);
INSERT INTO `menu_links` VALUES ('management',2996,2941,'admin/structure/types/manage/%/comment/fields/%/widget-type','admin/structure/types/manage/%/comment/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,21,166,286,916,1271,2941,2996,0,0,0);
INSERT INTO `menu_links` VALUES ('management',3001,251,'admin/structure/block/demo/acq_seo_lab','admin/structure/block/demo/acq_seo_lab','SEO Lab','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,3001,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',3006,661,'admin/structure/block/list/acq_seo_lab','admin/structure/block/list/acq_seo_lab','SEO Lab','a:0:{}','system',-1,0,0,0,0,5,0,21,166,251,661,3006,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',3011,251,'admin/structure/block/demo/acq_seo_ri','admin/structure/block/demo/acq_seo_ri','seo-ri','a:0:{}','system',-1,0,0,0,0,4,0,21,166,251,3011,0,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',3016,661,'admin/structure/block/list/acq_seo_ri','admin/structure/block/list/acq_seo_ri','seo-ri','a:0:{}','system',-1,0,0,0,-10,5,0,21,166,251,661,3016,0,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',3021,3006,'admin/structure/block/list/acq_seo_lab/add','admin/structure/block/list/acq_seo_lab/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,3006,3021,0,0,0,0);
INSERT INTO `menu_links` VALUES ('management',3026,941,'admin/structure/block/list/impact/add','admin/structure/block/list/impact/add','Add block','a:0:{}','system',-1,0,0,0,0,6,0,21,166,251,661,941,3026,0,0,0,0);
/*!40000 ALTER TABLE `menu_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menu_router`
--
DROP TABLE IF EXISTS `menu_router`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `menu_router` (
`path` varchar(255) NOT NULL default '' COMMENT 'Primary Key: the Drupal path this entry describes',
`load_functions` blob NOT NULL COMMENT 'A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.',
`to_arg_functions` blob NOT NULL COMMENT 'A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.',
`access_callback` varchar(255) NOT NULL default '' COMMENT 'The callback which determines the access to this router path. Defaults to user_access.',
`access_arguments` blob COMMENT 'A serialized array of arguments for the access callback.',
`page_callback` varchar(255) NOT NULL default '' COMMENT 'The name of the function that renders the page.',
`page_arguments` blob COMMENT 'A serialized array of arguments for the page callback.',
`delivery_callback` varchar(255) NOT NULL default '' COMMENT 'The name of the function that sends the result of the page_callback function to the browser.',
`fit` int(11) NOT NULL default '0' COMMENT 'A numeric representation of how specific the path is.',
`number_parts` smallint(6) NOT NULL default '0' COMMENT 'Number of parts in this router path.',
`context` int(11) NOT NULL default '0' COMMENT 'Only for local tasks (tabs) - the context of a local task to control its placement.',
`tab_parent` varchar(255) NOT NULL default '' COMMENT 'Only for local tasks (tabs) - the router path of the parent page (which may also be a local task).',
`tab_root` varchar(255) NOT NULL default '' COMMENT 'Router path of the closest non-tab parent page. For pages that are not local tasks, this will be the same as the path.',
`title` varchar(255) NOT NULL default '' COMMENT 'The title for the current page, or the title for the tab if this is a local task.',
`title_callback` varchar(255) NOT NULL default '' COMMENT 'A function which will alter the title. Defaults to t()',
`title_arguments` varchar(255) NOT NULL default '' COMMENT 'A serialized array of arguments for the title callback. If empty, the title will be used as the sole argument for the title callback.',
`theme_callback` varchar(255) NOT NULL default '' COMMENT 'A function which returns the name of the theme that will be used to render this page. If left empty, the default theme will be used.',
`theme_arguments` varchar(255) NOT NULL default '' COMMENT 'A serialized array of arguments for the theme callback.',
`type` int(11) NOT NULL default '0' COMMENT 'Numeric representation of the type of the menu item, like MENU_LOCAL_TASK.',
`block_callback` varchar(255) NOT NULL default '' COMMENT 'Name of a function used to render the block on the system administration page for this item.',
`description` text NOT NULL COMMENT 'A description of this item.',
`position` varchar(255) NOT NULL default '' COMMENT 'The position of the block (left or right) on the system administration page for this item.',
`weight` int(11) NOT NULL default '0' COMMENT 'Weight of the element. Lighter weights are higher up, heavier weights go down.',
`include_file` mediumtext COMMENT 'The file to include for this element, usually the page callback function lives in this file.',
PRIMARY KEY (`path`),
KEY `fit` (`fit`),
KEY `tab_parent` (`tab_parent`(64),`weight`,`title`),
KEY `tab_root_weight_title` (`tab_root`(64),`weight`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps paths to various callbacks (access, page and title)';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `menu_router`
--
LOCK TABLES `menu_router` WRITE;
/*!40000 ALTER TABLE `menu_router` DISABLE KEYS */;
INSERT INTO `menu_router` VALUES ('admin','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','dashboard_admin','a:0:{}','',1,1,0,'','admin','Dashboard','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','','',9,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/by-module','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_by_module','a:0:{}','',3,2,1,'admin','admin','By module','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/by-task','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_main_admin_page','a:0:{}','',3,2,1,'admin','admin','By task','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/compact','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_compact_page','a:0:{}','',3,2,0,'','admin/compact','Compact mode','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_config_page','a:0:{}','',3,2,0,'','admin/config','Configuration','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Administer settings','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/content','Content authoring','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Settings related to formatting and authoring content.','left',-15,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/blog','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:29:\"flexible_blogs_admin_settings\";}','',15,4,0,'','admin/config/content/blog','Blog settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure settings that control the appearance of blog entries.','',0,'sites/all/modules/flexible_blogs/flexible_blogs.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/formats','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:21:\"filter_admin_overview\";}','',15,4,0,'','admin/config/content/formats','Text formats','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.','',0,'modules/filter/filter.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/formats/%','a:1:{i:4;s:18:\"filter_format_load\";}','','user_access','a:1:{i:0;s:18:\"administer filters\";}','filter_admin_format_page','a:1:{i:0;i:4;}','',30,5,0,'','admin/config/content/formats/%','','filter_admin_format_title','a:1:{i:0;i:4;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/filter/filter.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/formats/%/delete','a:1:{i:4;s:18:\"filter_format_load\";}','','_filter_delete_format_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:19:\"filter_admin_delete\";i:1;i:4;}','',61,6,0,'','admin/config/content/formats/%/delete','Delete text format','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/filter/filter.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/formats/add','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','filter_admin_format_page','a:0:{}','',31,5,1,'admin/config/content/formats','admin/config/content/formats','Add text format','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',1,'modules/filter/filter.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/formats/list','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:21:\"filter_admin_overview\";}','',31,5,1,'admin/config/content/formats','admin/config/content/formats','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/filter/filter.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/htmlpurifier','','','0','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:27:\"htmlpurifier_admin_settings\";}','',15,4,0,'','admin/config/content/htmlpurifier','HTML Purifier settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure overall settings for the HTML Purifier filters, including how they are cached.','',0,'sites/all/modules/htmlpurifier/htmlpurifier.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom','','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','mollom_admin_form_list','a:0:{}','',15,4,0,'','admin/config/content/mollom','Mollom','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Mollom is a web service that helps you manage your community.','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/add','','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','drupal_get_form','a:1:{i:0;s:27:\"mollom_admin_configure_form\";}','',31,5,1,'admin/config/content/mollom','admin/config/content/mollom','Add form','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/blacklist','','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','mollom_admin_blacklist','a:0:{}','',31,5,1,'admin/config/content/mollom','admin/config/content/mollom','Blacklist','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Configure blacklist.','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/blacklist/delete','','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','drupal_get_form','a:2:{i:0;s:29:\"mollom_admin_blacklist_delete\";i:1;i:6;}','',63,6,0,'','admin/config/content/mollom/blacklist/delete','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/forms','','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','mollom_admin_form_list','a:0:{}','',31,5,1,'admin/config/content/mollom','admin/config/content/mollom','Forms','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/manage/%','a:1:{i:5;s:16:\"mollom_form_load\";}','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','drupal_get_form','a:2:{i:0;s:27:\"mollom_admin_configure_form\";i:1;i:5;}','',62,6,0,'','admin/config/content/mollom/manage/%','Configure','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/settings','','','user_access','a:1:{i:0;s:17:\"administer mollom\";}','drupal_get_form','a:1:{i:0;s:21:\"mollom_admin_settings\";}','',31,5,1,'admin/config/content/mollom','admin/config/content/mollom','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Configure Mollom keys and global settings.','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/mollom/unprotect/%','a:1:{i:5;s:16:\"mollom_form_load\";}','','scarecrow_mollom_require_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:27:\"mollom_admin_unprotect_form\";i:1;i:5;}','',62,6,0,'','admin/config/content/mollom/unprotect/%','Unprotect form','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/wysiwyg','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:24:\"wysiwyg_profile_overview\";}','',15,4,0,'','admin/config/content/wysiwyg','Wysiwyg profiles','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure client-side editors.','',0,'sites/all/modules/wysiwyg/wysiwyg.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/wysiwyg/profile','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:24:\"wysiwyg_profile_overview\";}','',31,5,1,'admin/config/content/wysiwyg','admin/config/content/wysiwyg','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'sites/all/modules/wysiwyg/wysiwyg.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/wysiwyg/profile/%/delete','a:1:{i:5;s:20:\"wysiwyg_profile_load\";}','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:2:{i:0;s:30:\"wysiwyg_profile_delete_confirm\";i:1;i:5;}','',125,7,1,'admin/config/content/wysiwyg/profile/%wysiwyg_profile','admin/config/content/wysiwyg/profile','Remove','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'sites/all/modules/wysiwyg/wysiwyg.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/content/wysiwyg/profile/%/edit','a:1:{i:5;s:20:\"wysiwyg_profile_load\";}','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:2:{i:0;s:20:\"wysiwyg_profile_form\";i:1;i:5;}','',125,7,1,'admin/config/content/wysiwyg/profile/%wysiwyg_profile','admin/config/content/wysiwyg/profile','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'sites/all/modules/wysiwyg/wysiwyg.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/development','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/development','Development','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Development tools.','right',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/development/logging','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:23:\"system_logging_settings\";}','',15,4,0,'','admin/config/development/logging','Logging and errors','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Settings for logging and alerts modules. Various modules can route Drupal\'s system events to different destinations, such as syslog, database, email, etc.','',-15,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/development/maintenance','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:28:\"system_site_maintenance_mode\";}','',15,4,0,'','admin/config/development/maintenance','Maintenance mode','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Take the site offline for maintenance or bring it back online.','',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/development/performance','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:27:\"system_performance_settings\";}','',15,4,0,'','admin/config/development/performance','Performance','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.','',-20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/media','Media','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Media tools.','left',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/file-system','','','0','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:27:\"system_file_system_settings\";}','',15,4,0,'','admin/config/media/file-system','File system','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Tell Drupal where to store uploaded files and how they are accessed.','',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/galleries','','','user_access','a:1:{i:0;s:26:\"administer media galleries\";}','media_gallery_admin_settings','a:0:{}','',15,4,0,'','admin/config/media/galleries','Gallery settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure settings for the \"All galleries\" page.','',0,'sites/all/modules/media_gallery/media_gallery.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles','','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','image_style_list','a:0:{}','',15,4,0,'','admin/config/media/image-styles','Image styles','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure styles that can be used for resizing or adjusting images on display.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/add','','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:1:{i:0;s:20:\"image_style_add_form\";}','',31,5,1,'admin/config/media/image-styles','admin/config/media/image-styles','Add style','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','Add a new image style.','',2,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/delete/%','a:1:{i:5;a:1:{s:16:\"image_style_load\";a:2:{i:0;N;i:1;s:1:\"1\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:2:{i:0;s:23:\"image_style_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/media/image-styles/delete/%','Delete style','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Delete an image style.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/edit/%','a:1:{i:5;s:16:\"image_style_load\";}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:2:{i:0;s:16:\"image_style_form\";i:1;i:5;}','',62,6,0,'','admin/config/media/image-styles/edit/%','Edit style','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Configure an image style.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/edit/%/add/%','a:2:{i:5;a:1:{s:16:\"image_style_load\";a:1:{i:0;i:5;}}i:7;a:1:{s:28:\"image_effect_definition_load\";a:1:{i:0;i:5;}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:3:{i:0;s:17:\"image_effect_form\";i:1;i:5;i:2;i:7;}','',250,8,0,'','admin/config/media/image-styles/edit/%/add/%','Add image effect','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Add a new effect to a style.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/edit/%/effects/%','a:2:{i:5;a:1:{s:16:\"image_style_load\";a:2:{i:0;i:5;i:1;s:1:\"3\";}}i:7;a:1:{s:17:\"image_effect_load\";a:2:{i:0;i:5;i:1;s:1:\"3\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:3:{i:0;s:17:\"image_effect_form\";i:1;i:5;i:2;i:7;}','',250,8,0,'','admin/config/media/image-styles/edit/%/effects/%','Edit image effect','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Edit an existing effect within a style.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/edit/%/effects/%/delete','a:2:{i:5;a:1:{s:16:\"image_style_load\";a:2:{i:0;i:5;i:1;s:1:\"3\";}}i:7;a:1:{s:17:\"image_effect_load\";a:2:{i:0;i:5;i:1;s:1:\"3\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:3:{i:0;s:24:\"image_effect_delete_form\";i:1;i:5;i:2;i:7;}','',501,9,0,'','admin/config/media/image-styles/edit/%/effects/%/delete','Delete image effect','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Delete an existing effect from a style.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/list','','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','image_style_list','a:0:{}','',31,5,1,'admin/config/media/image-styles','admin/config/media/image-styles','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','List the current image styles on the site.','',1,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-styles/revert/%','a:1:{i:5;a:1:{s:16:\"image_style_load\";a:2:{i:0;N;i:1;s:1:\"2\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:2:{i:0;s:23:\"image_style_revert_form\";i:1;i:5;}','',62,6,0,'','admin/config/media/image-styles/revert/%','Revert style','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Revert an image style.','',0,'modules/image/image.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/media/image-toolkit','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:29:\"system_image_toolkit_settings\";}','',15,4,0,'','admin/config/media/image-toolkit','Image toolkit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Choose which image toolkit to use if you have installed optional toolkits.','',20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/people','People','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure user accounts.','left',-20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts','','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:19:\"user_admin_settings\";}','',15,4,0,'','admin/config/people/accounts','Account settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.','',-10,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/display','','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";i:3;s:7:\"default\";}','',31,5,1,'admin/config/people/accounts','admin/config/people/accounts','Manage display','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/display/default','','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:7:\"default\";i:3;s:11:\"user_access\";i:4;s:16:\"administer users\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";i:3;s:7:\"default\";}','',63,6,1,'admin/config/people/accounts/display','admin/config/people/accounts','Default','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/display/full','','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:4:\"full\";i:3;s:11:\"user_access\";i:4;s:16:\"administer users\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";i:3;s:4:\"full\";}','',63,6,1,'admin/config/people/accounts/display','admin/config/people/accounts','User account','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/fields','','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}','',31,5,1,'admin/config/people/accounts','admin/config/people/accounts','Manage fields','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',1,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/fields/%','a:1:{i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:1:\"0\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',62,6,1,'admin/config/people/accounts/fields','admin/config/people/accounts','','field_ui_menu_title','a:1:{i:0;i:5;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/fields/%/delete','a:1:{i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:1:\"0\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/fields/%/edit','a:1:{i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:1:\"0\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/fields/%/field-settings','a:1:{i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:1:\"0\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts','Field settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/fields/%/widget-type','a:1:{i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:1:\"0\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts','Widget type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/accounts/settings','','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:19:\"user_admin_settings\";}','',31,5,1,'admin/config/people/accounts','admin/config/people/accounts','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/comment_notify','','','user_access','a:1:{i:0;s:25:\"administer comment notify\";}','drupal_get_form','a:1:{i:0;s:23:\"comment_notify_settings\";}','',15,4,0,'','admin/config/people/comment_notify','Comment notify','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure settings for e-mails about new comments.','',0,'');
INSERT INTO `menu_router` VALUES ('admin/config/people/comment_notify/settings','','','user_access','a:1:{i:0;s:25:\"administer comment notify\";}','drupal_get_form','a:1:{i:0;s:23:\"comment_notify_settings\";}','',31,5,1,'admin/config/people/comment_notify','admin/config/people/comment_notify','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','Configure settings for e-mails about new comments.','',0,'');
INSERT INTO `menu_router` VALUES ('admin/config/people/comment_notify/unsubscribe','','','user_access','a:1:{i:0;s:25:\"administer comment notify\";}','drupal_get_form','a:1:{i:0;s:26:\"comment_notify_unsubscribe\";}','',31,5,1,'admin/config/people/comment_notify','admin/config/people/comment_notify','Unsubscribe','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Unsubscribe an email from all notifications.','',2,'');
INSERT INTO `menu_router` VALUES ('admin/config/people/ip-blocking','','','0','a:1:{i:0;s:18:\"block IP addresses\";}','system_ip_blocking','a:0:{}','',15,4,0,'','admin/config/people/ip-blocking','IP address blocking','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage blocked IP addresses.','',10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/ip-blocking/delete/%','a:1:{i:5;s:15:\"blocked_ip_load\";}','','0','a:1:{i:0;s:18:\"block IP addresses\";}','drupal_get_form','a:2:{i:0;s:25:\"system_ip_blocking_delete\";i:1;i:5;}','',62,6,0,'','admin/config/people/ip-blocking/delete/%','Delete IP address','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/profile','','','0','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:22:\"profile_admin_overview\";}','',15,4,0,'','admin/config/people/profile','Profiles','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Create customizable fields for your users.','',0,'modules/profile/profile.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/profile/add','','','0','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:18:\"profile_field_form\";}','',31,5,0,'','admin/config/people/profile/add','Add field','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/profile/profile.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/profile/autocomplete','','','0','a:1:{i:0;s:16:\"administer users\";}','profile_admin_settings_autocomplete','a:0:{}','',31,5,0,'','admin/config/people/profile/autocomplete','Profile category autocomplete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/profile/profile.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/profile/delete','','','0','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:20:\"profile_field_delete\";}','',31,5,0,'','admin/config/people/profile/delete','Delete field','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/profile/profile.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/people/profile/edit','','','0','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:18:\"profile_field_form\";}','',31,5,0,'','admin/config/people/profile/edit','Edit field','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/profile/profile.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/regional','Regional and language','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Regional settings, localization and translation.','left',-5,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_date_time_settings\";}','',15,4,0,'','admin/config/regional/date-time','Date and time','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure display formats for date and time.','',-15,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/formats','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_date_time_formats','a:0:{}','',31,5,1,'admin/config/regional/date-time','admin/config/regional/date-time','Formats','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Configure display format strings for date and time.','',-9,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/formats/%/delete','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:30:\"system_date_delete_format_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/formats/%/delete','Delete date format','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Allow users to delete a configured date format.','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/formats/%/edit','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:34:\"system_configure_date_formats_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/formats/%/edit','Edit date format','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Allow users to edit a configured date format.','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/formats/add','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:34:\"system_configure_date_formats_form\";}','',63,6,1,'admin/config/regional/date-time/formats','admin/config/regional/date-time','Add format','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','Allow users to add additional date formats.','',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/formats/lookup','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_date_time_lookup','a:0:{}','',63,6,0,'','admin/config/regional/date-time/formats/lookup','Date and time lookup','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/types','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_date_time_settings\";}','',31,5,1,'admin/config/regional/date-time','admin/config/regional/date-time','Types','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','Configure display formats for date and time.','',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/types/%/delete','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:35:\"system_delete_date_format_type_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/types/%/delete','Delete date type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Allow users to delete a configured date type.','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/date-time/types/add','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:32:\"system_add_date_format_type_form\";}','',63,6,1,'admin/config/regional/date-time/types','admin/config/regional/date-time','Add date type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','Add new date type.','',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/regional/settings','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:24:\"system_regional_settings\";}','',15,4,0,'','admin/config/regional/settings','Regional settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Settings for the site\'s default time zone and country.','',-20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/search','Search and metadata','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Local site search, metadata and SEO.','left',-10,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/clean-urls','','','0','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_clean_url_settings\";}','',15,4,0,'','admin/config/search/clean-urls','Clean URLs','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Enable or disable clean URLs for your site.','',5,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/clean-urls/check','','','1','a:0:{}','drupal_json_output','a:1:{i:0;a:1:{s:6:\"status\";b:1;}}','',31,5,0,'','admin/config/search/clean-urls/check','Clean URL check','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_overview','a:0:{}','',15,4,0,'','admin/config/search/path','URL aliases','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Change your site\'s URL paths by aliasing them.','',-10,'modules/path/path.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path/add','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_edit','a:0:{}','',31,5,1,'admin/config/search/path','admin/config/search/path','Add alias','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/path/path.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path/delete/%','a:1:{i:5;s:9:\"path_load\";}','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','drupal_get_form','a:2:{i:0;s:25:\"path_admin_delete_confirm\";i:1;i:5;}','',62,6,0,'','admin/config/search/path/delete/%','Delete alias','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/path/path.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path/delete_bulk','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','drupal_get_form','a:1:{i:0;s:21:\"pathauto_admin_delete\";}','',31,5,1,'admin/config/search/path','admin/config/search/path','Delete aliases','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',11,'sites/all/modules/pathauto/pathauto.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path/edit/%','a:1:{i:5;s:9:\"path_load\";}','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_edit','a:1:{i:0;i:5;}','',62,6,0,'','admin/config/search/path/edit/%','Edit alias','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/path/path.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path/list','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_overview','a:0:{}','',31,5,1,'admin/config/search/path','admin/config/search/path','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/path/path.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/path/pathauto','','','user_access','a:1:{i:0;s:19:\"administer pathauto\";}','drupal_get_form','a:1:{i:0;s:23:\"pathauto_admin_settings\";}','',31,5,1,'admin/config/search/path','admin/config/search/path','Automated alias settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'sites/all/modules/pathauto/pathauto.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/settings','','','user_access','a:1:{i:0;s:17:\"administer search\";}','drupal_get_form','a:1:{i:0;s:21:\"search_admin_settings\";}','',15,4,0,'','admin/config/search/settings','Search settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure relevance settings for search and other indexing options.','',-10,'modules/search/search.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/settings/reindex','','','user_access','a:1:{i:0;s:17:\"administer search\";}','drupal_get_form','a:1:{i:0;s:22:\"search_reindex_confirm\";}','',31,5,0,'','admin/config/search/settings/reindex','Clear index','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/search/search.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/verifications','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','site_verify_list','a:0:{}','',15,4,0,'','admin/config/search/verifications','Verifications','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Add, change or remove verifications for your site.','',0,'sites/all/modules/site_verify/site_verify.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/verifications/add','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:21:\"site_verify_edit_form\";}','',31,5,1,'admin/config/search/verifications','admin/config/search/verifications','Add verification','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'sites/all/modules/site_verify/site_verify.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/verifications/add/%','a:1:{i:5;s:23:\"site_verify_engine_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:3:{i:0;s:21:\"site_verify_edit_form\";i:1;a:0:{}i:2;i:5;}','',62,6,0,'','admin/config/search/verifications/add/%','Add','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/site_verify/site_verify.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/verifications/delete/%','a:1:{i:5;s:16:\"site_verify_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:23:\"site_verify_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/search/verifications/delete/%','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/site_verify/site_verify.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/verifications/edit/%','a:1:{i:5;s:16:\"site_verify_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:21:\"site_verify_edit_form\";i:1;i:5;}','',62,6,0,'','admin/config/search/verifications/edit/%','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/site_verify/site_verify.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap','','','user_access','a:1:{i:0;s:21:\"administer xmlsitemap\";}','drupal_get_form','a:1:{i:0;s:28:\"xmlsitemap_sitemap_list_form\";}','',15,4,0,'','admin/config/search/xmlsitemap','XML sitemap','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure your site\'s XML sitemap to help search engines index your important pages.','',0,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap/add','','','0','a:1:{i:0;s:21:\"administer xmlsitemap\";}','drupal_get_form','a:1:{i:0;s:28:\"xmlsitemap_sitemap_edit_form\";}','',31,5,1,'admin/config/search/xmlsitemap','admin/config/search/xmlsitemap','Add new XML sitemap','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap/delete/%','a:1:{i:5;s:23:\"xmlsitemap_sitemap_load\";}','','0','a:1:{i:0;s:21:\"administer xmlsitemap\";}','drupal_get_form','a:2:{i:0;s:30:\"xmlsitemap_sitemap_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/search/xmlsitemap/delete/%','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap/edit/%','a:1:{i:5;s:23:\"xmlsitemap_sitemap_load\";}','','user_access','a:1:{i:0;s:21:\"administer xmlsitemap\";}','drupal_get_form','a:2:{i:0;s:28:\"xmlsitemap_sitemap_edit_form\";i:1;i:5;}','',62,6,0,'','admin/config/search/xmlsitemap/edit/%','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap/list','','','user_access','a:1:{i:0;s:21:\"administer xmlsitemap\";}','drupal_get_form','a:1:{i:0;s:28:\"xmlsitemap_sitemap_list_form\";}','',31,5,1,'admin/config/search/xmlsitemap','admin/config/search/xmlsitemap','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap/rebuild','','','_xmlsitemap_rebuild_form_access','a:0:{}','drupal_get_form','a:1:{i:0;s:23:\"xmlsitemap_rebuild_form\";}','',31,5,0,'','admin/config/search/xmlsitemap/rebuild','Rebuild links','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Rebuild the site map.','',20,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/search/xmlsitemap/settings','','','user_access','a:1:{i:0;s:21:\"administer xmlsitemap\";}','drupal_get_form','a:1:{i:0;s:24:\"xmlsitemap_settings_form\";}','',31,5,1,'admin/config/search/xmlsitemap','admin/config/search/xmlsitemap','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'sites/all/modules/xmlsitemap/xmlsitemap.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/services','Web services','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Tools related to web services.','right',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator','','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','aggregator_admin_overview','a:0:{}','',15,4,0,'','admin/config/services/aggregator','Feed aggregator','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure which content your site aggregates from other sites, how often it polls them, and how they\'re categorized.','',10,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/add/category','','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:1:{i:0;s:24:\"aggregator_form_category\";}','',63,6,1,'admin/config/services/aggregator','admin/config/services/aggregator','Add category','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/add/feed','','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:1:{i:0;s:20:\"aggregator_form_feed\";}','',63,6,1,'admin/config/services/aggregator','admin/config/services/aggregator','Add feed','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/add/opml','','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:1:{i:0;s:20:\"aggregator_form_opml\";}','',63,6,1,'admin/config/services/aggregator','admin/config/services/aggregator','Import OPML','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/edit/category/%','a:1:{i:6;s:24:\"aggregator_category_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:24:\"aggregator_form_category\";i:1;i:6;}','',126,7,0,'','admin/config/services/aggregator/edit/category/%','Edit category','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/edit/feed/%','a:1:{i:6;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:20:\"aggregator_form_feed\";i:1;i:6;}','',126,7,0,'','admin/config/services/aggregator/edit/feed/%','Edit feed','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/list','','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','aggregator_admin_overview','a:0:{}','',31,5,1,'admin/config/services/aggregator','admin/config/services/aggregator','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/remove/%','a:1:{i:5;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:28:\"aggregator_admin_remove_feed\";i:1;i:5;}','',62,6,0,'','admin/config/services/aggregator/remove/%','Remove items','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/settings','','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:1:{i:0;s:21:\"aggregator_admin_form\";}','',31,5,1,'admin/config/services/aggregator','admin/config/services/aggregator','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/aggregator/update/%','a:1:{i:5;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','aggregator_admin_refresh_feed','a:1:{i:0;i:5;}','',62,6,0,'','admin/config/services/aggregator/update/%','Update items','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/services/follow','','','user_access','a:1:{i:0;s:22:\"edit site follow links\";}','drupal_get_form','a:1:{i:0;s:17:\"follow_links_form\";}','',15,4,0,'','admin/config/services/follow','Site follow links','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Add sitewide follow links','',0,'');
INSERT INTO `menu_router` VALUES ('admin/config/services/rss-publishing','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_rss_feeds_settings\";}','',15,4,0,'','admin/config/services/rss-publishing','RSS publishing','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/system','System','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','General system related configuration.','right',-20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/actions','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','system_actions_manage','a:0:{}','',15,4,0,'','admin/config/system/actions','Actions','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage the actions defined for your site.','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/actions/configure','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','drupal_get_form','a:1:{i:0;s:24:\"system_actions_configure\";}','',31,5,0,'','admin/config/system/actions/configure','Configure an advanced action','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/actions/delete/%','a:1:{i:5;s:12:\"actions_load\";}','','user_access','a:1:{i:0;s:18:\"administer actions\";}','drupal_get_form','a:2:{i:0;s:26:\"system_actions_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/system/actions/delete/%','Delete action','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Delete an action.','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/actions/manage','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','system_actions_manage','a:0:{}','',31,5,1,'admin/config/system/actions','admin/config/system/actions','Manage actions','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','Manage the actions defined for your site.','',-2,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/actions/orphan','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','system_actions_remove_orphans','a:0:{}','',31,5,0,'','admin/config/system/actions/orphan','Remove orphans','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/addthis','','','user_access','a:1:{i:0;s:18:\"administer addthis\";}','drupal_get_form','a:1:{i:0;s:22:\"addthis_admin_settings\";}','',15,4,0,'','admin/config/system/addthis','AddThis','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Set username and customize look and feel for <a href=\"http://www.addthis.com/\">AddThis</a> button.','',0,'sites/all/modules/addthis/addthis.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/system/site-information','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:32:\"system_site_information_settings\";}','',15,4,0,'','admin/config/system/site-information','Site information','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Change site name, e-mail address, slogan, default front page, number of posts per page, error pages and cron.','',-20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/user-interface','User interface','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Tools that enhance the user interface.','right',-15,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut','','','user_access','a:1:{i:0;s:20:\"administer shortcuts\";}','shortcut_set_admin','a:0:{}','',15,4,0,'','admin/config/user-interface/shortcut','Shortcuts','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Add and modify shortcut sets.','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/%','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}','',30,5,0,'','admin/config/user-interface/shortcut/%','Edit shortcuts','shortcut_set_title','a:1:{i:0;i:4;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/%/add-link','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:17:\"shortcut_link_add\";i:1;i:4;}','',61,6,1,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Add shortcut','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/%/add-link-inline','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','shortcut_link_add_inline','a:1:{i:0;i:4;}','',61,6,0,'','admin/config/user-interface/shortcut/%/add-link-inline','Add shortcut','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/%/delete','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_delete_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:24:\"shortcut_set_delete_form\";i:1;i:4;}','',61,6,0,'','admin/config/user-interface/shortcut/%/delete','Delete shortcut set','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/%/edit','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:22:\"shortcut_set_edit_form\";i:1;i:4;}','',61,6,1,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Edit set name','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/%/links','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}','',61,6,1,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','List links','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/add-set','','','user_access','a:1:{i:0;s:20:\"administer shortcuts\";}','drupal_get_form','a:1:{i:0;s:21:\"shortcut_set_add_form\";}','',31,5,1,'admin/config/user-interface/shortcut','admin/config/user-interface/shortcut','Add shortcut set','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/link/%','a:1:{i:5;s:14:\"menu_link_load\";}','','shortcut_link_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:18:\"shortcut_link_edit\";i:1;i:5;}','',62,6,0,'','admin/config/user-interface/shortcut/link/%','Edit shortcut','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/user-interface/shortcut/link/%/delete','a:1:{i:5;s:14:\"menu_link_load\";}','','shortcut_link_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:20:\"shortcut_link_delete\";i:1;i:5;}','',125,7,0,'','admin/config/user-interface/shortcut/link/%/delete','Delete shortcut','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/config/workflow','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/workflow','Workflow','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Content workflow, editorial workflow tools.','right',5,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content','','','user_access','a:1:{i:0;s:23:\"access content overview\";}','drupal_get_form','a:1:{i:0;s:18:\"node_admin_content\";}','',3,2,0,'','admin/content','Content','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Administer content and comments','',-10,'modules/node/node.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content/comment','','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_admin','a:0:{}','',7,3,1,'admin/content','admin/content','Comments','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','List and edit site comments and the comment approval queue.','',0,'modules/comment/comment.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content/comment/approval','','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_admin','a:1:{i:0;s:8:\"approval\";}','',15,4,1,'admin/content/comment','admin/content','Unapproved comments','comment_count_unpublished','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/comment/comment.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content/comment/new','','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_admin','a:0:{}','',15,4,1,'admin/content/comment','admin/content','Published comments','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/comment/comment.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content/media','','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:1:{i:0;s:11:\"media_admin\";}','',7,3,1,'admin/content','admin/content','Media','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Manage files used on your site.','',0,'sites/all/modules/media/media.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content/media/add/from_url','','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:1:{i:0;s:18:\"media_add_from_url\";}','',31,5,1,'admin/content/media','admin/content','Add media from URL','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',-1,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('admin/content/media/add/upload','','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:1:{i:0;s:16:\"media_add_upload\";}','',31,5,1,'admin/content/media','admin/content','Upload new file','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',-1,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('admin/content/media/import','','','0','a:1:{i:0;s:12:\"import media\";}','drupal_get_form','a:1:{i:0;s:12:\"media_import\";}','',15,4,1,'admin/content/media','admin/content','Import media','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','Import files into your media library.','',0,'sites/all/modules/media/media.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/content/node','','','user_access','a:1:{i:0;s:23:\"access content overview\";}','drupal_get_form','a:1:{i:0;s:18:\"node_admin_content\";}','',7,3,1,'admin/content','admin/content','Content','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','Administer content','',-10,'modules/node/node.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/dashboard','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','dashboard_admin','a:0:{}','',3,2,1,'admin','admin','Dashboard','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','View and customize your dashboard','',-100,'');
INSERT INTO `menu_router` VALUES ('admin/dashboard/block-content/%/%','a:2:{i:3;N;i:4;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_show_block_content','a:2:{i:0;i:3;i:1;i:4;}','',28,5,0,'','admin/dashboard/block-content/%/%','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('admin/dashboard/customize','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','dashboard_admin','a:1:{i:0;b:1;}','',7,3,0,'','admin/dashboard/customize','Dashboard','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','View and customize your dashboard','',0,'');
INSERT INTO `menu_router` VALUES ('admin/dashboard/drawer','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_show_disabled','a:0:{}','',7,3,0,'','admin/dashboard/drawer','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('admin/dashboard/update','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_update','a:0:{}','',7,3,0,'','admin/dashboard/update','','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('admin/help','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_main','a:0:{}','',3,2,0,'','admin/help','Help','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Reference for usage, configuration, and modules','',9,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/aggregator','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/aggregator','aggregator','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/block','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/block','block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/blog','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/blog','blog','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/comment','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/comment','comment','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/contact','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/contact','contact','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/contextual','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/contextual','contextual','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/dashboard','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/dashboard','dashboard','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/dblog','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/dblog','dblog','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/field','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/field','field','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/field_sql_storage','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/field_sql_storage','field_sql_storage','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/field_ui','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/field_ui','field_ui','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/file','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/file','file','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/filter','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/filter','filter','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/follow','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/follow','follow','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/forum','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/forum','forum','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/gardens_features','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/gardens_features','gardens_features','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/help','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/help','help','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/htmlpurifier','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/htmlpurifier','htmlpurifier','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/image','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/image','image','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/list','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/list','list','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/mailing_list','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/mailing_list','mailing_list','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/media','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/media','media','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/menu','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/menu','menu','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/mollom','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/mollom','mollom','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/node','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/node','node','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/number','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/number','number','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/openid','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/openid','openid','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/options','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/options','options','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/overlay','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/overlay','overlay','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/path','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/path','path','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/pathauto','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/pathauto','pathauto','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/poll','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/poll','poll','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/profile','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/profile','profile','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/rdf','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/rdf','rdf','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/search','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/search','search','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/shortcut','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/shortcut','shortcut','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/syslog','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/syslog','syslog','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/system','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/system','system','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/taxonomy','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/taxonomy','taxonomy','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/text','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/text','text','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/toolbar','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/toolbar','toolbar','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/user','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/user','user','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/wysiwyg','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/wysiwyg','wysiwyg','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/xmlsitemap','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/xmlsitemap','xmlsitemap','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/help/xmlsitemap_engines','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/xmlsitemap_engines','xmlsitemap_engines','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/help/help.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/modules','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:14:\"system_modules\";}','',3,2,0,'','admin/modules','Modules','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Enable or disable modules','',-2,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/modules/list','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:14:\"system_modules\";}','',7,3,1,'admin/modules','admin/modules','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/modules/list/confirm','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:14:\"system_modules\";}','',15,4,0,'','admin/modules/list/confirm','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/modules/uninstall','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:24:\"system_modules_uninstall\";}','',7,3,1,'admin/modules','admin/modules','Uninstall','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',20,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/modules/uninstall/confirm','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:24:\"system_modules_uninstall\";}','',15,4,0,'','admin/modules/uninstall/confirm','Uninstall','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people','','','user_access','a:1:{i:0;s:16:\"administer users\";}','user_admin','a:1:{i:0;s:4:\"list\";}','',3,2,0,'','admin/people','People','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage user accounts, roles, and permissions','left',-4,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/create','','','0','a:1:{i:0;s:16:\"administer users\";}','user_admin','a:1:{i:0;s:6:\"create\";}','',7,3,1,'admin/people','admin/people','Add user','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/people','','','user_access','a:1:{i:0;s:16:\"administer users\";}','user_admin','a:1:{i:0;s:4:\"list\";}','',7,3,1,'admin/people','admin/people','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','Find and manage people interacting with your site.','',-10,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/permissions','','','scarecrow_role_permissions_edit_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:22:\"user_admin_permissions\";}','',7,3,1,'admin/people','admin/people','Permissions','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','Determine access to features by selecting permissions for roles.','',0,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/permissions/list','','','scarecrow_role_permissions_edit_access','a:0:{}','drupal_get_form','a:1:{i:0;s:22:\"user_admin_permissions\";}','',15,4,1,'admin/people/permissions','admin/people','Permissions','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','Determine access to features by selecting permissions for roles.','',-8,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/permissions/roles','','','scarecrow_role_permissions_edit_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:16:\"user_admin_roles\";}','',15,4,1,'admin/people/permissions','admin/people','Roles','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','List, edit, or add user roles.','',-5,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/permissions/roles/delete/%','a:1:{i:5;s:14:\"user_role_load\";}','','scarecrow_role_permissions_edit_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:30:\"user_admin_role_delete_confirm\";i:1;i:5;}','',62,6,0,'','admin/people/permissions/roles/delete/%','Delete role','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/people/permissions/roles/edit/%','a:1:{i:5;s:14:\"user_role_load\";}','','scarecrow_role_edit_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:15:\"user_admin_role\";i:1;i:5;}','',62,6,0,'','admin/people/permissions/roles/edit/%','Edit role','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/user/user.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','system_admin_menu_block_page','a:0:{}','',3,2,0,'','admin/reports','Reports','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','View reports, updates, and errors','left',5,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/access-denied','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_top','a:1:{i:0;s:13:\"access denied\";}','',7,3,0,'','admin/reports/access-denied','Top \'access denied\' errors','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','View \'access denied\' errors (403s).','',0,'modules/dblog/dblog.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/dblog','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_overview','a:0:{}','',7,3,0,'','admin/reports/dblog','Recent log entries','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','View events that have recently been logged.','',-1,'modules/dblog/dblog.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/event/%','a:1:{i:3;N;}','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_event','a:1:{i:0;i:3;}','',14,4,0,'','admin/reports/event/%','Details','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/dblog/dblog.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/fields','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','field_ui_fields_list','a:0:{}','',7,3,0,'','admin/reports/fields','Field list','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Overview of fields on all entity types.','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/mollom','','','_mollom_access','a:1:{i:0;s:17:\"administer mollom\";}','drupal_get_form','a:1:{i:0;s:19:\"mollom_reports_page\";}','',7,3,0,'','admin/reports/mollom','Mollom statistics','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Reports and usage statistics for the Mollom module.','',0,'sites/all/modules/mollom/mollom.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/page-not-found','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_top','a:1:{i:0;s:14:\"page not found\";}','',7,3,0,'','admin/reports/page-not-found','Top \'page not found\' errors','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','View \'page not found\' errors (404s).','',0,'modules/dblog/dblog.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/search','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_top','a:1:{i:0;s:6:\"search\";}','',7,3,0,'','admin/reports/search','Top search phrases','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','View most popular search phrases.','',0,'modules/dblog/dblog.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/status','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_status','a:0:{}','',7,3,0,'','admin/reports/status','Status report','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Get a status report about your site\'s operation and any detected problems.','',-60,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/status/php','','','0','a:1:{i:0;s:29:\"administer site configuration\";}','system_php','a:0:{}','',15,4,0,'','admin/reports/status/php','PHP','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/status/rebuild','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','drupal_get_form','a:1:{i:0;s:30:\"node_configure_rebuild_confirm\";}','',15,4,0,'','admin/reports/status/rebuild','Rebuild permissions','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/node/node.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/reports/status/run-cron','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_run_cron','a:0:{}','',15,4,0,'','admin/reports/status/run-cron','Run cron','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',3,2,0,'','admin/structure','Structure','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Administer blocks, content types, menus, etc.','right',-8,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','block_admin_display','a:1:{i:0;s:10:\"acq_seo_ri\";}','',7,3,0,'','admin/structure/block','Blocks','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Configure what block content appears in your site\'s sidebars and other regions.','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',15,4,1,'admin/structure/block','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/acq_seo_lab','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/acq_seo_lab.info\";s:4:\"name\";s:11:\"acq_seo_lab\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:20:{s:4:\"name\";s:7:\"SEO Lab\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/defaults.css\";s:9:\"style.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/style.css\";s:11:\"palette.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/palette.css\";s:10:\"custom.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/custom.css\";s:12:\"advanced.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/advanced.css\";s:17:\"font-families.css\";s:76:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:73:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/defaults.css\";s:9:\"style.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/style.css\";s:11:\"palette.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/palette.css\";s:10:\"custom.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/custom.css\";s:12:\"advanced.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/advanced.css\";s:17:\"font-families.css\";s:76:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:11:\"acq_seo_lab\";}','',31,5,0,'','admin/structure/block/demo/acq_seo_lab','SEO Lab','t','','_block_custom_theme','a:1:{i:0;s:11:\"acq_seo_lab\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/acq_seo_ri','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:73:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/acq_seo_ri.info\";s:4:\"name\";s:10:\"acq_seo_ri\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:20:{s:4:\"name\";s:6:\"seo-ri\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/defaults.css\";s:9:\"style.css\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/style.css\";s:11:\"palette.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/palette.css\";s:10:\"custom.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/custom.css\";s:12:\"advanced.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/advanced.css\";s:17:\"font-families.css\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:66:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:72:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/defaults.css\";s:9:\"style.css\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/style.css\";s:11:\"palette.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/palette.css\";s:10:\"custom.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/custom.css\";s:12:\"advanced.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/advanced.css\";s:17:\"font-families.css\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:66:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:10:\"acq_seo_ri\";}','',31,5,0,'','admin/structure/block/demo/acq_seo_ri','seo-ri','t','','_block_custom_theme','a:1:{i:0;s:10:\"acq_seo_ri\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/barebones','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:38:\"themes/acquia/barebones/barebones.info\";s:4:\"name\";s:9:\"barebones\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:18:{s:4:\"name\";s:10:\"Bare Bones\";s:11:\"description\";s:15:\"Just the facts.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:9:\"barebones\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:5:{s:12:\"defaults.css\";s:36:\"themes/acquia/barebones/defaults.css\";s:11:\"palette.css\";s:35:\"themes/acquia/barebones/palette.css\";s:10:\"custom.css\";s:34:\"themes/acquia/barebones/custom.css\";s:12:\"advanced.css\";s:36:\"themes/acquia/barebones/advanced.css\";s:17:\"font-families.css\";s:41:\"themes/acquia/barebones/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:32:\"themes/acquia/barebones/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8CCDAEC0-9178-59FF-D77BE8D82070696B\";s:4:\"name\";s:10:\"Bare Bones\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:9:\"Dark Gray\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"551a8b\";s:4:\"name\";s:11:\"HTML Purple\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:11:\"Medium Gray\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"0000ee\";s:4:\"name\";s:9:\"HTML Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:4:\"Gray\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:38:\"themes/acquia/barebones/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:5:{s:12:\"defaults.css\";s:36:\"themes/acquia/barebones/defaults.css\";s:11:\"palette.css\";s:35:\"themes/acquia/barebones/palette.css\";s:10:\"custom.css\";s:34:\"themes/acquia/barebones/custom.css\";s:12:\"advanced.css\";s:36:\"themes/acquia/barebones/advanced.css\";s:17:\"font-families.css\";s:41:\"themes/acquia/barebones/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:32:\"themes/acquia/barebones/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:9:\"barebones\";}','',31,5,0,'','admin/structure/block/demo/barebones','Bare Bones','t','','_block_custom_theme','a:1:{i:0;s:9:\"barebones\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:25:\"themes/bartik/bartik.info\";s:4:\"name\";s:6:\"bartik\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:16:{s:4:\"name\";s:6:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:28:\"themes/bartik/css/layout.css\";s:13:\"css/style.css\";s:27:\"themes/bartik/css/style.css\";s:14:\"css/colors.css\";s:28:\"themes/bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:27:\"themes/bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:17:\"scripts/search.js\";s:31:\"themes/bartik/scripts/search.js\";}s:7:\"regions\";a:19:{s:6:\"header\";s:6:\"Header\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:11:\"highlighted\";s:11:\"Highlighted\";s:8:\"featured\";s:8:\"Featured\";s:7:\"content\";s:7:\"Content\";s:13:\"sidebar_first\";s:13:\"Sidebar first\";s:14:\"sidebar_second\";s:14:\"Sidebar second\";s:14:\"triptych_first\";s:14:\"Triptych first\";s:15:\"triptych_middle\";s:15:\"Triptych middle\";s:13:\"triptych_last\";s:13:\"Triptych last\";s:18:\"footer_firstcolumn\";s:19:\"Footer first column\";s:19:\"footer_secondcolumn\";s:20:\"Footer second column\";s:18:\"footer_thirdcolumn\";s:19:\"Footer third column\";s:19:\"footer_fourthcolumn\";s:20:\"Footer fourth column\";s:6:\"footer\";s:6:\"Footer\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:28:\"themes/bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:28:\"themes/bartik/css/layout.css\";s:13:\"css/style.css\";s:27:\"themes/bartik/css/style.css\";s:14:\"css/colors.css\";s:28:\"themes/bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:27:\"themes/bartik/css/print.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:6:\"bartik\";}','',31,5,0,'','admin/structure/block/demo/bartik','Bartik','t','','_block_custom_theme','a:1:{i:0;s:6:\"bartik\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/broadway','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:36:\"themes/acquia/broadway/broadway.info\";s:4:\"name\";s:8:\"broadway\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:8:\"Broadway\";s:11:\"description\";s:75:\"A comfortable, dark theme with a clean layout and sophisticated typography.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:8:\"broadway\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/broadway/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/broadway/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/broadway/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/broadway/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/broadway/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/broadway/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/broadway/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA0F7-E1CB-5AD0-04E2F8C20CF48645\";s:4:\"name\";s:8:\"Broadway\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"e0db52\";s:4:\"name\";s:4:\"Type\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"c2bf70\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"93a9c0\";s:4:\"name\";s:11:\"Muted Green\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"aaaaaa\";s:4:\"name\";s:12:\"Bright Green\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:4:\"Grey\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:37:\"themes/acquia/broadway/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/broadway/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/broadway/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/broadway/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/broadway/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/broadway/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/broadway/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/broadway/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:8:\"broadway\";}','',31,5,0,'','admin/structure/block/demo/broadway','Broadway','t','','_block_custom_theme','a:1:{i:0;s:8:\"broadway\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/builderbase','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:42:\"themes/acquia/builderbase/builderbase.info\";s:4:\"name\";s:11:\"builderbase\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Minima\";s:11:\"description\";s:83:\"Minimal and clean- excellent as-is, or as the starting point for your own creation.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:11:\"builderbase\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:38:\"themes/acquia/builderbase/defaults.css\";s:9:\"style.css\";s:35:\"themes/acquia/builderbase/style.css\";s:11:\"palette.css\";s:37:\"themes/acquia/builderbase/palette.css\";s:10:\"custom.css\";s:36:\"themes/acquia/builderbase/custom.css\";s:12:\"advanced.css\";s:38:\"themes/acquia/builderbase/advanced.css\";s:17:\"font-families.css\";s:43:\"themes/acquia/builderbase/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:34:\"themes/acquia/builderbase/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:6:\"Orange\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:40:\"themes/acquia/builderbase/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:38:\"themes/acquia/builderbase/defaults.css\";s:9:\"style.css\";s:35:\"themes/acquia/builderbase/style.css\";s:11:\"palette.css\";s:37:\"themes/acquia/builderbase/palette.css\";s:10:\"custom.css\";s:36:\"themes/acquia/builderbase/custom.css\";s:12:\"advanced.css\";s:38:\"themes/acquia/builderbase/advanced.css\";s:17:\"font-families.css\";s:43:\"themes/acquia/builderbase/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:34:\"themes/acquia/builderbase/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:11:\"builderbase\";}','',31,5,0,'','admin/structure/block/demo/builderbase','Minima','t','','_block_custom_theme','a:1:{i:0;s:11:\"builderbase\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/campaign','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:36:\"themes/acquia/campaign/campaign.info\";s:4:\"name\";s:8:\"campaign\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:8:\"Campaign\";s:11:\"description\";s:32:\"Designed for events, microsites.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:8:\"campaign\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/campaign/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/campaign/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/campaign/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/campaign/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/campaign/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/campaign/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/campaign/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:9:\"copyright\";s:9:\"Copyright\";s:11:\"page_bottom\";s:10:\"Below page\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:19:\"body-layout-fixed-c\";s:6:\"forum*\";s:19:\"body-layout-fixed-c\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA107-EE01-35ED-3936AFE868E23B7A\";s:4:\"name\";s:8:\"Campaign\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"212121\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"a42470\";s:4:\"name\";s:11:\"Dark Purple\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"444444\";s:4:\"name\";s:6:\"Purple\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"cd1069\";s:4:\"name\";s:12:\"Light Purple\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"e1267c\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"4dabf5\";s:4:\"name\";s:9:\"Dark Gray\";}}s:11:\"selectorMap\";a:4:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:37:\"themes/acquia/campaign/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/campaign/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/campaign/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/campaign/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/campaign/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/campaign/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/campaign/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/campaign/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:8:\"campaign\";}','',31,5,0,'','admin/structure/block/demo/campaign','Campaign','t','','_block_custom_theme','a:1:{i:0;s:8:\"campaign\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/garland','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:27:\"themes/garland/garland.info\";s:4:\"name\";s:7:\"garland\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:16:{s:4:\"name\";s:7:\"Garland\";s:11:\"description\";s:111:\"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:9:\"style.css\";s:24:\"themes/garland/style.css\";}s:5:\"print\";a:1:{s:9:\"print.css\";s:24:\"themes/garland/print.css\";}}s:8:\"settings\";a:1:{s:13:\"garland_width\";s:5:\"fluid\";}s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:29:\"themes/garland/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:9:\"style.css\";s:24:\"themes/garland/style.css\";}s:5:\"print\";a:1:{s:9:\"print.css\";s:24:\"themes/garland/print.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:7:\"garland\";}','',31,5,0,'','admin/structure/block/demo/garland','Garland','t','','_block_custom_theme','a:1:{i:0;s:7:\"garland\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/impact','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:32:\"themes/acquia/impact/impact.info\";s:4:\"name\";s:6:\"impact\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Impact\";s:11:\"description\";s:32:\"Designed for events, microsites.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"impact\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/impact/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/impact/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/impact/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/impact/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/impact/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/impact/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/impact/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:19:\"body-layout-fixed-c\";s:6:\"forum*\";s:19:\"body-layout-fixed-c\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA135-0AEB-F0C9-F773BC173B064C48\";s:4:\"name\";s:6:\"Impact\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"121212\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"62a734\";s:4:\"name\";s:5:\"Green\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"00a5ff\";s:4:\"name\";s:11:\"Light Green\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"cccccc\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"d3fec1\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"f5f5f5\";s:4:\"name\";s:4:\"Grey\";}}s:11:\"selectorMap\";a:6:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:26:\"#sidebar-a .block .content\";s:37:\"#sidebar-a .block .content-with-title\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/impact/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/impact/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/impact/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/impact/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/impact/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/impact/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/impact/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/impact/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:6:\"impact\";}','',31,5,0,'','admin/structure/block/demo/impact','Impact','t','','_block_custom_theme','a:1:{i:0;s:6:\"impact\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/kenwood','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:34:\"themes/acquia/kenwood/kenwood.info\";s:4:\"name\";s:7:\"kenwood\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:7:\"Kenwood\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:34:\"themes/acquia/kenwood/defaults.css\";s:9:\"style.css\";s:31:\"themes/acquia/kenwood/style.css\";s:11:\"palette.css\";s:33:\"themes/acquia/kenwood/palette.css\";s:10:\"custom.css\";s:32:\"themes/acquia/kenwood/custom.css\";s:12:\"advanced.css\";s:34:\"themes/acquia/kenwood/advanced.css\";s:17:\"font-families.css\";s:39:\"themes/acquia/kenwood/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:30:\"themes/acquia/kenwood/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:36:\"themes/acquia/kenwood/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:34:\"themes/acquia/kenwood/defaults.css\";s:9:\"style.css\";s:31:\"themes/acquia/kenwood/style.css\";s:11:\"palette.css\";s:33:\"themes/acquia/kenwood/palette.css\";s:10:\"custom.css\";s:32:\"themes/acquia/kenwood/custom.css\";s:12:\"advanced.css\";s:34:\"themes/acquia/kenwood/advanced.css\";s:17:\"font-families.css\";s:39:\"themes/acquia/kenwood/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:30:\"themes/acquia/kenwood/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:7:\"kenwood\";}','',31,5,0,'','admin/structure/block/demo/kenwood','Kenwood','t','','_block_custom_theme','a:1:{i:0;s:7:\"kenwood\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/seven','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/seven/seven.info\";s:4:\"name\";s:5:\"seven\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:16:{s:4:\"name\";s:5:\"Seven\";s:11:\"description\";s:65:\"A simple one-column, tableless, fluid width administration theme.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:6:\"screen\";a:2:{s:9:\"reset.css\";s:22:\"themes/seven/reset.css\";s:9:\"style.css\";s:22:\"themes/seven/style.css\";}}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"1\";}s:7:\"regions\";a:7:{s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"regions_hidden\";a:3:{i:0;s:13:\"sidebar_first\";i:1;s:8:\"page_top\";i:2;s:11:\"page_bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/seven/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}s:11:\"stylesheets\";a:1:{s:6:\"screen\";a:2:{s:9:\"reset.css\";s:22:\"themes/seven/reset.css\";s:9:\"style.css\";s:22:\"themes/seven/style.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:5:\"seven\";}','',31,5,0,'','admin/structure/block/demo/seven','Seven','t','','_block_custom_theme','a:1:{i:0;s:5:\"seven\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/sonoma','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:32:\"themes/acquia/sonoma/sonoma.info\";s:4:\"name\";s:6:\"sonoma\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Sonoma\";s:11:\"description\";s:51:\"Clean, modern and professional, but still creative.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"sonoma\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sonoma/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sonoma/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sonoma/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sonoma/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sonoma/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sonoma/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sonoma/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA1B2-D33B-10DC-EE9ADC855F128DF1\";s:4:\"name\";s:6:\"Sonoma\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"23496b\";s:4:\"name\";s:12:\"Primary Blue\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:14:\"Secondary Blue\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"2c70c5\";s:4:\"name\";s:17:\"Heading Dark Blue\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"8bbfff\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:12:\"Lighter Grey\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/sonoma/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sonoma/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sonoma/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sonoma/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sonoma/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sonoma/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sonoma/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sonoma/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:6:\"sonoma\";}','',31,5,0,'','admin/structure/block/demo/sonoma','Sonoma','t','','_block_custom_theme','a:1:{i:0;s:6:\"sonoma\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/sparks','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:32:\"themes/acquia/sparks/sparks.info\";s:4:\"name\";s:6:\"sparks\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Sparks\";s:11:\"description\";s:53:\"Kinda relaxed, and yet kinda formal. Definitely cool.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"sparks\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sparks/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sparks/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sparks/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sparks/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sparks/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sparks/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sparks/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA1C2-0FBD-DDF0-3F517B0B188D29A7\";s:4:\"name\";s:6:\"Sparks\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"1d1d2a\";s:4:\"name\";s:10:\"Slate Blue\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:11:\"Olive Green\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:13:\"Dark Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"7b7b8b\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"707969\";s:4:\"name\";s:5:\"Black\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/sparks/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sparks/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sparks/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sparks/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sparks/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sparks/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sparks/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sparks/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:6:\"sparks\";}','',31,5,0,'','admin/structure/block/demo/sparks','Sparks','t','','_block_custom_theme','a:1:{i:0;s:6:\"sparks\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/stark','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal\'s default HTML markup and CSS styles. To learn how to build your own theme and override Drupal\'s default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:5:\"stark\";}','',31,5,0,'','admin/structure/block/demo/stark','Stark','t','','_block_custom_theme','a:1:{i:0;s:5:\"stark\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/test_theme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"filename\";s:39:\"themes/tests/test_theme/test_theme.info\";s:4:\"name\";s:10:\"test_theme\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:10:\"Test theme\";s:11:\"description\";s:34:\"Theme for testing the theme system\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:38:\"themes/tests/test_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:10:\"test_theme\";}','',31,5,0,'','admin/structure/block/demo/test_theme','Test theme','t','','_block_custom_theme','a:1:{i:0;s:10:\"test_theme\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/update_test_basetheme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"filename\";s:61:\"themes/tests/update_test_basetheme/update_test_basetheme.info\";s:4:\"name\";s:21:\"update_test_basetheme\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:22:\"Update test base theme\";s:11:\"description\";s:63:\"Test theme which acts as a base theme for other test subthemes.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:49:\"themes/tests/update_test_basetheme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:21:\"update_test_basetheme\";}','',31,5,0,'','admin/structure/block/demo/update_test_basetheme','Update test base theme','t','','_block_custom_theme','a:1:{i:0;s:21:\"update_test_basetheme\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/demo/update_test_subtheme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:59:\"themes/tests/update_test_subtheme/update_test_subtheme.info\";s:4:\"name\";s:20:\"update_test_subtheme\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{s:4:\"name\";s:20:\"Update test subtheme\";s:11:\"description\";s:62:\"Test theme which uses update_test_basetheme as the base theme.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base theme\";s:21:\"update_test_basetheme\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:48:\"themes/tests/update_test_subtheme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:21:\"update_test_basetheme\";}}','block_admin_demo','a:1:{i:0;s:20:\"update_test_subtheme\";}','',31,5,0,'','admin/structure/block/demo/update_test_subtheme','Update test subtheme','t','','_block_custom_theme','a:1:{i:0;s:20:\"update_test_subtheme\";}',4,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','block_admin_display','a:1:{i:0;s:10:\"acq_seo_ri\";}','',15,4,1,'admin/structure/block','admin/structure/block','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/acq_seo_lab','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/acq_seo_lab.info\";s:4:\"name\";s:11:\"acq_seo_lab\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:20:{s:4:\"name\";s:7:\"SEO Lab\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/defaults.css\";s:9:\"style.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/style.css\";s:11:\"palette.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/palette.css\";s:10:\"custom.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/custom.css\";s:12:\"advanced.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/advanced.css\";s:17:\"font-families.css\";s:76:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:73:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/defaults.css\";s:9:\"style.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/style.css\";s:11:\"palette.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/palette.css\";s:10:\"custom.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/custom.css\";s:12:\"advanced.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/advanced.css\";s:17:\"font-families.css\";s:76:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:11:\"acq_seo_lab\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','SEO Lab','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/acq_seo_lab/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/acq_seo_lab','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/acq_seo_ri','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:73:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/acq_seo_ri.info\";s:4:\"name\";s:10:\"acq_seo_ri\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:20:{s:4:\"name\";s:6:\"seo-ri\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/defaults.css\";s:9:\"style.css\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/style.css\";s:11:\"palette.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/palette.css\";s:10:\"custom.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/custom.css\";s:12:\"advanced.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/advanced.css\";s:17:\"font-families.css\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:66:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:72:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/defaults.css\";s:9:\"style.css\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/style.css\";s:11:\"palette.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/palette.css\";s:10:\"custom.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/custom.css\";s:12:\"advanced.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/advanced.css\";s:17:\"font-families.css\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:66:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:10:\"acq_seo_ri\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','seo-ri','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/barebones','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:38:\"themes/acquia/barebones/barebones.info\";s:4:\"name\";s:9:\"barebones\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:18:{s:4:\"name\";s:10:\"Bare Bones\";s:11:\"description\";s:15:\"Just the facts.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:9:\"barebones\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:5:{s:12:\"defaults.css\";s:36:\"themes/acquia/barebones/defaults.css\";s:11:\"palette.css\";s:35:\"themes/acquia/barebones/palette.css\";s:10:\"custom.css\";s:34:\"themes/acquia/barebones/custom.css\";s:12:\"advanced.css\";s:36:\"themes/acquia/barebones/advanced.css\";s:17:\"font-families.css\";s:41:\"themes/acquia/barebones/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:32:\"themes/acquia/barebones/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8CCDAEC0-9178-59FF-D77BE8D82070696B\";s:4:\"name\";s:10:\"Bare Bones\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:9:\"Dark Gray\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"551a8b\";s:4:\"name\";s:11:\"HTML Purple\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:11:\"Medium Gray\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"0000ee\";s:4:\"name\";s:9:\"HTML Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:4:\"Gray\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:38:\"themes/acquia/barebones/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:5:{s:12:\"defaults.css\";s:36:\"themes/acquia/barebones/defaults.css\";s:11:\"palette.css\";s:35:\"themes/acquia/barebones/palette.css\";s:10:\"custom.css\";s:34:\"themes/acquia/barebones/custom.css\";s:12:\"advanced.css\";s:36:\"themes/acquia/barebones/advanced.css\";s:17:\"font-families.css\";s:41:\"themes/acquia/barebones/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:32:\"themes/acquia/barebones/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:9:\"barebones\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Bare Bones','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/barebones/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/barebones','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:25:\"themes/bartik/bartik.info\";s:4:\"name\";s:6:\"bartik\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:16:{s:4:\"name\";s:6:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:28:\"themes/bartik/css/layout.css\";s:13:\"css/style.css\";s:27:\"themes/bartik/css/style.css\";s:14:\"css/colors.css\";s:28:\"themes/bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:27:\"themes/bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:17:\"scripts/search.js\";s:31:\"themes/bartik/scripts/search.js\";}s:7:\"regions\";a:19:{s:6:\"header\";s:6:\"Header\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:11:\"highlighted\";s:11:\"Highlighted\";s:8:\"featured\";s:8:\"Featured\";s:7:\"content\";s:7:\"Content\";s:13:\"sidebar_first\";s:13:\"Sidebar first\";s:14:\"sidebar_second\";s:14:\"Sidebar second\";s:14:\"triptych_first\";s:14:\"Triptych first\";s:15:\"triptych_middle\";s:15:\"Triptych middle\";s:13:\"triptych_last\";s:13:\"Triptych last\";s:18:\"footer_firstcolumn\";s:19:\"Footer first column\";s:19:\"footer_secondcolumn\";s:20:\"Footer second column\";s:18:\"footer_thirdcolumn\";s:19:\"Footer third column\";s:19:\"footer_fourthcolumn\";s:20:\"Footer fourth column\";s:6:\"footer\";s:6:\"Footer\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:28:\"themes/bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:28:\"themes/bartik/css/layout.css\";s:13:\"css/style.css\";s:27:\"themes/bartik/css/style.css\";s:14:\"css/colors.css\";s:28:\"themes/bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:27:\"themes/bartik/css/print.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:6:\"bartik\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Bartik','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/bartik/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/bartik','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/broadway','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:36:\"themes/acquia/broadway/broadway.info\";s:4:\"name\";s:8:\"broadway\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:8:\"Broadway\";s:11:\"description\";s:75:\"A comfortable, dark theme with a clean layout and sophisticated typography.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:8:\"broadway\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/broadway/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/broadway/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/broadway/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/broadway/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/broadway/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/broadway/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/broadway/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA0F7-E1CB-5AD0-04E2F8C20CF48645\";s:4:\"name\";s:8:\"Broadway\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"e0db52\";s:4:\"name\";s:4:\"Type\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"c2bf70\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"93a9c0\";s:4:\"name\";s:11:\"Muted Green\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"aaaaaa\";s:4:\"name\";s:12:\"Bright Green\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:4:\"Grey\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:37:\"themes/acquia/broadway/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/broadway/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/broadway/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/broadway/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/broadway/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/broadway/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/broadway/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/broadway/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:8:\"broadway\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Broadway','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/broadway/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/broadway','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/builderbase','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:42:\"themes/acquia/builderbase/builderbase.info\";s:4:\"name\";s:11:\"builderbase\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Minima\";s:11:\"description\";s:83:\"Minimal and clean- excellent as-is, or as the starting point for your own creation.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:11:\"builderbase\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:38:\"themes/acquia/builderbase/defaults.css\";s:9:\"style.css\";s:35:\"themes/acquia/builderbase/style.css\";s:11:\"palette.css\";s:37:\"themes/acquia/builderbase/palette.css\";s:10:\"custom.css\";s:36:\"themes/acquia/builderbase/custom.css\";s:12:\"advanced.css\";s:38:\"themes/acquia/builderbase/advanced.css\";s:17:\"font-families.css\";s:43:\"themes/acquia/builderbase/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:34:\"themes/acquia/builderbase/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:6:\"Orange\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:40:\"themes/acquia/builderbase/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:38:\"themes/acquia/builderbase/defaults.css\";s:9:\"style.css\";s:35:\"themes/acquia/builderbase/style.css\";s:11:\"palette.css\";s:37:\"themes/acquia/builderbase/palette.css\";s:10:\"custom.css\";s:36:\"themes/acquia/builderbase/custom.css\";s:12:\"advanced.css\";s:38:\"themes/acquia/builderbase/advanced.css\";s:17:\"font-families.css\";s:43:\"themes/acquia/builderbase/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:34:\"themes/acquia/builderbase/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:11:\"builderbase\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Minima','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/builderbase/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/builderbase','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/campaign','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:36:\"themes/acquia/campaign/campaign.info\";s:4:\"name\";s:8:\"campaign\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:8:\"Campaign\";s:11:\"description\";s:32:\"Designed for events, microsites.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:8:\"campaign\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/campaign/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/campaign/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/campaign/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/campaign/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/campaign/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/campaign/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/campaign/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:9:\"copyright\";s:9:\"Copyright\";s:11:\"page_bottom\";s:10:\"Below page\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:19:\"body-layout-fixed-c\";s:6:\"forum*\";s:19:\"body-layout-fixed-c\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA107-EE01-35ED-3936AFE868E23B7A\";s:4:\"name\";s:8:\"Campaign\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"212121\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"a42470\";s:4:\"name\";s:11:\"Dark Purple\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"444444\";s:4:\"name\";s:6:\"Purple\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"cd1069\";s:4:\"name\";s:12:\"Light Purple\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"e1267c\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"4dabf5\";s:4:\"name\";s:9:\"Dark Gray\";}}s:11:\"selectorMap\";a:4:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:37:\"themes/acquia/campaign/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/campaign/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/campaign/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/campaign/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/campaign/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/campaign/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/campaign/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/campaign/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:8:\"campaign\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Campaign','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/campaign/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/campaign','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/garland','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:27:\"themes/garland/garland.info\";s:4:\"name\";s:7:\"garland\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:16:{s:4:\"name\";s:7:\"Garland\";s:11:\"description\";s:111:\"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:9:\"style.css\";s:24:\"themes/garland/style.css\";}s:5:\"print\";a:1:{s:9:\"print.css\";s:24:\"themes/garland/print.css\";}}s:8:\"settings\";a:1:{s:13:\"garland_width\";s:5:\"fluid\";}s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:29:\"themes/garland/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:9:\"style.css\";s:24:\"themes/garland/style.css\";}s:5:\"print\";a:1:{s:9:\"print.css\";s:24:\"themes/garland/print.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:7:\"garland\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Garland','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/garland/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/garland','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/impact','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:32:\"themes/acquia/impact/impact.info\";s:4:\"name\";s:6:\"impact\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Impact\";s:11:\"description\";s:32:\"Designed for events, microsites.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"impact\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/impact/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/impact/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/impact/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/impact/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/impact/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/impact/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/impact/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:19:\"body-layout-fixed-c\";s:6:\"forum*\";s:19:\"body-layout-fixed-c\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA135-0AEB-F0C9-F773BC173B064C48\";s:4:\"name\";s:6:\"Impact\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"121212\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"62a734\";s:4:\"name\";s:5:\"Green\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"00a5ff\";s:4:\"name\";s:11:\"Light Green\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"cccccc\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"d3fec1\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"f5f5f5\";s:4:\"name\";s:4:\"Grey\";}}s:11:\"selectorMap\";a:6:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:26:\"#sidebar-a .block .content\";s:37:\"#sidebar-a .block .content-with-title\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/impact/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/impact/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/impact/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/impact/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/impact/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/impact/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/impact/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/impact/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:6:\"impact\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Impact','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/impact/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/impact','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/kenwood','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:34:\"themes/acquia/kenwood/kenwood.info\";s:4:\"name\";s:7:\"kenwood\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:7:\"Kenwood\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:34:\"themes/acquia/kenwood/defaults.css\";s:9:\"style.css\";s:31:\"themes/acquia/kenwood/style.css\";s:11:\"palette.css\";s:33:\"themes/acquia/kenwood/palette.css\";s:10:\"custom.css\";s:32:\"themes/acquia/kenwood/custom.css\";s:12:\"advanced.css\";s:34:\"themes/acquia/kenwood/advanced.css\";s:17:\"font-families.css\";s:39:\"themes/acquia/kenwood/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:30:\"themes/acquia/kenwood/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:36:\"themes/acquia/kenwood/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:34:\"themes/acquia/kenwood/defaults.css\";s:9:\"style.css\";s:31:\"themes/acquia/kenwood/style.css\";s:11:\"palette.css\";s:33:\"themes/acquia/kenwood/palette.css\";s:10:\"custom.css\";s:32:\"themes/acquia/kenwood/custom.css\";s:12:\"advanced.css\";s:34:\"themes/acquia/kenwood/advanced.css\";s:17:\"font-families.css\";s:39:\"themes/acquia/kenwood/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:30:\"themes/acquia/kenwood/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:7:\"kenwood\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Kenwood','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/kenwood/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/kenwood','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/seven','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/seven/seven.info\";s:4:\"name\";s:5:\"seven\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:16:{s:4:\"name\";s:5:\"Seven\";s:11:\"description\";s:65:\"A simple one-column, tableless, fluid width administration theme.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:6:\"screen\";a:2:{s:9:\"reset.css\";s:22:\"themes/seven/reset.css\";s:9:\"style.css\";s:22:\"themes/seven/style.css\";}}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"1\";}s:7:\"regions\";a:7:{s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"regions_hidden\";a:3:{i:0;s:13:\"sidebar_first\";i:1;s:8:\"page_top\";i:2;s:11:\"page_bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/seven/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}s:11:\"stylesheets\";a:1:{s:6:\"screen\";a:2:{s:9:\"reset.css\";s:22:\"themes/seven/reset.css\";s:9:\"style.css\";s:22:\"themes/seven/style.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:5:\"seven\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Administration theme','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/seven/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/seven','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/sonoma','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:32:\"themes/acquia/sonoma/sonoma.info\";s:4:\"name\";s:6:\"sonoma\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Sonoma\";s:11:\"description\";s:51:\"Clean, modern and professional, but still creative.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"sonoma\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sonoma/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sonoma/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sonoma/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sonoma/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sonoma/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sonoma/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sonoma/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA1B2-D33B-10DC-EE9ADC855F128DF1\";s:4:\"name\";s:6:\"Sonoma\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"23496b\";s:4:\"name\";s:12:\"Primary Blue\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:14:\"Secondary Blue\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"2c70c5\";s:4:\"name\";s:17:\"Heading Dark Blue\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"8bbfff\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:12:\"Lighter Grey\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/sonoma/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sonoma/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sonoma/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sonoma/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sonoma/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sonoma/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sonoma/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sonoma/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:6:\"sonoma\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Sonoma','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/sonoma/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/sonoma','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/sparks','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:32:\"themes/acquia/sparks/sparks.info\";s:4:\"name\";s:6:\"sparks\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Sparks\";s:11:\"description\";s:53:\"Kinda relaxed, and yet kinda formal. Definitely cool.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"sparks\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sparks/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sparks/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sparks/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sparks/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sparks/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sparks/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sparks/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA1C2-0FBD-DDF0-3F517B0B188D29A7\";s:4:\"name\";s:6:\"Sparks\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"1d1d2a\";s:4:\"name\";s:10:\"Slate Blue\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:11:\"Olive Green\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:13:\"Dark Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"7b7b8b\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"707969\";s:4:\"name\";s:5:\"Black\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/sparks/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sparks/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sparks/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sparks/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sparks/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sparks/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sparks/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sparks/local.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:6:\"sparks\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Sparks','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/sparks/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/sparks','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/stark','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal\'s default HTML markup and CSS styles. To learn how to build your own theme and override Drupal\'s default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:5:\"stark\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Stark','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/stark/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/stark','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/test_theme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"filename\";s:39:\"themes/tests/test_theme/test_theme.info\";s:4:\"name\";s:10:\"test_theme\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:10:\"Test theme\";s:11:\"description\";s:34:\"Theme for testing the theme system\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:38:\"themes/tests/test_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:10:\"test_theme\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Test theme','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/test_theme/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/test_theme','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/update_test_basetheme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"filename\";s:61:\"themes/tests/update_test_basetheme/update_test_basetheme.info\";s:4:\"name\";s:21:\"update_test_basetheme\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:22:\"Update test base theme\";s:11:\"description\";s:63:\"Test theme which acts as a base theme for other test subthemes.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:49:\"themes/tests/update_test_basetheme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:21:\"update_test_basetheme\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Update test base theme','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/update_test_basetheme/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/update_test_basetheme','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/update_test_subtheme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:59:\"themes/tests/update_test_subtheme/update_test_subtheme.info\";s:4:\"name\";s:20:\"update_test_subtheme\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{s:4:\"name\";s:20:\"Update test subtheme\";s:11:\"description\";s:62:\"Test theme which uses update_test_basetheme as the base theme.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base theme\";s:21:\"update_test_basetheme\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:48:\"themes/tests/update_test_subtheme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:21:\"update_test_basetheme\";}}','block_admin_display','a:1:{i:0;s:20:\"update_test_subtheme\";}','',31,5,1,'admin/structure/block/list','admin/structure/block','Update test subtheme','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/list/update_test_subtheme/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/update_test_subtheme','admin/structure/block','Add block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/manage/%/%','a:2:{i:4;N;i:5;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}','',60,6,0,'','admin/structure/block/manage/%/%','Configure block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/manage/%/%/configure','a:2:{i:4;N;i:5;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}','',121,7,2,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Configure block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/manage/%/%/delete','a:2:{i:4;N;i:5;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}','',121,7,0,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Delete block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/block/block.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/block/rotating_banner/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:24:\"rotating_banner_add_form\";}','',31,5,1,'admin/structure/block','admin/structure/block','Add a rotating banner','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','A rotating banner is a series of images with text overlays known as slides. The banner can be placed anywhere on your site through the block system.','',0,'sites/all/modules/rotating_banner/rotating_banner.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/contact','','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','contact_category_list','a:0:{}','',7,3,0,'','admin/structure/contact','Contact form','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Create a system contact form and set up categories for the form to use.','',0,'modules/contact/contact.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/contact/add','','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:1:{i:0;s:26:\"contact_category_edit_form\";}','',15,4,1,'admin/structure/contact','admin/structure/contact','Add category','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',1,'modules/contact/contact.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/contact/delete/%','a:1:{i:4;s:12:\"contact_load\";}','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:2:{i:0;s:28:\"contact_category_delete_form\";i:1;i:4;}','',30,5,0,'','admin/structure/contact/delete/%','Delete contact','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/contact/contact.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/contact/edit/%','a:1:{i:4;s:12:\"contact_load\";}','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:2:{i:0;s:26:\"contact_category_edit_form\";i:1;i:4;}','',30,5,0,'','admin/structure/contact/edit/%','Edit contact category','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/contact/contact.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','drupal_get_form','a:1:{i:0;s:14:\"forum_overview\";}','',7,3,0,'','admin/structure/forum','Forums','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Control forum hierarchy settings.','',0,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum/add/container','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:1:{i:0;s:9:\"container\";}','',31,5,1,'admin/structure/forum','admin/structure/forum','Add container','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum/add/forum','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:1:{i:0;s:5:\"forum\";}','',31,5,1,'admin/structure/forum','admin/structure/forum','Add forum','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum/edit/container/%','a:1:{i:5;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:2:{i:0;s:9:\"container\";i:1;i:5;}','',62,6,0,'','admin/structure/forum/edit/container/%','Edit container','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum/edit/forum/%','a:1:{i:5;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:2:{i:0;s:5:\"forum\";i:1;i:5;}','',62,6,0,'','admin/structure/forum/edit/forum/%','Edit forum','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum/list','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','drupal_get_form','a:1:{i:0;s:14:\"forum_overview\";}','',15,4,1,'admin/structure/forum','admin/structure/forum','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/forum/settings','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','drupal_get_form','a:1:{i:0;s:20:\"forum_admin_settings\";}','',15,4,1,'admin/structure/forum','admin/structure/forum','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',5,'modules/forum/forum.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list','','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','mailing_list_lists','a:0:{}','',7,3,0,'','admin/structure/mailing-list','Mailing lists','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage your mailing lists.','',0,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','mailing_list_emails_list','a:1:{i:0;i:3;}','',14,4,0,'','admin/structure/mailing-list/%','List e-mails','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/%','a:2:{i:3;s:17:\"mailing_list_load\";i:4;s:23:\"mailing_list_email_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:4:{i:0;s:30:\"mailing_list_subscription_form\";i:1;i:3;i:2;b:1;i:3;i:4;}','',28,5,0,'','admin/structure/mailing-list/%/%','Edit e-mail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/add','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:2:{i:0;s:30:\"mailing_list_subscription_form\";i:1;i:3;}','',29,5,1,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','Add e-mail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',-5,'');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/delete','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:2:{i:0;s:27:\"mailing_list_delete_confirm\";i:1;i:3;}','',29,5,1,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','Delete list','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/edit','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:2:{i:0;s:17:\"mailing_list_form\";i:1;i:3;}','',29,5,1,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','Rename list','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',5,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/emails/delete','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:2:{i:0;s:33:\"mailing_list_email_delete_confirm\";i:1;i:3;}','',59,6,0,'','admin/structure/mailing-list/%/emails/delete','Delete e-mail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/export','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','mailing_list_export','a:1:{i:0;i:3;}','',29,5,1,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','Export list','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/import','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:2:{i:0;s:24:\"mailing_list_import_form\";i:1;i:3;}','',29,5,1,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','Import e-mails','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',-2,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/%/list','a:1:{i:3;s:17:\"mailing_list_load\";}','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','mailing_list_emails_list','a:1:{i:0;i:3;}','',29,5,1,'admin/structure/mailing-list/%','admin/structure/mailing-list/%','List e-mails','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/add','','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:1:{i:0;s:17:\"mailing_list_form\";}','',15,4,1,'admin/structure/mailing-list','admin/structure/mailing-list','Add','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/list','','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','mailing_list_lists','a:0:{}','',15,4,1,'admin/structure/mailing-list','admin/structure/mailing-list','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/mailing-list/settings','','','user_access','a:1:{i:0;s:24:\"administer mailing lists\";}','drupal_get_form','a:1:{i:0;s:27:\"mailing_list_admin_settings\";}','',15,4,1,'admin/structure/mailing-list','admin/structure/mailing-list','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'sites/all/modules/mailing_list/mailing_list.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media','','','user_access','a:1:{i:0;s:16:\"administer media\";}','media_admin_type_list','a:0:{}','',7,3,0,'','admin/structure/media','Media Types','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage files used on your site.','',0,'sites/all/modules/media/media.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%','a:1:{i:4;s:15:\"media_type_load\";}','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:2:{i:0;s:28:\"media_admin_type_manage_form\";i:1;i:4;}','',30,5,0,'','admin/structure/media/manage/%','Manage media','media_type_page_title','a:1:{i:0;i:4;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Manage files used on your site.','',0,'sites/all/modules/media/media.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display','a:1:{i:4;s:15:\"media_type_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:7:\"default\";}','',61,6,1,'admin/structure/media/manage/%','admin/structure/media/manage/%','Manage display','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/default','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:7:\"default\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:7:\"default\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Default','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_gallery_block_thumbnail','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:29:\"media_gallery_block_thumbnail\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:29:\"media_gallery_block_thumbnail\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Block thumbnail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',8,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_gallery_collection_thumbnail','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:34:\"media_gallery_collection_thumbnail\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:34:\"media_gallery_collection_thumbnail\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Collection thumbnail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',9,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_gallery_detail','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:20:\"media_gallery_detail\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:20:\"media_gallery_detail\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Gallery detail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',7,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_gallery_lightbox','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:22:\"media_gallery_lightbox\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:22:\"media_gallery_lightbox\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Gallery lightbox','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',6,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_gallery_thumbnail','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:23:\"media_gallery_thumbnail\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:23:\"media_gallery_thumbnail\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Gallery thumbnail','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',5,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_large','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:11:\"media_large\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:11:\"media_large\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Large','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',3,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_link','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:10:\"media_link\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:10:\"media_link\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Link','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_original','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:14:\"media_original\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:14:\"media_original\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Original','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',4,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_preview','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:13:\"media_preview\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:13:\"media_preview\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Preview','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',1,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/display/media_small','a:1:{i:4;s:15:\"media_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:5:\"media\";i:1;i:4;i:2;s:11:\"media_small\";i:3;s:11:\"user_access\";i:4;s:29:\"administer site configuration\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:5:\"media\";i:2;i:4;i:3;s:11:\"media_small\";}','',123,7,1,'admin/structure/media/manage/%/display','admin/structure/media/manage/%','Small','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/fields','a:1:{i:4;s:15:\"media_type_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:5:\"media\";i:2;i:4;}','',61,6,1,'admin/structure/media/manage/%','admin/structure/media/manage/%','Manage fields','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',1,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/fields/%','a:2:{i:4;a:1:{s:15:\"media_type_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:6;}','',122,7,1,'admin/structure/media/manage/%/fields','admin/structure/media/manage/%','','field_ui_menu_title','a:1:{i:0;i:6;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/fields/%/delete','a:2:{i:4;a:1:{s:15:\"media_type_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:6;}','',245,8,1,'admin/structure/media/manage/%/fields/%','admin/structure/media/manage/%','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/fields/%/edit','a:2:{i:4;a:1:{s:15:\"media_type_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:6;}','',245,8,1,'admin/structure/media/manage/%/fields/%','admin/structure/media/manage/%','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/fields/%/field-settings','a:2:{i:4;a:1:{s:15:\"media_type_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:6;}','',245,8,1,'admin/structure/media/manage/%/fields/%','admin/structure/media/manage/%','Field settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/fields/%/widget-type','a:2:{i:4;a:1:{s:15:\"media_type_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:5:\"media\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:6;}','',245,8,1,'admin/structure/media/manage/%/fields/%','admin/structure/media/manage/%','Widget type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/media/manage/%/settings','a:1:{i:4;s:15:\"media_type_load\";}','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:2:{i:0;s:28:\"media_admin_type_manage_form\";i:1;i:4;}','',61,6,1,'admin/structure/media/manage/%','admin/structure/media/manage/%','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-1,'sites/all/modules/media/media.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_overview_page','a:0:{}','',7,3,0,'','admin/structure/menu','Menus','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Add new menus to your site, edit existing menus, and rename and reorganize menu links.','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/add','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:14:\"menu_edit_menu\";i:1;s:3:\"add\";}','',15,4,1,'admin/structure/menu','admin/structure/menu','Add menu','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/item/%/delete','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_item_delete_page','a:1:{i:0;i:4;}','',61,6,0,'','admin/structure/menu/item/%/delete','Delete menu link','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/item/%/edit','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:4:\"edit\";i:2;i:4;i:3;N;}','',61,6,0,'','admin/structure/menu/item/%/edit','Edit menu link','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/item/%/reset','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:23:\"menu_reset_item_confirm\";i:1;i:4;}','',61,6,0,'','admin/structure/menu/item/%/reset','Reset menu link','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/list','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_overview_page','a:0:{}','',15,4,1,'admin/structure/menu','admin/structure/menu','List menus','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/manage/%','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}','',30,5,0,'','admin/structure/menu/manage/%','Customize menu','menu_overview_title','a:1:{i:0;i:4;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/manage/%/add','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:3:\"add\";i:2;N;i:3;i:4;}','',61,6,1,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Add link','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/manage/%/delete','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_delete_menu_page','a:1:{i:0;i:4;}','',61,6,0,'','admin/structure/menu/manage/%/delete','Delete menu','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/manage/%/edit','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:3:{i:0;s:14:\"menu_edit_menu\";i:1;s:4:\"edit\";i:2;i:4;}','',61,6,3,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Edit menu','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/manage/%/list','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}','',61,6,3,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','List links','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/parents','','','0','a:1:{i:0;b:1;}','menu_parent_options_js','a:0:{}','',15,4,0,'','admin/structure/menu/parents','Parent menu items','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('admin/structure/menu/settings','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:1:{i:0;s:14:\"menu_configure\";}','',15,4,1,'admin/structure/menu','admin/structure/menu','Settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',5,'modules/menu/menu.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/rotating_banner/%/slide/add','a:1:{i:3;s:20:\"rotating_banner_load\";}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:2:{i:0;s:25:\"rotating_banner_slide_add\";i:1;i:3;}','',59,6,0,'','admin/structure/rotating_banner/%/slide/add','Create new slide','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Creates a new rotating banner slide.','',0,'sites/all/modules/rotating_banner/rotating_banner.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/rotating_banner/slide/%/delete','a:1:{i:4;s:26:\"rotating_banner_slide_load\";}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:2:{i:0;s:36:\"rotating_banner_slide_delete_confirm\";i:1;i:4;}','',61,6,0,'','admin/structure/rotating_banner/slide/%/delete','Create new slide','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Creates a new rotating banner slide.','',0,'sites/all/modules/rotating_banner/rotating_banner.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/rotating_banner/slide/%/edit','a:1:{i:4;s:26:\"rotating_banner_slide_load\";}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:2:{i:0;s:26:\"rotating_banner_slide_edit\";i:1;i:4;}','',61,6,0,'','admin/structure/rotating_banner/slide/%/edit','Create new slide','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','Creates a new rotating banner slide.','',0,'sites/all/modules/rotating_banner/rotating_banner.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/simpleviews','','','user_access','a:1:{i:0;s:22:\"administer simpleviews\";}','drupal_get_form','a:1:{i:0;s:25:\"simpleviews_overview_form\";}','',7,3,0,'','admin/structure/simpleviews','Simple views','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage views.','',0,'sites/all/modules/simpleviews/simpleviews.pages.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/simpleviews/%/delete','a:1:{i:3;s:21:\"simpleviews_item_load\";}','','user_access','a:1:{i:0;s:22:\"administer simpleviews\";}','drupal_get_form','a:2:{i:0;s:26:\"simpleviews_delete_confirm\";i:1;i:3;}','',29,5,0,'','admin/structure/simpleviews/%/delete','Delete view','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/simpleviews/simpleviews.pages.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/simpleviews/%/edit','a:1:{i:3;s:21:\"simpleviews_item_load\";}','','user_access','a:1:{i:0;s:22:\"administer simpleviews\";}','drupal_get_form','a:2:{i:0;s:16:\"simpleviews_form\";i:1;i:3;}','',29,5,0,'','admin/structure/simpleviews/%/edit','Edit view','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'sites/all/modules/simpleviews/simpleviews.pages.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/simpleviews/add','','','user_access','a:1:{i:0;s:22:\"administer simpleviews\";}','drupal_get_form','a:1:{i:0;s:16:\"simpleviews_form\";}','',15,4,1,'admin/structure/simpleviews','admin/structure/simpleviews','Add view','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'sites/all/modules/simpleviews/simpleviews.pages.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy','','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}','',7,3,0,'','admin/structure/taxonomy','Taxonomy','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage tagging, categorization, and classification of your content.','',0,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:23:\"taxonomy_overview_terms\";i:1;i:3;}','',14,4,0,'','admin/structure/taxonomy/%','','taxonomy_admin_vocabulary_title_callback','a:1:{i:0;i:3;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','','',0,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/add','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;a:0:{}i:2;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Add term','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/display','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:13:\"taxonomy_term\";i:2;i:3;i:3;s:7:\"default\";}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Manage display','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/display/default','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:7:\"default\";i:3;s:11:\"user_access\";i:4;s:19:\"administer taxonomy\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:13:\"taxonomy_term\";i:2;i:3;i:3;s:7:\"default\";}','',59,6,1,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%','Default','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/display/full','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:4:\"full\";i:3;s:11:\"user_access\";i:4;s:19:\"administer taxonomy\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:13:\"taxonomy_term\";i:2;i:3;i:3;s:4:\"full\";}','',59,6,1,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%','Taxonomy term page','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/edit','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:24:\"taxonomy_form_vocabulary\";i:1;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',-10,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/fields','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:13:\"taxonomy_term\";i:2;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Manage fields','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',1,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/fields/%','a:2:{i:3;a:1:{s:37:\"taxonomy_vocabulary_machine_name_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',58,6,1,'admin/structure/taxonomy/%/fields','admin/structure/taxonomy/%','','field_ui_menu_title','a:1:{i:0;i:5;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/fields/%/delete','a:2:{i:3;a:1:{s:37:\"taxonomy_vocabulary_machine_name_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/fields/%/edit','a:2:{i:3;a:1:{s:37:\"taxonomy_vocabulary_machine_name_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/fields/%/field-settings','a:2:{i:3;a:1:{s:37:\"taxonomy_vocabulary_machine_name_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%','Field settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/fields/%/widget-type','a:2:{i:3;a:1:{s:37:\"taxonomy_vocabulary_machine_name_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}i:5;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%','Widget type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/%/list','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:23:\"taxonomy_overview_terms\";i:1;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-20,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/add','','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:1:{i:0;s:24:\"taxonomy_form_vocabulary\";}','',15,4,1,'admin/structure/taxonomy','admin/structure/taxonomy','Add vocabulary','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/taxonomy/list','','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}','',15,4,1,'admin/structure/taxonomy','admin/structure/taxonomy','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','node_overview_types','a:0:{}','',7,3,0,'','admin/structure/types','Content types','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','Manage content types, including default status, front page promotion, comment settings, etc.','',0,'modules/node/content_types.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/add','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:1:{i:0;s:14:\"node_type_form\";}','',15,4,1,'admin/structure/types','admin/structure/types','Add content type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',388,'','','',0,'modules/node/content_types.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/list','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','node_overview_types','a:0:{}','',15,4,1,'admin/structure/types','admin/structure/types','List','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/node/content_types.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:14:\"node_type_form\";i:1;i:4;}','',30,5,0,'','admin/structure/types/manage/%','Edit content type','node_type_page_title','a:1:{i:0;i:4;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',6,'','','',0,'modules/node/content_types.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/display','a:1:{i:4;s:22:\"comment_node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:7:\"comment\";i:2;i:4;i:3;s:7:\"default\";}','',123,7,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Comment display','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',4,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/display/default','a:1:{i:4;s:22:\"comment_node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:7:\"default\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:7:\"comment\";i:2;i:4;i:3;s:7:\"default\";}','',247,8,1,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%','Default','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/display/full','a:1:{i:4;s:22:\"comment_node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:4:\"full\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:7:\"comment\";i:2;i:4;i:3;s:4:\"full\";}','',247,8,1,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%','Full comment','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/fields','a:1:{i:4;s:22:\"comment_node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:7:\"comment\";i:2;i:4;}','',123,7,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Comment fields','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',3,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/fields/%','a:2:{i:4;a:1:{s:22:\"comment_node_type_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:7;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:7;}','',246,8,1,'admin/structure/types/manage/%/comment/fields','admin/structure/types/manage/%','','field_ui_menu_title','a:1:{i:0;i:7;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/fields/%/delete','a:2:{i:4;a:1:{s:22:\"comment_node_type_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:7;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/fields/%/edit','a:2:{i:4;a:1:{s:22:\"comment_node_type_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:7;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/fields/%/field-settings','a:2:{i:4;a:1:{s:22:\"comment_node_type_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:7;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%','Field settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/comment/fields/%/widget-type','a:2:{i:4;a:1:{s:22:\"comment_node_type_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:7;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%','Widget type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/delete','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;i:4;}','',61,6,0,'','admin/structure/types/manage/%/delete','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',4,'','','',0,'modules/node/content_types.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:7:\"default\";}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Manage display','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/default','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:7:\"default\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:7:\"default\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Default','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',-10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/full','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:4:\"full\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:4:\"full\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Full content','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/media_gallery_block','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:19:\"media_gallery_block\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:19:\"media_gallery_block\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Media gallery block','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',5,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/rss','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:3:\"rss\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:3:\"rss\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','RSS','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',2,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/search_index','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:12:\"search_index\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:12:\"search_index\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Search index','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',3,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/search_result','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:13:\"search_result\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:13:\"search_result\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Search result','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',4,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/display/teaser','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:5:{i:0;s:4:\"node\";i:1;i:4;i:2;s:6:\"teaser\";i:3;s:11:\"user_access\";i:4;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:30:\"field_ui_display_overview_form\";i:1;s:4:\"node\";i:2;i:4;i:3;s:6:\"teaser\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Teaser','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',1,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/edit','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:14:\"node_type_form\";i:1;i:4;}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/node/content_types.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/fields','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"node\";i:2;i:4;}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Manage fields','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',1,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/fields/%','a:2:{i:4;a:1:{s:14:\"node_type_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:6;}','',122,7,1,'admin/structure/types/manage/%/fields','admin/structure/types/manage/%','','field_ui_menu_title','a:1:{i:0;i:6;}','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/fields/%/delete','a:2:{i:4;a:1:{s:14:\"node_type_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%','Delete','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',10,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/fields/%/edit','a:2:{i:4;a:1:{s:14:\"node_type_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%','Edit','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',140,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/fields/%/field-settings','a:2:{i:4;a:1:{s:14:\"node_type_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%','Field settings','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('admin/structure/types/manage/%/fields/%/widget-type','a:2:{i:4;a:1:{s:14:\"node_type_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}i:6;a:1:{s:18:\"field_ui_menu_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%','Widget type','t','','variable_get','a:1:{i:0;s:11:\"admin_theme\";}',132,'','','',0,'modules/field_ui/field_ui.admin.inc');
INSERT INTO `menu_router` VALUES ('aggregator','','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_last','a:0:{}','',1,1,0,'','aggregator','Feed aggregator','t','','','a:0:{}',6,'','','',5,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/categories','','','_aggregator_has_categories','a:0:{}','aggregator_page_categories','a:0:{}','',3,2,0,'','aggregator/categories','Categories','t','','','a:0:{}',6,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/categories/%','a:1:{i:2;s:24:\"aggregator_category_load\";}','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_category','a:1:{i:0;i:2;}','',6,3,0,'','aggregator/categories/%','','_aggregator_category_title','a:1:{i:0;i:2;}','','a:0:{}',6,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/categories/%/categorize','a:1:{i:2;s:24:\"aggregator_category_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:29:\"aggregator_page_category_form\";i:1;i:2;}','',13,4,1,'aggregator/categories/%','aggregator/categories/%','Categorize','t','','','a:0:{}',132,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/categories/%/configure','a:1:{i:2;s:24:\"aggregator_category_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:24:\"aggregator_form_category\";i:1;i:2;}','',13,4,1,'aggregator/categories/%','aggregator/categories/%','Configure','t','','','a:0:{}',132,'','','',1,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('aggregator/categories/%/view','a:1:{i:2;s:24:\"aggregator_category_load\";}','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_category','a:1:{i:0;i:2;}','',13,4,1,'aggregator/categories/%','aggregator/categories/%','View','t','','','a:0:{}',140,'','','',-10,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/opml','','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_opml','a:0:{}','',3,2,0,'','aggregator/opml','OPML feed','t','','','a:0:{}',4,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/rss','','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_rss','a:0:{}','',3,2,0,'','aggregator/rss','RSS feed','t','','','a:0:{}',4,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/sources','','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_sources','a:0:{}','',3,2,0,'','aggregator/sources','Sources','t','','','a:0:{}',6,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/sources/%','a:1:{i:2;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_source','a:1:{i:0;i:2;}','',6,3,0,'','aggregator/sources/%','','t','','','a:0:{}',4,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/sources/%/categorize','a:1:{i:2;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:27:\"aggregator_page_source_form\";i:1;i:2;}','',13,4,1,'aggregator/sources/%','aggregator/sources/%','Categorize','t','','','a:0:{}',132,'','','',0,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('aggregator/sources/%/configure','a:1:{i:2;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:21:\"administer news feeds\";}','drupal_get_form','a:2:{i:0;s:20:\"aggregator_form_feed\";i:1;i:2;}','',13,4,1,'aggregator/sources/%','aggregator/sources/%','Configure','t','','','a:0:{}',132,'','','',1,'modules/aggregator/aggregator.admin.inc');
INSERT INTO `menu_router` VALUES ('aggregator/sources/%/view','a:1:{i:2;s:20:\"aggregator_feed_load\";}','','user_access','a:1:{i:0;s:17:\"access news feeds\";}','aggregator_page_source','a:1:{i:0;i:2;}','',13,4,1,'aggregator/sources/%','aggregator/sources/%','View','t','','','a:0:{}',140,'','','',-10,'modules/aggregator/aggregator.pages.inc');
INSERT INTO `menu_router` VALUES ('batch','','','1','a:0:{}','system_batch_page','a:0:{}','',1,1,0,'','batch','','t','','_system_batch_theme','a:0:{}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('blog','','','user_access','a:1:{i:0;s:14:\"access content\";}','flexible_blogs_blog_page_last','a:0:{}','',1,1,0,'','blog','','flexible_blogs_blog_page_title','','','a:0:{}',20,'','','',0,'modules/blog/blog.pages.inc');
INSERT INTO `menu_router` VALUES ('blog/%','a:1:{i:1;s:22:\"user_uid_optional_load\";}','a:1:{i:1;s:24:\"user_uid_optional_to_arg\";}','blog_page_user_access','a:1:{i:0;i:1;}','blog_page_user','a:1:{i:0;i:1;}','',2,2,0,'','blog/%','My blog','t','','','a:0:{}',6,'','','',0,'modules/blog/blog.pages.inc');
INSERT INTO `menu_router` VALUES ('blog/%/feed','a:1:{i:1;s:9:\"user_load\";}','','blog_page_user_access','a:1:{i:0;i:1;}','blog_feed_user','a:1:{i:0;i:1;}','',5,3,0,'','blog/%/feed','Blogs','t','','','a:0:{}',4,'','','',0,'modules/blog/blog.pages.inc');
INSERT INTO `menu_router` VALUES ('blog/feed','','','user_access','a:1:{i:0;s:14:\"access content\";}','blog_feed_last','a:0:{}','',3,2,0,'','blog/feed','Blogs','t','','','a:0:{}',4,'','','',0,'modules/blog/blog.pages.inc');
INSERT INTO `menu_router` VALUES ('comment/%','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:15:\"access comments\";}','comment_permalink','a:1:{i:0;i:1;}','',2,2,0,'','comment/%','Comment permalink','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('comment/%/approve','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_approve','a:1:{i:0;i:1;}','',5,3,0,'','comment/%/approve','Approve','t','','','a:0:{}',4,'','','',1,'modules/comment/comment.pages.inc');
INSERT INTO `menu_router` VALUES ('comment/%/delete','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_confirm_delete_page','a:1:{i:0;i:1;}','',5,3,1,'comment/%','comment/%','Delete','t','','','a:0:{}',132,'','','',2,'modules/comment/comment.admin.inc');
INSERT INTO `menu_router` VALUES ('comment/%/edit','a:1:{i:1;s:12:\"comment_load\";}','','comment_access','a:2:{i:0;s:4:\"edit\";i:1;i:1;}','comment_edit_page','a:1:{i:0;i:1;}','',5,3,1,'comment/%','comment/%','Edit','t','','','a:0:{}',132,'','','',0,'');
INSERT INTO `menu_router` VALUES ('comment/%/view','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:15:\"access comments\";}','comment_permalink','a:1:{i:0;i:1;}','',5,3,1,'comment/%','comment/%','View comment','t','','','a:0:{}',140,'','','',-10,'');
INSERT INTO `menu_router` VALUES ('comment/reply/%','a:1:{i:2;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:2;}','comment_reply','a:1:{i:0;i:2;}','',6,3,0,'','comment/reply/%','Add new comment','t','','','a:0:{}',4,'','','',0,'modules/comment/comment.pages.inc');
INSERT INTO `menu_router` VALUES ('comment_notify/disable/%','a:1:{i:2;N;}','','user_access','a:1:{i:0;s:14:\"access content\";}','comment_notify_disable_page','a:1:{i:0;i:2;}','',6,3,0,'','comment_notify/disable/%','Disable comment notification','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('contact','','','user_access','a:1:{i:0;s:29:\"access site-wide contact form\";}','drupal_get_form','a:1:{i:0;s:17:\"contact_site_form\";}','',1,1,0,'','contact','Contact','t','','','a:0:{}',20,'','','',0,'modules/contact/contact.pages.inc');
INSERT INTO `menu_router` VALUES ('customers','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_page','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:2:\"16\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:9:\"customers\";s:5:\"title\";s:9:\"Customers\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:13:\"node:customer\";s:5:\"style\";s:4:\"full\";s:4:\"sort\";s:6:\"newest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"1\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:2:\"15\";s:11:\"block_style\";s:7:\"teasers\";s:4:\"tags\";a:0:{}}}','',1,1,0,'','customers','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('customers/feed','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_feed','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:2:\"16\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:9:\"customers\";s:5:\"title\";s:9:\"Customers\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:13:\"node:customer\";s:5:\"style\";s:4:\"full\";s:4:\"sort\";s:6:\"newest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"1\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:2:\"15\";s:11:\"block_style\";s:7:\"teasers\";s:4:\"tags\";a:0:{}}}','',3,2,0,'','customers/feed','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('faq','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_page','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:1:\"6\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:3:\"faq\";s:5:\"title\";s:26:\"Frequently asked questions\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:13:\"node:faq_item\";s:5:\"style\";s:18:\"title_reveals_full\";s:4:\"sort\";s:6:\"oldest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"0\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:1:\"0\";s:11:\"block_style\";s:6:\"titles\";s:4:\"tags\";a:0:{}}}','',1,1,0,'','faq','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('faq/feed','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_feed','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:1:\"6\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:3:\"faq\";s:5:\"title\";s:26:\"Frequently asked questions\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:13:\"node:faq_item\";s:5:\"style\";s:18:\"title_reveals_full\";s:4:\"sort\";s:6:\"oldest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"0\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:1:\"0\";s:11:\"block_style\";s:6:\"titles\";s:4:\"tags\";a:0:{}}}','',3,2,0,'','faq/feed','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('file/ajax','','','user_access','a:1:{i:0;s:14:\"access content\";}','file_ajax_upload','a:0:{}','ajax_deliver',3,2,0,'','file/ajax','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('file/progress','','','user_access','a:1:{i:0;s:14:\"access content\";}','file_ajax_progress','a:0:{}','ajax_deliver',3,2,0,'','file/progress','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('filter/tips','','','1','a:0:{}','filter_tips_long','a:0:{}','',3,2,0,'','filter/tips','Compose tips','t','','','a:0:{}',20,'','','',0,'modules/filter/filter.pages.inc');
INSERT INTO `menu_router` VALUES ('forum','','','user_access','a:1:{i:0;s:14:\"access content\";}','forum_page','a:0:{}','',1,1,0,'','forum','Forums','t','','','a:0:{}',6,'','','',0,'modules/forum/forum.pages.inc');
INSERT INTO `menu_router` VALUES ('forum/%','a:1:{i:1;s:16:\"forum_forum_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','forum_page','a:1:{i:0;i:1;}','',2,2,0,'','forum/%','Forums','t','','','a:0:{}',6,'','','',0,'modules/forum/forum.pages.inc');
INSERT INTO `menu_router` VALUES ('image/generate/%','a:1:{i:2;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_generate','a:1:{i:0;i:2;}','',6,3,0,'','image/generate/%','Generate image style','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('media-gallery/add-images/%/%','a:2:{i:2;s:9:\"node_load\";i:3;N;}','','media_gallery_edit_access_ajax','a:3:{i:0;s:7:\"gallery\";i:1;i:2;i:2;i:3;}','media_gallery_add_images','a:1:{i:0;i:2;}','',12,4,0,'','media-gallery/add-images/%/%','','t','','','a:0:{}',6,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/detail/%/%','a:2:{i:2;s:9:\"node_load\";i:3;s:10:\"media_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:2;}','media_gallery_detail_page','a:2:{i:0;i:2;i:1;i:3;}','',12,4,0,'','media-gallery/detail/%/%','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/detail/%/%/edit','a:2:{i:2;s:9:\"node_load\";i:3;s:10:\"media_load\";}','','media_access','a:1:{i:0;s:4:\"edit\";}','media_gallery_media_page_edit','a:2:{i:0;i:2;i:1;i:3;}','',25,5,3,'media-gallery/detail/%/%','media-gallery/detail/%/%','Edit','t','','_node_custom_theme','a:0:{}',132,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/detail/%/%/remove','a:2:{i:2;s:9:\"node_load\";i:3;s:10:\"media_load\";}','','media_gallery_remove_item_access','a:2:{i:0;i:2;i:1;i:3;}','drupal_get_form','a:3:{i:0;s:30:\"media_gallery_remove_item_form\";i:1;i:2;i:2;i:3;}','',25,5,3,'media-gallery/detail/%/%','media-gallery/detail/%/%','Remove','t','','_node_custom_theme','a:0:{}',132,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/detail/%/%/view','a:2:{i:2;s:9:\"node_load\";i:3;s:10:\"media_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:2;}','media_gallery_detail_page','a:2:{i:0;i:2;i:1;i:3;}','',25,5,1,'media-gallery/detail/%/%','media-gallery/detail/%/%','View','t','','','a:0:{}',140,'','','',-10,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/lightbox/%/%','a:2:{i:2;s:9:\"node_load\";i:3;s:10:\"media_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:2;}','media_gallery_lightbox_page','a:2:{i:0;i:2;i:1;i:3;}','media_gallery_lightbox_page_deliver',12,4,0,'','media-gallery/lightbox/%/%','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/sort/collection/%/%','a:2:{i:3;s:18:\"taxonomy_term_load\";i:4;N;}','','media_gallery_edit_access_ajax','a:3:{i:0;s:10:\"collection\";i:1;i:3;i:2;i:4;}','media_gallery_ajax_sort','a:2:{i:0;s:10:\"collection\";i:1;i:3;}','',28,5,0,'','media-gallery/sort/collection/%/%','Gallery sort callback','t','','','a:0:{}',6,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media-gallery/sort/gallery/%/%','a:2:{i:3;s:9:\"node_load\";i:4;N;}','','media_gallery_edit_access_ajax','a:3:{i:0;s:7:\"gallery\";i:1;i:3;i:2;i:4;}','media_gallery_ajax_sort','a:2:{i:0;s:7:\"gallery\";i:1;i:3;}','',28,5,0,'','media-gallery/sort/gallery/%/%','Gallery sort callback','t','','','a:0:{}',6,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('media/%','a:1:{i:1;s:10:\"media_load\";}','','media_access','a:1:{i:0;s:4:\"view\";}','media_file_view','a:1:{i:0;i:1;}','',2,2,0,'','media/%','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/%/delete','a:1:{i:1;s:10:\"media_load\";}','','media_access','a:1:{i:0;s:4:\"edit\";}','media_page_delete','a:1:{i:0;i:1;}','',5,3,1,'media/%','media/%','Delete','t','','_node_custom_theme','a:0:{}',132,'','','',1,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/%/download','a:1:{i:1;s:10:\"media_load\";}','','media_access','a:1:{i:0;s:4:\"view\";}','media_download','a:1:{i:0;i:1;}','',5,3,0,'','media/%/download','Download','t','','','a:0:{}',4,'','','',0,'sites/all/modules/media_gallery/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/%/edit','a:1:{i:1;s:10:\"media_load\";}','','media_access','a:1:{i:0;s:4:\"edit\";}','media_page_edit','a:1:{i:0;i:1;}','',5,3,3,'media/%','media/%','Edit','t','','_node_custom_theme','a:0:{}',132,'','','',0,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/%/format-form','a:1:{i:1;s:10:\"media_load\";}','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:2:{i:0;s:17:\"media_format_form\";i:1;i:1;}','',5,3,0,'','media/%/format-form','Style selector','t','','media_dialog_get_theme_name','a:0:{}',4,'','Choose a format for a piece of media','',0,'sites/all/modules/media/media.filter.inc');
INSERT INTO `menu_router` VALUES ('media/%/multiedit','a:1:{i:1;s:16:\"media_multi_load\";}','','media_access','a:1:{i:0;s:4:\"edit\";}','media_page_multiedit','a:1:{i:0;i:1;}','',5,3,0,'','media/%/multiedit','Multi Edit','t','','_node_custom_theme','a:0:{}',4,'','','',0,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/%/view','a:1:{i:1;s:10:\"media_load\";}','','media_access','a:1:{i:0;s:4:\"view\";}','media_file_view','a:1:{i:0;i:1;}','',5,3,1,'media/%','media/%','View','t','','','a:0:{}',140,'','','',-10,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/add/from_url','','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:1:{i:0;s:18:\"media_add_from_url\";}','',7,3,1,'','media/add/from_url','Add media from URL','t','','','a:0:{}',388,'','','',-1,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/add/upload','','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:1:{i:0;s:16:\"media_add_upload\";}','',7,3,1,'','media/add/upload','Upload new file','t','','','a:0:{}',388,'','','',-1,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('media/browser','','','media_access','a:1:{i:0;s:4:\"view\";}','media_browser','a:0:{}','',3,2,0,'','media/browser','Media browser','t','','media_dialog_get_theme_name','a:0:{}',4,'','Media Browser for picking media and uploading new media','',0,'sites/all/modules/media/media.browser.inc');
INSERT INTO `menu_router` VALUES ('media/browser/library','','','media_access','a:1:{i:0;s:4:\"view\";}','media_browser_library','a:0:{}','',7,3,0,'','media/browser/library','Media browser library','t','','media_dialog_get_theme_name','a:0:{}',4,'','Media Browser for picking media and uploading new media','',0,'sites/all/modules/media/media.browser.inc');
INSERT INTO `menu_router` VALUES ('media/browser/list','','','media_access','a:1:{i:0;s:4:\"view\";}','media_browser_list','a:0:{}','',7,3,0,'','media/browser/list','Media browser list','t','','media_dialog_get_theme_name','a:0:{}',4,'','Ajax Callback for getting media','',0,'sites/all/modules/media/media.browser.inc');
INSERT INTO `menu_router` VALUES ('media/browser/testbed','','','user_access','a:1:{i:0;s:16:\"administer media\";}','drupal_get_form','a:1:{i:0;s:21:\"media_browser_testbed\";}','',7,3,0,'','media/browser/testbed','Media Browser test','t','','media_dialog_get_theme_name','a:0:{}',4,'','Make it easier to test media browser','',0,'sites/all/modules/media/media.browser.inc');
INSERT INTO `menu_router` VALUES ('media/js','','','media_access','a:1:{i:0;s:4:\"view\";}','media_preview_ajax','a:0:{}','',3,2,0,'','media/js','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/media/media.pages.inc');
INSERT INTO `menu_router` VALUES ('mollom/captcha/%/%/%','a:3:{i:2;N;i:3;N;i:4;N;}','','_mollom_access','a:0:{}','mollom_captcha_js','a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}','',24,5,0,'','mollom/captcha/%/%/%','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/mollom/mollom.pages.inc');
INSERT INTO `menu_router` VALUES ('mollom/report/%/%','a:2:{i:2;N;i:3;N;}','','mollom_report_access','a:2:{i:0;i:2;i:1;i:3;}','drupal_get_form','a:3:{i:0;s:18:\"mollom_report_form\";i:1;i:2;i:2;i:3;}','',12,4,0,'','mollom/report/%/%','Report to Mollom','t','','','a:0:{}',4,'','','',0,'sites/all/modules/mollom/mollom.pages.inc');
INSERT INTO `menu_router` VALUES ('multiform','','','1','a:0:{}','multiform_get_form','a:2:{i:0;a:1:{i:0;s:15:\"multiform_test1\";}i:1;a:1:{i:0;s:15:\"multiform_test2\";}}','',1,1,0,'','multiform','','t','','','a:0:{}',6,'','','',0,'');
INSERT INTO `menu_router` VALUES ('news','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_page','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:1:\"1\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:4:\"news\";s:5:\"title\";s:4:\"News\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:12:\"node:article\";s:5:\"style\";s:7:\"teasers\";s:4:\"sort\";s:6:\"oldest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"0\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:1:\"0\";s:11:\"block_style\";s:6:\"titles\";s:4:\"tags\";a:0:{}}}','',1,1,0,'','news','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('news/feed','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_feed','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:1:\"1\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:4:\"news\";s:5:\"title\";s:4:\"News\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:12:\"node:article\";s:5:\"style\";s:7:\"teasers\";s:4:\"sort\";s:6:\"oldest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"0\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:1:\"0\";s:11:\"block_style\";s:6:\"titles\";s:4:\"tags\";a:0:{}}}','',3,2,0,'','news/feed','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('node','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_page_default','a:0:{}','',1,1,0,'','node','Content','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('node/%','a:1:{i:1;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:1;}','node_page_view','a:1:{i:0;i:1;}','',2,2,0,'','node/%','','node_page_title','a:1:{i:0;i:1;}','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('node/%/delete','a:1:{i:1;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:6:\"delete\";i:1;i:1;}','drupal_get_form','a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}','',5,3,2,'node/%','node/%','Delete','t','','_node_custom_theme','a:0:{}',132,'','','',1,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/edit','a:1:{i:1;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:6:\"update\";i:1;i:1;}','node_page_edit','a:1:{i:0;i:1;}','',5,3,3,'node/%','node/%','Edit','t','','_node_custom_theme','a:0:{}',132,'','','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/multiedit','a:1:{i:1;s:9:\"node_load\";}','','media_gallery_multiedit_access','a:1:{i:0;i:1;}','media_gallery_media_page_multiedit','a:1:{i:0;i:1;}','',5,3,3,'node/%','node/%','Edit images','t','','','a:0:{}',132,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/results','a:1:{i:1;s:9:\"node_load\";}','','_poll_menu_access','a:3:{i:0;i:1;i:1;s:14:\"access content\";i:2;b:1;}','poll_results','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','Results','t','','','a:0:{}',132,'','','',3,'modules/poll/poll.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/revisions','a:1:{i:1;s:9:\"node_load\";}','','_node_revision_access','a:1:{i:0;i:1;}','node_revision_overview','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','Revisions','t','','','a:0:{}',132,'','','',2,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/revisions/%/delete','a:2:{i:1;a:1:{s:9:\"node_load\";a:1:{i:0;i:3;}}i:3;N;}','','_node_revision_access','a:2:{i:0;i:1;i:1;s:6:\"delete\";}','drupal_get_form','a:2:{i:0;s:28:\"node_revision_delete_confirm\";i:1;i:1;}','',21,5,0,'','node/%/revisions/%/delete','Delete earlier revision','t','','','a:0:{}',4,'','','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/revisions/%/revert','a:2:{i:1;a:1:{s:9:\"node_load\";a:1:{i:0;i:3;}}i:3;N;}','','_node_revision_access','a:2:{i:0;i:1;i:1;s:6:\"update\";}','drupal_get_form','a:2:{i:0;s:28:\"node_revision_revert_confirm\";i:1;i:1;}','',21,5,0,'','node/%/revisions/%/revert','Revert to earlier revision','t','','','a:0:{}',4,'','','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/%/revisions/%/view','a:2:{i:1;a:1:{s:9:\"node_load\";a:1:{i:0;i:3;}}i:3;N;}','','_node_revision_access','a:1:{i:0;i:1;}','node_show','a:2:{i:0;i:1;i:1;b:1;}','',21,5,0,'','node/%/revisions/%/view','Revisions','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('node/%/view','a:1:{i:1;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:1;}','node_page_view','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','View','t','','','a:0:{}',140,'','','',-10,'');
INSERT INTO `menu_router` VALUES ('node/%/votes','a:1:{i:1;s:9:\"node_load\";}','','_poll_menu_access','a:3:{i:0;i:1;i:1;s:17:\"inspect all votes\";i:2;b:0;}','poll_votes','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','Votes','t','','','a:0:{}',132,'','','',3,'modules/poll/poll.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add','','','_node_add_access','a:0:{}','node_add_page','a:0:{}','',3,2,0,'','node/add','Add new content','t','','_node_custom_theme','a:0:{}',6,'','','',1,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/article','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/article','News item','check_plain','','_node_custom_theme','a:0:{}',6,'','Use <em>news items</em> for time-specific content like press releases or announcements.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/blog','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"blog\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/blog','Blog entry','check_plain','','_node_custom_theme','a:0:{}',6,'','Use <em>blog entries</em> for a site-wide or multi-user blog.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/customer','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:8:\"customer\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/customer','Customer','check_plain','','_node_custom_theme','a:0:{}',6,'','Use <em>customer</em> content to display a profile of one of your site\'s customers.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/faq-item','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:8:\"faq_item\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/faq-item','FAQ item','check_plain','','_node_custom_theme','a:0:{}',6,'','Use an <em>FAQ item</em> to provide a question and answer about your site.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/forum','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:5:\"forum\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/forum','Forum topic','check_plain','','_node_custom_theme','a:0:{}',6,'','A <em>forum topic</em> starts a new discussion thread within a forum.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/media-gallery','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:13:\"media_gallery\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/media-gallery','Gallery','check_plain','','_node_custom_theme','a:0:{}',6,'','A flexible gallery of images.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/page','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/page','Basic page','check_plain','','_node_custom_theme','a:0:{}',6,'','Use <em>basic pages</em> for your static content, such as an \'About us\' page.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/poll','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"poll\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/poll','Poll','check_plain','','_node_custom_theme','a:0:{}',6,'','A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('node/add/testimonial','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:11:\"testimonial\";}','node_add','a:1:{i:0;i:2;}','',7,3,0,'','node/add/testimonial','Testimonial','check_plain','','_node_custom_theme','a:0:{}',6,'','Use a <em>testimonial</em> to display a customer\'s quote about your site.','',0,'modules/node/node.pages.inc');
INSERT INTO `menu_router` VALUES ('openid/authenticate','','','user_is_anonymous','a:0:{}','openid_authentication_page','a:0:{}','',3,2,0,'','openid/authenticate','OpenID Login','t','','','a:0:{}',4,'','','',0,'modules/openid/openid.pages.inc');
INSERT INTO `menu_router` VALUES ('overlay-ajax/%','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:14:\"access overlay\";}','overlay_ajax_render_region','a:1:{i:0;i:1;}','',2,2,0,'','overlay-ajax/%','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('plupload-handle-uploads','','','gardens_misc_plupload_access','a:1:{i:0;s:14:\"access content\";}','plupload_handle_uploads','a:0:{}','',1,1,0,'','plupload-handle-uploads','Handles uploads','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('plupload-test','','','0','a:1:{i:0;s:29:\"Administer site configuration\";}','drupal_get_form','a:1:{i:0;s:13:\"plupload_test\";}','',1,1,0,'','plupload-test','Test Plupload','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('poll','','','user_access','a:1:{i:0;s:14:\"access content\";}','poll_page','a:0:{}','',1,1,0,'','poll','Polls','t','','','a:0:{}',20,'','','',0,'modules/poll/poll.pages.inc');
INSERT INTO `menu_router` VALUES ('profile','','','user_access','a:1:{i:0;s:20:\"access user profiles\";}','profile_browse','a:0:{}','',1,1,0,'','profile','User list','t','','','a:0:{}',20,'','','',0,'modules/profile/profile.pages.inc');
INSERT INTO `menu_router` VALUES ('profile/autocomplete','','','user_access','a:1:{i:0;s:20:\"access user profiles\";}','profile_autocomplete','a:0:{}','',3,2,0,'','profile/autocomplete','Profile autocomplete','t','','','a:0:{}',4,'','','',0,'modules/profile/profile.pages.inc');
INSERT INTO `menu_router` VALUES ('rss.xml','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_feed','a:0:{}','',1,1,0,'','rss.xml','RSS feed','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('search','','','user_access','a:1:{i:0;s:14:\"search content\";}','search_view','a:0:{}','',1,1,0,'','search','Search','t','','','a:0:{}',20,'','','',0,'modules/search/search.pages.inc');
INSERT INTO `menu_router` VALUES ('search/node','','','_search_menu_access','a:1:{i:0;s:4:\"node\";}','search_view','a:1:{i:0;s:4:\"node\";}','',3,2,1,'search','search','Content','t','','','a:0:{}',140,'','','',-10,'modules/search/search.pages.inc');
INSERT INTO `menu_router` VALUES ('search/node/%','a:1:{i:2;N;}','a:1:{i:2;s:16:\"menu_tail_to_arg\";}','_search_menu_access','a:1:{i:0;s:4:\"node\";}','search_view','a:1:{i:0;s:4:\"node\";}','',6,3,1,'search','search/node/%','Content','t','','','a:0:{}',132,'','','',0,'modules/search/search.pages.inc');
INSERT INTO `menu_router` VALUES ('search/user','','','_search_menu_access','a:1:{i:0;s:4:\"user\";}','search_view','a:1:{i:0;s:4:\"user\";}','',3,2,1,'search','search','Users','t','','','a:0:{}',132,'','','',0,'modules/search/search.pages.inc');
INSERT INTO `menu_router` VALUES ('search/user/%','a:1:{i:2;N;}','a:1:{i:2;s:16:\"menu_tail_to_arg\";}','_search_menu_access','a:1:{i:0;s:4:\"user\";}','search_view','a:1:{i:0;s:4:\"user\";}','',6,3,1,'search','search/node/%','Users','t','','','a:0:{}',132,'','','',0,'modules/search/search.pages.inc');
INSERT INTO `menu_router` VALUES ('sitemap.xml','','','user_access','a:1:{i:0;s:14:\"access content\";}','xmlsitemap_output_chunk','a:0:{}','',1,1,0,'','sitemap.xml','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/xmlsitemap/xmlsitemap.pages.inc');
INSERT INTO `menu_router` VALUES ('sitemap.xsl','','','1','a:0:{}','xmlsitemap_output_xsl','a:0:{}','',1,1,0,'','sitemap.xsl','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/xmlsitemap/xmlsitemap.pages.inc');
INSERT INTO `menu_router` VALUES ('system/ajax','','','1','a:0:{}','ajax_form_callback','a:0:{}','ajax_deliver',3,2,0,'','system/ajax','AHAH callback','t','','','a:0:{}',4,'','','',0,'includes/form.inc');
INSERT INTO `menu_router` VALUES ('system/files','','','1','a:0:{}','file_download','a:1:{i:0;s:7:\"private\";}','',3,2,0,'','system/files','File download','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('system/temporary','','','1','a:0:{}','file_download','a:1:{i:0;s:9:\"temporary\";}','',3,2,0,'','system/temporary','Temporary files','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('system/timezone','','','1','a:0:{}','system_timezone','a:0:{}','',3,2,0,'','system/timezone','Time zone','t','','','a:0:{}',4,'','','',0,'modules/system/system.admin.inc');
INSERT INTO `menu_router` VALUES ('taxonomy/autocomplete','','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_autocomplete','a:0:{}','',3,2,0,'','taxonomy/autocomplete','Autocomplete taxonomy','t','','','a:0:{}',4,'','','',0,'modules/taxonomy/taxonomy.pages.inc');
INSERT INTO `menu_router` VALUES ('taxonomy/term/%','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','media_gallery_list_galleries','a:1:{i:0;i:2;}','',6,3,0,'','taxonomy/term/%','Taxonomy term','taxonomy_term_title','a:1:{i:0;i:2;}','','a:0:{}',4,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('taxonomy/term/%/edit','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','media_gallery_collection_access','a:1:{i:0;i:2;}','drupal_get_form','a:2:{i:0;s:18:\"taxonomy_form_term\";i:1;i:2;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','Edit','t','','','a:0:{}',132,'','','',10,'modules/taxonomy/taxonomy.admin.inc');
INSERT INTO `menu_router` VALUES ('taxonomy/term/%/feed','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_term_feed','a:1:{i:0;i:2;}','',13,4,0,'','taxonomy/term/%/feed','Taxonomy term','taxonomy_term_title','a:1:{i:0;i:2;}','','a:0:{}',4,'','','',0,'modules/taxonomy/taxonomy.pages.inc');
INSERT INTO `menu_router` VALUES ('taxonomy/term/%/view','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','media_gallery_list_galleries','a:1:{i:0;i:2;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','View','t','','','a:0:{}',140,'','','',0,'sites/all/modules/media_gallery/media_gallery.pages.inc');
INSERT INTO `menu_router` VALUES ('testimonials','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_page','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:2:\"11\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:12:\"testimonials\";s:5:\"title\";s:12:\"Testimonials\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:16:\"node:testimonial\";s:5:\"style\";s:4:\"full\";s:4:\"sort\";s:6:\"oldest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"1\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:1:\"1\";s:11:\"block_style\";s:4:\"full\";s:4:\"tags\";a:0:{}}}','',1,1,0,'','testimonials','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('testimonials/feed','','','user_access','a:1:{i:0;s:14:\"access content\";}','sqbs_generate_feed','a:1:{i:0;O:8:\"stdClass\":15:{s:4:\"svid\";s:2:\"11\";s:6:\"module\";s:11:\"simpleviews\";s:4:\"path\";s:12:\"testimonials\";s:5:\"title\";s:12:\"Testimonials\";s:6:\"header\";s:0:\"\";s:6:\"filter\";s:16:\"node:testimonial\";s:5:\"style\";s:4:\"full\";s:4:\"sort\";s:6:\"oldest\";s:8:\"argument\";s:0:\"\";s:3:\"rss\";s:1:\"1\";s:5:\"block\";s:1:\"1\";s:10:\"page_items\";s:2:\"10\";s:11:\"block_items\";s:1:\"1\";s:11:\"block_style\";s:4:\"full\";s:4:\"tags\";a:0:{}}}','',3,2,0,'','testimonials/feed','','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('toolbar/toggle','','','user_access','a:1:{i:0;s:14:\"access toolbar\";}','toolbar_toggle_page','a:0:{}','',3,2,0,'','toolbar/toggle','Toggle drawer visibility','t','','','a:0:{}',4,'','','',0,'');
INSERT INTO `menu_router` VALUES ('user/%','a:1:{i:1;N;}','a:1:{i:1;s:29:\"user_uid_only_optional_to_arg\";}','user_view_access','a:1:{i:0;i:1;}','user_view_page','a:1:{i:0;i:1;}','',2,2,0,'','user/%','My account','user_page_title','a:1:{i:0;i:1;}','','a:0:{}',6,'','','',-10,'');
INSERT INTO `menu_router` VALUES ('user/%/cancel','a:1:{i:1;s:9:\"user_load\";}','','scarecrow_user_cancel_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:24:\"user_cancel_confirm_form\";i:1;i:1;}','',5,3,0,'','user/%/cancel','Cancel account','t','','','a:0:{}',4,'','','',0,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/cancel/confirm/%/%','a:3:{i:1;s:9:\"user_load\";i:4;N;i:5;N;}','','scarecrow_user_cancel_access','a:1:{i:0;i:1;}','user_cancel_confirm','a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}','',44,6,0,'','user/%/cancel/confirm/%/%','Confirm account cancellation','t','','','a:0:{}',4,'','','',0,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/contact','a:1:{i:1;s:9:\"user_load\";}','','scarecrow_contact_tab_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}','',5,3,1,'user/%','user/%','Contact','t','','','a:0:{}',132,'','','',2,'modules/contact/contact.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/edit','a:1:{i:1;s:9:\"user_load\";}','','scarecrow_user_edit_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}','',5,3,1,'user/%','user/%','Edit','t','','','a:0:{}',132,'','','',0,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/edit/account','a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','','scarecrow_user_edit_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}','',11,4,1,'user/%/edit','user/%','Account','t','','','a:0:{}',140,'','','',0,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/edit/Personal information','a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','','0','a:2:{i:0;i:1;i:1;s:20:\"Personal information\";}','drupal_get_form','a:3:{i:0;s:17:\"user_profile_form\";i:1;i:1;i:2;i:3;}','',11,4,1,'user/%/edit','user/%','','check_plain','a:1:{i:0;s:20:\"Personal information\";}','','a:0:{}',132,'','','',3,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/follow','a:1:{i:1;N;}','','follow_links_user_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:17:\"follow_links_form\";i:1;i:1;}','',5,3,1,'user/%','user/%','My follow links','t','','','a:0:{}',132,'','edit follow links','',0,'');
INSERT INTO `menu_router` VALUES ('user/%/openid','a:1:{i:1;s:9:\"user_load\";}','','0','a:1:{i:0;i:1;}','openid_user_identities','a:1:{i:0;i:1;}','',5,3,1,'user/%','user/%','OpenID identities','t','','','a:0:{}',132,'','','',0,'modules/openid/openid.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/openid/delete','a:1:{i:1;s:9:\"user_load\";}','','0','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:23:\"openid_user_delete_form\";i:1;i:1;}','',11,4,0,'','user/%/openid/delete','Delete OpenID','t','','','a:0:{}',4,'','','',0,'modules/openid/openid.pages.inc');
INSERT INTO `menu_router` VALUES ('user/%/shortcuts','a:1:{i:1;s:9:\"user_load\";}','','shortcut_set_switch_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}','',5,3,1,'user/%','user/%','Shortcuts','t','','','a:0:{}',132,'','','',0,'modules/shortcut/shortcut.admin.inc');
INSERT INTO `menu_router` VALUES ('user/%/view','a:1:{i:1;s:9:\"user_load\";}','','user_view_access','a:1:{i:0;i:1;}','user_view_page','a:1:{i:0;i:1;}','',5,3,1,'user/%','user/%','View','t','','','a:0:{}',140,'','','',-10,'');
INSERT INTO `menu_router` VALUES ('user/autocomplete','','','user_access','a:1:{i:0;s:20:\"access user profiles\";}','user_autocomplete','a:0:{}','',3,2,0,'','user/autocomplete','User autocomplete','t','','','a:0:{}',4,'','','',0,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('user/reset/%/%/%','a:3:{i:2;N;i:3;N;i:4;N;}','','0','a:0:{}','drupal_get_form','a:4:{i:0;s:15:\"user_pass_reset\";i:1;i:2;i:2;i:3;i:3;i:4;}','',24,5,0,'','user/reset/%/%/%','Reset password','t','','','a:0:{}',4,'','','',0,'modules/user/user.pages.inc');
INSERT INTO `menu_router` VALUES ('wysiwyg/%','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:14:\"access content\";}','wysiwyg_dialog','a:1:{i:0;i:1;}','',2,2,0,'','wysiwyg/%','','t','','','a:0:{}',4,'','','',0,'sites/all/modules/wysiwyg/wysiwyg.dialog.inc');
/*!40000 ALTER TABLE `menu_router` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mollom`
--
DROP TABLE IF EXISTS `mollom`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `mollom` (
`entity` varchar(32) NOT NULL default '' COMMENT 'The entity type of the content.',
`did` varchar(32) NOT NULL default '' COMMENT 'Unique data ID of the content.',
`session` varchar(255) NOT NULL default '' COMMENT 'Content author’s session ID.',
`changed` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp when the data was changed.',
`quality` varchar(255) NOT NULL default '' COMMENT 'A quality rating assigned to the content to tell whether or not it’s spam. Experimental; Mollom might return inconsistent values.',
`reputation` varchar(255) NOT NULL default '' COMMENT 'The reputation of the author. Experimental; Mollom might return inconsistent values.',
`languages` varchar(255) NOT NULL default '' COMMENT 'A space-delimited language codes the content might be written in. Experimental; Mollom might return inconsistent values.',
PRIMARY KEY (`entity`,`did`),
KEY `session` (`session`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tracks content spam statuses.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `mollom`
--
LOCK TABLES `mollom` WRITE;
/*!40000 ALTER TABLE `mollom` DISABLE KEYS */;
/*!40000 ALTER TABLE `mollom` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mollom_form`
--
DROP TABLE IF EXISTS `mollom_form`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `mollom_form` (
`form_id` varchar(255) NOT NULL default '' COMMENT 'The $form_id of the form being protected.',
`mode` tinyint(4) NOT NULL default '0' COMMENT 'The configured protection mode to use for the form.',
`enabled_fields` text COMMENT 'A list of form elements configured for textual analysis.',
`module` varchar(255) NOT NULL default '' COMMENT 'The module name the $form_id belongs to.',
`data` text NOT NULL COMMENT 'Serialized data containing the form’s Mollom options.',
PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration for forms protected by Mollom.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `mollom_form`
--
LOCK TABLES `mollom_form` WRITE;
/*!40000 ALTER TABLE `mollom_form` DISABLE KEYS */;
INSERT INTO `mollom_form` VALUES ('comment_form',2,'a:2:{i:0;s:7:\"subject\";i:1;s:27:\"comment_body][und][0][value\";}','comment','a:0:{}');
/*!40000 ALTER TABLE `mollom_form` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `node`
--
DROP TABLE IF EXISTS `node`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `node` (
`nid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a node.',
`vid` int(10) unsigned NOT NULL default '0' COMMENT 'The current node_revision.vid version identifier.',
`type` varchar(32) NOT NULL default '' COMMENT 'The node_type.type of this node.',
`language` varchar(12) NOT NULL default '' COMMENT 'The languages.language of this node.',
`title` varchar(255) NOT NULL default '' COMMENT 'The title of this node, always treated as non-markup plain text.',
`uid` int(11) NOT NULL default '0' COMMENT 'The users.uid that owns this node; initially, this is the user that created it.',
`status` int(11) NOT NULL default '1' COMMENT 'Boolean indicating whether the node is published (visible to non-administrators).',
`created` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp when the node was created.',
`changed` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp when the node was most recently saved.',
`comment` int(11) NOT NULL default '0' COMMENT 'Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).',
`promote` int(11) NOT NULL default '0' COMMENT 'Boolean indicating whether the node should be displayed on the front page.',
`sticky` int(11) NOT NULL default '0' COMMENT 'Boolean indicating whether the node should be displayed at the top of lists in which it appears.',
`tnid` int(10) unsigned NOT NULL default '0' COMMENT 'The translation set id for this node, which equals the node id of the source post in each set.',
`translate` int(11) NOT NULL default '0' COMMENT 'A boolean indicating whether this translation page needs to be updated.',
PRIMARY KEY (`nid`),
UNIQUE KEY `vid` (`vid`),
KEY `node_changed` (`changed`),
KEY `node_created` (`created`),
KEY `node_frontpage` (`promote`,`status`,`sticky`,`created`),
KEY `node_status_type` (`status`,`type`,`nid`),
KEY `node_title_type` (`title`,`type`(4)),
KEY `node_type` (`type`(4)),
KEY `uid` (`uid`),
KEY `tnid` (`tnid`),
KEY `translate` (`translate`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8 COMMENT='The base table for nodes.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `node`
--
LOCK TABLES `node` WRITE;
/*!40000 ALTER TABLE `node` DISABLE KEYS */;
INSERT INTO `node` VALUES (1,1,'page','und','About us',6,1,1282630544,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (6,6,'blog','und','This is another sample blog post',6,1,1282630545,1282630544,2,0,0,0,0);
INSERT INTO `node` VALUES (11,11,'blog','und','This is a sample blog post',6,1,1282630546,1282630544,2,0,0,0,0);
INSERT INTO `node` VALUES (16,16,'forum','und','Sample forum topic for the \"General discussion\" forum',6,1,1282630547,1282630544,2,0,0,0,0);
INSERT INTO `node` VALUES (21,21,'forum','und','Sample forum topic for the \"Suggestions\" forum',6,1,1282630548,1282630544,2,0,0,0,0);
INSERT INTO `node` VALUES (26,26,'article','und','First news item',6,1,1282630549,1282630544,2,0,0,0,0);
INSERT INTO `node` VALUES (31,31,'article','und','Second news item',6,1,1282630550,1282630544,2,0,0,0,0);
INSERT INTO `node` VALUES (36,36,'faq_item','und','Why should I use Drupal Gardens?',6,1,1282630551,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (41,41,'faq_item','und','How would I create my own question and answer?',6,1,1282630552,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (46,46,'media_gallery','und','Sample gallery',6,1,1282630553,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (51,51,'page','und','Product description',6,1,1282630554,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (56,56,'testimonial','und','Sample testimonial 1',6,1,1282630555,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (61,61,'testimonial','und','Sample testimonial 2',6,1,1282630556,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (66,66,'testimonial','und','Sample testimonial 3',6,1,1282630557,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (71,71,'customer','und','Example customer 1',6,1,1282630558,1282630544,0,0,0,0,0);
INSERT INTO `node` VALUES (76,76,'customer','und','Example customer 2',6,1,1282630559,1282630544,0,0,0,0,0);
/*!40000 ALTER TABLE `node` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `node_access`
--
DROP TABLE IF EXISTS `node_access`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `node_access` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid this record affects.',
`gid` int(10) unsigned NOT NULL default '0' COMMENT 'The grant ID a user must possess in the specified realm to gain this row’s privileges on the node.',
`realm` varchar(255) NOT NULL default '' COMMENT 'The realm in which the user must possess the grant ID. Each node access node can define one or more realms.',
`grant_view` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can view this node.',
`grant_update` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can edit this node.',
`grant_delete` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can delete this node.',
PRIMARY KEY (`nid`,`gid`,`realm`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Identifies which realm/grant pairs a user must possess in...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `node_access`
--
LOCK TABLES `node_access` WRITE;
/*!40000 ALTER TABLE `node_access` DISABLE KEYS */;
INSERT INTO `node_access` VALUES (0,0,'all',1,0,0);
/*!40000 ALTER TABLE `node_access` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `node_comment_statistics`
--
DROP TABLE IF EXISTS `node_comment_statistics`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `node_comment_statistics` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid for which the statistics are compiled.',
`cid` int(11) NOT NULL default '0' COMMENT 'The comment.cid of the last comment.',
`last_comment_timestamp` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp of the last comment that was posted within this node, from comment.timestamp.',
`last_comment_name` varchar(60) default NULL COMMENT 'The name of the latest author to post a comment on this node, from comment.name.',
`last_comment_uid` int(11) NOT NULL default '0' COMMENT 'The user ID of the latest author to post a comment on this node, from comment.uid.',
`comment_count` int(10) unsigned NOT NULL default '0' COMMENT 'The total number of comments on this node.',
PRIMARY KEY (`nid`),
KEY `node_comment_timestamp` (`last_comment_timestamp`),
KEY `comment_count` (`comment_count`),
KEY `last_comment_uid` (`last_comment_uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains statistics of node and comments posts to show ...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `node_comment_statistics`
--
LOCK TABLES `node_comment_statistics` WRITE;
/*!40000 ALTER TABLE `node_comment_statistics` DISABLE KEYS */;
INSERT INTO `node_comment_statistics` VALUES (1,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (6,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (11,1,1282630635,'',0,1);
INSERT INTO `node_comment_statistics` VALUES (16,6,1282630639,'',0,1);
INSERT INTO `node_comment_statistics` VALUES (21,11,1282630639,'',0,1);
INSERT INTO `node_comment_statistics` VALUES (26,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (31,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (36,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (41,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (46,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (51,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (56,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (61,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (66,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (71,0,1282630544,NULL,6,0);
INSERT INTO `node_comment_statistics` VALUES (76,0,1282630544,NULL,6,0);
/*!40000 ALTER TABLE `node_comment_statistics` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `node_revision`
--
DROP TABLE IF EXISTS `node_revision`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `node_revision` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node this version belongs to.',
`vid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for this version.',
`uid` int(11) NOT NULL default '0' COMMENT 'The users.uid that created this version.',
`title` varchar(255) NOT NULL default '' COMMENT 'The title of this version.',
`log` longtext NOT NULL COMMENT 'The log entry explaining the changes in this version.',
`timestamp` int(11) NOT NULL default '0' COMMENT 'A Unix timestamp indicating when this version was created.',
`status` int(11) NOT NULL default '1' COMMENT 'Boolean indicating whether the node (at the time of this revision) is published (visible to non-administrators).',
`comment` int(11) NOT NULL default '0' COMMENT 'Whether comments are allowed on this node (at the time of this revision): 0 = no, 1 = closed (read only), 2 = open (read/write).',
`promote` int(11) NOT NULL default '0' COMMENT 'Boolean indicating whether the node (at the time of this revision) should be displayed on the front page.',
`sticky` int(11) NOT NULL default '0' COMMENT 'Boolean indicating whether the node (at the time of this revision) should be displayed at the top of lists in which it appears.',
PRIMARY KEY (`vid`),
KEY `nid` (`nid`),
KEY `uid` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8 COMMENT='Stores information about each saved version of a node.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `node_revision`
--
LOCK TABLES `node_revision` WRITE;
/*!40000 ALTER TABLE `node_revision` DISABLE KEYS */;
INSERT INTO `node_revision` VALUES (1,1,0,'About us','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (6,6,0,'This is another sample blog post','',1282630544,1,2,0,0);
INSERT INTO `node_revision` VALUES (11,11,0,'This is a sample blog post','',1282630544,1,2,0,0);
INSERT INTO `node_revision` VALUES (16,16,0,'Sample forum topic for the \"General discussion\" forum','',1282630544,1,2,0,0);
INSERT INTO `node_revision` VALUES (21,21,0,'Sample forum topic for the \"Suggestions\" forum','',1282630544,1,2,0,0);
INSERT INTO `node_revision` VALUES (26,26,0,'First news item','',1282630544,1,2,0,0);
INSERT INTO `node_revision` VALUES (31,31,0,'Second news item','',1282630544,1,2,0,0);
INSERT INTO `node_revision` VALUES (36,36,0,'Why should I use Drupal Gardens?','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (41,41,0,'How would I create my own question and answer?','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (46,46,0,'Sample gallery','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (51,51,0,'Product description','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (56,56,0,'Sample testimonial 1','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (61,61,0,'Sample testimonial 2','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (66,66,0,'Sample testimonial 3','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (71,71,0,'Example customer 1','',1282630544,1,0,0,0);
INSERT INTO `node_revision` VALUES (76,76,0,'Example customer 2','',1282630544,1,0,0,0);
/*!40000 ALTER TABLE `node_revision` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `node_type`
--
DROP TABLE IF EXISTS `node_type`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `node_type` (
`type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type.',
`name` varchar(255) NOT NULL default '' COMMENT 'The human-readable name of this type.',
`base` varchar(255) NOT NULL COMMENT 'The base string used to construct callbacks corresponding to this node type.',
`description` mediumtext NOT NULL COMMENT 'A brief description of this type.',
`help` mediumtext NOT NULL COMMENT 'Help information shown to the user when creating a node of this type.',
`has_title` tinyint(3) unsigned NOT NULL COMMENT 'Boolean indicating whether this type uses the node.title field.',
`title_label` varchar(255) NOT NULL default '' COMMENT 'The label displayed for the title field on the edit form.',
`custom` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this type is defined by a module (FALSE) or by a user via Add content type (TRUE).',
`modified` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether this type has been modified by an administrator; currently not used in any way.',
`locked` tinyint(4) NOT NULL default '0' COMMENT 'A boolean indicating whether the administrator can change the machine name of this type.',
`orig_type` varchar(255) NOT NULL default '' COMMENT 'The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.',
PRIMARY KEY (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about all defined node types.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `node_type`
--
LOCK TABLES `node_type` WRITE;
/*!40000 ALTER TABLE `node_type` DISABLE KEYS */;
INSERT INTO `node_type` VALUES ('article','News item','node_content','Use <em>news items</em> for time-specific content like press releases or announcements.','',1,'Title',1,1,0,'article');
INSERT INTO `node_type` VALUES ('blog','Blog entry','blog','Use <em>blog entries</em> for a site-wide or multi-user blog.','',1,'Title',0,1,1,'blog');
INSERT INTO `node_type` VALUES ('customer','Customer','node_content','Use <em>customer</em> content to display a profile of one of your site\'s customers.','',1,'Customer name',1,1,0,'customer');
INSERT INTO `node_type` VALUES ('faq_item','FAQ item','node_content','Use an <em>FAQ item</em> to provide a question and answer about your site.','',1,'Question',1,1,0,'faq_item');
INSERT INTO `node_type` VALUES ('forum','Forum topic','forum','A <em>forum topic</em> starts a new discussion thread within a forum.','',1,'Subject',0,0,1,'forum');
INSERT INTO `node_type` VALUES ('media_gallery','Gallery','media_gallery','A flexible gallery of images.','Create a gallery of thumbnail images including custom display settings. Once your gallery is saved, your images can be added.',1,'Title',0,0,1,'media_gallery');
INSERT INTO `node_type` VALUES ('page','Basic page','node_content','Use <em>basic pages</em> for your static content, such as an \'About us\' page.','',1,'Title',1,1,0,'page');
INSERT INTO `node_type` VALUES ('poll','Poll','poll','A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.','',1,'Question',0,0,1,'poll');
INSERT INTO `node_type` VALUES ('testimonial','Testimonial','node_content','Use a <em>testimonial</em> to display a customer\'s quote about your site.','',1,'Title',1,1,0,'testimonial');
/*!40000 ALTER TABLE `node_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `openid_association`
--
DROP TABLE IF EXISTS `openid_association`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `openid_association` (
`idp_endpoint_uri` varchar(255) default NULL COMMENT 'URI of the OpenID Provider endpoint.',
`assoc_handle` varchar(255) NOT NULL COMMENT 'Primary Key: Used to refer to this association in subsequent messages.',
`assoc_type` varchar(32) default NULL COMMENT 'The signature algorithm used: one of HMAC-SHA1 or HMAC-SHA256.',
`session_type` varchar(32) default NULL COMMENT 'Valid association session types: "no-encryption", "DH-SHA1", and "DH-SHA256".',
`mac_key` varchar(255) default NULL COMMENT 'The MAC key (shared secret) for this association.',
`created` int(11) NOT NULL default '0' COMMENT 'UNIX timestamp for when the association was created.',
`expires_in` int(11) NOT NULL default '0' COMMENT 'The lifetime, in seconds, of this association.',
PRIMARY KEY (`assoc_handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores temporary shared key association information for...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `openid_association`
--
LOCK TABLES `openid_association` WRITE;
/*!40000 ALTER TABLE `openid_association` DISABLE KEYS */;
INSERT INTO `openid_association` VALUES ('http://www.drupalgardens.com/openid/provider','2010-08-30T15:36:07ZWWEU','HMAC-SHA1','DH-SHA1','GdN92au53OlynbtS4HN3A2GC0C8=',1283182564,3600);
/*!40000 ALTER TABLE `openid_association` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `poll`
--
DROP TABLE IF EXISTS `poll`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `poll` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The poll’s node.nid.',
`runtime` int(11) NOT NULL default '0' COMMENT 'The number of seconds past node.created during which the poll is open.',
`active` int(10) unsigned NOT NULL default '0' COMMENT 'Boolean indicating whether or not the poll is open.',
PRIMARY KEY (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores poll-specific information for poll nodes.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `poll`
--
LOCK TABLES `poll` WRITE;
/*!40000 ALTER TABLE `poll` DISABLE KEYS */;
/*!40000 ALTER TABLE `poll` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `poll_choice`
--
DROP TABLE IF EXISTS `poll_choice`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `poll_choice` (
`chid` int(10) unsigned NOT NULL auto_increment COMMENT 'Unique identifier for a poll choice.',
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid this choice belongs to.',
`chtext` varchar(128) NOT NULL default '' COMMENT 'The text for this choice.',
`chvotes` int(11) NOT NULL default '0' COMMENT 'The total number of votes this choice has received by all users.',
`weight` int(11) NOT NULL default '0' COMMENT 'The sort order of this choice among all choices for the same node.',
PRIMARY KEY (`chid`),
KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about all choices for all polls.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `poll_choice`
--
LOCK TABLES `poll_choice` WRITE;
/*!40000 ALTER TABLE `poll_choice` DISABLE KEYS */;
/*!40000 ALTER TABLE `poll_choice` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `poll_vote`
--
DROP TABLE IF EXISTS `poll_vote`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `poll_vote` (
`chid` int(10) unsigned NOT NULL COMMENT 'The users’s vote for this poll.',
`nid` int(10) unsigned NOT NULL COMMENT 'The poll node this vote is for.',
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'The users.uid this vote is from unless the voter was anonymous.',
`hostname` varchar(128) NOT NULL default '' COMMENT 'The IP address this vote is from unless the voter was logged in.',
`timestamp` int(11) NOT NULL default '0' COMMENT 'The timestamp of the vote creation.',
PRIMARY KEY (`nid`,`uid`,`hostname`),
KEY `chid` (`chid`),
KEY `hostname` (`hostname`),
KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores per-users votes for each poll.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `poll_vote`
--
LOCK TABLES `poll_vote` WRITE;
/*!40000 ALTER TABLE `poll_vote` DISABLE KEYS */;
/*!40000 ALTER TABLE `poll_vote` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `profile_field`
--
DROP TABLE IF EXISTS `profile_field`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `profile_field` (
`fid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique profile field ID.',
`title` varchar(255) default NULL COMMENT 'Title of the field shown to the end user.',
`name` varchar(128) NOT NULL default '' COMMENT 'Internal name of the field used in the form HTML and URLs.',
`explanation` text COMMENT 'Explanation of the field to end users.',
`category` varchar(255) default NULL COMMENT 'Profile category that the field will be grouped under.',
`page` varchar(255) default NULL COMMENT 'Title of page used for browsing by the field’s value',
`type` varchar(128) default NULL COMMENT 'Type of form field.',
`weight` int(11) NOT NULL default '0' COMMENT 'Weight of field in relation to other profile fields.',
`required` tinyint(4) NOT NULL default '0' COMMENT 'Whether the user is required to enter a value. (0 = no, 1 = yes)',
`register` tinyint(4) NOT NULL default '0' COMMENT 'Whether the field is visible in the user registration form. (1 = yes, 0 = no)',
`visibility` tinyint(4) NOT NULL default '0' COMMENT 'The level of visibility for the field. (0 = hidden, 1 = private, 2 = public on profile but not member list pages, 3 = public on profile and list pages)',
`autocomplete` tinyint(4) NOT NULL default '0' COMMENT 'Whether form auto-completion is enabled. (0 = disabled, 1 = enabled)',
`options` text COMMENT 'List of options to be used in a list selection field.',
PRIMARY KEY (`fid`),
UNIQUE KEY `name` (`name`),
KEY `category` (`category`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Stores profile field information.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `profile_field`
--
LOCK TABLES `profile_field` WRITE;
/*!40000 ALTER TABLE `profile_field` DISABLE KEYS */;
INSERT INTO `profile_field` VALUES (1,'Full name','profile_fullname',NULL,'Personal information',NULL,'textfield',0,0,0,2,0,NULL);
INSERT INTO `profile_field` VALUES (6,'Favorite color','profile_color',NULL,'Personal information',NULL,'textfield',0,0,0,2,0,NULL);
/*!40000 ALTER TABLE `profile_field` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `profile_value`
--
DROP TABLE IF EXISTS `profile_value`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `profile_value` (
`fid` int(10) unsigned NOT NULL default '0' COMMENT 'The profile_field.fid of the field.',
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'The users.uid of the profile user.',
`value` text COMMENT 'The value for the field.',
PRIMARY KEY (`uid`,`fid`),
KEY `fid` (`fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores values for profile fields.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `profile_value`
--
LOCK TABLES `profile_value` WRITE;
/*!40000 ALTER TABLE `profile_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `profile_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `queue`
--
DROP TABLE IF EXISTS `queue`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `queue` (
`item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique item ID.',
`name` varchar(255) NOT NULL default '' COMMENT 'The queue name.',
`data` longblob COMMENT 'The arbitrary data for the item.',
`expire` int(11) NOT NULL default '0' COMMENT 'Timestamp when the claim lease expires on the item.',
`created` int(11) NOT NULL default '0' COMMENT 'Timestamp when the item was created.',
PRIMARY KEY (`item_id`),
KEY `name_created` (`name`,`created`),
KEY `expire` (`expire`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COMMENT='Stores items in queues.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `queue`
--
LOCK TABLES `queue` WRITE;
/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rdf_mapping`
--
DROP TABLE IF EXISTS `rdf_mapping`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `rdf_mapping` (
`type` varchar(128) NOT NULL COMMENT 'The name of the entity type a mapping applies to (node, user, comment, etc.).',
`bundle` varchar(128) NOT NULL COMMENT 'The name of the bundle a mapping applies to.',
`mapping` longblob COMMENT 'The serialized mapping of the bundle type and fields to RDF terms.',
PRIMARY KEY (`type`,`bundle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores custom RDF mappings for user defined content types...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `rdf_mapping`
--
LOCK TABLES `rdf_mapping` WRITE;
/*!40000 ALTER TABLE `rdf_mapping` DISABLE KEYS */;
INSERT INTO `rdf_mapping` VALUES ('node','article','a:10:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Item\";i:1;s:13:\"foaf:Document\";}s:10:\"field_tags\";a:2:{s:10:\"predicates\";a:1:{i:0;s:10:\"dc:subject\";}s:4:\"type\";s:3:\"rel\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','blog','a:9:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:14:\"sioct:BlogPost\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','customer','a:9:{s:7:\"rdftype\";a:1:{i:0;s:13:\"foaf:Document\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','faq_item','a:9:{s:7:\"rdftype\";a:1:{i:0;s:13:\"foaf:Document\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','forum','a:10:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:15:\"sioct:BoardPost\";}s:15:\"taxonomy_forums\";a:2:{s:10:\"predicates\";a:1:{i:0;s:18:\"sioc:has_container\";}s:4:\"type\";s:3:\"rel\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','page','a:9:{s:7:\"rdftype\";a:1:{i:0;s:13:\"foaf:Document\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','poll','a:9:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:10:\"sioct:Poll\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('node','testimonial','a:9:{s:7:\"rdftype\";a:1:{i:0;s:13:\"foaf:Document\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
INSERT INTO `rdf_mapping` VALUES ('taxonomy_term','forums','a:5:{s:7:\"rdftype\";a:2:{i:0;s:14:\"sioc:Container\";i:1;s:10:\"sioc:Forum\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:2:{i:0;s:10:\"rdfs:label\";i:1;s:14:\"skos:prefLabel\";}}s:11:\"description\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"skos:definition\";}}s:3:\"vid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"skos:inScheme\";}s:4:\"type\";s:3:\"rel\";}s:6:\"parent\";a:2:{s:10:\"predicates\";a:1:{i:0;s:12:\"skos:broader\";}s:4:\"type\";s:3:\"rel\";}}');
/*!40000 ALTER TABLE `rdf_mapping` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `registry`
--
DROP TABLE IF EXISTS `registry`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `registry` (
`name` varchar(255) NOT NULL default '' COMMENT 'The name of the function, class, or interface.',
`type` varchar(9) NOT NULL default '' COMMENT 'Either function or class or interface.',
`filename` varchar(255) NOT NULL COMMENT 'Name of the file.',
`module` varchar(255) NOT NULL default '' COMMENT 'Name of the module the file belongs to.',
`weight` int(11) NOT NULL default '0' COMMENT 'The order in which this module’s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.',
PRIMARY KEY (`name`,`type`),
KEY `hook` (`type`,`weight`,`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each record is a function, class, or interface name and...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `registry`
--
LOCK TABLES `registry` WRITE;
/*!40000 ALTER TABLE `registry` DISABLE KEYS */;
INSERT INTO `registry` VALUES ('AccessDeniedTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('AddFeedTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('AdminMetaTagTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('AggregatorCronTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('AggregatorRenderingTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('AggregatorTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('ArchiverInterface','interface','includes/archiver.inc','',0);
INSERT INTO `registry` VALUES ('ArchiverTar','class','modules/system/system.archiver.inc','system',0);
INSERT INTO `registry` VALUES ('ArchiverZip','class','modules/system/system.archiver.inc','system',0);
INSERT INTO `registry` VALUES ('Archive_Tar','class','modules/system/system.tar.inc','system',0);
INSERT INTO `registry` VALUES ('BatchMemoryQueue','class','includes/batch.queue.inc','',0);
INSERT INTO `registry` VALUES ('BatchQueue','class','includes/batch.queue.inc','',0);
INSERT INTO `registry` VALUES ('BlockAdminThemeTestCase','class','modules/block/block.test','block',0);
INSERT INTO `registry` VALUES ('BlockCacheTestCase','class','modules/block/block.test','block',0);
INSERT INTO `registry` VALUES ('BlockHTMLIdTestCase','class','modules/block/block.test','block',0);
INSERT INTO `registry` VALUES ('BlockTestCase','class','modules/block/block.test','block',0);
INSERT INTO `registry` VALUES ('BlogTestCase','class','modules/blog/blog.test','blog',0);
INSERT INTO `registry` VALUES ('CategorizeFeedItemTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('CategorizeFeedTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('CommentAnonymous','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentApprovalTest','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentBlockFunctionalTest','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentContentRebuild','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentController','class','modules/comment/comment.module','comment',0);
INSERT INTO `registry` VALUES ('CommentHelperCase','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentInterfaceTest','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentNotifyTestCase','class','sites/all/modules/comment_notify/comment_notify.test','comment_notify',0);
INSERT INTO `registry` VALUES ('CommentPagerTest','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentPreviewTest','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentRSSUnitTest','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CommentTokenReplaceTestCase','class','modules/comment/comment.test','comment',0);
INSERT INTO `registry` VALUES ('CompactModeTest','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('ContactPersonalTestCase','class','modules/contact/contact.test','contact',0);
INSERT INTO `registry` VALUES ('ContactSitewideTestCase','class','modules/contact/contact.test','contact',0);
INSERT INTO `registry` VALUES ('CronRunTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('DashboardAccessTestCase','class','modules/dashboard/dashboard.test','dashboard',0);
INSERT INTO `registry` VALUES ('Database','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseCondition','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseConnection','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseConnectionNotDefinedException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseConnection_mysql','class','includes/database/mysql/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseConnection_pgsql','class','includes/database/pgsql/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseConnection_sqlite','class','includes/database/sqlite/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseDriverNotSpecifiedException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseLog','class','includes/database/log.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseSchema','class','includes/database/schema.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseSchemaObjectDoesNotExistException','class','includes/database/schema.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseSchemaObjectExistsException','class','includes/database/schema.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseSchema_mysql','class','includes/database/mysql/schema.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseSchema_pgsql','class','includes/database/pgsql/schema.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseSchema_sqlite','class','includes/database/sqlite/schema.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseStatementBase','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseStatementEmpty','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseStatementInterface','interface','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseStatementPrefetch','class','includes/database/prefetch.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseStatement_sqlite','class','includes/database/sqlite/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTaskException','class','includes/install.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTasks','class','includes/install.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTasks_mysql','class','includes/database/mysql/install.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTasks_pgsql','class','includes/database/pgsql/install.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTasks_sqlite','class','includes/database/sqlite/install.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTransaction','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTransactionCommitFailedException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTransactionExplicitCommitNotAllowedException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTransactionNameNonUniqueException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DatabaseTransactionNoActiveException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('DateTimeFunctionalTest','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('DBLogTestCase','class','modules/dblog/dblog.test','dblog',0);
INSERT INTO `registry` VALUES ('DefaultMailSystem','class','modules/system/system.mail.inc','system',0);
INSERT INTO `registry` VALUES ('DeleteQuery','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('DeleteQuery_sqlite','class','includes/database/sqlite/query.inc','',0);
INSERT INTO `registry` VALUES ('DrupalCacheInterface','interface','includes/cache.inc','',0);
INSERT INTO `registry` VALUES ('DrupalDatabaseCache','class','includes/cache.inc','',0);
INSERT INTO `registry` VALUES ('DrupalDefaultEntityController','class','includes/entity.inc','',0);
INSERT INTO `registry` VALUES ('DrupalEntityControllerInterface','interface','includes/entity.inc','',0);
INSERT INTO `registry` VALUES ('DrupalFakeCache','class','includes/cache-install.inc','',0);
INSERT INTO `registry` VALUES ('DrupalLocalStreamWrapper','class','includes/stream_wrappers.inc','',0);
INSERT INTO `registry` VALUES ('DrupalPrivateStreamWrapper','class','includes/stream_wrappers.inc','',0);
INSERT INTO `registry` VALUES ('DrupalPublicStreamWrapper','class','includes/stream_wrappers.inc','',0);
INSERT INTO `registry` VALUES ('DrupalQueue','class','modules/system/system.queue.inc','system',0);
INSERT INTO `registry` VALUES ('DrupalQueueInterface','interface','modules/system/system.queue.inc','system',0);
INSERT INTO `registry` VALUES ('DrupalReliableQueueInterface','interface','modules/system/system.queue.inc','system',0);
INSERT INTO `registry` VALUES ('DrupalStreamWrapperInterface','interface','includes/stream_wrappers.inc','',0);
INSERT INTO `registry` VALUES ('DrupalTemporaryStreamWrapper','class','includes/stream_wrappers.inc','',0);
INSERT INTO `registry` VALUES ('DrupalUpdateException','class','includes/update.inc','',0);
INSERT INTO `registry` VALUES ('DrupalUpdaterInterface','interface','includes/updater.inc','',0);
INSERT INTO `registry` VALUES ('EnableDisableTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('EntityAPIController','class','sites/all/modules/entity/entity/entity.controller.inc','entity',0);
INSERT INTO `registry` VALUES ('EntityAPIControllerInterface','interface','sites/all/modules/entity/entity/entity.controller.inc','entity',0);
INSERT INTO `registry` VALUES ('EntityAPITestCase','class','sites/all/modules/entity/entity/entity.test','entity',0);
INSERT INTO `registry` VALUES ('EntityDB','class','sites/all/modules/entity/entity/entity.db.inc','entity',0);
INSERT INTO `registry` VALUES ('EntityDBExtendable','class','sites/all/modules/entity/entity/entity.db_faces.inc','entity',0);
INSERT INTO `registry` VALUES ('EntityFieldQuery','class','includes/entity.inc','',0);
INSERT INTO `registry` VALUES ('EntityFieldQueryException','class','includes/entity.inc','',0);
INSERT INTO `registry` VALUES ('FeedParserTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('FieldAttachOtherTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldAttachStorageTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldAttachTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldBulkDeleteTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldCrudTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldDisplayAPITestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldException','class','modules/field/field.module','field',0);
INSERT INTO `registry` VALUES ('FieldFormTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldInfoTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldInstanceCrudTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldsOverlapException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('FieldSqlStorageTestCase','class','modules/field/modules/field_sql_storage/field_sql_storage.test','field_sql_storage',0);
INSERT INTO `registry` VALUES ('FieldTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldTranslationsTestCase','class','modules/field/tests/field.test','field',0);
INSERT INTO `registry` VALUES ('FieldUITestCase','class','modules/field_ui/field_ui.test','field_ui',0);
INSERT INTO `registry` VALUES ('FieldUpdateForbiddenException','class','modules/field/field.module','field',0);
INSERT INTO `registry` VALUES ('FieldValidationException','class','modules/field/field.attach.inc','field',0);
INSERT INTO `registry` VALUES ('FileFieldDisplayTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileFieldPathTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileFieldRevisionTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileFieldTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileFieldValidateTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileFieldWidgetTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileTokenReplaceTestCase','class','modules/file/tests/file.test','file',0);
INSERT INTO `registry` VALUES ('FileTransfer','class','includes/filetransfer/filetransfer.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferChmodInterface','interface','includes/filetransfer/filetransfer.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferException','class','includes/filetransfer/filetransfer.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferFTP','class','includes/filetransfer/ftp.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferFTPExtension','class','includes/filetransfer/ftp.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferFTPWrapper','class','includes/filetransfer/ftp.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferLocal','class','includes/filetransfer/local.inc','',0);
INSERT INTO `registry` VALUES ('FileTransferSSH','class','includes/filetransfer/ssh.inc','',0);
INSERT INTO `registry` VALUES ('FilterAdminTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FilterCRUDTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FilterDefaultFormatTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FilterFormatAccessTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FilterHooksTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FilterNoFormatTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FilterUnitTestCase','class','modules/filter/filter.test','filter',0);
INSERT INTO `registry` VALUES ('FloodFunctionalTest','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('ForumTestCase','class','modules/forum/forum.test','forum',0);
INSERT INTO `registry` VALUES ('FrontPageTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('HelpTestCase','class','modules/help/help.test','help',0);
INSERT INTO `registry` VALUES ('HookRequirementsTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('HTMLPurifier_DefinitionCache_Drupal','class','sites/all/modules/htmlpurifier/HTMLPurifier_DefinitionCache_Drupal.php','htmlpurifier',0);
INSERT INTO `registry` VALUES ('ImageAdminStylesUnitTest','class','modules/image/image.test','image',0);
INSERT INTO `registry` VALUES ('ImageEffectsUnitTest','class','modules/image/image.test','image',0);
INSERT INTO `registry` VALUES ('ImageFieldDisplayTestCase','class','modules/image/image.test','image',0);
INSERT INTO `registry` VALUES ('ImageFieldTestCase','class','modules/image/image.test','image',0);
INSERT INTO `registry` VALUES ('ImageFieldValidateTestCase','class','modules/image/image.test','image',0);
INSERT INTO `registry` VALUES ('ImageStylesPathAndUrlUnitTest','class','modules/image/image.test','image',0);
INSERT INTO `registry` VALUES ('ImportOPMLTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('InfoFileParserTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('InsertQuery','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('InsertQuery_mysql','class','includes/database/mysql/query.inc','',0);
INSERT INTO `registry` VALUES ('InsertQuery_pgsql','class','includes/database/pgsql/query.inc','',0);
INSERT INTO `registry` VALUES ('InsertQuery_sqlite','class','includes/database/sqlite/query.inc','',0);
INSERT INTO `registry` VALUES ('InvalidMergeQueryException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('IPAddressBlockingTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('ListFieldTestCase','class','modules/field/modules/list/tests/list.test','list',0);
INSERT INTO `registry` VALUES ('ListFieldUITestCase','class','modules/field/modules/list/tests/list.test','list',0);
INSERT INTO `registry` VALUES ('MailSystemInterface','interface','includes/mail.inc','',0);
INSERT INTO `registry` VALUES ('Media','class','sites/all/modules/media/media.types.inc','media',0);
INSERT INTO `registry` VALUES ('MediaEntityController','class','sites/all/modules/media/media.types.inc','media',0);
INSERT INTO `registry` VALUES ('MediaEntityTest','class','sites/all/modules/media/test/media.entity.test','media',0);
INSERT INTO `registry` VALUES ('MediaReadOnlyStreamWrapper','class','sites/all/modules/media/MediaReadOnlyStreamWrapper.inc','media',0);
INSERT INTO `registry` VALUES ('MediaReadOnlyStreamWrapperInterface','interface','sites/all/modules/media/MediaReadOnlyStreamWrapper.inc','media',0);
INSERT INTO `registry` VALUES ('MediaTypeTest','class','sites/all/modules/media/test/media.types.test','media',0);
INSERT INTO `registry` VALUES ('MemoryQueue','class','modules/system/system.queue.inc','system',0);
INSERT INTO `registry` VALUES ('MenuNodeTestCase','class','modules/menu/menu.test','menu',0);
INSERT INTO `registry` VALUES ('MenuTestCase','class','modules/menu/menu.test','menu',0);
INSERT INTO `registry` VALUES ('MergeQuery','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('MergeQuery_sqlite','class','includes/database/sqlite/query.inc','',0);
INSERT INTO `registry` VALUES ('ModuleDependencyTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('ModuleRequiredTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('ModuleTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('ModuleUpdater','class','modules/system/system.updater.inc','system',0);
INSERT INTO `registry` VALUES ('ModuleVersionTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('MollomAccessTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomBlacklistTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomCommentFormTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomContactFormTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomDataTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomFallbackTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomFormConfigurationTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomLanguageDetectionTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomProfanityTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomReportTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomResellerTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomResponseTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomServerListRecoveryTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomStatusTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomUserFormsTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MollomWebTestCase','class','sites/all/modules/mollom/tests/mollom.test','mollom',0);
INSERT INTO `registry` VALUES ('MultiStepNodeFormBasicOptionsTest','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NewDefaultThemeBlocks','class','modules/block/block.test','block',0);
INSERT INTO `registry` VALUES ('NodeAccessRebuildTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeAccessRecordsUnitTest','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeAccessUnitTest','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeAdminTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeBlockFunctionalTest','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeBlockTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeBuildContent','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeController','class','modules/node/node.module','node',0);
INSERT INTO `registry` VALUES ('NodeCreationTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeFeedTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeLoadHooksTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeLoadMultipleUnitTest','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodePostSettingsTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeQueryAlter','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeRevisionsTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeRSSContentTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeSaveTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeTitleTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeTitleXSSTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeTokenReplaceTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NodeTypeTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('NoFieldsException','class','includes/database/database.inc','',0);
INSERT INTO `registry` VALUES ('NoHelpTestCase','class','modules/help/help.test','help',0);
INSERT INTO `registry` VALUES ('NonDefaultBlockAdmin','class','modules/block/block.test','block',0);
INSERT INTO `registry` VALUES ('OpenIDFunctionalTestCase','class','modules/openid/openid.test','openid',0);
INSERT INTO `registry` VALUES ('OpenIDRegistrationTestCase','class','modules/openid/openid.test','openid',0);
INSERT INTO `registry` VALUES ('OpenIDUnitTest','class','modules/openid/openid.test','openid',0);
INSERT INTO `registry` VALUES ('OpenIDWebTestCase','class','modules/openid/openid.test','openid',0);
INSERT INTO `registry` VALUES ('OptionsWidgetsTestCase','class','modules/field/modules/options/options.test','options',0);
INSERT INTO `registry` VALUES ('PageEditTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('PageNotFoundTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('PagePreviewTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('PagerDefault','class','includes/pager.inc','',0);
INSERT INTO `registry` VALUES ('PageTitleFiltering','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('PageViewTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('PathautoBookTokenTestCase','class','sites/all/modules/pathauto/tests/pathauto.test','pathauto',0);
INSERT INTO `registry` VALUES ('PathautoFunctionalTestCase','class','sites/all/modules/pathauto/tests/pathauto.test','pathauto',0);
INSERT INTO `registry` VALUES ('PathautoTestHelper','class','sites/all/modules/pathauto/tests/pathauto.test','pathauto',0);
INSERT INTO `registry` VALUES ('PathautoUnitTestCase','class','sites/all/modules/pathauto/tests/pathauto.test','pathauto',0);
INSERT INTO `registry` VALUES ('PathLanguageTestCase','class','modules/path/path.test','path',0);
INSERT INTO `registry` VALUES ('PathLanguageUITestCase','class','modules/path/path.test','path',0);
INSERT INTO `registry` VALUES ('PathTaxonomyTermTestCase','class','modules/path/path.test','path',0);
INSERT INTO `registry` VALUES ('PathTestCase','class','modules/path/path.test','path',0);
INSERT INTO `registry` VALUES ('PollBlockTestCase','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollCreateTestCase','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollExpirationTestCase','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollJSAddChoice','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollTestCase','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollTokenReplaceTestCase','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollVoteCheckHostname','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('PollVoteTestCase','class','modules/poll/poll.test','poll',0);
INSERT INTO `registry` VALUES ('ProfileBlockTestCase','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestAutocomplete','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestBrowsing','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestCase','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestDate','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestFields','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestSelect','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('ProfileTestWeights','class','modules/profile/profile.test','profile',0);
INSERT INTO `registry` VALUES ('Query','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('QueryAlterableInterface','interface','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('QueryConditionInterface','interface','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('QueryExtendableInterface','interface','includes/database/select.inc','',0);
INSERT INTO `registry` VALUES ('QueryPlaceholderInterface','interface','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('QueueTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('RdfCommentAttributesTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RdfCrudTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RdfGetRdfNamespacesTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RdfMappingDefinitionTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RdfMappingHookTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RdfRdfaMarkupTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RdfTrackerAttributesTestCase','class','modules/rdf/rdf.test','rdf',0);
INSERT INTO `registry` VALUES ('RemoveFeedItemTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('RemoveFeedTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('RetrieveFileTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('SearchAdvancedSearchForm','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchBikeShed','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchBlockTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchCommentCountToggleTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchCommentTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchConfigSettingsForm','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchExactTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchMatchTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchQuery','class','modules/search/search.extender.inc','search',0);
INSERT INTO `registry` VALUES ('SearchRankingTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchSimplifyTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SearchTokenizerTestCase','class','modules/search/search.test','search',0);
INSERT INTO `registry` VALUES ('SelectQuery','class','includes/database/select.inc','',0);
INSERT INTO `registry` VALUES ('SelectQueryExtender','class','includes/database/select.inc','',0);
INSERT INTO `registry` VALUES ('SelectQueryInterface','interface','includes/database/select.inc','',0);
INSERT INTO `registry` VALUES ('SelectQuery_pgsql','class','includes/database/pgsql/query.inc','',0);
INSERT INTO `registry` VALUES ('ShortcutLinksTestCase','class','modules/shortcut/shortcut.test','shortcut',0);
INSERT INTO `registry` VALUES ('ShortcutSetsTestCase','class','modules/shortcut/shortcut.test','shortcut',0);
INSERT INTO `registry` VALUES ('ShortcutTestCase','class','modules/shortcut/shortcut.test','shortcut',0);
INSERT INTO `registry` VALUES ('ShutdownFunctionsTest','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('SiteMaintenanceTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('SQBSUnitTest','class','sites/all/modules/sqbs/sqbs.test','sqbs',0);
INSERT INTO `registry` VALUES ('StreamWrapperInterface','interface','includes/stream_wrappers.inc','',0);
INSERT INTO `registry` VALUES ('SummaryLengthTestCase','class','modules/node/node.test','node',0);
INSERT INTO `registry` VALUES ('SyslogTestCase','class','modules/syslog/syslog.test','syslog',0);
INSERT INTO `registry` VALUES ('SystemBlockTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('SystemMainContentFallback','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('SystemQueue','class','modules/system/system.queue.inc','system',0);
INSERT INTO `registry` VALUES ('SystemThemeFunctionalTest','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('TableSort','class','includes/tablesort.inc','',0);
INSERT INTO `registry` VALUES ('TaxonomyHooksTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyLoadMultipleUnitTest','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyTermController','class','modules/taxonomy/taxonomy.module','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyTermFieldTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyTermTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyTermUnitTest','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyTokenReplaceTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyVocabularyController','class','modules/taxonomy/taxonomy.module','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyVocabularyFunctionalTest','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyVocabularyUnitTest','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TaxonomyWebTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0);
INSERT INTO `registry` VALUES ('TestingMailSystem','class','modules/system/system.mail.inc','system',0);
INSERT INTO `registry` VALUES ('TextFieldTestCase','class','modules/field/modules/text/text.test','text',0);
INSERT INTO `registry` VALUES ('TextSummaryTestCase','class','modules/field/modules/text/text.test','text',0);
INSERT INTO `registry` VALUES ('TextTranslationTestCase','class','modules/field/modules/text/text.test','text',0);
INSERT INTO `registry` VALUES ('ThemeUpdater','class','modules/system/system.updater.inc','system',0);
INSERT INTO `registry` VALUES ('TokenReplaceTestCase','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('TruncateQuery','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('TruncateQuery_mysql','class','includes/database/mysql/query.inc','',0);
INSERT INTO `registry` VALUES ('TruncateQuery_sqlite','class','includes/database/sqlite/query.inc','',0);
INSERT INTO `registry` VALUES ('UpdateFeedItemTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('UpdateFeedTestCase','class','modules/aggregator/aggregator.test','aggregator',0);
INSERT INTO `registry` VALUES ('UpdateQuery','class','includes/database/query.inc','',0);
INSERT INTO `registry` VALUES ('UpdateQuery_pgsql','class','includes/database/pgsql/query.inc','',0);
INSERT INTO `registry` VALUES ('UpdateQuery_sqlite','class','includes/database/sqlite/query.inc','',0);
INSERT INTO `registry` VALUES ('Updater','class','includes/updater.inc','',0);
INSERT INTO `registry` VALUES ('UpdaterException','class','includes/updater.inc','',0);
INSERT INTO `registry` VALUES ('UpdaterFileTransferException','class','includes/updater.inc','',0);
INSERT INTO `registry` VALUES ('UpdateScriptFunctionalTest','class','modules/system/system.test','system',0);
INSERT INTO `registry` VALUES ('UserAdminTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserAutocompleteTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserBlocksUnitTests','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserCancelTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserController','class','modules/user/user.module','user',0);
INSERT INTO `registry` VALUES ('UserCreateTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserEditedOwnAccountTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserEditTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserLoginTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserPermissionsTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserPictureTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserRegistrationTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserRoleAdminTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserRolesAssignmentTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserSaveTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserSignatureTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserTimeZoneFunctionalTest','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserTokenReplaceTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserUserSearchTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('UserValidationTestCase','class','modules/user/user.test','user',0);
INSERT INTO `registry` VALUES ('XMLSitemapEnginesFunctionalTest','class','sites/all/modules/xmlsitemap/xmlsitemap_engines/tests/xmlsitemap_engines.test','xmlsitemap_engines',0);
INSERT INTO `registry` VALUES ('XMLSitemapFunctionalTest','class','sites/all/modules/xmlsitemap/xmlsitemap.test','xmlsitemap',0);
INSERT INTO `registry` VALUES ('XMLSitemapMenuFunctionalTest','class','sites/all/modules/xmlsitemap/xmlsitemap_menu/xmlsitemap_menu.test','xmlsitemap_menu',0);
INSERT INTO `registry` VALUES ('XMLSitemapNodeFunctionalTest','class','sites/all/modules/xmlsitemap/xmlsitemap_node/xmlsitemap_node.test','xmlsitemap_node',0);
INSERT INTO `registry` VALUES ('XMLSitemapRobotsTxtIntegrationTest','class','sites/all/modules/xmlsitemap/xmlsitemap.test','xmlsitemap',0);
INSERT INTO `registry` VALUES ('XMLSitemapTaxonomyFunctionalTest','class','sites/all/modules/xmlsitemap/xmlsitemap_taxonomy/xmlsitemap_taxonomy.test','xmlsitemap_taxonomy',0);
INSERT INTO `registry` VALUES ('XMLSitemapTestHelper','class','sites/all/modules/xmlsitemap/xmlsitemap.test','xmlsitemap',0);
INSERT INTO `registry` VALUES ('XMLSitemapUnitTest','class','sites/all/modules/xmlsitemap/xmlsitemap.test','xmlsitemap',0);
/*!40000 ALTER TABLE `registry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `registry_file`
--
DROP TABLE IF EXISTS `registry_file`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `registry_file` (
`filename` varchar(255) NOT NULL COMMENT 'Path to the file.',
`hash` varchar(64) NOT NULL COMMENT 'sha-256 hash of the file’s contents when last parsed.',
PRIMARY KEY (`filename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Files parsed to build the registry.';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `role`
--
DROP TABLE IF EXISTS `role`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `role` (
`rid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique role ID.',
`name` varchar(64) NOT NULL default '' COMMENT 'Unique role name.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of this role in listings and the user interface.',
PRIMARY KEY (`rid`),
UNIQUE KEY `name` (`name`),
KEY `name_weight` (`name`,`weight`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COMMENT='Stores user roles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `role`
--
LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (11,'administrator',2);
INSERT INTO `role` VALUES (1,'anonymous user',0);
INSERT INTO `role` VALUES (2,'authenticated user',1);
INSERT INTO `role` VALUES (21,'blogger',1);
INSERT INTO `role` VALUES (26,'editor',1);
INSERT INTO `role` VALUES (16,'site owner',3);
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_permission`
--
DROP TABLE IF EXISTS `role_permission`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `role_permission` (
`rid` int(10) unsigned NOT NULL COMMENT 'Foreign Key: role.rid.',
`permission` varchar(64) NOT NULL default '' COMMENT 'A single permission granted to the role identified by rid.',
`module` varchar(255) NOT NULL default '' COMMENT 'The module declaring the permission.',
PRIMARY KEY (`rid`,`permission`),
KEY `permission` (`permission`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the permissions assigned to user roles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `role_permission`
--
LOCK TABLES `role_permission` WRITE;
/*!40000 ALTER TABLE `role_permission` DISABLE KEYS */;
INSERT INTO `role_permission` VALUES (1,'access comments','comment');
INSERT INTO `role_permission` VALUES (1,'access content','node');
INSERT INTO `role_permission` VALUES (1,'access news feeds','aggregator');
INSERT INTO `role_permission` VALUES (1,'access site-wide contact form','contact');
INSERT INTO `role_permission` VALUES (1,'post comments','comment');
INSERT INTO `role_permission` VALUES (1,'search content','search');
INSERT INTO `role_permission` VALUES (1,'subscribe to comments','comment_notify');
INSERT INTO `role_permission` VALUES (1,'use text format 6','filter');
INSERT INTO `role_permission` VALUES (1,'view addthis','addthis');
INSERT INTO `role_permission` VALUES (1,'view media','media');
INSERT INTO `role_permission` VALUES (2,'access comments','comment');
INSERT INTO `role_permission` VALUES (2,'access content','node');
INSERT INTO `role_permission` VALUES (2,'access news feeds','aggregator');
INSERT INTO `role_permission` VALUES (2,'access site-wide contact form','contact');
INSERT INTO `role_permission` VALUES (2,'post comments','comment');
INSERT INTO `role_permission` VALUES (2,'post comments without approval','comment');
INSERT INTO `role_permission` VALUES (2,'search content','search');
INSERT INTO `role_permission` VALUES (2,'subscribe to comments','comment_notify');
INSERT INTO `role_permission` VALUES (2,'use text format 6','filter');
INSERT INTO `role_permission` VALUES (2,'view addthis','addthis');
INSERT INTO `role_permission` VALUES (2,'view media','media');
INSERT INTO `role_permission` VALUES (11,'access administration pages','system');
INSERT INTO `role_permission` VALUES (11,'access comments','comment');
INSERT INTO `role_permission` VALUES (11,'access content','node');
INSERT INTO `role_permission` VALUES (11,'access content overview','node');
INSERT INTO `role_permission` VALUES (11,'access contextual links','contextual');
INSERT INTO `role_permission` VALUES (11,'access news feeds','aggregator');
INSERT INTO `role_permission` VALUES (11,'access overlay','overlay');
INSERT INTO `role_permission` VALUES (11,'access site in maintenance mode','system');
INSERT INTO `role_permission` VALUES (11,'access site reports','system');
INSERT INTO `role_permission` VALUES (11,'access site-wide contact form','contact');
INSERT INTO `role_permission` VALUES (11,'access toolbar','toolbar');
INSERT INTO `role_permission` VALUES (11,'access user contact forms','contact');
INSERT INTO `role_permission` VALUES (11,'access user profiles','user');
INSERT INTO `role_permission` VALUES (11,'administer actions','system');
INSERT INTO `role_permission` VALUES (11,'administer addthis','addthis');
INSERT INTO `role_permission` VALUES (11,'administer blocks','block');
INSERT INTO `role_permission` VALUES (11,'administer comment notify','comment_notify');
INSERT INTO `role_permission` VALUES (11,'administer comments','comment');
INSERT INTO `role_permission` VALUES (11,'administer contact forms','contact');
INSERT INTO `role_permission` VALUES (11,'administer content types','node');
INSERT INTO `role_permission` VALUES (11,'administer file styles','file_styles');
INSERT INTO `role_permission` VALUES (11,'administer filters','filter');
INSERT INTO `role_permission` VALUES (11,'administer follow','follow');
INSERT INTO `role_permission` VALUES (11,'administer forums','forum');
INSERT INTO `role_permission` VALUES (11,'administer image styles','image');
INSERT INTO `role_permission` VALUES (11,'administer mailing lists','mailing_list');
INSERT INTO `role_permission` VALUES (11,'administer media','media');
INSERT INTO `role_permission` VALUES (11,'administer media galleries','media_gallery');
INSERT INTO `role_permission` VALUES (11,'administer menu','menu');
INSERT INTO `role_permission` VALUES (11,'administer modules','system');
INSERT INTO `role_permission` VALUES (11,'administer mollom','mollom');
INSERT INTO `role_permission` VALUES (11,'administer news feeds','aggregator');
INSERT INTO `role_permission` VALUES (11,'administer nodes','node');
INSERT INTO `role_permission` VALUES (11,'administer pathauto','pathauto');
INSERT INTO `role_permission` VALUES (11,'administer permissions','user');
INSERT INTO `role_permission` VALUES (11,'administer search','search');
INSERT INTO `role_permission` VALUES (11,'administer shortcuts','shortcut');
INSERT INTO `role_permission` VALUES (11,'administer simpleviews','simpleviews');
INSERT INTO `role_permission` VALUES (11,'administer site configuration','system');
INSERT INTO `role_permission` VALUES (11,'administer taxonomy','taxonomy');
INSERT INTO `role_permission` VALUES (11,'administer themes','system');
INSERT INTO `role_permission` VALUES (11,'administer url aliases','path');
INSERT INTO `role_permission` VALUES (11,'administer users','user');
INSERT INTO `role_permission` VALUES (11,'administer xmlsitemap','xmlsitemap');
INSERT INTO `role_permission` VALUES (11,'bypass mollom protection','mollom');
INSERT INTO `role_permission` VALUES (11,'bypass node access','node');
INSERT INTO `role_permission` VALUES (11,'cancel account','user');
INSERT INTO `role_permission` VALUES (11,'cancel own vote','poll');
INSERT INTO `role_permission` VALUES (11,'change follow link titles','follow');
INSERT INTO `role_permission` VALUES (11,'change own username','user');
INSERT INTO `role_permission` VALUES (11,'create article content','node');
INSERT INTO `role_permission` VALUES (11,'create page content','node');
INSERT INTO `role_permission` VALUES (11,'create poll content','node');
INSERT INTO `role_permission` VALUES (11,'create url aliases','path');
INSERT INTO `role_permission` VALUES (11,'customize shortcut links','shortcut');
INSERT INTO `role_permission` VALUES (11,'delete any article content','node');
INSERT INTO `role_permission` VALUES (11,'delete any page content','node');
INSERT INTO `role_permission` VALUES (11,'delete any poll content','node');
INSERT INTO `role_permission` VALUES (11,'delete own article content','node');
INSERT INTO `role_permission` VALUES (11,'delete own page content','node');
INSERT INTO `role_permission` VALUES (11,'delete own poll content','node');
INSERT INTO `role_permission` VALUES (11,'delete revisions','node');
INSERT INTO `role_permission` VALUES (11,'delete terms in 1','taxonomy');
INSERT INTO `role_permission` VALUES (11,'edit any article content','node');
INSERT INTO `role_permission` VALUES (11,'edit any page content','node');
INSERT INTO `role_permission` VALUES (11,'edit any poll content','node');
INSERT INTO `role_permission` VALUES (11,'edit any user follow links','follow');
INSERT INTO `role_permission` VALUES (11,'edit media','media');
INSERT INTO `role_permission` VALUES (11,'edit own article content','node');
INSERT INTO `role_permission` VALUES (11,'edit own comments','comment');
INSERT INTO `role_permission` VALUES (11,'edit own follow links','follow');
INSERT INTO `role_permission` VALUES (11,'edit own page content','node');
INSERT INTO `role_permission` VALUES (11,'edit own poll content','node');
INSERT INTO `role_permission` VALUES (11,'edit site follow links','follow');
INSERT INTO `role_permission` VALUES (11,'edit terms in 1','taxonomy');
INSERT INTO `role_permission` VALUES (11,'inspect all votes','poll');
INSERT INTO `role_permission` VALUES (11,'notify of path changes','pathauto');
INSERT INTO `role_permission` VALUES (11,'post comments','comment');
INSERT INTO `role_permission` VALUES (11,'post comments without approval','comment');
INSERT INTO `role_permission` VALUES (11,'revert revisions','node');
INSERT INTO `role_permission` VALUES (11,'search content','search');
INSERT INTO `role_permission` VALUES (11,'select account cancellation method','user');
INSERT INTO `role_permission` VALUES (11,'subscribe to comments','comment_notify');
INSERT INTO `role_permission` VALUES (11,'switch shortcut sets','shortcut');
INSERT INTO `role_permission` VALUES (11,'use advanced search','search');
INSERT INTO `role_permission` VALUES (11,'use parature support','gardens_help');
INSERT INTO `role_permission` VALUES (11,'use text format 11','filter');
INSERT INTO `role_permission` VALUES (11,'use text format 16','filter');
INSERT INTO `role_permission` VALUES (11,'use text format 6','filter');
INSERT INTO `role_permission` VALUES (11,'view addthis','addthis');
INSERT INTO `role_permission` VALUES (11,'view media','media');
INSERT INTO `role_permission` VALUES (11,'view own unpublished content','node');
INSERT INTO `role_permission` VALUES (11,'view revisions','node');
INSERT INTO `role_permission` VALUES (11,'vote on polls','poll');
INSERT INTO `role_permission` VALUES (16,'access administration pages','system');
INSERT INTO `role_permission` VALUES (16,'access comments','comment');
INSERT INTO `role_permission` VALUES (16,'access content','node');
INSERT INTO `role_permission` VALUES (16,'access content overview','node');
INSERT INTO `role_permission` VALUES (16,'access contextual links','contextual');
INSERT INTO `role_permission` VALUES (16,'access news feeds','aggregator');
INSERT INTO `role_permission` VALUES (16,'access overlay','overlay');
INSERT INTO `role_permission` VALUES (16,'access site in maintenance mode','system');
INSERT INTO `role_permission` VALUES (16,'access site reports','system');
INSERT INTO `role_permission` VALUES (16,'access site-wide contact form','contact');
INSERT INTO `role_permission` VALUES (16,'access toolbar','toolbar');
INSERT INTO `role_permission` VALUES (16,'access user contact forms','contact');
INSERT INTO `role_permission` VALUES (16,'access user profiles','user');
INSERT INTO `role_permission` VALUES (16,'administer actions','system');
INSERT INTO `role_permission` VALUES (16,'administer addthis','addthis');
INSERT INTO `role_permission` VALUES (16,'administer blocks','block');
INSERT INTO `role_permission` VALUES (16,'administer comment notify','comment_notify');
INSERT INTO `role_permission` VALUES (16,'administer comments','comment');
INSERT INTO `role_permission` VALUES (16,'administer contact forms','contact');
INSERT INTO `role_permission` VALUES (16,'administer content types','node');
INSERT INTO `role_permission` VALUES (16,'administer file styles','file_styles');
INSERT INTO `role_permission` VALUES (16,'administer filters','filter');
INSERT INTO `role_permission` VALUES (16,'administer follow','follow');
INSERT INTO `role_permission` VALUES (16,'administer forums','forum');
INSERT INTO `role_permission` VALUES (16,'administer image styles','image');
INSERT INTO `role_permission` VALUES (16,'administer mailing lists','mailing_list');
INSERT INTO `role_permission` VALUES (16,'administer media','media');
INSERT INTO `role_permission` VALUES (16,'administer media galleries','media_gallery');
INSERT INTO `role_permission` VALUES (16,'administer menu','menu');
INSERT INTO `role_permission` VALUES (16,'administer modules','system');
INSERT INTO `role_permission` VALUES (16,'administer mollom','mollom');
INSERT INTO `role_permission` VALUES (16,'administer news feeds','aggregator');
INSERT INTO `role_permission` VALUES (16,'administer nodes','node');
INSERT INTO `role_permission` VALUES (16,'administer pathauto','pathauto');
INSERT INTO `role_permission` VALUES (16,'administer permissions','user');
INSERT INTO `role_permission` VALUES (16,'administer search','search');
INSERT INTO `role_permission` VALUES (16,'administer shortcuts','shortcut');
INSERT INTO `role_permission` VALUES (16,'administer simpleviews','simpleviews');
INSERT INTO `role_permission` VALUES (16,'administer site configuration','system');
INSERT INTO `role_permission` VALUES (16,'administer taxonomy','taxonomy');
INSERT INTO `role_permission` VALUES (16,'administer themes','system');
INSERT INTO `role_permission` VALUES (16,'administer url aliases','path');
INSERT INTO `role_permission` VALUES (16,'administer users','user');
INSERT INTO `role_permission` VALUES (16,'administer xmlsitemap','xmlsitemap');
INSERT INTO `role_permission` VALUES (16,'bypass mollom protection','mollom');
INSERT INTO `role_permission` VALUES (16,'bypass node access','node');
INSERT INTO `role_permission` VALUES (16,'cancel account','user');
INSERT INTO `role_permission` VALUES (16,'cancel own vote','poll');
INSERT INTO `role_permission` VALUES (16,'change follow link titles','follow');
INSERT INTO `role_permission` VALUES (16,'change own username','user');
INSERT INTO `role_permission` VALUES (16,'create article content','node');
INSERT INTO `role_permission` VALUES (16,'create blog content','node');
INSERT INTO `role_permission` VALUES (16,'create customer content','node');
INSERT INTO `role_permission` VALUES (16,'create faq_item content','node');
INSERT INTO `role_permission` VALUES (16,'create forum content','node');
INSERT INTO `role_permission` VALUES (16,'create media_gallery content','node');
INSERT INTO `role_permission` VALUES (16,'create page content','node');
INSERT INTO `role_permission` VALUES (16,'create poll content','node');
INSERT INTO `role_permission` VALUES (16,'create testimonial content','node');
INSERT INTO `role_permission` VALUES (16,'create url aliases','path');
INSERT INTO `role_permission` VALUES (16,'customize shortcut links','shortcut');
INSERT INTO `role_permission` VALUES (16,'delete any article content','node');
INSERT INTO `role_permission` VALUES (16,'delete any blog content','node');
INSERT INTO `role_permission` VALUES (16,'delete any customer content','node');
INSERT INTO `role_permission` VALUES (16,'delete any faq_item content','node');
INSERT INTO `role_permission` VALUES (16,'delete any forum content','node');
INSERT INTO `role_permission` VALUES (16,'delete any media_gallery content','node');
INSERT INTO `role_permission` VALUES (16,'delete any page content','node');
INSERT INTO `role_permission` VALUES (16,'delete any poll content','node');
INSERT INTO `role_permission` VALUES (16,'delete any testimonial content','node');
INSERT INTO `role_permission` VALUES (16,'delete own article content','node');
INSERT INTO `role_permission` VALUES (16,'delete own blog content','node');
INSERT INTO `role_permission` VALUES (16,'delete own customer content','node');
INSERT INTO `role_permission` VALUES (16,'delete own faq_item content','node');
INSERT INTO `role_permission` VALUES (16,'delete own forum content','node');
INSERT INTO `role_permission` VALUES (16,'delete own media_gallery content','node');
INSERT INTO `role_permission` VALUES (16,'delete own page content','node');
INSERT INTO `role_permission` VALUES (16,'delete own poll content','node');
INSERT INTO `role_permission` VALUES (16,'delete own testimonial content','node');
INSERT INTO `role_permission` VALUES (16,'delete revisions','node');
INSERT INTO `role_permission` VALUES (16,'delete terms in 1','taxonomy');
INSERT INTO `role_permission` VALUES (16,'edit any article content','node');
INSERT INTO `role_permission` VALUES (16,'edit any blog content','node');
INSERT INTO `role_permission` VALUES (16,'edit any customer content','node');
INSERT INTO `role_permission` VALUES (16,'edit any faq_item content','node');
INSERT INTO `role_permission` VALUES (16,'edit any forum content','node');
INSERT INTO `role_permission` VALUES (16,'edit any media_gallery content','node');
INSERT INTO `role_permission` VALUES (16,'edit any page content','node');
INSERT INTO `role_permission` VALUES (16,'edit any poll content','node');
INSERT INTO `role_permission` VALUES (16,'edit any testimonial content','node');
INSERT INTO `role_permission` VALUES (16,'edit any user follow links','follow');
INSERT INTO `role_permission` VALUES (16,'edit media','media');
INSERT INTO `role_permission` VALUES (16,'edit own article content','node');
INSERT INTO `role_permission` VALUES (16,'edit own blog content','node');
INSERT INTO `role_permission` VALUES (16,'edit own comments','comment');
INSERT INTO `role_permission` VALUES (16,'edit own customer content','node');
INSERT INTO `role_permission` VALUES (16,'edit own faq_item content','node');
INSERT INTO `role_permission` VALUES (16,'edit own follow links','follow');
INSERT INTO `role_permission` VALUES (16,'edit own forum content','node');
INSERT INTO `role_permission` VALUES (16,'edit own media_gallery content','node');
INSERT INTO `role_permission` VALUES (16,'edit own page content','node');
INSERT INTO `role_permission` VALUES (16,'edit own poll content','node');
INSERT INTO `role_permission` VALUES (16,'edit own testimonial content','node');
INSERT INTO `role_permission` VALUES (16,'edit site follow links','follow');
INSERT INTO `role_permission` VALUES (16,'edit terms in 1','taxonomy');
INSERT INTO `role_permission` VALUES (16,'inspect all votes','poll');
INSERT INTO `role_permission` VALUES (16,'notify of path changes','pathauto');
INSERT INTO `role_permission` VALUES (16,'post comments','comment');
INSERT INTO `role_permission` VALUES (16,'post comments without approval','comment');
INSERT INTO `role_permission` VALUES (16,'revert revisions','node');
INSERT INTO `role_permission` VALUES (16,'search content','search');
INSERT INTO `role_permission` VALUES (16,'select account cancellation method','user');
INSERT INTO `role_permission` VALUES (16,'subscribe to comments','comment_notify');
INSERT INTO `role_permission` VALUES (16,'switch shortcut sets','shortcut');
INSERT INTO `role_permission` VALUES (16,'use advanced search','search');
INSERT INTO `role_permission` VALUES (16,'use parature support','gardens_help');
INSERT INTO `role_permission` VALUES (16,'use text format 11','filter');
INSERT INTO `role_permission` VALUES (16,'use text format 16','filter');
INSERT INTO `role_permission` VALUES (16,'use text format 6','filter');
INSERT INTO `role_permission` VALUES (16,'view addthis','addthis');
INSERT INTO `role_permission` VALUES (16,'view media','media');
INSERT INTO `role_permission` VALUES (16,'view own unpublished content','node');
INSERT INTO `role_permission` VALUES (16,'view revisions','node');
INSERT INTO `role_permission` VALUES (16,'vote on polls','poll');
INSERT INTO `role_permission` VALUES (21,'access administration pages','system');
INSERT INTO `role_permission` VALUES (21,'access content overview','node');
INSERT INTO `role_permission` VALUES (21,'access overlay','overlay');
INSERT INTO `role_permission` VALUES (21,'access toolbar','toolbar');
INSERT INTO `role_permission` VALUES (21,'access user profiles','user');
INSERT INTO `role_permission` VALUES (21,'administer media','media');
INSERT INTO `role_permission` VALUES (21,'administer url aliases','path');
INSERT INTO `role_permission` VALUES (21,'cancel own vote','poll');
INSERT INTO `role_permission` VALUES (21,'create blog content','node');
INSERT INTO `role_permission` VALUES (21,'create poll content','node');
INSERT INTO `role_permission` VALUES (21,'create url aliases','path');
INSERT INTO `role_permission` VALUES (21,'customize shortcut links','shortcut');
INSERT INTO `role_permission` VALUES (21,'delete own blog content','node');
INSERT INTO `role_permission` VALUES (21,'delete own poll content','node');
INSERT INTO `role_permission` VALUES (21,'edit media','media');
INSERT INTO `role_permission` VALUES (21,'edit own blog content','node');
INSERT INTO `role_permission` VALUES (21,'edit own comments','comment');
INSERT INTO `role_permission` VALUES (21,'edit own follow links','follow');
INSERT INTO `role_permission` VALUES (21,'edit own poll content','node');
INSERT INTO `role_permission` VALUES (21,'edit terms in 1','taxonomy');
INSERT INTO `role_permission` VALUES (21,'edit terms in 11','taxonomy');
INSERT INTO `role_permission` VALUES (21,'edit terms in 6','taxonomy');
INSERT INTO `role_permission` VALUES (21,'inspect all votes','poll');
INSERT INTO `role_permission` VALUES (21,'switch shortcut sets','shortcut');
INSERT INTO `role_permission` VALUES (21,'use advanced search','search');
INSERT INTO `role_permission` VALUES (21,'use text format 16','filter');
INSERT INTO `role_permission` VALUES (21,'view media','media');
INSERT INTO `role_permission` VALUES (21,'view own unpublished content','node');
INSERT INTO `role_permission` VALUES (21,'vote on polls','poll');
INSERT INTO `role_permission` VALUES (26,'access administration pages','system');
INSERT INTO `role_permission` VALUES (26,'access content overview','node');
INSERT INTO `role_permission` VALUES (26,'access overlay','overlay');
INSERT INTO `role_permission` VALUES (26,'access toolbar','toolbar');
INSERT INTO `role_permission` VALUES (26,'access user profiles','user');
INSERT INTO `role_permission` VALUES (26,'administer media','media');
INSERT INTO `role_permission` VALUES (26,'administer url aliases','path');
INSERT INTO `role_permission` VALUES (26,'cancel own vote','poll');
INSERT INTO `role_permission` VALUES (26,'create article content','node');
INSERT INTO `role_permission` VALUES (26,'create blog content','node');
INSERT INTO `role_permission` VALUES (26,'create customer content','node');
INSERT INTO `role_permission` VALUES (26,'create faq_item content','node');
INSERT INTO `role_permission` VALUES (26,'create forum content','node');
INSERT INTO `role_permission` VALUES (26,'create media_gallery content','node');
INSERT INTO `role_permission` VALUES (26,'create page content','node');
INSERT INTO `role_permission` VALUES (26,'create poll content','node');
INSERT INTO `role_permission` VALUES (26,'create testimonial content','node');
INSERT INTO `role_permission` VALUES (26,'create url aliases','path');
INSERT INTO `role_permission` VALUES (26,'customize shortcut links','shortcut');
INSERT INTO `role_permission` VALUES (26,'delete any article content','node');
INSERT INTO `role_permission` VALUES (26,'delete any blog content','node');
INSERT INTO `role_permission` VALUES (26,'delete any customer content','node');
INSERT INTO `role_permission` VALUES (26,'delete any faq_item content','node');
INSERT INTO `role_permission` VALUES (26,'delete any forum content','node');
INSERT INTO `role_permission` VALUES (26,'delete any media_gallery content','node');
INSERT INTO `role_permission` VALUES (26,'delete any page content','node');
INSERT INTO `role_permission` VALUES (26,'delete any poll content','node');
INSERT INTO `role_permission` VALUES (26,'delete any testimonial content','node');
INSERT INTO `role_permission` VALUES (26,'delete own article content','node');
INSERT INTO `role_permission` VALUES (26,'delete own blog content','node');
INSERT INTO `role_permission` VALUES (26,'delete own customer content','node');
INSERT INTO `role_permission` VALUES (26,'delete own faq_item content','node');
INSERT INTO `role_permission` VALUES (26,'delete own forum content','node');
INSERT INTO `role_permission` VALUES (26,'delete own media_gallery content','node');
INSERT INTO `role_permission` VALUES (26,'delete own page content','node');
INSERT INTO `role_permission` VALUES (26,'delete own poll content','node');
INSERT INTO `role_permission` VALUES (26,'delete own testimonial content','node');
INSERT INTO `role_permission` VALUES (26,'edit any article content','node');
INSERT INTO `role_permission` VALUES (26,'edit any blog content','node');
INSERT INTO `role_permission` VALUES (26,'edit any customer content','node');
INSERT INTO `role_permission` VALUES (26,'edit any faq_item content','node');
INSERT INTO `role_permission` VALUES (26,'edit any forum content','node');
INSERT INTO `role_permission` VALUES (26,'edit any media_gallery content','node');
INSERT INTO `role_permission` VALUES (26,'edit any page content','node');
INSERT INTO `role_permission` VALUES (26,'edit any poll content','node');
INSERT INTO `role_permission` VALUES (26,'edit any testimonial content','node');
INSERT INTO `role_permission` VALUES (26,'edit media','media');
INSERT INTO `role_permission` VALUES (26,'edit own article content','node');
INSERT INTO `role_permission` VALUES (26,'edit own blog content','node');
INSERT INTO `role_permission` VALUES (26,'edit own comments','comment');
INSERT INTO `role_permission` VALUES (26,'edit own customer content','node');
INSERT INTO `role_permission` VALUES (26,'edit own faq_item content','node');
INSERT INTO `role_permission` VALUES (26,'edit own follow links','follow');
INSERT INTO `role_permission` VALUES (26,'edit own forum content','node');
INSERT INTO `role_permission` VALUES (26,'edit own media_gallery content','node');
INSERT INTO `role_permission` VALUES (26,'edit own page content','node');
INSERT INTO `role_permission` VALUES (26,'edit own poll content','node');
INSERT INTO `role_permission` VALUES (26,'edit own testimonial content','node');
INSERT INTO `role_permission` VALUES (26,'edit terms in 1','taxonomy');
INSERT INTO `role_permission` VALUES (26,'edit terms in 11','taxonomy');
INSERT INTO `role_permission` VALUES (26,'edit terms in 6','taxonomy');
INSERT INTO `role_permission` VALUES (26,'inspect all votes','poll');
INSERT INTO `role_permission` VALUES (26,'switch shortcut sets','shortcut');
INSERT INTO `role_permission` VALUES (26,'use advanced search','search');
INSERT INTO `role_permission` VALUES (26,'use text format 16','filter');
INSERT INTO `role_permission` VALUES (26,'view media','media');
INSERT INTO `role_permission` VALUES (26,'view own unpublished content','node');
INSERT INTO `role_permission` VALUES (26,'vote on polls','poll');
/*!40000 ALTER TABLE `role_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rotating_banner_slides`
--
DROP TABLE IF EXISTS `rotating_banner_slides`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `rotating_banner_slides` (
`sid` int(10) unsigned NOT NULL auto_increment COMMENT 'Slide Id',
`rbid` smallint(5) unsigned NOT NULL COMMENT 'Banner ID',
`weight` int(11) NOT NULL default '0' COMMENT 'Slide order weight',
`fid` bigint(20) unsigned NOT NULL COMMENT 'File ID',
`link` varchar(255) default '0',
`layout` varchar(255) default NULL,
`textboxes` longtext,
PRIMARY KEY (`sid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Rotating banner slides';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `rotating_banner_slides`
--
LOCK TABLES `rotating_banner_slides` WRITE;
/*!40000 ALTER TABLE `rotating_banner_slides` DISABLE KEYS */;
INSERT INTO `rotating_banner_slides` VALUES (1,1,0,1,'<front>','top-left','[{\"position\":{\"top\":\"20\",\"left\":\"20\"},\"content\":\"Headline 1\",\"type\":\"rb-textbox-type-header\"},{\"position\":{\"top\":\"80\",\"left\":\"20\"},\"content\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\"type\":\"rb-textbox-type-text\"}]');
INSERT INTO `rotating_banner_slides` VALUES (6,1,0,6,'<front>','top-left','[{\"position\":{\"top\":\"20\",\"left\":\"20\"},\"content\":\"Headline 2\",\"type\":\"rb-textbox-type-header\"},{\"position\":{\"top\":\"80\",\"left\":\"20\"},\"content\":\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\",\"type\":\"rb-textbox-type-text\"}]');
/*!40000 ALTER TABLE `rotating_banner_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `rotating_banners`
--
DROP TABLE IF EXISTS `rotating_banners`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `rotating_banners` (
`rbid` int(10) unsigned NOT NULL auto_increment COMMENT 'Banner ID',
`title` varchar(255) NOT NULL default '0',
`machine_name` varchar(255) NOT NULL default '0',
`settings` longtext,
PRIMARY KEY (`rbid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Rotating banners';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `rotating_banners`
--
LOCK TABLES `rotating_banners` WRITE;
/*!40000 ALTER TABLE `rotating_banners` DISABLE KEYS */;
INSERT INTO `rotating_banners` VALUES (1,'Main banner','rb_4c7363f8bd30e','a:5:{s:8:\"controls\";s:7:\"buttons\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"fluid\";b:1;s:5:\"cycle\";a:3:{s:2:\"fx\";s:4:\"fade\";s:7:\"timeout\";i:8000;s:3:\"fit\";i:0;}}');
/*!40000 ALTER TABLE `rotating_banners` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `search_dataset`
--
DROP TABLE IF EXISTS `search_dataset`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `search_dataset` (
`sid` int(10) unsigned NOT NULL default '0' COMMENT 'Search item ID, e.g. node ID for nodes.',
`type` varchar(16) NOT NULL default '' COMMENT 'Type of item, e.g. node.',
`data` longtext NOT NULL COMMENT 'List of space-separated words from the item.',
`reindex` int(10) unsigned NOT NULL default '0' COMMENT 'Set to force node reindexing.',
PRIMARY KEY (`sid`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores items that will be searched.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `search_dataset`
--
LOCK TABLES `search_dataset` WRITE;
/*!40000 ALTER TABLE `search_dataset` DISABLE KEYS */;
INSERT INTO `search_dataset` VALUES (1,'node',' about us to change this embedded map view it on google maps select link at the top and follow the provided instructions then edit this page and paste the html in place of the existing code view larger map office address hilda ramstraat 39 2600 berchem belgium contact us ',0);
INSERT INTO `search_dataset` VALUES (6,'node',' this is another sample blog post preinstalled site 4c736330a1e28393125890 blog lorem ipsum dolor sit amet consectetur adipiscing elit morbi luctus pharetra velit ut tincidunt phasellus pellentesque diam ullamcorper nunc bibendum sed aliquam odio tempus ut eget magna vitae nibh lobortis rhoncus cras blandit convallis erat vel mollis massa porttitor a duis nisi diam elementum in porta sit amet hendrerit et nisl ',0);
INSERT INTO `search_dataset` VALUES (11,'node',' this is a sample blog post preinstalled site 4c736330a1e28393125890 blog lorem ipsum dolor sit amet consectetur adipiscing elit morbi luctus pharetra velit ut tincidunt phasellus pellentesque diam ullamcorper nunc bibendum sed aliquam odio tempus ut eget magna vitae nibh lobortis rhoncus cras blandit convallis erat vel mollis massa porttitor a duis nisi diam elementum in porta sit amet hendrerit et nisl reply this is a sample comment to demonstrate how comments will appear on your site ',0);
INSERT INTO `search_dataset` VALUES (16,'node',' sample forum topic for the general discussion forum general discussion lorem ipsum dolor sit amet consectetur adipiscing elit phasellus arcu nisi eleifend vel luctus id imperdiet auctor nisi aliquam tempus odio et mauris pharetra scelerisque integer pretium urna non viverra gravida nisi tellus pellentesque lectus vel tempus est odio eget dui duis eu ligula est phasellus ac odio sed felis aliquet placerat phasellus tincidunt cursus euismod aliquam dignissim est eu augue interdum tempor aliquam bibendum venenatis imperdiet curabitur eleifend ullamcorper mattis duis condimentum euismod tellus quis accumsan vestibulum consectetur erat id justo blandit vel eleifend augue suscipit integer interdum purus augue mauris at arcu non dui auctor cursus in metus nulla bibendum quis fringilla a lobortis sed risus aliquam erat volutpat praesent tempor euismod consequat etiam porta ipsum nec nibh tristique ut dictum dui aliquam vivamus ac dolor urna in luctus mi reply this is a sample comment to demonstrate how comments will appear on your site s forums ',0);
INSERT INTO `search_dataset` VALUES (21,'node',' sample forum topic for the suggestions forum suggestions lorem ipsum dolor sit amet consectetur adipiscing elit phasellus arcu nisi eleifend vel luctus id imperdiet auctor nisi aliquam tempus odio et mauris pharetra scelerisque integer pretium urna non viverra gravida nisi tellus pellentesque lectus vel tempus est odio eget dui duis eu ligula est phasellus ac odio sed felis aliquet placerat phasellus tincidunt cursus euismod aliquam dignissim est eu augue interdum tempor aliquam bibendum venenatis imperdiet curabitur eleifend ullamcorper mattis duis condimentum euismod tellus quis accumsan vestibulum consectetur erat id justo blandit vel eleifend augue suscipit integer interdum purus augue mauris at arcu non dui auctor cursus in metus nulla bibendum quis fringilla a lobortis sed risus aliquam erat volutpat praesent tempor euismod consequat etiam porta ipsum nec nibh tristique ut dictum dui aliquam vivamus ac dolor urna in luctus mi reply this is a sample comment to demonstrate how comments will appear on your site s forums ',0);
INSERT INTO `search_dataset` VALUES (26,'node',' first news item lorem ipsum dolor sit amet consectetur adipiscing elit praesent id ligula neque vel fringilla orci aenean orci neque elementum in consequat vitae vestibulum interdum dolor proin ac nisi nec mauris pretium pharetra sit amet in neque donec eu metus quis dolor dapibus ultricies mauris pharetra metus ac tempor condimentum neque nunc ultricies magna sit amet posuere massa enim vitae quam ',0);
INSERT INTO `search_dataset` VALUES (31,'node',' second news item lorem ipsum dolor sit amet consectetur adipiscing elit praesent id ligula neque vel fringilla orci aenean orci neque elementum in consequat vitae vestibulum interdum dolor proin ac nisi nec mauris pretium pharetra sit amet in neque donec eu metus quis dolor dapibus ultricies mauris pharetra metus ac tempor condimentum neque nunc ultricies magna sit amet posuere massa enim vitae quam ',0);
INSERT INTO `search_dataset` VALUES (36,'node',' why should i use drupal gardens lorem ipsum dolor sit amet consectetur adipiscing elit nam nulla dolor sagittis eu faucibus et pharetra sed orci fusce ullamcorper convallis odio non aliquam duis ullamcorper pharetra nulla vel eleifend dui fringilla eu maecenas ornare nibh lacinia purus pharetra faucibus mauris eget turpis at arcu pharetra mollis aenean sodales neque sed elit ultricies laoreet aliquam luctus neque ac urna ullamcorper lacinia nunc sapien purus tempus vel pretium ut tempus vitae odio curabitur ut scelerisque risus praesent sodales pharetra augue vel lobortis cras quis orci sit amet urna tristique rhoncus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus in volutpat faucibus mi in elementum ipsum imperdiet non vestibulum aliquet volutpat mauris nec porttitor libero fringilla a nulla et libero sit amet massa eleifend tempus et a erat ',0);
INSERT INTO `search_dataset` VALUES (41,'node',' how would i create my own question and answer lorem ipsum dolor sit amet consectetur adipiscing elit nam nulla dolor sagittis eu faucibus et pharetra sed orci fusce ullamcorper convallis odio non aliquam duis ullamcorper pharetra nulla vel eleifend dui fringilla eu maecenas ornare nibh lacinia purus pharetra faucibus mauris eget turpis at arcu pharetra mollis aenean sodales neque sed elit ultricies laoreet aliquam luctus neque ac urna ullamcorper lacinia nunc sapien purus tempus vel pretium ut tempus vitae odio curabitur ut scelerisque risus praesent sodales pharetra augue vel lobortis cras quis orci sit amet urna tristique rhoncus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus in volutpat faucibus mi in elementum ipsum imperdiet non vestibulum aliquet volutpat mauris nec porttitor libero fringilla a nulla et libero sit amet massa eleifend tempus et a erat ',0);
INSERT INTO `search_dataset` VALUES (46,'node',' sample gallery this is a sample description of the gallerysample image 1this sample image is demonstrating the gallery featuresample image 2this sample image is demonstrating the gallery feature ',0);
INSERT INTO `search_dataset` VALUES (51,'node',' product description feature 1 lorem ipsum dolor sit amet consectetur adipiscing elit vestibulum ac dui arcu curabitur sodales mauris vel ipsum tempor interdum morbi a magna id risus malesuada accumsan proin quis consectetur tellus aliquam erat volutpat donec vel neque et nisl eleifend suscipit feature 2 lorem ipsum dolor sit amet consectetur adipiscing elit aliquam eget lectus urna sit amet elementum turpis sed sed orci neque nunc fermentum nunc quis tellus varius in tempor risus lobortis suspendisse est velit aliquet ac consequat sed sagittis in nulla feature 3 lorem ipsum dolor sit amet consectetur adipiscing elit nullam ultrices urna vel ultricies auctor mi ligula gravida dolor quis iaculis mauris velit in diam curabitur ultricies mollis congue nulla leo neque tempus vitae egestas vel pretium eu mi suspendisse adipiscing luctus velit feature 4 lorem ipsum dolor sit amet consectetur adipiscing elit nunc imperdiet nunc non mi hendrerit pharetra in rhoncus metus eu nunc consequat at egestas elit commodo proin augue quam tincidunt et accumsan a mattis ac est aliquam erat volutpat donec rutrum volutpat posuere feature 5 lorem ipsum dolor sit amet consectetur adipiscing elit etiam blandit aliquet metus vitae ultrices ut nec arcu vitae tortor lacinia malesuada pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas suspendisse semper placerat elit eget egestas feature 6 lorem ipsum dolor sit amet consectetur adipiscing elit ut enim nibh interdum quis iaculis in consectetur ac ipsum aenean sit amet erat risus sed adipiscing est nunc nec est et nisl tincidunt fermentum nulla eget erat ut enim mollis dignissim curabitur non risus ipsum non egestas massa ',0);
INSERT INTO `search_dataset` VALUES (56,'node',' sample testimonial 1 i love my drupal gardens it s so easy to build awesome sites anonymouscompany ',0);
INSERT INTO `search_dataset` VALUES (61,'node',' sample testimonial 2 lorem ipsum dolor sit amet consectetur adipiscing elit sed a aliquet erat aliquam erat volutpat aenean varius est nec egestas convallis ipsum magna vulputate nibh eu facilisis turpis turpis a elit morbi rhoncus facilisis urna quis adipiscing tortor semper accumsan anonymouscompany ',0);
INSERT INTO `search_dataset` VALUES (66,'node',' sample testimonial 3 lorem ipsum dolor sit amet consectetur adipiscing elit maecenas egestas ligula non lacus sagittis ac facilisis eros ullamcorper vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae in commodo arcu a tellus interdum bibendum anonymouscompany ',0);
INSERT INTO `search_dataset` VALUES (71,'node',' example customer 1 ',0);
INSERT INTO `search_dataset` VALUES (76,'node',' example customer 2 ',0);
/*!40000 ALTER TABLE `search_dataset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `search_index`
--
DROP TABLE IF EXISTS `search_index`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `search_index` (
`word` varchar(50) NOT NULL default '' COMMENT 'The search_total.word that is associated with the search item.',
`sid` int(10) unsigned NOT NULL default '0' COMMENT 'The search_dataset.sid of the searchable item to which the word belongs.',
`type` varchar(16) NOT NULL default '' COMMENT 'The search_dataset.type of the searchable item to which the word belongs.',
`score` float default NULL COMMENT 'The numeric score of the word, higher being more important.',
PRIMARY KEY (`word`,`sid`,`type`),
KEY `sid_type` (`sid`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the search index, associating words, items and...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `search_index`
--
LOCK TABLES `search_index` WRITE;
/*!40000 ALTER TABLE `search_index` DISABLE KEYS */;
INSERT INTO `search_index` VALUES ('1',51,'node',4);
INSERT INTO `search_index` VALUES ('1',56,'node',26);
INSERT INTO `search_index` VALUES ('1',71,'node',26);
INSERT INTO `search_index` VALUES ('1this',46,'node',1);
INSERT INTO `search_index` VALUES ('2',51,'node',4);
INSERT INTO `search_index` VALUES ('2',61,'node',26);
INSERT INTO `search_index` VALUES ('2',76,'node',26);
INSERT INTO `search_index` VALUES ('2600',1,'node',1);
INSERT INTO `search_index` VALUES ('2this',46,'node',1);
INSERT INTO `search_index` VALUES ('3',51,'node',4);
INSERT INTO `search_index` VALUES ('3',66,'node',26);
INSERT INTO `search_index` VALUES ('39',1,'node',1);
INSERT INTO `search_index` VALUES ('4',51,'node',4);
INSERT INTO `search_index` VALUES ('4c736330a1e28393125890',6,'node',11);
INSERT INTO `search_index` VALUES ('4c736330a1e28393125890',11,'node',11);
INSERT INTO `search_index` VALUES ('5',51,'node',4);
INSERT INTO `search_index` VALUES ('6',51,'node',4);
INSERT INTO `search_index` VALUES ('about',1,'node',26);
INSERT INTO `search_index` VALUES ('accumsan',16,'node',1);
INSERT INTO `search_index` VALUES ('accumsan',21,'node',1);
INSERT INTO `search_index` VALUES ('accumsan',51,'node',2);
INSERT INTO `search_index` VALUES ('accumsan',61,'node',1);
INSERT INTO `search_index` VALUES ('address',1,'node',19);
INSERT INTO `search_index` VALUES ('adipiscing',6,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',11,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',16,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',21,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',26,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',31,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',36,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',41,'node',1);
INSERT INTO `search_index` VALUES ('adipiscing',51,'node',7.98902);
INSERT INTO `search_index` VALUES ('adipiscing',61,'node',2);
INSERT INTO `search_index` VALUES ('adipiscing',66,'node',1);
INSERT INTO `search_index` VALUES ('aenean',26,'node',1);
INSERT INTO `search_index` VALUES ('aenean',31,'node',1);
INSERT INTO `search_index` VALUES ('aenean',36,'node',1);
INSERT INTO `search_index` VALUES ('aenean',41,'node',1);
INSERT INTO `search_index` VALUES ('aenean',51,'node',0.993146);
INSERT INTO `search_index` VALUES ('aenean',61,'node',1);
INSERT INTO `search_index` VALUES ('aliquam',6,'node',1);
INSERT INTO `search_index` VALUES ('aliquam',11,'node',1);
INSERT INTO `search_index` VALUES ('aliquam',16,'node',5);
INSERT INTO `search_index` VALUES ('aliquam',21,'node',5);
INSERT INTO `search_index` VALUES ('aliquam',36,'node',2);
INSERT INTO `search_index` VALUES ('aliquam',41,'node',2);
INSERT INTO `search_index` VALUES ('aliquam',51,'node',3);
INSERT INTO `search_index` VALUES ('aliquam',61,'node',1);
INSERT INTO `search_index` VALUES ('aliquet',16,'node',1);
INSERT INTO `search_index` VALUES ('aliquet',21,'node',1);
INSERT INTO `search_index` VALUES ('aliquet',36,'node',1);
INSERT INTO `search_index` VALUES ('aliquet',41,'node',1);
INSERT INTO `search_index` VALUES ('aliquet',51,'node',2);
INSERT INTO `search_index` VALUES ('aliquet',61,'node',1);
INSERT INTO `search_index` VALUES ('amet',6,'node',2);
INSERT INTO `search_index` VALUES ('amet',11,'node',2);
INSERT INTO `search_index` VALUES ('amet',16,'node',1);
INSERT INTO `search_index` VALUES ('amet',21,'node',1);
INSERT INTO `search_index` VALUES ('amet',26,'node',3);
INSERT INTO `search_index` VALUES ('amet',31,'node',3);
INSERT INTO `search_index` VALUES ('amet',36,'node',3);
INSERT INTO `search_index` VALUES ('amet',41,'node',3);
INSERT INTO `search_index` VALUES ('amet',51,'node',7.98902);
INSERT INTO `search_index` VALUES ('amet',61,'node',1);
INSERT INTO `search_index` VALUES ('amet',66,'node',1);
INSERT INTO `search_index` VALUES ('and',1,'node',2);
INSERT INTO `search_index` VALUES ('and',41,'node',26);
INSERT INTO `search_index` VALUES ('anonymouscompany',56,'node',1);
INSERT INTO `search_index` VALUES ('anonymouscompany',61,'node',1);
INSERT INTO `search_index` VALUES ('anonymouscompany',66,'node',1);
INSERT INTO `search_index` VALUES ('another',6,'node',26);
INSERT INTO `search_index` VALUES ('answer',41,'node',26);
INSERT INTO `search_index` VALUES ('ante',66,'node',1);
INSERT INTO `search_index` VALUES ('appear',11,'node',1);
INSERT INTO `search_index` VALUES ('appear',16,'node',1);
INSERT INTO `search_index` VALUES ('appear',21,'node',1);
INSERT INTO `search_index` VALUES ('arcu',16,'node',2);
INSERT INTO `search_index` VALUES ('arcu',21,'node',2);
INSERT INTO `search_index` VALUES ('arcu',36,'node',1);
INSERT INTO `search_index` VALUES ('arcu',41,'node',1);
INSERT INTO `search_index` VALUES ('arcu',51,'node',2);
INSERT INTO `search_index` VALUES ('arcu',66,'node',1);
INSERT INTO `search_index` VALUES ('auctor',16,'node',2);
INSERT INTO `search_index` VALUES ('auctor',21,'node',2);
INSERT INTO `search_index` VALUES ('auctor',51,'node',1);
INSERT INTO `search_index` VALUES ('augue',16,'node',3);
INSERT INTO `search_index` VALUES ('augue',21,'node',3);
INSERT INTO `search_index` VALUES ('augue',36,'node',1);
INSERT INTO `search_index` VALUES ('augue',41,'node',1);
INSERT INTO `search_index` VALUES ('augue',51,'node',1);
INSERT INTO `search_index` VALUES ('awesome',56,'node',1);
INSERT INTO `search_index` VALUES ('belgium',1,'node',1);
INSERT INTO `search_index` VALUES ('berchem',1,'node',1);
INSERT INTO `search_index` VALUES ('bibendum',6,'node',1);
INSERT INTO `search_index` VALUES ('bibendum',11,'node',1);
INSERT INTO `search_index` VALUES ('bibendum',16,'node',2);
INSERT INTO `search_index` VALUES ('bibendum',21,'node',2);
INSERT INTO `search_index` VALUES ('bibendum',66,'node',1);
INSERT INTO `search_index` VALUES ('blandit',6,'node',1);
INSERT INTO `search_index` VALUES ('blandit',11,'node',1);
INSERT INTO `search_index` VALUES ('blandit',16,'node',1);
INSERT INTO `search_index` VALUES ('blandit',21,'node',1);
INSERT INTO `search_index` VALUES ('blandit',51,'node',1);
INSERT INTO `search_index` VALUES ('blog',6,'node',37);
INSERT INTO `search_index` VALUES ('blog',11,'node',37);
INSERT INTO `search_index` VALUES ('build',56,'node',1);
INSERT INTO `search_index` VALUES ('change',1,'node',1);
INSERT INTO `search_index` VALUES ('code',1,'node',1);
INSERT INTO `search_index` VALUES ('comment',11,'node',1);
INSERT INTO `search_index` VALUES ('comment',16,'node',1);
INSERT INTO `search_index` VALUES ('comment',21,'node',1);
INSERT INTO `search_index` VALUES ('comments',11,'node',1);
INSERT INTO `search_index` VALUES ('comments',16,'node',1);
INSERT INTO `search_index` VALUES ('comments',21,'node',1);
INSERT INTO `search_index` VALUES ('commodo',51,'node',1);
INSERT INTO `search_index` VALUES ('commodo',66,'node',1);
INSERT INTO `search_index` VALUES ('condimentum',16,'node',1);
INSERT INTO `search_index` VALUES ('condimentum',21,'node',1);
INSERT INTO `search_index` VALUES ('condimentum',26,'node',1);
INSERT INTO `search_index` VALUES ('condimentum',31,'node',1);
INSERT INTO `search_index` VALUES ('congue',51,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',6,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',11,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',16,'node',2);
INSERT INTO `search_index` VALUES ('consectetur',21,'node',2);
INSERT INTO `search_index` VALUES ('consectetur',26,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',31,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',36,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',41,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',51,'node',7.99315);
INSERT INTO `search_index` VALUES ('consectetur',61,'node',1);
INSERT INTO `search_index` VALUES ('consectetur',66,'node',1);
INSERT INTO `search_index` VALUES ('consequat',16,'node',1);
INSERT INTO `search_index` VALUES ('consequat',21,'node',1);
INSERT INTO `search_index` VALUES ('consequat',26,'node',1);
INSERT INTO `search_index` VALUES ('consequat',31,'node',1);
INSERT INTO `search_index` VALUES ('consequat',51,'node',2);
INSERT INTO `search_index` VALUES ('contact',1,'node',11);
INSERT INTO `search_index` VALUES ('convallis',6,'node',1);
INSERT INTO `search_index` VALUES ('convallis',11,'node',1);
INSERT INTO `search_index` VALUES ('convallis',36,'node',1);
INSERT INTO `search_index` VALUES ('convallis',41,'node',1);
INSERT INTO `search_index` VALUES ('convallis',61,'node',1);
INSERT INTO `search_index` VALUES ('cras',6,'node',1);
INSERT INTO `search_index` VALUES ('cras',11,'node',1);
INSERT INTO `search_index` VALUES ('cras',36,'node',1);
INSERT INTO `search_index` VALUES ('cras',41,'node',1);
INSERT INTO `search_index` VALUES ('create',41,'node',26);
INSERT INTO `search_index` VALUES ('cubilia',66,'node',1);
INSERT INTO `search_index` VALUES ('cum',36,'node',1);
INSERT INTO `search_index` VALUES ('cum',41,'node',1);
INSERT INTO `search_index` VALUES ('curabitur',16,'node',1);
INSERT INTO `search_index` VALUES ('curabitur',21,'node',1);
INSERT INTO `search_index` VALUES ('curabitur',36,'node',1);
INSERT INTO `search_index` VALUES ('curabitur',41,'node',1);
INSERT INTO `search_index` VALUES ('curabitur',51,'node',2.98493);
INSERT INTO `search_index` VALUES ('curae',66,'node',1);
INSERT INTO `search_index` VALUES ('cursus',16,'node',2);
INSERT INTO `search_index` VALUES ('cursus',21,'node',2);
INSERT INTO `search_index` VALUES ('customer',71,'node',26);
INSERT INTO `search_index` VALUES ('customer',76,'node',26);
INSERT INTO `search_index` VALUES ('dapibus',26,'node',1);
INSERT INTO `search_index` VALUES ('dapibus',31,'node',1);
INSERT INTO `search_index` VALUES ('demonstrate',11,'node',1);
INSERT INTO `search_index` VALUES ('demonstrate',16,'node',1);
INSERT INTO `search_index` VALUES ('demonstrate',21,'node',1);
INSERT INTO `search_index` VALUES ('demonstrating',46,'node',2);
INSERT INTO `search_index` VALUES ('description',46,'node',1);
INSERT INTO `search_index` VALUES ('description',51,'node',26);
INSERT INTO `search_index` VALUES ('diam',6,'node',2);
INSERT INTO `search_index` VALUES ('diam',11,'node',2);
INSERT INTO `search_index` VALUES ('diam',51,'node',1);
INSERT INTO `search_index` VALUES ('dictum',16,'node',1);
INSERT INTO `search_index` VALUES ('dictum',21,'node',1);
INSERT INTO `search_index` VALUES ('dignissim',16,'node',1);
INSERT INTO `search_index` VALUES ('dignissim',21,'node',1);
INSERT INTO `search_index` VALUES ('dignissim',51,'node',0.989021);
INSERT INTO `search_index` VALUES ('dis',36,'node',1);
INSERT INTO `search_index` VALUES ('dis',41,'node',1);
INSERT INTO `search_index` VALUES ('discussion',16,'node',37);
INSERT INTO `search_index` VALUES ('dolor',6,'node',1);
INSERT INTO `search_index` VALUES ('dolor',11,'node',1);
INSERT INTO `search_index` VALUES ('dolor',16,'node',2);
INSERT INTO `search_index` VALUES ('dolor',21,'node',2);
INSERT INTO `search_index` VALUES ('dolor',26,'node',3);
INSERT INTO `search_index` VALUES ('dolor',31,'node',3);
INSERT INTO `search_index` VALUES ('dolor',36,'node',2);
INSERT INTO `search_index` VALUES ('dolor',41,'node',2);
INSERT INTO `search_index` VALUES ('dolor',51,'node',7);
INSERT INTO `search_index` VALUES ('dolor',61,'node',1);
INSERT INTO `search_index` VALUES ('dolor',66,'node',1);
INSERT INTO `search_index` VALUES ('donec',26,'node',1);
INSERT INTO `search_index` VALUES ('donec',31,'node',1);
INSERT INTO `search_index` VALUES ('donec',51,'node',2);
INSERT INTO `search_index` VALUES ('drupal',36,'node',26);
INSERT INTO `search_index` VALUES ('drupal',56,'node',1);
INSERT INTO `search_index` VALUES ('dui',16,'node',3);
INSERT INTO `search_index` VALUES ('dui',21,'node',3);
INSERT INTO `search_index` VALUES ('dui',36,'node',1);
INSERT INTO `search_index` VALUES ('dui',41,'node',1);
INSERT INTO `search_index` VALUES ('dui',51,'node',1);
INSERT INTO `search_index` VALUES ('duis',6,'node',1);
INSERT INTO `search_index` VALUES ('duis',11,'node',1);
INSERT INTO `search_index` VALUES ('duis',16,'node',2);
INSERT INTO `search_index` VALUES ('duis',21,'node',2);
INSERT INTO `search_index` VALUES ('duis',36,'node',1);
INSERT INTO `search_index` VALUES ('duis',41,'node',1);
INSERT INTO `search_index` VALUES ('easy',56,'node',1);
INSERT INTO `search_index` VALUES ('edit',1,'node',1);
INSERT INTO `search_index` VALUES ('egestas',51,'node',4.98493);
INSERT INTO `search_index` VALUES ('egestas',61,'node',1);
INSERT INTO `search_index` VALUES ('egestas',66,'node',1);
INSERT INTO `search_index` VALUES ('eget',6,'node',1);
INSERT INTO `search_index` VALUES ('eget',11,'node',1);
INSERT INTO `search_index` VALUES ('eget',16,'node',1);
INSERT INTO `search_index` VALUES ('eget',21,'node',1);
INSERT INTO `search_index` VALUES ('eget',36,'node',1);
INSERT INTO `search_index` VALUES ('eget',41,'node',1);
INSERT INTO `search_index` VALUES ('eget',51,'node',2.98902);
INSERT INTO `search_index` VALUES ('eleifend',16,'node',3);
INSERT INTO `search_index` VALUES ('eleifend',21,'node',3);
INSERT INTO `search_index` VALUES ('eleifend',36,'node',2);
INSERT INTO `search_index` VALUES ('eleifend',41,'node',2);
INSERT INTO `search_index` VALUES ('eleifend',51,'node',1);
INSERT INTO `search_index` VALUES ('elementum',6,'node',1);
INSERT INTO `search_index` VALUES ('elementum',11,'node',1);
INSERT INTO `search_index` VALUES ('elementum',26,'node',1);
INSERT INTO `search_index` VALUES ('elementum',31,'node',1);
INSERT INTO `search_index` VALUES ('elementum',36,'node',1);
INSERT INTO `search_index` VALUES ('elementum',41,'node',1);
INSERT INTO `search_index` VALUES ('elementum',51,'node',1);
INSERT INTO `search_index` VALUES ('elit',6,'node',1);
INSERT INTO `search_index` VALUES ('elit',11,'node',1);
INSERT INTO `search_index` VALUES ('elit',16,'node',1);
INSERT INTO `search_index` VALUES ('elit',21,'node',1);
INSERT INTO `search_index` VALUES ('elit',26,'node',1);
INSERT INTO `search_index` VALUES ('elit',31,'node',1);
INSERT INTO `search_index` VALUES ('elit',36,'node',2);
INSERT INTO `search_index` VALUES ('elit',41,'node',2);
INSERT INTO `search_index` VALUES ('elit',51,'node',8);
INSERT INTO `search_index` VALUES ('elit',61,'node',2);
INSERT INTO `search_index` VALUES ('elit',66,'node',1);
INSERT INTO `search_index` VALUES ('embedded',1,'node',1);
INSERT INTO `search_index` VALUES ('enim',26,'node',1);
INSERT INTO `search_index` VALUES ('enim',31,'node',1);
INSERT INTO `search_index` VALUES ('enim',51,'node',1.98902);
INSERT INTO `search_index` VALUES ('erat',6,'node',1);
INSERT INTO `search_index` VALUES ('erat',11,'node',1);
INSERT INTO `search_index` VALUES ('erat',16,'node',2);
INSERT INTO `search_index` VALUES ('erat',21,'node',2);
INSERT INTO `search_index` VALUES ('erat',36,'node',1);
INSERT INTO `search_index` VALUES ('erat',41,'node',1);
INSERT INTO `search_index` VALUES ('erat',51,'node',3.97804);
INSERT INTO `search_index` VALUES ('erat',61,'node',2);
INSERT INTO `search_index` VALUES ('eros',66,'node',1);
INSERT INTO `search_index` VALUES ('est',16,'node',3);
INSERT INTO `search_index` VALUES ('est',21,'node',3);
INSERT INTO `search_index` VALUES ('est',51,'node',3.97804);
INSERT INTO `search_index` VALUES ('est',61,'node',1);
INSERT INTO `search_index` VALUES ('etiam',16,'node',1);
INSERT INTO `search_index` VALUES ('etiam',21,'node',1);
INSERT INTO `search_index` VALUES ('etiam',51,'node',1);
INSERT INTO `search_index` VALUES ('euismod',16,'node',3);
INSERT INTO `search_index` VALUES ('euismod',21,'node',3);
INSERT INTO `search_index` VALUES ('example',71,'node',26);
INSERT INTO `search_index` VALUES ('example',76,'node',26);
INSERT INTO `search_index` VALUES ('existing',1,'node',1);
INSERT INTO `search_index` VALUES ('facilisis',61,'node',2);
INSERT INTO `search_index` VALUES ('facilisis',66,'node',1);
INSERT INTO `search_index` VALUES ('fames',51,'node',1);
INSERT INTO `search_index` VALUES ('faucibus',36,'node',3);
INSERT INTO `search_index` VALUES ('faucibus',41,'node',3);
INSERT INTO `search_index` VALUES ('faucibus',66,'node',1);
INSERT INTO `search_index` VALUES ('feature',46,'node',1);
INSERT INTO `search_index` VALUES ('feature',51,'node',24);
INSERT INTO `search_index` VALUES ('featuresample',46,'node',1);
INSERT INTO `search_index` VALUES ('felis',16,'node',1);
INSERT INTO `search_index` VALUES ('felis',21,'node',1);
INSERT INTO `search_index` VALUES ('fermentum',51,'node',1.98902);
INSERT INTO `search_index` VALUES ('first',26,'node',26);
INSERT INTO `search_index` VALUES ('follow',1,'node',1);
INSERT INTO `search_index` VALUES ('for',16,'node',26);
INSERT INTO `search_index` VALUES ('for',21,'node',26);
INSERT INTO `search_index` VALUES ('forum',16,'node',52);
INSERT INTO `search_index` VALUES ('forum',21,'node',52);
INSERT INTO `search_index` VALUES ('forums',16,'node',1);
INSERT INTO `search_index` VALUES ('forums',21,'node',1);
INSERT INTO `search_index` VALUES ('fringilla',16,'node',1);
INSERT INTO `search_index` VALUES ('fringilla',21,'node',1);
INSERT INTO `search_index` VALUES ('fringilla',26,'node',1);
INSERT INTO `search_index` VALUES ('fringilla',31,'node',1);
INSERT INTO `search_index` VALUES ('fringilla',36,'node',2);
INSERT INTO `search_index` VALUES ('fringilla',41,'node',2);
INSERT INTO `search_index` VALUES ('fusce',36,'node',1);
INSERT INTO `search_index` VALUES ('fusce',41,'node',1);
INSERT INTO `search_index` VALUES ('gallery',46,'node',28);
INSERT INTO `search_index` VALUES ('gallerysample',46,'node',1);
INSERT INTO `search_index` VALUES ('gardens',36,'node',26);
INSERT INTO `search_index` VALUES ('gardens',56,'node',1);
INSERT INTO `search_index` VALUES ('general',16,'node',37);
INSERT INTO `search_index` VALUES ('google',1,'node',11);
INSERT INTO `search_index` VALUES ('gravida',16,'node',1);
INSERT INTO `search_index` VALUES ('gravida',21,'node',1);
INSERT INTO `search_index` VALUES ('gravida',51,'node',1);
INSERT INTO `search_index` VALUES ('habitant',51,'node',1);
INSERT INTO `search_index` VALUES ('hendrerit',6,'node',1);
INSERT INTO `search_index` VALUES ('hendrerit',11,'node',1);
INSERT INTO `search_index` VALUES ('hendrerit',51,'node',1);
INSERT INTO `search_index` VALUES ('hilda',1,'node',1);
INSERT INTO `search_index` VALUES ('how',11,'node',1);
INSERT INTO `search_index` VALUES ('how',16,'node',1);
INSERT INTO `search_index` VALUES ('how',21,'node',1);
INSERT INTO `search_index` VALUES ('how',41,'node',26);
INSERT INTO `search_index` VALUES ('html',1,'node',1);
INSERT INTO `search_index` VALUES ('iaculis',51,'node',1.99315);
INSERT INTO `search_index` VALUES ('image',46,'node',4);
INSERT INTO `search_index` VALUES ('imperdiet',16,'node',2);
INSERT INTO `search_index` VALUES ('imperdiet',21,'node',2);
INSERT INTO `search_index` VALUES ('imperdiet',36,'node',1);
INSERT INTO `search_index` VALUES ('imperdiet',41,'node',1);
INSERT INTO `search_index` VALUES ('imperdiet',51,'node',1);
INSERT INTO `search_index` VALUES ('instructions',1,'node',1);
INSERT INTO `search_index` VALUES ('integer',16,'node',2);
INSERT INTO `search_index` VALUES ('integer',21,'node',2);
INSERT INTO `search_index` VALUES ('interdum',16,'node',2);
INSERT INTO `search_index` VALUES ('interdum',21,'node',2);
INSERT INTO `search_index` VALUES ('interdum',26,'node',1);
INSERT INTO `search_index` VALUES ('interdum',31,'node',1);
INSERT INTO `search_index` VALUES ('interdum',51,'node',1.99315);
INSERT INTO `search_index` VALUES ('interdum',66,'node',1);
INSERT INTO `search_index` VALUES ('ipsum',6,'node',1);
INSERT INTO `search_index` VALUES ('ipsum',11,'node',1);
INSERT INTO `search_index` VALUES ('ipsum',16,'node',2);
INSERT INTO `search_index` VALUES ('ipsum',21,'node',2);
INSERT INTO `search_index` VALUES ('ipsum',26,'node',1);
INSERT INTO `search_index` VALUES ('ipsum',31,'node',1);
INSERT INTO `search_index` VALUES ('ipsum',36,'node',2);
INSERT INTO `search_index` VALUES ('ipsum',41,'node',2);
INSERT INTO `search_index` VALUES ('ipsum',51,'node',8.97808);
INSERT INTO `search_index` VALUES ('ipsum',61,'node',2);
INSERT INTO `search_index` VALUES ('ipsum',66,'node',2);
INSERT INTO `search_index` VALUES ('item',26,'node',26);
INSERT INTO `search_index` VALUES ('item',31,'node',26);
INSERT INTO `search_index` VALUES ('justo',16,'node',1);
INSERT INTO `search_index` VALUES ('justo',21,'node',1);
INSERT INTO `search_index` VALUES ('lacinia',36,'node',2);
INSERT INTO `search_index` VALUES ('lacinia',41,'node',2);
INSERT INTO `search_index` VALUES ('lacinia',51,'node',1);
INSERT INTO `search_index` VALUES ('lacus',66,'node',1);
INSERT INTO `search_index` VALUES ('laoreet',36,'node',1);
INSERT INTO `search_index` VALUES ('laoreet',41,'node',1);
INSERT INTO `search_index` VALUES ('larger',1,'node',11);
INSERT INTO `search_index` VALUES ('lectus',16,'node',1);
INSERT INTO `search_index` VALUES ('lectus',21,'node',1);
INSERT INTO `search_index` VALUES ('lectus',51,'node',1);
INSERT INTO `search_index` VALUES ('leo',51,'node',1);
INSERT INTO `search_index` VALUES ('libero',36,'node',2);
INSERT INTO `search_index` VALUES ('libero',41,'node',2);
INSERT INTO `search_index` VALUES ('ligula',16,'node',1);
INSERT INTO `search_index` VALUES ('ligula',21,'node',1);
INSERT INTO `search_index` VALUES ('ligula',26,'node',1);
INSERT INTO `search_index` VALUES ('ligula',31,'node',1);
INSERT INTO `search_index` VALUES ('ligula',51,'node',1);
INSERT INTO `search_index` VALUES ('ligula',66,'node',1);
INSERT INTO `search_index` VALUES ('link',1,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',6,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',11,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',16,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',21,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',36,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',41,'node',1);
INSERT INTO `search_index` VALUES ('lobortis',51,'node',1);
INSERT INTO `search_index` VALUES ('lorem',6,'node',1);
INSERT INTO `search_index` VALUES ('lorem',11,'node',1);
INSERT INTO `search_index` VALUES ('lorem',16,'node',1);
INSERT INTO `search_index` VALUES ('lorem',21,'node',1);
INSERT INTO `search_index` VALUES ('lorem',26,'node',1);
INSERT INTO `search_index` VALUES ('lorem',31,'node',1);
INSERT INTO `search_index` VALUES ('lorem',36,'node',1);
INSERT INTO `search_index` VALUES ('lorem',41,'node',1);
INSERT INTO `search_index` VALUES ('lorem',51,'node',6);
INSERT INTO `search_index` VALUES ('lorem',61,'node',1);
INSERT INTO `search_index` VALUES ('lorem',66,'node',1);
INSERT INTO `search_index` VALUES ('love',56,'node',1);
INSERT INTO `search_index` VALUES ('luctus',6,'node',1);
INSERT INTO `search_index` VALUES ('luctus',11,'node',1);
INSERT INTO `search_index` VALUES ('luctus',16,'node',2);
INSERT INTO `search_index` VALUES ('luctus',21,'node',2);
INSERT INTO `search_index` VALUES ('luctus',36,'node',1);
INSERT INTO `search_index` VALUES ('luctus',41,'node',1);
INSERT INTO `search_index` VALUES ('luctus',51,'node',1);
INSERT INTO `search_index` VALUES ('luctus',66,'node',1);
INSERT INTO `search_index` VALUES ('maecenas',36,'node',1);
INSERT INTO `search_index` VALUES ('maecenas',41,'node',1);
INSERT INTO `search_index` VALUES ('maecenas',66,'node',1);
INSERT INTO `search_index` VALUES ('magna',6,'node',1);
INSERT INTO `search_index` VALUES ('magna',11,'node',1);
INSERT INTO `search_index` VALUES ('magna',26,'node',1);
INSERT INTO `search_index` VALUES ('magna',31,'node',1);
INSERT INTO `search_index` VALUES ('magna',51,'node',1);
INSERT INTO `search_index` VALUES ('magna',61,'node',1);
INSERT INTO `search_index` VALUES ('magnis',36,'node',1);
INSERT INTO `search_index` VALUES ('magnis',41,'node',1);
INSERT INTO `search_index` VALUES ('malesuada',51,'node',3);
INSERT INTO `search_index` VALUES ('map',1,'node',12);
INSERT INTO `search_index` VALUES ('maps',1,'node',11);
INSERT INTO `search_index` VALUES ('massa',6,'node',1);
INSERT INTO `search_index` VALUES ('massa',11,'node',1);
INSERT INTO `search_index` VALUES ('massa',26,'node',1);
INSERT INTO `search_index` VALUES ('massa',31,'node',1);
INSERT INTO `search_index` VALUES ('massa',36,'node',1);
INSERT INTO `search_index` VALUES ('massa',41,'node',1);
INSERT INTO `search_index` VALUES ('massa',51,'node',0.98493);
INSERT INTO `search_index` VALUES ('mattis',16,'node',1);
INSERT INTO `search_index` VALUES ('mattis',21,'node',1);
INSERT INTO `search_index` VALUES ('mattis',51,'node',1);
INSERT INTO `search_index` VALUES ('mauris',16,'node',2);
INSERT INTO `search_index` VALUES ('mauris',21,'node',2);
INSERT INTO `search_index` VALUES ('mauris',26,'node',2);
INSERT INTO `search_index` VALUES ('mauris',31,'node',2);
INSERT INTO `search_index` VALUES ('mauris',36,'node',2);
INSERT INTO `search_index` VALUES ('mauris',41,'node',2);
INSERT INTO `search_index` VALUES ('mauris',51,'node',2);
INSERT INTO `search_index` VALUES ('metus',16,'node',1);
INSERT INTO `search_index` VALUES ('metus',21,'node',1);
INSERT INTO `search_index` VALUES ('metus',26,'node',2);
INSERT INTO `search_index` VALUES ('metus',31,'node',2);
INSERT INTO `search_index` VALUES ('metus',51,'node',2);
INSERT INTO `search_index` VALUES ('mollis',6,'node',1);
INSERT INTO `search_index` VALUES ('mollis',11,'node',1);
INSERT INTO `search_index` VALUES ('mollis',36,'node',1);
INSERT INTO `search_index` VALUES ('mollis',41,'node',1);
INSERT INTO `search_index` VALUES ('mollis',51,'node',1.98902);
INSERT INTO `search_index` VALUES ('montes',36,'node',1);
INSERT INTO `search_index` VALUES ('montes',41,'node',1);
INSERT INTO `search_index` VALUES ('morbi',6,'node',1);
INSERT INTO `search_index` VALUES ('morbi',11,'node',1);
INSERT INTO `search_index` VALUES ('morbi',51,'node',2);
INSERT INTO `search_index` VALUES ('morbi',61,'node',1);
INSERT INTO `search_index` VALUES ('mus',36,'node',1);
INSERT INTO `search_index` VALUES ('mus',41,'node',1);
INSERT INTO `search_index` VALUES ('nam',36,'node',1);
INSERT INTO `search_index` VALUES ('nam',41,'node',1);
INSERT INTO `search_index` VALUES ('nascetur',36,'node',1);
INSERT INTO `search_index` VALUES ('nascetur',41,'node',1);
INSERT INTO `search_index` VALUES ('natoque',36,'node',1);
INSERT INTO `search_index` VALUES ('natoque',41,'node',1);
INSERT INTO `search_index` VALUES ('nec',16,'node',1);
INSERT INTO `search_index` VALUES ('nec',21,'node',1);
INSERT INTO `search_index` VALUES ('nec',26,'node',1);
INSERT INTO `search_index` VALUES ('nec',31,'node',1);
INSERT INTO `search_index` VALUES ('nec',36,'node',1);
INSERT INTO `search_index` VALUES ('nec',41,'node',1);
INSERT INTO `search_index` VALUES ('nec',51,'node',1.98902);
INSERT INTO `search_index` VALUES ('nec',61,'node',1);
INSERT INTO `search_index` VALUES ('neque',26,'node',4);
INSERT INTO `search_index` VALUES ('neque',31,'node',4);
INSERT INTO `search_index` VALUES ('neque',36,'node',2);
INSERT INTO `search_index` VALUES ('neque',41,'node',2);
INSERT INTO `search_index` VALUES ('neque',51,'node',3);
INSERT INTO `search_index` VALUES ('netus',51,'node',1);
INSERT INTO `search_index` VALUES ('news',26,'node',26);
INSERT INTO `search_index` VALUES ('news',31,'node',26);
INSERT INTO `search_index` VALUES ('nibh',6,'node',1);
INSERT INTO `search_index` VALUES ('nibh',11,'node',1);
INSERT INTO `search_index` VALUES ('nibh',16,'node',1);
INSERT INTO `search_index` VALUES ('nibh',21,'node',1);
INSERT INTO `search_index` VALUES ('nibh',36,'node',1);
INSERT INTO `search_index` VALUES ('nibh',41,'node',1);
INSERT INTO `search_index` VALUES ('nibh',51,'node',0.997306);
INSERT INTO `search_index` VALUES ('nibh',61,'node',1);
INSERT INTO `search_index` VALUES ('nisi',6,'node',1);
INSERT INTO `search_index` VALUES ('nisi',11,'node',1);
INSERT INTO `search_index` VALUES ('nisi',16,'node',3);
INSERT INTO `search_index` VALUES ('nisi',21,'node',3);
INSERT INTO `search_index` VALUES ('nisi',26,'node',1);
INSERT INTO `search_index` VALUES ('nisi',31,'node',1);
INSERT INTO `search_index` VALUES ('nisl',6,'node',1);
INSERT INTO `search_index` VALUES ('nisl',11,'node',1);
INSERT INTO `search_index` VALUES ('nisl',51,'node',1.98902);
INSERT INTO `search_index` VALUES ('non',16,'node',2);
INSERT INTO `search_index` VALUES ('non',21,'node',2);
INSERT INTO `search_index` VALUES ('non',36,'node',2);
INSERT INTO `search_index` VALUES ('non',41,'node',2);
INSERT INTO `search_index` VALUES ('non',51,'node',2.96986);
INSERT INTO `search_index` VALUES ('non',66,'node',1);
INSERT INTO `search_index` VALUES ('nulla',16,'node',1);
INSERT INTO `search_index` VALUES ('nulla',21,'node',1);
INSERT INTO `search_index` VALUES ('nulla',36,'node',3);
INSERT INTO `search_index` VALUES ('nulla',41,'node',3);
INSERT INTO `search_index` VALUES ('nulla',51,'node',2.98902);
INSERT INTO `search_index` VALUES ('nullam',51,'node',1);
INSERT INTO `search_index` VALUES ('nunc',6,'node',1);
INSERT INTO `search_index` VALUES ('nunc',11,'node',1);
INSERT INTO `search_index` VALUES ('nunc',26,'node',1);
INSERT INTO `search_index` VALUES ('nunc',31,'node',1);
INSERT INTO `search_index` VALUES ('nunc',36,'node',1);
INSERT INTO `search_index` VALUES ('nunc',41,'node',1);
INSERT INTO `search_index` VALUES ('nunc',51,'node',5.98902);
INSERT INTO `search_index` VALUES ('odio',6,'node',1);
INSERT INTO `search_index` VALUES ('odio',11,'node',1);
INSERT INTO `search_index` VALUES ('odio',16,'node',3);
INSERT INTO `search_index` VALUES ('odio',21,'node',3);
INSERT INTO `search_index` VALUES ('odio',36,'node',2);
INSERT INTO `search_index` VALUES ('odio',41,'node',2);
INSERT INTO `search_index` VALUES ('office',1,'node',19);
INSERT INTO `search_index` VALUES ('orci',26,'node',2);
INSERT INTO `search_index` VALUES ('orci',31,'node',2);
INSERT INTO `search_index` VALUES ('orci',36,'node',2);
INSERT INTO `search_index` VALUES ('orci',41,'node',2);
INSERT INTO `search_index` VALUES ('orci',51,'node',1);
INSERT INTO `search_index` VALUES ('orci',66,'node',1);
INSERT INTO `search_index` VALUES ('ornare',36,'node',1);
INSERT INTO `search_index` VALUES ('ornare',41,'node',1);
INSERT INTO `search_index` VALUES ('own',41,'node',26);
INSERT INTO `search_index` VALUES ('page',1,'node',1);
INSERT INTO `search_index` VALUES ('parturient',36,'node',1);
INSERT INTO `search_index` VALUES ('parturient',41,'node',1);
INSERT INTO `search_index` VALUES ('paste',1,'node',1);
INSERT INTO `search_index` VALUES ('pellentesque',6,'node',1);
INSERT INTO `search_index` VALUES ('pellentesque',11,'node',1);
INSERT INTO `search_index` VALUES ('pellentesque',16,'node',1);
INSERT INTO `search_index` VALUES ('pellentesque',21,'node',1);
INSERT INTO `search_index` VALUES ('pellentesque',51,'node',1);
INSERT INTO `search_index` VALUES ('penatibus',36,'node',1);
INSERT INTO `search_index` VALUES ('penatibus',41,'node',1);
INSERT INTO `search_index` VALUES ('pharetra',6,'node',1);
INSERT INTO `search_index` VALUES ('pharetra',11,'node',1);
INSERT INTO `search_index` VALUES ('pharetra',16,'node',1);
INSERT INTO `search_index` VALUES ('pharetra',21,'node',1);
INSERT INTO `search_index` VALUES ('pharetra',26,'node',2);
INSERT INTO `search_index` VALUES ('pharetra',31,'node',2);
INSERT INTO `search_index` VALUES ('pharetra',36,'node',5);
INSERT INTO `search_index` VALUES ('pharetra',41,'node',5);
INSERT INTO `search_index` VALUES ('pharetra',51,'node',1);
INSERT INTO `search_index` VALUES ('phasellus',6,'node',1);
INSERT INTO `search_index` VALUES ('phasellus',11,'node',1);
INSERT INTO `search_index` VALUES ('phasellus',16,'node',3);
INSERT INTO `search_index` VALUES ('phasellus',21,'node',3);
INSERT INTO `search_index` VALUES ('place',1,'node',1);
INSERT INTO `search_index` VALUES ('placerat',16,'node',1);
INSERT INTO `search_index` VALUES ('placerat',21,'node',1);
INSERT INTO `search_index` VALUES ('placerat',51,'node',1);
INSERT INTO `search_index` VALUES ('porta',6,'node',1);
INSERT INTO `search_index` VALUES ('porta',11,'node',1);
INSERT INTO `search_index` VALUES ('porta',16,'node',1);
INSERT INTO `search_index` VALUES ('porta',21,'node',1);
INSERT INTO `search_index` VALUES ('porttitor',6,'node',1);
INSERT INTO `search_index` VALUES ('porttitor',11,'node',1);
INSERT INTO `search_index` VALUES ('porttitor',36,'node',1);
INSERT INTO `search_index` VALUES ('porttitor',41,'node',1);
INSERT INTO `search_index` VALUES ('post',6,'node',26);
INSERT INTO `search_index` VALUES ('post',11,'node',26);
INSERT INTO `search_index` VALUES ('posuere',26,'node',1);
INSERT INTO `search_index` VALUES ('posuere',31,'node',1);
INSERT INTO `search_index` VALUES ('posuere',51,'node',1);
INSERT INTO `search_index` VALUES ('posuere',66,'node',1);
INSERT INTO `search_index` VALUES ('praesent',16,'node',1);
INSERT INTO `search_index` VALUES ('praesent',21,'node',1);
INSERT INTO `search_index` VALUES ('praesent',26,'node',1);
INSERT INTO `search_index` VALUES ('praesent',31,'node',1);
INSERT INTO `search_index` VALUES ('praesent',36,'node',1);
INSERT INTO `search_index` VALUES ('praesent',41,'node',1);
INSERT INTO `search_index` VALUES ('preinstalled',6,'node',11);
INSERT INTO `search_index` VALUES ('preinstalled',11,'node',11);
INSERT INTO `search_index` VALUES ('pretium',16,'node',1);
INSERT INTO `search_index` VALUES ('pretium',21,'node',1);
INSERT INTO `search_index` VALUES ('pretium',26,'node',1);
INSERT INTO `search_index` VALUES ('pretium',31,'node',1);
INSERT INTO `search_index` VALUES ('pretium',36,'node',1);
INSERT INTO `search_index` VALUES ('pretium',41,'node',1);
INSERT INTO `search_index` VALUES ('pretium',51,'node',1);
INSERT INTO `search_index` VALUES ('primis',66,'node',1);
INSERT INTO `search_index` VALUES ('product',51,'node',26);
INSERT INTO `search_index` VALUES ('proin',26,'node',1);
INSERT INTO `search_index` VALUES ('proin',31,'node',1);
INSERT INTO `search_index` VALUES ('proin',51,'node',2);
INSERT INTO `search_index` VALUES ('provided',1,'node',1);
INSERT INTO `search_index` VALUES ('purus',16,'node',1);
INSERT INTO `search_index` VALUES ('purus',21,'node',1);
INSERT INTO `search_index` VALUES ('purus',36,'node',2);
INSERT INTO `search_index` VALUES ('purus',41,'node',2);
INSERT INTO `search_index` VALUES ('quam',26,'node',1);
INSERT INTO `search_index` VALUES ('quam',31,'node',1);
INSERT INTO `search_index` VALUES ('quam',51,'node',1);
INSERT INTO `search_index` VALUES ('question',41,'node',26);
INSERT INTO `search_index` VALUES ('quis',16,'node',2);
INSERT INTO `search_index` VALUES ('quis',21,'node',2);
INSERT INTO `search_index` VALUES ('quis',26,'node',1);
INSERT INTO `search_index` VALUES ('quis',31,'node',1);
INSERT INTO `search_index` VALUES ('quis',36,'node',1);
INSERT INTO `search_index` VALUES ('quis',41,'node',1);
INSERT INTO `search_index` VALUES ('quis',51,'node',3.99315);
INSERT INTO `search_index` VALUES ('quis',61,'node',1);
INSERT INTO `search_index` VALUES ('ramstraat',1,'node',1);
INSERT INTO `search_index` VALUES ('reply',11,'node',11);
INSERT INTO `search_index` VALUES ('reply',16,'node',11);
INSERT INTO `search_index` VALUES ('reply',21,'node',11);
INSERT INTO `search_index` VALUES ('rhoncus',6,'node',1);
INSERT INTO `search_index` VALUES ('rhoncus',11,'node',1);
INSERT INTO `search_index` VALUES ('rhoncus',36,'node',1);
INSERT INTO `search_index` VALUES ('rhoncus',41,'node',1);
INSERT INTO `search_index` VALUES ('rhoncus',51,'node',1);
INSERT INTO `search_index` VALUES ('rhoncus',61,'node',1);
INSERT INTO `search_index` VALUES ('ridiculus',36,'node',1);
INSERT INTO `search_index` VALUES ('ridiculus',41,'node',1);
INSERT INTO `search_index` VALUES ('risus',16,'node',1);
INSERT INTO `search_index` VALUES ('risus',21,'node',1);
INSERT INTO `search_index` VALUES ('risus',36,'node',1);
INSERT INTO `search_index` VALUES ('risus',41,'node',1);
INSERT INTO `search_index` VALUES ('risus',51,'node',3.97395);
INSERT INTO `search_index` VALUES ('rutrum',51,'node',1);
INSERT INTO `search_index` VALUES ('sagittis',36,'node',1);
INSERT INTO `search_index` VALUES ('sagittis',41,'node',1);
INSERT INTO `search_index` VALUES ('sagittis',51,'node',1);
INSERT INTO `search_index` VALUES ('sagittis',66,'node',1);
INSERT INTO `search_index` VALUES ('sample',6,'node',26);
INSERT INTO `search_index` VALUES ('sample',11,'node',27);
INSERT INTO `search_index` VALUES ('sample',16,'node',27);
INSERT INTO `search_index` VALUES ('sample',21,'node',27);
INSERT INTO `search_index` VALUES ('sample',46,'node',29);
INSERT INTO `search_index` VALUES ('sample',56,'node',26);
INSERT INTO `search_index` VALUES ('sample',61,'node',26);
INSERT INTO `search_index` VALUES ('sample',66,'node',26);
INSERT INTO `search_index` VALUES ('sapien',36,'node',1);
INSERT INTO `search_index` VALUES ('sapien',41,'node',1);
INSERT INTO `search_index` VALUES ('scelerisque',16,'node',1);
INSERT INTO `search_index` VALUES ('scelerisque',21,'node',1);
INSERT INTO `search_index` VALUES ('scelerisque',36,'node',1);
INSERT INTO `search_index` VALUES ('scelerisque',41,'node',1);
INSERT INTO `search_index` VALUES ('second',31,'node',26);
INSERT INTO `search_index` VALUES ('sed',6,'node',1);
INSERT INTO `search_index` VALUES ('sed',11,'node',1);
INSERT INTO `search_index` VALUES ('sed',16,'node',2);
INSERT INTO `search_index` VALUES ('sed',21,'node',2);
INSERT INTO `search_index` VALUES ('sed',36,'node',2);
INSERT INTO `search_index` VALUES ('sed',41,'node',2);
INSERT INTO `search_index` VALUES ('sed',51,'node',3.98902);
INSERT INTO `search_index` VALUES ('sed',61,'node',1);
INSERT INTO `search_index` VALUES ('select',1,'node',1);
INSERT INTO `search_index` VALUES ('semper',51,'node',1);
INSERT INTO `search_index` VALUES ('semper',61,'node',1);
INSERT INTO `search_index` VALUES ('senectus',51,'node',1);
INSERT INTO `search_index` VALUES ('should',36,'node',26);
INSERT INTO `search_index` VALUES ('sit',6,'node',2);
INSERT INTO `search_index` VALUES ('sit',11,'node',2);
INSERT INTO `search_index` VALUES ('sit',16,'node',1);
INSERT INTO `search_index` VALUES ('sit',21,'node',1);
INSERT INTO `search_index` VALUES ('sit',26,'node',3);
INSERT INTO `search_index` VALUES ('sit',31,'node',3);
INSERT INTO `search_index` VALUES ('sit',36,'node',3);
INSERT INTO `search_index` VALUES ('sit',41,'node',3);
INSERT INTO `search_index` VALUES ('sit',51,'node',7.98902);
INSERT INTO `search_index` VALUES ('sit',61,'node',1);
INSERT INTO `search_index` VALUES ('sit',66,'node',1);
INSERT INTO `search_index` VALUES ('site',6,'node',11);
INSERT INTO `search_index` VALUES ('site',11,'node',12);
INSERT INTO `search_index` VALUES ('site',16,'node',1);
INSERT INTO `search_index` VALUES ('site',21,'node',1);
INSERT INTO `search_index` VALUES ('sites',56,'node',1);
INSERT INTO `search_index` VALUES ('sociis',36,'node',1);
INSERT INTO `search_index` VALUES ('sociis',41,'node',1);
INSERT INTO `search_index` VALUES ('sodales',36,'node',2);
INSERT INTO `search_index` VALUES ('sodales',41,'node',2);
INSERT INTO `search_index` VALUES ('sodales',51,'node',1);
INSERT INTO `search_index` VALUES ('suggestions',21,'node',37);
INSERT INTO `search_index` VALUES ('suscipit',16,'node',1);
INSERT INTO `search_index` VALUES ('suscipit',21,'node',1);
INSERT INTO `search_index` VALUES ('suscipit',51,'node',1);
INSERT INTO `search_index` VALUES ('suspendisse',51,'node',3);
INSERT INTO `search_index` VALUES ('tellus',16,'node',2);
INSERT INTO `search_index` VALUES ('tellus',21,'node',2);
INSERT INTO `search_index` VALUES ('tellus',51,'node',2);
INSERT INTO `search_index` VALUES ('tellus',66,'node',1);
INSERT INTO `search_index` VALUES ('tempor',16,'node',2);
INSERT INTO `search_index` VALUES ('tempor',21,'node',2);
INSERT INTO `search_index` VALUES ('tempor',26,'node',1);
INSERT INTO `search_index` VALUES ('tempor',31,'node',1);
INSERT INTO `search_index` VALUES ('tempor',51,'node',2);
INSERT INTO `search_index` VALUES ('tempus',6,'node',1);
INSERT INTO `search_index` VALUES ('tempus',11,'node',1);
INSERT INTO `search_index` VALUES ('tempus',16,'node',2);
INSERT INTO `search_index` VALUES ('tempus',21,'node',2);
INSERT INTO `search_index` VALUES ('tempus',36,'node',3);
INSERT INTO `search_index` VALUES ('tempus',41,'node',3);
INSERT INTO `search_index` VALUES ('tempus',51,'node',1);
INSERT INTO `search_index` VALUES ('testimonial',56,'node',26);
INSERT INTO `search_index` VALUES ('testimonial',61,'node',26);
INSERT INTO `search_index` VALUES ('testimonial',66,'node',26);
INSERT INTO `search_index` VALUES ('the',1,'node',4);
INSERT INTO `search_index` VALUES ('the',16,'node',26);
INSERT INTO `search_index` VALUES ('the',21,'node',26);
INSERT INTO `search_index` VALUES ('the',46,'node',3);
INSERT INTO `search_index` VALUES ('then',1,'node',1);
INSERT INTO `search_index` VALUES ('this',1,'node',2);
INSERT INTO `search_index` VALUES ('this',6,'node',26);
INSERT INTO `search_index` VALUES ('this',11,'node',27);
INSERT INTO `search_index` VALUES ('this',16,'node',1);
INSERT INTO `search_index` VALUES ('this',21,'node',1);
INSERT INTO `search_index` VALUES ('this',46,'node',1);
INSERT INTO `search_index` VALUES ('tincidunt',6,'node',1);
INSERT INTO `search_index` VALUES ('tincidunt',11,'node',1);
INSERT INTO `search_index` VALUES ('tincidunt',16,'node',1);
INSERT INTO `search_index` VALUES ('tincidunt',21,'node',1);
INSERT INTO `search_index` VALUES ('tincidunt',51,'node',1.98902);
INSERT INTO `search_index` VALUES ('top',1,'node',1);
INSERT INTO `search_index` VALUES ('topic',16,'node',26);
INSERT INTO `search_index` VALUES ('topic',21,'node',26);
INSERT INTO `search_index` VALUES ('tortor',51,'node',1);
INSERT INTO `search_index` VALUES ('tortor',61,'node',1);
INSERT INTO `search_index` VALUES ('tristique',16,'node',1);
INSERT INTO `search_index` VALUES ('tristique',21,'node',1);
INSERT INTO `search_index` VALUES ('tristique',36,'node',1);
INSERT INTO `search_index` VALUES ('tristique',41,'node',1);
INSERT INTO `search_index` VALUES ('tristique',51,'node',1);
INSERT INTO `search_index` VALUES ('turpis',36,'node',1);
INSERT INTO `search_index` VALUES ('turpis',41,'node',1);
INSERT INTO `search_index` VALUES ('turpis',51,'node',2);
INSERT INTO `search_index` VALUES ('turpis',61,'node',2);
INSERT INTO `search_index` VALUES ('ullamcorper',6,'node',1);
INSERT INTO `search_index` VALUES ('ullamcorper',11,'node',1);
INSERT INTO `search_index` VALUES ('ullamcorper',16,'node',1);
INSERT INTO `search_index` VALUES ('ullamcorper',21,'node',1);
INSERT INTO `search_index` VALUES ('ullamcorper',36,'node',3);
INSERT INTO `search_index` VALUES ('ullamcorper',41,'node',3);
INSERT INTO `search_index` VALUES ('ullamcorper',66,'node',1);
INSERT INTO `search_index` VALUES ('ultrices',51,'node',2);
INSERT INTO `search_index` VALUES ('ultrices',66,'node',1);
INSERT INTO `search_index` VALUES ('ultricies',26,'node',2);
INSERT INTO `search_index` VALUES ('ultricies',31,'node',2);
INSERT INTO `search_index` VALUES ('ultricies',36,'node',1);
INSERT INTO `search_index` VALUES ('ultricies',41,'node',1);
INSERT INTO `search_index` VALUES ('ultricies',51,'node',2);
INSERT INTO `search_index` VALUES ('urna',16,'node',2);
INSERT INTO `search_index` VALUES ('urna',21,'node',2);
INSERT INTO `search_index` VALUES ('urna',36,'node',2);
INSERT INTO `search_index` VALUES ('urna',41,'node',2);
INSERT INTO `search_index` VALUES ('urna',51,'node',2);
INSERT INTO `search_index` VALUES ('urna',61,'node',1);
INSERT INTO `search_index` VALUES ('use',36,'node',26);
INSERT INTO `search_index` VALUES ('varius',51,'node',1);
INSERT INTO `search_index` VALUES ('varius',61,'node',1);
INSERT INTO `search_index` VALUES ('vel',6,'node',1);
INSERT INTO `search_index` VALUES ('vel',11,'node',1);
INSERT INTO `search_index` VALUES ('vel',16,'node',3);
INSERT INTO `search_index` VALUES ('vel',21,'node',3);
INSERT INTO `search_index` VALUES ('vel',26,'node',1);
INSERT INTO `search_index` VALUES ('vel',31,'node',1);
INSERT INTO `search_index` VALUES ('vel',36,'node',3);
INSERT INTO `search_index` VALUES ('vel',41,'node',3);
INSERT INTO `search_index` VALUES ('vel',51,'node',4);
INSERT INTO `search_index` VALUES ('velit',6,'node',1);
INSERT INTO `search_index` VALUES ('velit',11,'node',1);
INSERT INTO `search_index` VALUES ('velit',51,'node',3);
INSERT INTO `search_index` VALUES ('venenatis',16,'node',1);
INSERT INTO `search_index` VALUES ('venenatis',21,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',16,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',21,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',26,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',31,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',36,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',41,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',51,'node',1);
INSERT INTO `search_index` VALUES ('vestibulum',66,'node',1);
INSERT INTO `search_index` VALUES ('view',1,'node',22);
INSERT INTO `search_index` VALUES ('vitae',6,'node',1);
INSERT INTO `search_index` VALUES ('vitae',11,'node',1);
INSERT INTO `search_index` VALUES ('vitae',26,'node',2);
INSERT INTO `search_index` VALUES ('vitae',31,'node',2);
INSERT INTO `search_index` VALUES ('vitae',36,'node',1);
INSERT INTO `search_index` VALUES ('vitae',41,'node',1);
INSERT INTO `search_index` VALUES ('vitae',51,'node',3);
INSERT INTO `search_index` VALUES ('vivamus',16,'node',1);
INSERT INTO `search_index` VALUES ('vivamus',21,'node',1);
INSERT INTO `search_index` VALUES ('viverra',16,'node',1);
INSERT INTO `search_index` VALUES ('viverra',21,'node',1);
INSERT INTO `search_index` VALUES ('volutpat',16,'node',1);
INSERT INTO `search_index` VALUES ('volutpat',21,'node',1);
INSERT INTO `search_index` VALUES ('volutpat',36,'node',2);
INSERT INTO `search_index` VALUES ('volutpat',41,'node',2);
INSERT INTO `search_index` VALUES ('volutpat',51,'node',3);
INSERT INTO `search_index` VALUES ('volutpat',61,'node',1);
INSERT INTO `search_index` VALUES ('vulputate',61,'node',1);
INSERT INTO `search_index` VALUES ('why',36,'node',26);
INSERT INTO `search_index` VALUES ('will',11,'node',1);
INSERT INTO `search_index` VALUES ('will',16,'node',1);
INSERT INTO `search_index` VALUES ('will',21,'node',1);
INSERT INTO `search_index` VALUES ('would',41,'node',26);
INSERT INTO `search_index` VALUES ('your',11,'node',1);
INSERT INTO `search_index` VALUES ('your',16,'node',1);
INSERT INTO `search_index` VALUES ('your',21,'node',1);
/*!40000 ALTER TABLE `search_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `search_node_links`
--
DROP TABLE IF EXISTS `search_node_links`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `search_node_links` (
`sid` int(10) unsigned NOT NULL default '0' COMMENT 'The search_dataset.sid of the searchable item containing the link to the node.',
`type` varchar(16) NOT NULL default '' COMMENT 'The search_dataset.type of the searchable item containing the link to the node.',
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid that this item links to.',
`caption` longtext COMMENT 'The text used to link to the node.nid.',
PRIMARY KEY (`sid`,`type`,`nid`),
KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores items (like nodes) that link to other nodes, used...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `search_node_links`
--
LOCK TABLES `search_node_links` WRITE;
/*!40000 ALTER TABLE `search_node_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `search_node_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `search_total`
--
DROP TABLE IF EXISTS `search_total`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `search_total` (
`word` varchar(50) NOT NULL default '' COMMENT 'Primary Key: Unique word in the search index.',
`count` float default NULL COMMENT 'The count of the word in the index using Zipf’s law to equalize the probability distribution.',
PRIMARY KEY (`word`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores search totals for words.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `search_total`
--
LOCK TABLES `search_total` WRITE;
/*!40000 ALTER TABLE `search_total` DISABLE KEYS */;
INSERT INTO `search_total` VALUES ('1',0.007687);
INSERT INTO `search_total` VALUES ('1this',0.30103);
INSERT INTO `search_total` VALUES ('2',0.007687);
INSERT INTO `search_total` VALUES ('2600',0.30103);
INSERT INTO `search_total` VALUES ('2this',0.30103);
INSERT INTO `search_total` VALUES ('3',0.01424);
INSERT INTO `search_total` VALUES ('39',0.30103);
INSERT INTO `search_total` VALUES ('4',0.09691);
INSERT INTO `search_total` VALUES ('4c736330a1e28393125890',0.019305);
INSERT INTO `search_total` VALUES ('5',0.09691);
INSERT INTO `search_total` VALUES ('6',0.09691);
INSERT INTO `search_total` VALUES ('about',0.01639);
INSERT INTO `search_total` VALUES ('accumsan',0.079181);
INSERT INTO `search_total` VALUES ('address',0.022276);
INSERT INTO `search_total` VALUES ('adipiscing',0.022289);
INSERT INTO `search_total` VALUES ('aenean',0.067018);
INSERT INTO `search_total` VALUES ('aliquam',0.021189);
INSERT INTO `search_total` VALUES ('aliquet',0.057992);
INSERT INTO `search_total` VALUES ('amet',0.015246);
INSERT INTO `search_total` VALUES ('and',0.01524);
INSERT INTO `search_total` VALUES ('anonymouscompany',0.124939);
INSERT INTO `search_total` VALUES ('another',0.01639);
INSERT INTO `search_total` VALUES ('answer',0.01639);
INSERT INTO `search_total` VALUES ('ante',0.30103);
INSERT INTO `search_total` VALUES ('appear',0.124939);
INSERT INTO `search_total` VALUES ('arcu',0.045757);
INSERT INTO `search_total` VALUES ('auctor',0.079181);
INSERT INTO `search_total` VALUES ('augue',0.045757);
INSERT INTO `search_total` VALUES ('awesome',0.30103);
INSERT INTO `search_total` VALUES ('belgium',0.30103);
INSERT INTO `search_total` VALUES ('berchem',0.30103);
INSERT INTO `search_total` VALUES ('bibendum',0.057992);
INSERT INTO `search_total` VALUES ('blandit',0.079181);
INSERT INTO `search_total` VALUES ('blog',0.00583);
INSERT INTO `search_total` VALUES ('build',0.30103);
INSERT INTO `search_total` VALUES ('change',0.30103);
INSERT INTO `search_total` VALUES ('code',0.30103);
INSERT INTO `search_total` VALUES ('comment',0.124939);
INSERT INTO `search_total` VALUES ('comments',0.124939);
INSERT INTO `search_total` VALUES ('commodo',0.176091);
INSERT INTO `search_total` VALUES ('condimentum',0.09691);
INSERT INTO `search_total` VALUES ('congue',0.30103);
INSERT INTO `search_total` VALUES ('consectetur',0.021196);
INSERT INTO `search_total` VALUES ('consequat',0.066947);
INSERT INTO `search_total` VALUES ('contact',0.037789);
INSERT INTO `search_total` VALUES ('convallis',0.079181);
INSERT INTO `search_total` VALUES ('cras',0.09691);
INSERT INTO `search_total` VALUES ('create',0.01639);
INSERT INTO `search_total` VALUES ('cubilia',0.30103);
INSERT INTO `search_total` VALUES ('cum',0.176091);
INSERT INTO `search_total` VALUES ('curabitur',0.058109);
INSERT INTO `search_total` VALUES ('curae',0.30103);
INSERT INTO `search_total` VALUES ('cursus',0.09691);
INSERT INTO `search_total` VALUES ('customer',0.008273);
INSERT INTO `search_total` VALUES ('dapibus',0.176091);
INSERT INTO `search_total` VALUES ('demonstrate',0.124939);
INSERT INTO `search_total` VALUES ('demonstrating',0.176091);
INSERT INTO `search_total` VALUES ('description',0.015794);
INSERT INTO `search_total` VALUES ('diam',0.079181);
INSERT INTO `search_total` VALUES ('dictum',0.176091);
INSERT INTO `search_total` VALUES ('dignissim',0.125337);
INSERT INTO `search_total` VALUES ('dis',0.176091);
INSERT INTO `search_total` VALUES ('discussion',0.011582);
INSERT INTO `search_total` VALUES ('dolor',0.017033);
INSERT INTO `search_total` VALUES ('donec',0.09691);
INSERT INTO `search_total` VALUES ('drupal',0.015794);
INSERT INTO `search_total` VALUES ('dui',0.045757);
INSERT INTO `search_total` VALUES ('duis',0.051153);
INSERT INTO `search_total` VALUES ('easy',0.30103);
INSERT INTO `search_total` VALUES ('edit',0.30103);
INSERT INTO `search_total` VALUES ('egestas',0.058109);
INSERT INTO `search_total` VALUES ('eget',0.045811);
INSERT INTO `search_total` VALUES ('eleifend',0.037789);
INSERT INTO `search_total` VALUES ('elementum',0.057992);
INSERT INTO `search_total` VALUES ('elit',0.020203);
INSERT INTO `search_total` VALUES ('embedded',0.30103);
INSERT INTO `search_total` VALUES ('enim',0.097149);
INSERT INTO `search_total` VALUES ('erat',0.030009);
INSERT INTO `search_total` VALUES ('eros',0.30103);
INSERT INTO `search_total` VALUES ('est',0.037861);
INSERT INTO `search_total` VALUES ('etiam',0.124939);
INSERT INTO `search_total` VALUES ('euismod',0.066947);
INSERT INTO `search_total` VALUES ('example',0.008273);
INSERT INTO `search_total` VALUES ('existing',0.30103);
INSERT INTO `search_total` VALUES ('facilisis',0.124939);
INSERT INTO `search_total` VALUES ('fames',0.30103);
INSERT INTO `search_total` VALUES ('faucibus',0.057992);
INSERT INTO `search_total` VALUES ('feature',0.017033);
INSERT INTO `search_total` VALUES ('featuresample',0.30103);
INSERT INTO `search_total` VALUES ('felis',0.176091);
INSERT INTO `search_total` VALUES ('fermentum',0.17689);
INSERT INTO `search_total` VALUES ('first',0.01639);
INSERT INTO `search_total` VALUES ('follow',0.30103);
INSERT INTO `search_total` VALUES ('for',0.008273);
INSERT INTO `search_total` VALUES ('forum',0.004156);
INSERT INTO `search_total` VALUES ('forums',0.176091);
INSERT INTO `search_total` VALUES ('fringilla',0.051153);
INSERT INTO `search_total` VALUES ('fusce',0.176091);
INSERT INTO `search_total` VALUES ('gallery',0.01524);
INSERT INTO `search_total` VALUES ('gallerysample',0.30103);
INSERT INTO `search_total` VALUES ('gardens',0.015794);
INSERT INTO `search_total` VALUES ('general',0.011582);
INSERT INTO `search_total` VALUES ('google',0.037789);
INSERT INTO `search_total` VALUES ('gravida',0.124939);
INSERT INTO `search_total` VALUES ('habitant',0.30103);
INSERT INTO `search_total` VALUES ('hendrerit',0.124939);
INSERT INTO `search_total` VALUES ('hilda',0.30103);
INSERT INTO `search_total` VALUES ('how',0.014723);
INSERT INTO `search_total` VALUES ('html',0.30103);
INSERT INTO `search_total` VALUES ('iaculis',0.176589);
INSERT INTO `search_total` VALUES ('image',0.09691);
INSERT INTO `search_total` VALUES ('imperdiet',0.057992);
INSERT INTO `search_total` VALUES ('instructions',0.30103);
INSERT INTO `search_total` VALUES ('integer',0.09691);
INSERT INTO `search_total` VALUES ('interdum',0.045791);
INSERT INTO `search_total` VALUES ('ipsum',0.017048);
INSERT INTO `search_total` VALUES ('item',0.008273);
INSERT INTO `search_total` VALUES ('justo',0.176091);
INSERT INTO `search_total` VALUES ('lacinia',0.079181);
INSERT INTO `search_total` VALUES ('lacus',0.30103);
INSERT INTO `search_total` VALUES ('laoreet',0.176091);
INSERT INTO `search_total` VALUES ('larger',0.037789);
INSERT INTO `search_total` VALUES ('lectus',0.124939);
INSERT INTO `search_total` VALUES ('leo',0.30103);
INSERT INTO `search_total` VALUES ('libero',0.09691);
INSERT INTO `search_total` VALUES ('ligula',0.066947);
INSERT INTO `search_total` VALUES ('link',0.30103);
INSERT INTO `search_total` VALUES ('lobortis',0.057992);
INSERT INTO `search_total` VALUES ('lorem',0.026329);
INSERT INTO `search_total` VALUES ('love',0.30103);
INSERT INTO `search_total` VALUES ('luctus',0.041393);
INSERT INTO `search_total` VALUES ('maecenas',0.124939);
INSERT INTO `search_total` VALUES ('magna',0.066947);
INSERT INTO `search_total` VALUES ('magnis',0.176091);
INSERT INTO `search_total` VALUES ('malesuada',0.124939);
INSERT INTO `search_total` VALUES ('map',0.034762);
INSERT INTO `search_total` VALUES ('maps',0.037789);
INSERT INTO `search_total` VALUES ('massa',0.058109);
INSERT INTO `search_total` VALUES ('mattis',0.124939);
INSERT INTO `search_total` VALUES ('mauris',0.029963);
INSERT INTO `search_total` VALUES ('metus',0.051153);
INSERT INTO `search_total` VALUES ('mollis',0.067061);
INSERT INTO `search_total` VALUES ('montes',0.176091);
INSERT INTO `search_total` VALUES ('morbi',0.079181);
INSERT INTO `search_total` VALUES ('mus',0.176091);
INSERT INTO `search_total` VALUES ('nam',0.176091);
INSERT INTO `search_total` VALUES ('nascetur',0.176091);
INSERT INTO `search_total` VALUES ('natoque',0.176091);
INSERT INTO `search_total` VALUES ('nec',0.045811);
INSERT INTO `search_total` VALUES ('neque',0.028029);
INSERT INTO `search_total` VALUES ('netus',0.30103);
INSERT INTO `search_total` VALUES ('news',0.008273);
INSERT INTO `search_total` VALUES ('nibh',0.051169);
INSERT INTO `search_total` VALUES ('nisi',0.041393);
INSERT INTO `search_total` VALUES ('nisl',0.097149);
INSERT INTO `search_total` VALUES ('non',0.034846);
INSERT INTO `search_total` VALUES ('nulla',0.037825);
INSERT INTO `search_total` VALUES ('nullam',0.30103);
INSERT INTO `search_total` VALUES ('nunc',0.034793);
INSERT INTO `search_total` VALUES ('odio',0.034762);
INSERT INTO `search_total` VALUES ('office',0.022276);
INSERT INTO `search_total` VALUES ('orci',0.041393);
INSERT INTO `search_total` VALUES ('ornare',0.176091);
INSERT INTO `search_total` VALUES ('own',0.01639);
INSERT INTO `search_total` VALUES ('page',0.30103);
INSERT INTO `search_total` VALUES ('parturient',0.176091);
INSERT INTO `search_total` VALUES ('paste',0.30103);
INSERT INTO `search_total` VALUES ('pellentesque',0.079181);
INSERT INTO `search_total` VALUES ('penatibus',0.176091);
INSERT INTO `search_total` VALUES ('pharetra',0.022276);
INSERT INTO `search_total` VALUES ('phasellus',0.051153);
INSERT INTO `search_total` VALUES ('place',0.30103);
INSERT INTO `search_total` VALUES ('placerat',0.124939);
INSERT INTO `search_total` VALUES ('porta',0.09691);
INSERT INTO `search_total` VALUES ('porttitor',0.09691);
INSERT INTO `search_total` VALUES ('post',0.008273);
INSERT INTO `search_total` VALUES ('posuere',0.09691);
INSERT INTO `search_total` VALUES ('praesent',0.066947);
INSERT INTO `search_total` VALUES ('preinstalled',0.019305);
INSERT INTO `search_total` VALUES ('pretium',0.057992);
INSERT INTO `search_total` VALUES ('primis',0.30103);
INSERT INTO `search_total` VALUES ('product',0.01639);
INSERT INTO `search_total` VALUES ('proin',0.09691);
INSERT INTO `search_total` VALUES ('provided',0.30103);
INSERT INTO `search_total` VALUES ('purus',0.066947);
INSERT INTO `search_total` VALUES ('quam',0.124939);
INSERT INTO `search_total` VALUES ('question',0.01639);
INSERT INTO `search_total` VALUES ('quis',0.032201);
INSERT INTO `search_total` VALUES ('ramstraat',0.30103);
INSERT INTO `search_total` VALUES ('reply',0.012965);
INSERT INTO `search_total` VALUES ('rhoncus',0.066947);
INSERT INTO `search_total` VALUES ('ridiculus',0.176091);
INSERT INTO `search_total` VALUES ('risus',0.05131);
INSERT INTO `search_total` VALUES ('rutrum',0.30103);
INSERT INTO `search_total` VALUES ('sagittis',0.09691);
INSERT INTO `search_total` VALUES ('sample',0.002025);
INSERT INTO `search_total` VALUES ('sapien',0.176091);
INSERT INTO `search_total` VALUES ('scelerisque',0.09691);
INSERT INTO `search_total` VALUES ('second',0.01639);
INSERT INTO `search_total` VALUES ('sed',0.028049);
INSERT INTO `search_total` VALUES ('select',0.30103);
INSERT INTO `search_total` VALUES ('semper',0.176091);
INSERT INTO `search_total` VALUES ('senectus',0.30103);
INSERT INTO `search_total` VALUES ('should',0.01639);
INSERT INTO `search_total` VALUES ('sit',0.015246);
INSERT INTO `search_total` VALUES ('site',0.017033);
INSERT INTO `search_total` VALUES ('sites',0.30103);
INSERT INTO `search_total` VALUES ('sociis',0.176091);
INSERT INTO `search_total` VALUES ('sodales',0.079181);
INSERT INTO `search_total` VALUES ('suggestions',0.011582);
INSERT INTO `search_total` VALUES ('suscipit',0.124939);
INSERT INTO `search_total` VALUES ('suspendisse',0.124939);
INSERT INTO `search_total` VALUES ('tellus',0.057992);
INSERT INTO `search_total` VALUES ('tempor',0.051153);
INSERT INTO `search_total` VALUES ('tempus',0.032185);
INSERT INTO `search_total` VALUES ('testimonial',0.005532);
INSERT INTO `search_total` VALUES ('the',0.007299);
INSERT INTO `search_total` VALUES ('then',0.30103);
INSERT INTO `search_total` VALUES ('this',0.007424);
INSERT INTO `search_total` VALUES ('tincidunt',0.067061);
INSERT INTO `search_total` VALUES ('top',0.30103);
INSERT INTO `search_total` VALUES ('topic',0.008273);
INSERT INTO `search_total` VALUES ('tortor',0.176091);
INSERT INTO `search_total` VALUES ('tristique',0.079181);
INSERT INTO `search_total` VALUES ('turpis',0.066947);
INSERT INTO `search_total` VALUES ('ullamcorper',0.037789);
INSERT INTO `search_total` VALUES ('ultrices',0.124939);
INSERT INTO `search_total` VALUES ('ultricies',0.051153);
INSERT INTO `search_total` VALUES ('urna',0.037789);
INSERT INTO `search_total` VALUES ('use',0.01639);
INSERT INTO `search_total` VALUES ('varius',0.176091);
INSERT INTO `search_total` VALUES ('vel',0.021189);
INSERT INTO `search_total` VALUES ('velit',0.079181);
INSERT INTO `search_total` VALUES ('venenatis',0.176091);
INSERT INTO `search_total` VALUES ('vestibulum',0.051153);
INSERT INTO `search_total` VALUES ('view',0.019305);
INSERT INTO `search_total` VALUES ('vitae',0.037789);
INSERT INTO `search_total` VALUES ('vivamus',0.176091);
INSERT INTO `search_total` VALUES ('viverra',0.176091);
INSERT INTO `search_total` VALUES ('volutpat',0.041393);
INSERT INTO `search_total` VALUES ('vulputate',0.30103);
INSERT INTO `search_total` VALUES ('why',0.01639);
INSERT INTO `search_total` VALUES ('will',0.124939);
INSERT INTO `search_total` VALUES ('would',0.01639);
INSERT INTO `search_total` VALUES ('your',0.124939);
/*!40000 ALTER TABLE `search_total` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `semaphore`
--
DROP TABLE IF EXISTS `semaphore`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `semaphore` (
`name` varchar(255) NOT NULL default '' COMMENT 'Primary Key: Unique name.',
`value` varchar(255) NOT NULL default '' COMMENT 'A value for the semaphore.',
`expire` double NOT NULL COMMENT 'A Unix timestamp with microseconds indicating when the semaphore should expire.',
PRIMARY KEY (`name`),
KEY `value` (`value`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table for holding semaphores, locks, flags, etc. that...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `semaphore`
--
LOCK TABLES `semaphore` WRITE;
/*!40000 ALTER TABLE `semaphore` DISABLE KEYS */;
/*!40000 ALTER TABLE `semaphore` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sequences`
--
DROP TABLE IF EXISTS `sequences`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `sequences` (
`value` int(10) unsigned NOT NULL auto_increment COMMENT 'The value of the sequence.',
PRIMARY KEY (`value`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='Stores IDs.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `sequences`
--
LOCK TABLES `sequences` WRITE;
/*!40000 ALTER TABLE `sequences` DISABLE KEYS */;
INSERT INTO `sequences` VALUES (16);
/*!40000 ALTER TABLE `sequences` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `sessions` (
`uid` int(10) unsigned NOT NULL COMMENT 'The users.uid corresponding to a session, or 0 for anonymous user.',
`sid` varchar(128) NOT NULL default '' COMMENT 'A session ID. The value is generated by PHP’s Session API.',
`ssid` varchar(128) NOT NULL default '' COMMENT 'Secure session ID. The value is generated by PHP’s Session API.',
`hostname` varchar(128) NOT NULL default '' COMMENT 'The IP address that last used this session ID (sid).',
`timestamp` int(11) NOT NULL default '0' COMMENT 'The Unix timestamp when this session last requested a page. Old records are purged by PHP automatically.',
`cache` int(11) NOT NULL default '0' COMMENT 'The time of this user’s last post. This is used when the site has specified a minimum_cache_lifetime. See cache_get().',
`session` longblob COMMENT 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.',
PRIMARY KEY (`sid`,`ssid`),
KEY `timestamp` (`timestamp`),
KEY `uid` (`uid`),
KEY `ssid` (`ssid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Drupal’s session handlers read and write into the...';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `shortcut_set`
--
DROP TABLE IF EXISTS `shortcut_set`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `shortcut_set` (
`set_name` varchar(32) NOT NULL default '' COMMENT 'Primary Key: The menu_links.menu_name under which the set’s links are stored.',
`title` varchar(255) NOT NULL default '' COMMENT 'The title of the set.',
PRIMARY KEY (`set_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about sets of shortcuts links.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `shortcut_set`
--
LOCK TABLES `shortcut_set` WRITE;
/*!40000 ALTER TABLE `shortcut_set` DISABLE KEYS */;
INSERT INTO `shortcut_set` VALUES ('shortcut-set-1','Default');
/*!40000 ALTER TABLE `shortcut_set` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `shortcut_set_users`
--
DROP TABLE IF EXISTS `shortcut_set_users`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `shortcut_set_users` (
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'The users.uid for this set.',
`set_name` varchar(32) NOT NULL default '' COMMENT 'The shortcut_set.set_name that will be displayed for this user.',
PRIMARY KEY (`uid`),
KEY `set_name` (`set_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to shortcut sets.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `shortcut_set_users`
--
LOCK TABLES `shortcut_set_users` WRITE;
/*!40000 ALTER TABLE `shortcut_set_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `shortcut_set_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `simpleviews`
--
DROP TABLE IF EXISTS `simpleviews`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `simpleviews` (
`svid` int(10) unsigned NOT NULL auto_increment COMMENT 'Unique identifier for the simpleviews item.',
`module` varchar(255) NOT NULL default 'simpleviews' COMMENT 'The name of the module that generated the simpleviews item.',
`path` varchar(255) NOT NULL default '' COMMENT 'The URL of the simpleviews item.',
`title` varchar(255) NOT NULL default '' COMMENT 'The human-readable description of the simpleviews item.',
`header` varchar(255) NOT NULL default '' COMMENT 'The text to display at the top of the simpleviews item.',
`filter` varchar(128) NOT NULL default 'all-posts' COMMENT 'The type of dynamic listing to be displayed on the simpleviews item.',
`style` varchar(128) NOT NULL default '' COMMENT 'The output style of the listing simpleviews item.',
`sort` varchar(128) NOT NULL default 'newest' COMMENT 'The sort style of the listing simpleviews item.',
`argument` varchar(128) default '' COMMENT 'The optional type of argument to generate beneath this simpleviews item.',
`rss` int(11) NOT NULL default '0' COMMENT 'A boolean indicating whether this simpleviews item should expose an RSS feed.',
`block` int(11) NOT NULL default '0' COMMENT 'A boolean indicating whether this simpleviews item should expose a sidebar block.',
PRIMARY KEY (`svid`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='Stores custom links to be added to nodes.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `simpleviews`
--
LOCK TABLES `simpleviews` WRITE;
/*!40000 ALTER TABLE `simpleviews` DISABLE KEYS */;
INSERT INTO `simpleviews` VALUES (1,'simpleviews','news','News','','node:article','teasers','oldest','',1,0);
INSERT INTO `simpleviews` VALUES (6,'simpleviews','faq','Frequently asked questions','','node:faq_item','title_reveals_full','oldest','',1,0);
INSERT INTO `simpleviews` VALUES (11,'simpleviews','testimonials','Testimonials','','node:testimonial','full','oldest','',1,1);
INSERT INTO `simpleviews` VALUES (16,'simpleviews','customers','Customers','','node:customer','full','newest','',1,1);
/*!40000 ALTER TABLE `simpleviews` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `simpleviews_sqbs`
--
DROP TABLE IF EXISTS `simpleviews_sqbs`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `simpleviews_sqbs` (
`svid` int(10) unsigned NOT NULL COMMENT 'Refers to simpleviews.svid.',
`page_items` int(11) NOT NULL default '0' COMMENT 'Number of items to display on a page.',
`block_items` int(11) NOT NULL default '0' COMMENT 'Number of items to display in a block; if simpleviews.block is on.',
`block_style` varchar(128) NOT NULL default '' COMMENT 'The output style of the listing simpleviews item in the block.',
`tags` text NOT NULL COMMENT 'Serialized list of taxonomy terms this listing should be limited to.',
PRIMARY KEY (`svid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores additional information on simpleviews.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `simpleviews_sqbs`
--
LOCK TABLES `simpleviews_sqbs` WRITE;
/*!40000 ALTER TABLE `simpleviews_sqbs` DISABLE KEYS */;
INSERT INTO `simpleviews_sqbs` VALUES (1,10,0,'titles','a:0:{}');
INSERT INTO `simpleviews_sqbs` VALUES (6,10,0,'titles','a:0:{}');
INSERT INTO `simpleviews_sqbs` VALUES (11,10,1,'full','a:0:{}');
INSERT INTO `simpleviews_sqbs` VALUES (16,10,15,'teasers','a:0:{}');
/*!40000 ALTER TABLE `simpleviews_sqbs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `site_verify`
--
DROP TABLE IF EXISTS `site_verify`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `site_verify` (
`svid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique site verification ID.',
`engine` varchar(32) NOT NULL default '',
`file` varchar(255) default '',
`file_contents` longtext NOT NULL,
`meta` text NOT NULL,
PRIMARY KEY (`svid`),
KEY `engine` (`engine`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `site_verify`
--
LOCK TABLES `site_verify` WRITE;
/*!40000 ALTER TABLE `site_verify` DISABLE KEYS */;
/*!40000 ALTER TABLE `site_verify` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `style_effects`
--
DROP TABLE IF EXISTS `style_effects`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `style_effects` (
`seid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a style effect.',
`sid` int(10) unsigned NOT NULL default '0' COMMENT 'The styles.sid for a style.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of the effect in the style.',
`name` varchar(255) NOT NULL COMMENT 'The unique name of the effect to be executed.',
`data` longtext NOT NULL COMMENT 'The configuration data for the effect.',
PRIMARY KEY (`seid`),
KEY `sid` (`sid`),
KEY `weight` (`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for style effects.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `style_effects`
--
LOCK TABLES `style_effects` WRITE;
/*!40000 ALTER TABLE `style_effects` DISABLE KEYS */;
/*!40000 ALTER TABLE `style_effects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `styles`
--
DROP TABLE IF EXISTS `styles`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `styles` (
`sid` int(10) unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a style.',
`name` varchar(255) NOT NULL COMMENT 'The style name.',
PRIMARY KEY (`sid`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for styles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `styles`
--
LOCK TABLES `styles` WRITE;
/*!40000 ALTER TABLE `styles` DISABLE KEYS */;
/*!40000 ALTER TABLE `styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system`
--
DROP TABLE IF EXISTS `system`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `system` (
`filename` varchar(255) NOT NULL default '' COMMENT 'The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.',
`name` varchar(255) NOT NULL default '' COMMENT 'The name of the item; e.g. node.',
`type` varchar(12) NOT NULL default '' COMMENT 'The type of the item, either module, theme, theme_engine, or profile.',
`owner` varchar(255) NOT NULL default '' COMMENT 'A theme’s ’parent’ . Can be either a theme or an engine.',
`status` int(11) NOT NULL default '0' COMMENT 'Boolean indicating whether or not this item is enabled.',
`bootstrap` int(11) NOT NULL default '0' COMMENT 'Boolean indicating whether this module is loaded during Drupal’s early bootstrapping phase (e.g. even before the page cache is consulted).',
`schema_version` smallint(6) NOT NULL default '-1' COMMENT 'The module’s database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module’s hook_update_N() function that has either been run or existed when the module was first installed.',
`weight` int(11) NOT NULL default '0' COMMENT 'The order in which this module’s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.',
`info` blob COMMENT 'A serialized array containing information from the module’s .info file; keys can include name, description, package, version, core, dependencies, dependents, and php.',
PRIMARY KEY (`filename`),
KEY `bootstrap` (`status`,`bootstrap`,`type`,`weight`,`name`),
KEY `system_list` (`weight`,`name`),
KEY `type_name` (`type`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all modules, themes, and theme engines that are...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `system`
--
LOCK TABLES `system` WRITE;
/*!40000 ALTER TABLE `system` DISABLE KEYS */;
INSERT INTO `system` VALUES ('modules/acquia/jsunit/jsunit_example/jsunit_example.module','jsunit_example','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:26:\"jsUnit example test module\";s:11:\"description\";s:19:\"jsunit test example\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"jsUnit Tests\";s:5:\"files\";a:1:{i:0;s:21:\"jsunit_example.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/aggregator/aggregator.module','aggregator','module','',1,0,7002,0,'a:11:{s:4:\"name\";s:10:\"Aggregator\";s:11:\"description\";s:57:\"Aggregates syndicated content (RSS, RDF, and Atom feeds).\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:8:{i:0;s:17:\"aggregator.module\";i:1;s:20:\"aggregator.admin.inc\";i:2;s:20:\"aggregator.pages.inc\";i:3;s:22:\"aggregator.fetcher.inc\";i:4;s:21:\"aggregator.parser.inc\";i:5;s:24:\"aggregator.processor.inc\";i:6;s:18:\"aggregator.install\";i:7;s:15:\"aggregator.test\";}s:9:\"configure\";s:41:\"admin/config/services/aggregator/settings\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/aggregator/tests/aggregator_test.module','aggregator_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:23:\"Aggregator module tests\";s:11:\"description\";s:46:\"Support module for aggregator related testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:22:\"aggregator_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/block/block.module','block','module','',1,0,7006,-5,'a:11:{s:4:\"name\";s:5:\"Block\";s:11:\"description\";s:140:\"Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"block.module\";i:1;s:15:\"block.admin.inc\";i:2;s:13:\"block.install\";i:3;s:10:\"block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/block/tests/block_test.module','block_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:10:\"Block test\";s:11:\"description\";s:21:\"Provides test blocks.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:17:\"block_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/blog/blog.module','blog','module','',1,0,0,0,'a:10:{s:4:\"name\";s:4:\"Blog\";s:11:\"description\";s:25:\"Enables multi-user blogs.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:11:\"blog.module\";i:1;s:14:\"blog.pages.inc\";i:2;s:9:\"blog.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/book/book.module','book','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:4:\"Book\";s:11:\"description\";s:66:\"Allows users to create and organize related content in an outline.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:11:\"book.module\";i:1;s:14:\"book.admin.inc\";i:2;s:14:\"book.pages.inc\";i:3;s:12:\"book.install\";i:4;s:9:\"book.test\";}s:9:\"configure\";s:27:\"admin/content/book/settings\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/color/color.module','color','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:5:\"Color\";s:11:\"description\";s:70:\"Allows administrators to change the color scheme of compatible themes.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:12:\"color.module\";i:1;s:13:\"color.install\";i:2;s:10:\"color.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/comment/comment.module','comment','module','',1,0,7013,0,'a:11:{s:4:\"name\";s:7:\"Comment\";s:11:\"description\";s:57:\"Allows users to comment on and discuss published content.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:14:\"comment.module\";i:1;s:17:\"comment.admin.inc\";i:2;s:17:\"comment.pages.inc\";i:3;s:15:\"comment.install\";i:4;s:12:\"comment.test\";i:5;s:18:\"comment.tokens.inc\";}s:9:\"configure\";s:21:\"admin/content/comment\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/contact/contact.module','contact','module','',1,0,7003,0,'a:11:{s:4:\"name\";s:7:\"Contact\";s:11:\"description\";s:61:\"Enables the use of both personal and site-wide contact forms.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:14:\"contact.module\";i:1;s:17:\"contact.admin.inc\";i:2;s:17:\"contact.pages.inc\";i:3;s:15:\"contact.install\";i:4;s:12:\"contact.test\";}s:9:\"configure\";s:23:\"admin/structure/contact\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/contextual/contextual.module','contextual','module','',1,0,0,0,'a:10:{s:4:\"name\";s:16:\"Contextual links\";s:11:\"description\";s:75:\"Provides contextual links to perform actions related to elements on a page.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:17:\"contextual.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/dashboard/dashboard.module','dashboard','module','',1,0,0,0,'a:11:{s:4:\"name\";s:9:\"Dashboard\";s:11:\"description\";s:136:\"Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:5:\"files\";a:2:{i:0;s:16:\"dashboard.module\";i:1;s:14:\"dashboard.test\";}s:12:\"dependencies\";a:1:{i:0;s:5:\"block\";}s:9:\"configure\";s:25:\"admin/dashboard/customize\";s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/dblog/dblog.module','dblog','module','',1,1,7004,0,'a:10:{s:4:\"name\";s:16:\"Database logging\";s:11:\"description\";s:47:\"Logs and records system events to the database.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"dblog.module\";i:1;s:15:\"dblog.admin.inc\";i:2;s:13:\"dblog.install\";i:3;s:10:\"dblog.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/field.module','field','module','',1,0,0,0,'a:11:{s:4:\"name\";s:5:\"Field\";s:11:\"description\";s:57:\"Field API to add fields to entities like nodes and users.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:9:{i:0;s:12:\"field.module\";i:1;s:13:\"field.install\";i:2;s:14:\"field.crud.inc\";i:3;s:14:\"field.info.inc\";i:4;s:17:\"field.default.inc\";i:5;s:22:\"field.multilingual.inc\";i:6;s:16:\"field.attach.inc\";i:7;s:14:\"field.form.inc\";i:8;s:16:\"tests/field.test\";}s:12:\"dependencies\";a:1:{i:0;s:17:\"field_sql_storage\";}s:8:\"required\";b:1;s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/modules/field_sql_storage/field_sql_storage.module','field_sql_storage','module','',1,0,0,0,'a:11:{s:4:\"name\";s:17:\"Field SQL storage\";s:11:\"description\";s:37:\"Stores field data in an SQL database.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:24:\"field_sql_storage.module\";i:1;s:25:\"field_sql_storage.install\";i:2;s:22:\"field_sql_storage.test\";}s:8:\"required\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/modules/list/list.module','list','module','',1,0,0,0,'a:11:{s:4:\"name\";s:4:\"List\";s:11:\"description\";s:69:\"Defines list field types. Use with Options to create selection lists.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"list.module\";i:1;s:15:\"tests/list.test\";}s:8:\"required\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/modules/list/tests/list_test.module','list_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:9:\"List test\";s:11:\"description\";s:41:\"Support module for the List module tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:5:\"files\";a:1:{i:0;s:16:\"list_test.module\";}s:7:\"version\";s:7:\"7.0-dev\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/modules/number/number.module','number','module','',1,0,0,0,'a:11:{s:4:\"name\";s:6:\"Number\";s:11:\"description\";s:28:\"Defines numeric field types.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"number.module\";}s:8:\"required\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/modules/options/options.module','options','module','',1,0,0,0,'a:11:{s:4:\"name\";s:7:\"Options\";s:11:\"description\";s:82:\"Defines selection, check box and radio button widgets for text and numeric fields.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:14:\"options.module\";i:1;s:12:\"options.test\";}s:8:\"required\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/modules/text/text.module','text','module','',1,0,0,0,'a:11:{s:4:\"name\";s:4:\"Text\";s:11:\"description\";s:32:\"Defines simple text field types.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"text.module\";i:1;s:9:\"text.test\";}s:8:\"required\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field/tests/field_test.module','field_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:14:\"Field API Test\";s:11:\"description\";s:39:\"Support module for the Field API tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:5:\"files\";a:5:{i:0;s:17:\"field_test.module\";i:1;s:21:\"field_test.entity.inc\";i:2;s:20:\"field_test.field.inc\";i:3;s:22:\"field_test.storage.inc\";i:4;s:18:\"field_test.install\";}s:7:\"version\";s:7:\"7.0-dev\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/field_ui/field_ui.module','field_ui','module','',1,0,0,0,'a:10:{s:4:\"name\";s:8:\"Field UI\";s:11:\"description\";s:33:\"User interface for the Field API.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:15:\"field_ui.module\";i:1;s:18:\"field_ui.admin.inc\";i:2;s:13:\"field_ui.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/file/file.module','file','module','',1,0,0,0,'a:12:{s:4:\"name\";s:4:\"File\";s:11:\"description\";s:26:\"Defines a file field type.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:11:\"file.module\";i:1;s:14:\"file.field.inc\";i:2;s:12:\"file.install\";i:3;s:15:\"tests/file.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/file/tests/file_module_test.module','file_module_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:9:\"File test\";s:11:\"description\";s:53:\"Provides hooks for testing File module functionality.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:23:\"file_module_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/filter/filter.module','filter','module','',1,0,7009,0,'a:12:{s:4:\"name\";s:6:\"Filter\";s:11:\"description\";s:43:\"Filters content in preparation for display.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:13:\"filter.module\";i:1;s:16:\"filter.admin.inc\";i:2;s:16:\"filter.pages.inc\";i:3;s:14:\"filter.install\";i:4;s:11:\"filter.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:28:\"admin/config/content/formats\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/forum/forum.module','forum','module','',1,0,7001,1,'a:11:{s:4:\"name\";s:5:\"Forum\";s:11:\"description\";s:27:\"Provides discussion forums.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"taxonomy\";i:1;s:7:\"comment\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:12:\"forum.module\";i:1;s:15:\"forum.admin.inc\";i:2;s:15:\"forum.pages.inc\";i:3;s:13:\"forum.install\";i:4;s:10:\"forum.test\";}s:9:\"configure\";s:21:\"admin/structure/forum\";s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/help/help.module','help','module','',1,0,0,0,'a:10:{s:4:\"name\";s:4:\"Help\";s:11:\"description\";s:35:\"Manages the display of online help.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:11:\"help.module\";i:1;s:14:\"help.admin.inc\";i:2;s:9:\"help.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/image/image.module','image','module','',1,0,7000,0,'a:13:{s:4:\"name\";s:5:\"Image\";s:11:\"description\";s:34:\"Provides image manipulation tools.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:6:{i:0;s:12:\"image.module\";i:1;s:15:\"image.admin.inc\";i:2;s:17:\"image.effects.inc\";i:3;s:15:\"image.field.inc\";i:4;s:13:\"image.install\";i:5;s:10:\"image.test\";}s:9:\"configure\";s:31:\"admin/config/media/image-styles\";s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/locale/locale.module','locale','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:6:\"Locale\";s:11:\"description\";s:119:\"Adds language handling functionality and enables the translation of the user interface to languages other than English.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:13:\"locale.module\";i:1;s:14:\"locale.install\";i:2;s:16:\"locale.admin.inc\";i:3;s:11:\"locale.test\";}s:9:\"configure\";s:30:\"admin/config/regional/language\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/locale/tests/locale_test.module','locale_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Locale Test\";s:11:\"description\";s:42:\"Support module for the locale layer tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:5:\"files\";a:1:{i:0;s:18:\"locale_test.module\";}s:7:\"version\";s:7:\"7.0-dev\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/menu/menu.module','menu','module','',1,0,0,0,'a:11:{s:4:\"name\";s:4:\"Menu\";s:11:\"description\";s:60:\"Allows administrators to customize the site navigation menu.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:11:\"menu.module\";i:1;s:14:\"menu.admin.inc\";i:2;s:12:\"menu.install\";i:3;s:9:\"menu.test\";}s:9:\"configure\";s:20:\"admin/structure/menu\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/node/node.module','node','module','',1,0,7010,0,'a:12:{s:4:\"name\";s:4:\"Node\";s:11:\"description\";s:66:\"Allows content to be submitted to the site and displayed on pages.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:7:{i:0;s:11:\"node.module\";i:1;s:17:\"content_types.inc\";i:2;s:14:\"node.admin.inc\";i:3;s:14:\"node.pages.inc\";i:4;s:12:\"node.install\";i:5;s:9:\"node.test\";i:6;s:15:\"node.tokens.inc\";}s:8:\"required\";b:1;s:9:\"configure\";s:21:\"admin/structure/types\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/node/tests/node_access_test.module','node_access_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:24:\"Node module access tests\";s:11:\"description\";s:43:\"Support module for node permission testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:23:\"node_access_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/node/tests/node_presave_test.module','node_presave_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:25:\"Node module presave tests\";s:11:\"description\";s:45:\"Support module for hook_node_presave testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"node_presave_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/node/tests/node_test.module','node_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:17:\"Node module tests\";s:11:\"description\";s:40:\"Support module for node related testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:16:\"node_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/node/tests/node_test_exception.module','node_test_exception','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:27:\"Node module exception tests\";s:11:\"description\";s:50:\"Support module for node related exception testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:26:\"node_test_exception.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/openid/openid.module','openid','module','',1,0,0,0,'a:12:{s:4:\"name\";s:6:\"OpenID\";s:11:\"description\";s:48:\"Allows users to log into your site using OpenID.\";s:7:\"version\";s:7:\"7.0-dev\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:13:\"openid.module\";i:1;s:10:\"openid.inc\";i:2;s:16:\"openid.pages.inc\";i:3;s:14:\"openid.install\";i:4;s:11:\"openid.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/openid/tests/openid_test.module','openid_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:21:\"OpenID dummy provider\";s:11:\"description\";s:33:\"OpenID provider used for testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:19:\"openid_test.install\";i:1;s:18:\"openid_test.module\";}s:12:\"dependencies\";a:0:{}s:6:\"hidden\";b:1;s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/overlay/overlay.module','overlay','module','',1,1,0,0,'a:12:{s:4:\"name\";s:7:\"Overlay\";s:11:\"description\";s:59:\"Displays the Drupal administration interface in an overlay.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:14:\"overlay.module\";i:1;s:15:\"overlay.install\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/path/path.module','path','module','',1,0,0,0,'a:11:{s:4:\"name\";s:4:\"Path\";s:11:\"description\";s:28:\"Allows users to rename URLs.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:11:\"path.module\";i:1;s:14:\"path.admin.inc\";i:2;s:9:\"path.test\";}s:9:\"configure\";s:24:\"admin/config/search/path\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/php/php.module','php','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:10:\"PHP filter\";s:11:\"description\";s:50:\"Allows embedded PHP code/snippets to be evaluated.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:10:\"php.module\";i:1;s:11:\"php.install\";i:2;s:8:\"php.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/poll/poll.module','poll','module','',1,0,7003,0,'a:10:{s:4:\"name\";s:4:\"Poll\";s:11:\"description\";s:95:\"Allows your site to capture votes on different topics in the form of multiple choice questions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:11:\"poll.module\";i:1;s:14:\"poll.pages.inc\";i:2;s:12:\"poll.install\";i:3;s:9:\"poll.test\";i:4;s:15:\"poll.tokens.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/profile/profile.module','profile','module','',1,0,7002,0,'a:11:{s:4:\"name\";s:7:\"Profile\";s:11:\"description\";s:36:\"Supports configurable user profiles.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:14:\"profile.module\";i:1;s:17:\"profile.admin.inc\";i:2;s:17:\"profile.pages.inc\";i:3;s:15:\"profile.install\";i:4;s:12:\"profile.test\";}s:9:\"configure\";s:27:\"admin/config/people/profile\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/rdf/rdf.module','rdf','module','',1,0,0,0,'a:10:{s:4:\"name\";s:3:\"RDF\";s:11:\"description\";s:148:\"Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:11:\"rdf.install\";i:1;s:10:\"rdf.module\";i:2;s:8:\"rdf.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/rdf/tests/rdf_test.module','rdf_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:16:\"RDF module tests\";s:11:\"description\";s:38:\"Support module for RDF module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:16:\"rdf_test.install\";i:1;s:15:\"rdf_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/search/search.module','search','module','',1,0,7000,0,'a:11:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:36:\"Enables site-wide keyword searching.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:13:\"search.module\";i:1;s:16:\"search.admin.inc\";i:2;s:16:\"search.pages.inc\";i:3;s:14:\"search.install\";i:4;s:11:\"search.test\";i:5;s:19:\"search.extender.inc\";}s:9:\"configure\";s:28:\"admin/config/search/settings\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/shortcut/shortcut.module','shortcut','module','',1,0,0,0,'a:11:{s:4:\"name\";s:8:\"Shortcut\";s:11:\"description\";s:60:\"Allows users to manage customizable lists of shortcut links.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:15:\"shortcut.module\";i:1;s:18:\"shortcut.admin.inc\";i:2;s:16:\"shortcut.install\";i:3;s:13:\"shortcut.test\";}s:9:\"configure\";s:36:\"admin/config/user-interface/shortcut\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/simpletest.module','simpletest','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:7:\"Testing\";s:11:\"description\";s:53:\"Provides a framework for unit and functional testing.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:33:{i:0;s:17:\"simpletest.module\";i:1;s:20:\"simpletest.pages.inc\";i:2;s:18:\"simpletest.install\";i:3;s:15:\"simpletest.test\";i:4;s:24:\"drupal_web_test_case.php\";i:5;s:18:\"tests/actions.test\";i:6;s:15:\"tests/ajax.test\";i:7;s:16:\"tests/batch.test\";i:8;s:20:\"tests/bootstrap.test\";i:9;s:16:\"tests/cache.test\";i:10;s:17:\"tests/common.test\";i:11;s:24:\"tests/database_test.test\";i:12;s:23:\"tests/entity_query.test\";i:13;s:16:\"tests/error.test\";i:14;s:15:\"tests/file.test\";i:15;s:23:\"tests/filetransfer.test\";i:16;s:15:\"tests/form.test\";i:17;s:16:\"tests/graph.test\";i:18;s:16:\"tests/image.test\";i:19;s:15:\"tests/lock.test\";i:20;s:15:\"tests/mail.test\";i:21;s:15:\"tests/menu.test\";i:22;s:17:\"tests/module.test\";i:23;s:15:\"tests/path.test\";i:24;s:19:\"tests/registry.test\";i:25;s:17:\"tests/schema.test\";i:26;s:18:\"tests/session.test\";i:27;s:16:\"tests/theme.test\";i:28;s:18:\"tests/unicode.test\";i:29;s:17:\"tests/update.test\";i:30;s:17:\"tests/xmlrpc.test\";i:31;s:26:\"tests/upgrade/upgrade.test\";i:32;s:31:\"tests/upgrade/upgrade.poll.test\";}s:9:\"configure\";s:41:\"admin/config/development/testing/settings\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/actions_loop_test.module','actions_loop_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:17:\"Actions loop test\";s:11:\"description\";s:39:\"Support module for action loop testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"actions_loop_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/ajax_forms_test.module','ajax_forms_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:26:\"AJAX form test mock module\";s:11:\"description\";s:25:\"Test for AJAX form calls.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:5:\"files\";a:1:{i:0;s:22:\"ajax_forms_test.module\";}s:7:\"version\";s:7:\"7.0-dev\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/ajax_test.module','ajax_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:9:\"AJAX Test\";s:11:\"description\";s:40:\"Support module for AJAX framework tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:16:\"ajax_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/batch_test.module','batch_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:14:\"Batch API test\";s:11:\"description\";s:35:\"Support module for Batch API tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:17:\"batch_test.module\";i:1;s:24:\"batch_test.callbacks.inc\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/common_test.module','common_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Common Test\";s:11:\"description\";s:32:\"Support module for Common tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:18:\"common_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/database_test.module','database_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:13:\"Database Test\";s:11:\"description\";s:40:\"Support module for Database layer tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:5:\"files\";a:2:{i:0;s:20:\"database_test.module\";i:1;s:21:\"database_test.install\";}s:7:\"version\";s:7:\"7.0-dev\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/entity_cache_test.module','entity_cache_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:17:\"Entity cache test\";s:11:\"description\";s:40:\"Support module for testing entity cache.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"entity_cache_test.module\";}s:12:\"dependencies\";a:1:{i:0;s:28:\"entity_cache_test_dependency\";}s:6:\"hidden\";b:1;s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/entity_cache_test_dependency.module','entity_cache_test_dependency','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:28:\"Entity cache test dependency\";s:11:\"description\";s:51:\"Support dependency module for testing entity cache.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:35:\"entity_cache_test_dependency.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/error_test.module','error_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:10:\"Error test\";s:11:\"description\";s:47:\"Support module for error and exception testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:17:\"error_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/file_test.module','file_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:9:\"File test\";s:11:\"description\";s:39:\"Support module for file handling tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:16:\"file_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/filter_test.module','filter_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:18:\"Filter test module\";s:11:\"description\";s:33:\"Tests filter hooks and functions.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:18:\"filter_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/form_test.module','form_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:12:\"FormAPI Test\";s:11:\"description\";s:34:\"Support module for Form API tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:16:\"form_test.module\";i:1;s:18:\"form_test.file.inc\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/image_test.module','image_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:10:\"Image test\";s:11:\"description\";s:39:\"Support module for image toolkit tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:17:\"image_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/menu_test.module','menu_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:15:\"Hook menu tests\";s:11:\"description\";s:37:\"Support module for menu hook testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:16:\"menu_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/module_test.module','module_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Module test\";s:11:\"description\";s:41:\"Support module for module system testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:18:\"module_test.module\";i:1;s:20:\"module_test.file.inc\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/requirements1_test.module','requirements1_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:19:\"Requirements 1 Test\";s:11:\"description\";s:80:\"Tests that a module is not installed when it fails hook_requirements(\'install\').\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:26:\"requirements1_test.install\";i:1;s:25:\"requirements1_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/requirements2_test.module','requirements2_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:19:\"Requirements 2 Test\";s:11:\"description\";s:98:\"Tests that a module is not installed when the one it depends on fails hook_requirements(\'install).\";s:12:\"dependencies\";a:2:{i:0;s:18:\"requirements1_test\";i:1;s:7:\"comment\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:25:\"requirements2_test.module\";}s:6:\"hidden\";b:1;s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/session_test.module','session_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:12:\"Session test\";s:11:\"description\";s:40:\"Support module for session data testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:19:\"session_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/system_dependencies_test.module','system_dependencies_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:22:\"System dependency test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:31:\"system_dependencies_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:19:\"_missing_dependency\";}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/system_test.module','system_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"System test\";s:11:\"description\";s:34:\"Support module for system testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:18:\"system_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/taxonomy_test.module','taxonomy_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:20:\"Taxonomy test module\";s:11:\"description\";s:45:\"\"Tests functions and hooks not used in core\".\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:20:\"taxonomy_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:8:\"taxonomy\";}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/theme_test.module','theme_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:10:\"Theme test\";s:11:\"description\";s:40:\"Support module for theme system testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:17:\"theme_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/update_test_1.module','update_test_1','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:34:\"Support module for update testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:20:\"update_test_1.module\";i:1;s:21:\"update_test_1.install\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/update_test_2.module','update_test_2','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:34:\"Support module for update testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:20:\"update_test_2.module\";i:1;s:21:\"update_test_2.install\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/update_test_3.module','update_test_3','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:34:\"Support module for update testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:20:\"update_test_3.module\";i:1;s:21:\"update_test_3.install\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/url_alter_test.module','url_alter_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:15:\"Url_alter tests\";s:11:\"description\";s:45:\"A support modules for url_alter hook testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:5:\"files\";a:2:{i:0;s:21:\"url_alter_test.module\";i:1;s:22:\"url_alter_test.install\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/simpletest/tests/xmlrpc_test.module','xmlrpc_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:12:\"XML-RPC Test\";s:11:\"description\";s:75:\"Support module for XML-RPC tests according to the validator1 specification.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:18:\"xmlrpc_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/statistics/statistics.module','statistics','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:10:\"Statistics\";s:11:\"description\";s:37:\"Logs access statistics for your site.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:17:\"statistics.module\";i:1;s:20:\"statistics.admin.inc\";i:2;s:20:\"statistics.pages.inc\";i:3;s:18:\"statistics.install\";i:4;s:15:\"statistics.test\";i:5;s:21:\"statistics.tokens.inc\";}s:9:\"configure\";s:30:\"admin/config/system/statistics\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/syslog/syslog.module','syslog','module','',1,1,0,0,'a:12:{s:4:\"name\";s:6:\"Syslog\";s:11:\"description\";s:41:\"Logs and records system events to syslog.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:13:\"syslog.module\";i:1;s:11:\"syslog.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/system/system.module','system','module','',1,0,7059,0,'a:12:{s:4:\"name\";s:6:\"System\";s:11:\"description\";s:54:\"Handles general site configuration for administrators.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:11:{i:0;s:13:\"system.module\";i:1;s:16:\"system.admin.inc\";i:2;s:19:\"system.archiver.inc\";i:3;s:16:\"system.queue.inc\";i:4;s:12:\"image.gd.inc\";i:5;s:14:\"system.install\";i:6;s:11:\"system.test\";i:7;s:14:\"system.tar.inc\";i:8;s:17:\"system.tokens.inc\";i:9;s:18:\"system.updater.inc\";i:10;s:15:\"system.mail.inc\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/system\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/taxonomy/taxonomy.module','taxonomy','module','',1,0,7008,0,'a:11:{s:4:\"name\";s:8:\"Taxonomy\";s:11:\"description\";s:38:\"Enables the categorization of content.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:15:\"taxonomy.module\";i:1;s:18:\"taxonomy.admin.inc\";i:2;s:18:\"taxonomy.pages.inc\";i:3;s:16:\"taxonomy.install\";i:4;s:13:\"taxonomy.test\";i:5;s:19:\"taxonomy.tokens.inc\";}s:9:\"configure\";s:24:\"admin/structure/taxonomy\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/toolbar/toolbar.module','toolbar','module','',1,0,0,0,'a:12:{s:4:\"name\";s:7:\"Toolbar\";s:11:\"description\";s:99:\"Provides a toolbar that shows the top-level administration menu items and links from other modules.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:5:\"files\";a:1:{i:0;s:14:\"toolbar.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/tracker/tracker.module','tracker','module','',0,0,-1,0,'a:10:{s:4:\"name\";s:7:\"Tracker\";s:11:\"description\";s:45:\"Enables tracking of recent content for users.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"comment\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:14:\"tracker.module\";i:1;s:17:\"tracker.pages.inc\";i:2;s:12:\"tracker.test\";}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/translation/translation.module','translation','module','',0,0,-1,0,'a:10:{s:4:\"name\";s:19:\"Content translation\";s:11:\"description\";s:57:\"Allows content to be translated into different languages.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:18:\"translation.module\";i:1;s:21:\"translation.pages.inc\";i:2;s:16:\"translation.test\";}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/trigger/tests/trigger_test.module','trigger_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:12:\"Trigger Test\";s:11:\"description\";s:33:\"Support module for Trigger tests.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:19:\"trigger_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/trigger/trigger.module','trigger','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:7:\"Trigger\";s:11:\"description\";s:90:\"Enables actions to be fired on certain system events, such as when new content is created.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:14:\"trigger.module\";i:1;s:17:\"trigger.admin.inc\";i:2;s:15:\"trigger.install\";i:3;s:12:\"trigger.test\";}s:9:\"configure\";s:23:\"admin/structure/trigger\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/update/tests/aaa_update_test.module','aaa_update_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:15:\"AAA Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:22:\"aaa_update_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/update/tests/bbb_update_test.module','bbb_update_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:15:\"BBB Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:22:\"bbb_update_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/update/tests/ccc_update_test.module','ccc_update_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:15:\"CCC Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:22:\"ccc_update_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/update/tests/update_test.module','update_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:18:\"update_test.module\";}s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('modules/update/update.module','update','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:14:\"Update manager\";s:11:\"description\";s:104:\"Checks for available updates, and can securely install or update modules and themes via a web interface.\";s:7:\"version\";s:7:\"7.0-dev\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:9:{i:0;s:14:\"update.install\";i:1;s:13:\"update.module\";i:2;s:20:\"update.authorize.inc\";i:3;s:18:\"update.compare.inc\";i:4;s:16:\"update.fetch.inc\";i:5;s:18:\"update.manager.inc\";i:6;s:17:\"update.report.inc\";i:7;s:19:\"update.settings.inc\";i:8;s:11:\"update.test\";}s:9:\"configure\";s:30:\"admin/reports/updates/settings\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('modules/user/user.module','user','module','',1,0,7011,0,'a:12:{s:4:\"name\";s:4:\"User\";s:11:\"description\";s:47:\"Manages the user registration and login system.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:11:\"user.module\";i:1;s:14:\"user.admin.inc\";i:2;s:14:\"user.pages.inc\";i:3;s:12:\"user.install\";i:4;s:9:\"user.test\";i:5;s:15:\"user.tokens.inc\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/people\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/acquia_connector/acquia_agent/acquia_agent.module','acquia_agent','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:12:\"Acquia agent\";s:11:\"description\";s:103:\"Allows Drupal to securely communicate with the Acquia Network, and checks for updates to Acquia Drupal.\";s:7:\"package\";s:24:\"Acquia Network Connector\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:19:\"acquia_agent.module\";i:1;s:20:\"acquia_agent.install\";i:2;s:22:\"acquia_agent.pages.inc\";i:3;s:31:\"acquia_agent_drupal_version.inc\";i:4;s:24:\"acquia_agent_streams.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/acquia_connector/acquia_spi/acquia_spi.module','acquia_spi','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:23:\"Acquia site information\";s:11:\"description\";s:264:\"Sends a site profile including Acquia Drupal version, platform and module information; number of posts, comments and users; as well as file hashes and file metainformation on files in the system to the Acquia Network to facilitate support and update notifications.\";s:7:\"package\";s:24:\"Acquia Network Connector\";s:3:\"php\";s:3:\"5.2\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:12:\"acquia_agent\";}s:5:\"files\";a:2:{i:0;s:18:\"acquia_spi.install\";i:1;s:17:\"acquia_spi.module\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/addthis/addthis.module','addthis','module','',1,0,0,0,'a:12:{s:4:\"name\";s:7:\"AddThis\";s:11:\"description\";s:74:\"Creates AddThis button as a block, to be used in themes and to node links.\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:7:\"addthis\";s:9:\"datestamp\";s:10:\"1242663607\";s:5:\"files\";a:2:{i:0;s:14:\"addthis.module\";i:1;s:17:\"addthis.admin.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/comment_notify/comment_notify.module','comment_notify','module','',1,0,7002,0,'a:10:{s:4:\"name\";s:14:\"Comment Notify\";s:11:\"description\";s:80:\"Comment follow-up e-mail notification for anonymous as well as registered users.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"comment\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:22:\"comment_notify.install\";i:1;s:21:\"comment_notify.module\";i:2;s:19:\"comment_notify.test\";}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/entity/entity/entity.module','entity','module','',1,0,0,0,'a:12:{s:4:\"name\";s:15:\"Entity CRUD API\";s:11:\"description\";s:22:\"CRUD API for entities.\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:21:\"entity.controller.inc\";i:1;s:13:\"entity.db.inc\";i:2;s:19:\"entity.db_faces.inc\";i:3;s:11:\"entity.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/entity/entity/tests/entity_test.module','entity_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:8:\"Profile2\";s:11:\"description\";s:36:\"Supports configurable user profiles.\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:18:\"entity_test.module\";i:1;s:19:\"entity_test.install\";}s:12:\"dependencies\";a:0:{}s:6:\"hidden\";b:1;s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/entity/entity_metadata/entity_metadata.module','entity_metadata','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:15:\"Entity Metadata\";s:11:\"description\";s:87:\"Provides more metadata for entities and a useful API to allow modules making use of it.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:27:\"entity_metadata.wrapper.inc\";i:1;s:24:\"entity_metadata.info.inc\";i:2;s:20:\"entity_metadata.test\";i:3;s:22:\"entity_metadata.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/feedback/feedback.module','feedback','module','',1,0,0,0,'a:10:{s:4:\"name\";s:16:\"Gardens feedback\";s:11:\"description\";s:88:\"Provides a fixed feedback link on the side of site to let users provide feedback to you.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:14:\"Drupal Gardens\";s:5:\"files\";a:1:{i:0;s:15:\"feedback.module\";}s:12:\"dependencies\";a:1:{i:0;s:7:\"contact\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/flexible_blogs/flexible_blogs.module','flexible_blogs','module','',1,0,0,0,'a:11:{s:4:\"name\";s:14:\"Flexible blogs\";s:11:\"description\";s:74:\"Enhances the Blog module with behavior for site-wide and multi-user blogs.\";s:12:\"dependencies\";a:1:{i:0;s:4:\"blog\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:21:\"flexible_blogs.module\";i:1;s:24:\"flexible_blogs.admin.inc\";i:2;s:22:\"flexible_blogs.install\";}s:9:\"configure\";s:25:\"admin/config/content/blog\";s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/follow/follow.module','follow','module','',1,0,7003,0,'a:10:{s:4:\"name\";s:6:\"Follow\";s:11:\"description\";s:59:\"Add sitewide and per user links to social network profiles.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"follow.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/gardens_features/gardens_features.module','gardens_features','module','',1,0,7000,10,'a:10:{s:4:\"name\";s:16:\"Gardens features\";s:11:\"description\";s:91:\"Enables small improvements designed to enhance the default features used in Drupal Gardens.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:23:\"gardens_features.module\";i:1;s:24:\"gardens_features.install\";}s:7:\"package\";s:14:\"Drupal Gardens\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/google_analytics/googleanalytics.module','googleanalytics','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:102:\"Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:10:\"Statistics\";s:9:\"configure\";s:35:\"admin/config/system/googleanalytics\";s:5:\"files\";a:3:{i:0;s:22:\"googleanalytics.module\";i:1;s:25:\"googleanalytics.admin.inc\";i:2;s:23:\"googleanalytics.install\";}s:7:\"version\";s:7:\"7.x-dev\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/head2head/alpha2alpha/alpha2alpha.module','alpha2alpha','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:14:\"Alpha to Alpha\";s:11:\"description\";s:89:\"Provides an upgrade path for alpha versions of Drupal 7 until the first beta is released.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:2:{i:0;s:18:\"alpha2alpha.module\";i:1;s:19:\"alpha2alpha.install\";}s:9:\"configure\";s:36:\"admin/config/development/alpha2alpha\";s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/head2head/head2head.module','head2head','module','',1,0,0,0,'a:12:{s:4:\"name\";s:12:\"HEAD to HEAD\";s:11:\"description\";s:62:\"Provides helpers to upgrade between versions of Drupal 7 HEAD.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:16:\"head2head.module\";i:1;s:17:\"head2head.install\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/htmlpurifier/htmlpurifier.module','htmlpurifier','module','',1,0,6201,0,'a:12:{s:4:\"name\";s:13:\"HTML Purifier\";s:11:\"description\";s:74:\"Filter that removes malicious HTML and ensures standards compliant output.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:20:\"htmlpurifier.install\";i:1;s:19:\"htmlpurifier.module\";i:2;s:22:\"htmlpurifier.admin.inc\";i:3;s:39:\"HTMLPurifier_DefinitionCache_Drupal.php\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/libraries/libraries.module','libraries','module','',1,0,0,0,'a:12:{s:4:\"name\";s:9:\"Libraries\";s:11:\"description\";s:64:\"Allows version dependent and shared usage of external libraries.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:16:\"libraries.module\";i:1;s:20:\"tests/libraries.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/logintoboggan_email_login/logintoboggan_email_login.module','logintoboggan_email_login','module','',1,0,0,0,'a:12:{s:4:\"name\";s:11:\"Email Login\";s:11:\"description\";s:49:\"Allows users to log in using their email address.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:14:\"Login Toboggan\";s:5:\"files\";a:1:{i:0;s:32:\"logintoboggan_email_login.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/mailing_list/mailing_list.module','mailing_list','module','',1,0,6000,0,'a:10:{s:4:\"name\";s:12:\"Mailing List\";s:11:\"description\";s:32:\"Minimalistic mailing list module\";s:7:\"package\";s:4:\"Mail\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:19:\"mailing_list.module\";i:1;s:20:\"mailing_list.install\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/media/media.module','media','module','',1,0,7008,0,'a:12:{s:4:\"name\";s:5:\"Media\";s:11:\"description\";s:27:\"Provides the core Media API\";s:7:\"package\";s:5:\"Media\";s:4:\"core\";s:3:\"7.x\";s:3:\"php\";s:3:\"5.2\";s:5:\"files\";a:8:{i:0;s:13:\"media.install\";i:1;s:12:\"media.module\";i:2;s:15:\"media.admin.inc\";i:3;s:15:\"media.theme.inc\";i:4;s:15:\"media.types.inc\";i:5;s:30:\"MediaReadOnlyStreamWrapper.inc\";i:6;s:21:\"test/media.types.test\";i:7;s:22:\"test/media.entity.test\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/media_gallery/media_gallery.module','media_gallery','module','',1,0,0,0,'a:11:{s:4:\"name\";s:7:\"Gallery\";s:11:\"description\";s:29:\"A flexible gallery of images.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"media\";s:12:\"dependencies\";a:1:{i:1;s:8:\"taxonomy\";}s:5:\"files\";a:4:{i:0;s:20:\"media_gallery.module\";i:1;s:23:\"media_gallery.admin.inc\";i:2;s:24:\"media_gallery.fields.inc\";i:3;s:23:\"media_gallery.theme.inc\";}s:9:\"configure\";s:28:\"admin/config/media/galleries\";s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/mollom/mollom.module','mollom','module','',1,0,7003,0,'a:11:{s:4:\"name\";s:6:\"Mollom\";s:11:\"description\";s:28:\"Protects forms against spam.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:13:\"mollom.module\";i:1;s:16:\"mollom.admin.inc\";i:2;s:16:\"mollom.pages.inc\";i:3;s:14:\"mollom.install\";i:4;s:17:\"tests/mollom.test\";}s:9:\"configure\";s:27:\"admin/config/content/mollom\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/mollom/tests/mollom_test.module','mollom_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:11:\"Mollom Test\";s:11:\"description\";s:40:\"Testing module for Mollom functionality.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:6:\"hidden\";b:1;s:5:\"files\";a:1:{i:0;s:18:\"mollom_test.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/multiform/multiform.module','multiform','module','',1,0,0,0,'a:12:{s:4:\"name\";s:14:\"Multiple forms\";s:11:\"description\";s:59:\"Allows displaying and submitting multiple forms in one form\";s:5:\"files\";a:1:{i:0;s:16:\"multiform.module\";}s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/pathauto/pathauto.module','pathauto','module','',1,0,7,1,'a:12:{s:4:\"name\";s:8:\"Pathauto\";s:11:\"description\";s:95:\"Provides a mechanism for modules to automatically generate aliases for the content they manage.\";s:12:\"dependencies\";a:1:{i:0;s:4:\"path\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:8:{i:0;s:18:\"pathauto.admin.inc\";i:1;s:12:\"pathauto.inc\";i:2;s:15:\"pathauto.module\";i:3;s:17:\"pathauto_node.inc\";i:4;s:21:\"pathauto_taxonomy.inc\";i:5;s:17:\"pathauto_user.inc\";i:6;s:16:\"pathauto.install\";i:7;s:19:\"tests/pathauto.test\";}s:9:\"configure\";s:33:\"admin/config/search/path/pathauto\";s:10:\"recommends\";a:1:{i:0;s:13:\"path_redirect\";}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/plupload/plupload.module','plupload','module','',1,0,0,0,'a:12:{s:4:\"name\";s:27:\"Plupload integration module\";s:11:\"description\";s:28:\"Provides a plupload element.\";s:5:\"files\";a:1:{i:0;s:15:\"plupload.module\";}s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"Media\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/rotating_banner/rotating_banner.module','rotating_banner','module','',1,0,0,0,'a:10:{s:4:\"name\";s:15:\"Rotating banner\";s:11:\"description\";s:52:\"Provides a way to create rotating banners as blocks.\";s:12:\"dependencies\";a:0:{}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:22:\"rotating_banner.module\";i:1;s:23:\"rotating_banner.install\";}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/simpleviews/simpleviews.module','simpleviews','module','',1,0,0,0,'a:12:{s:4:\"name\";s:11:\"SimpleViews\";s:11:\"description\";s:54:\"An easy-to-use tool for bulding content listing pages.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:18:\"simpleviews.module\";i:1;s:19:\"simpleviews.install\";i:2;s:21:\"simpleviews.pages.inc\";i:3;s:29:\"simpleviews.views_default.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/site_verify/site_verify.module','site_verify','module','',1,0,3,0,'a:11:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:57:\"Verifies ownership of a site for use with search engines.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:18:\"site_verify.module\";i:1;s:21:\"site_verify.admin.inc\";i:2;s:19:\"site_verify.install\";}s:9:\"configure\";s:33:\"admin/config/search/verifications\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/sqbs/sqbs.module','sqbs','module','',1,0,7001,0,'a:12:{s:4:\"name\";s:36:\"Simple Query Builder for SimpleViews\";s:11:\"description\";s:59:\"Backend for building simple queries needed for SimpleViews.\";s:12:\"dependencies\";a:0:{}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:11:\"sqbs.module\";i:1;s:9:\"sqbs.test\";i:2;s:12:\"sqbs.install\";}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/styles/contrib/file_styles/file_styles.module','file_styles','module','',1,0,0,0,'a:12:{s:4:\"name\";s:11:\"File Styles\";s:11:\"description\";s:60:\"Allows preset transformation of files and media for display.\";s:7:\"package\";s:6:\"Styles\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:18:\"file_styles.module\";i:1;s:21:\"file_styles.admin.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/styles/contrib/styles_ui/styles_ui.module','styles_ui','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:9:\"Styles UI\";s:11:\"description\";s:44:\"Allows administration of the Styles modules.\";s:7:\"package\";s:6:\"Styles\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:19:\"styles_ui.admin.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/styles/styles.module','styles','module','',1,0,0,0,'a:12:{s:4:\"name\";s:6:\"Styles\";s:11:\"description\";s:44:\"Bundles similar display formatters together.\";s:7:\"package\";s:6:\"Styles\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"styles.module\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/typekit/typekit.module','typekit','module','',0,0,-1,0,'a:10:{s:4:\"name\";s:7:\"Typekit\";s:11:\"description\";s:46:\"Makes it easy to include Typekit in your site.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:15:\"typekit.install\";i:1;s:14:\"typekit.module\";i:2;s:26:\"includes/typekit.admin.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"package\";s:5:\"Other\";s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/wysiwyg/wysiwyg.module','wysiwyg','module','',1,0,6200,0,'a:10:{s:4:\"name\";s:7:\"Wysiwyg\";s:11:\"description\";s:55:\"Allows users to edit contents with client-side editors.\";s:7:\"package\";s:14:\"User interface\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:14:\"wysiwyg.module\";i:1;s:15:\"wysiwyg.install\";i:2;s:17:\"wysiwyg.admin.inc\";i:3;s:18:\"wysiwyg.dialog.inc\";}s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap.module','xmlsitemap','module','',1,0,7201,1,'a:12:{s:4:\"name\";s:11:\"XML sitemap\";s:11:\"description\";s:98:\"Creates an XML sitemap conforming to the <a href=\"http://sitemaps.org/\">sitemaps.org protocol</a>.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:9:{i:0;s:17:\"xmlsitemap.module\";i:1;s:14:\"xmlsitemap.inc\";i:2;s:20:\"xmlsitemap.admin.inc\";i:3;s:20:\"xmlsitemap.drush.inc\";i:4;s:23:\"xmlsitemap.generate.inc\";i:5;s:25:\"xmlsitemap.xmlsitemap.inc\";i:6;s:20:\"xmlsitemap.pages.inc\";i:7;s:18:\"xmlsitemap.install\";i:8;s:15:\"xmlsitemap.test\";}s:10:\"recommends\";a:2:{i:0;s:6:\"dialog\";i:1;s:9:\"robotstxt\";}s:9:\"configure\";s:30:\"admin/config/search/xmlsitemap\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_custom/xmlsitemap_custom.module','xmlsitemap_custom','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:18:\"XML sitemap custom\";s:11:\"description\";s:44:\"Adds user configurable links to the sitemap.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:10:\"xmlsitemap\";}s:5:\"files\";a:4:{i:0;s:24:\"xmlsitemap_custom.module\";i:1;s:27:\"xmlsitemap_custom.admin.inc\";i:2;s:25:\"xmlsitemap_custom.install\";i:3;s:22:\"xmlsitemap_custom.test\";}s:9:\"configure\";s:37:\"admin/config/search/xmlsitemap/custom\";s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_engines/tests/xmlsitemap_engines_test.module','xmlsitemap_engines_test','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:24:\"XML sitemap engines test\";s:11:\"description\";s:47:\"Support module for XML sitemap engines testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:30:\"xmlsitemap_engines_test.module\";}s:7:\"version\";s:7:\"7.0-dev\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_engines/xmlsitemap_engines.module','xmlsitemap_engines','module','',1,0,0,2,'a:13:{s:4:\"name\";s:19:\"XML sitemap engines\";s:11:\"description\";s:37:\"Submit the sitemap to search engines.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:10:\"xmlsitemap\";}s:5:\"files\";a:4:{i:0;s:25:\"xmlsitemap_engines.module\";i:1;s:28:\"xmlsitemap_engines.admin.inc\";i:2;s:26:\"xmlsitemap_engines.install\";i:3;s:29:\"tests/xmlsitemap_engines.test\";}s:10:\"recommends\";a:1:{i:0;s:11:\"site_verify\";}s:9:\"configure\";s:38:\"admin/config/search/xmlsitemap/engines\";s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_i18n/xmlsitemap_i18n.module','xmlsitemap_i18n','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:32:\"XML sitemap internationalization\";s:11:\"description\";s:34:\"Enables multilingual XML sitemaps.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:10:\"xmlsitemap\";i:1;s:4:\"i18n\";}s:5:\"files\";a:2:{i:0;s:22:\"xmlsitemap_i18n.module\";i:1;s:20:\"xmlsitemap_i18n.test\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_menu/xmlsitemap_menu.module','xmlsitemap_menu','module','',1,0,6200,0,'a:11:{s:4:\"name\";s:16:\"XML sitemap menu\";s:11:\"description\";s:36:\"Adds menu item links to the sitemap.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:10:\"xmlsitemap\";i:1;s:4:\"menu\";}s:5:\"files\";a:3:{i:0;s:22:\"xmlsitemap_menu.module\";i:1;s:23:\"xmlsitemap_menu.install\";i:2;s:20:\"xmlsitemap_menu.test\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_node/xmlsitemap_node.module','xmlsitemap_node','module','',1,0,6201,0,'a:11:{s:4:\"name\";s:16:\"XML sitemap node\";s:11:\"description\";s:34:\"Adds content links to the sitemap.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:10:\"xmlsitemap\";}s:5:\"files\";a:3:{i:0;s:22:\"xmlsitemap_node.module\";i:1;s:23:\"xmlsitemap_node.install\";i:2;s:20:\"xmlsitemap_node.test\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_taxonomy/xmlsitemap_taxonomy.module','xmlsitemap_taxonomy','module','',1,0,6201,0,'a:11:{s:4:\"name\";s:20:\"XML sitemap taxonomy\";s:11:\"description\";s:39:\"Add taxonomy term links to the sitemap.\";s:7:\"package\";s:11:\"XML sitemap\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:10:\"xmlsitemap\";i:1;s:8:\"taxonomy\";}s:5:\"files\";a:3:{i:0;s:26:\"xmlsitemap_taxonomy.module\";i:1;s:27:\"xmlsitemap_taxonomy.install\";i:2;s:24:\"xmlsitemap_taxonomy.test\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/all/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.module','xmlsitemap_user','module','',0,0,-1,0,'a:11:{s:4:\"name\";s:16:\"XML sitemap user\";s:11:\"description\";s:39:\"Adds user profile links to the sitemap.\";s:7:\"package\";s:11:\"XML sitemap\";s:12:\"dependencies\";a:1:{i:0;s:10:\"xmlsitemap\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:22:\"xmlsitemap_user.module\";i:1;s:23:\"xmlsitemap_user.install\";i:2;s:20:\"xmlsitemap_user.test\";}s:10:\"dependents\";a:0:{}s:7:\"version\";N;s:3:\"php\";s:5:\"5.2.0\";s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;}');
INSERT INTO `system` VALUES ('sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/acq_kmedialab_session.info','acq_kmedialab_session','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:20:{s:4:\"name\";s:6:\"seo-ri\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:81:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/defaults.css\";s:9:\"style.css\";s:78:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/style.css\";s:11:\"palette.css\";s:80:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/palette.css\";s:10:\"custom.css\";s:79:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/custom.css\";s:12:\"advanced.css\";s:81:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/advanced.css\";s:17:\"font-families.css\";s:86:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:77:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:83:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/acq_seo_lab.info','acq_seo_lab','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:20:{s:4:\"name\";s:7:\"SEO Lab\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/defaults.css\";s:9:\"style.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/style.css\";s:11:\"palette.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/palette.css\";s:10:\"custom.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/custom.css\";s:12:\"advanced.css\";s:71:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/advanced.css\";s:17:\"font-families.css\";s:76:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:73:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_lab/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/acq_seo_ri.info','acq_seo_ri','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:20:{s:4:\"name\";s:6:\"seo-ri\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/defaults.css\";s:9:\"style.css\";s:67:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/style.css\";s:11:\"palette.css\";s:69:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/palette.css\";s:10:\"custom.css\";s:68:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/custom.css\";s:12:\"advanced.css\";s:70:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/advanced.css\";s:17:\"font-families.css\";s:75:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:66:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:6:\"Orange\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:12:\"base_palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:72:\"sites/seo_ri.drupalgardens.com/themes/mythemes/acq_seo_ri/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/barebones/barebones.info','barebones','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:18:{s:4:\"name\";s:10:\"Bare Bones\";s:11:\"description\";s:15:\"Just the facts.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:9:\"barebones\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:5:{s:12:\"defaults.css\";s:36:\"themes/acquia/barebones/defaults.css\";s:11:\"palette.css\";s:35:\"themes/acquia/barebones/palette.css\";s:10:\"custom.css\";s:34:\"themes/acquia/barebones/custom.css\";s:12:\"advanced.css\";s:36:\"themes/acquia/barebones/advanced.css\";s:17:\"font-families.css\";s:41:\"themes/acquia/barebones/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:32:\"themes/acquia/barebones/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8CCDAEC0-9178-59FF-D77BE8D82070696B\";s:4:\"name\";s:10:\"Bare Bones\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:9:\"Dark Gray\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"551a8b\";s:4:\"name\";s:11:\"HTML Purple\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:11:\"Medium Gray\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"0000ee\";s:4:\"name\";s:9:\"HTML Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:4:\"Gray\";}}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:38:\"themes/acquia/barebones/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/broadway/broadway.info','broadway','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:8:\"Broadway\";s:11:\"description\";s:75:\"A comfortable, dark theme with a clean layout and sophisticated typography.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:8:\"broadway\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/broadway/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/broadway/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/broadway/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/broadway/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/broadway/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/broadway/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/broadway/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA0F7-E1CB-5AD0-04E2F8C20CF48645\";s:4:\"name\";s:8:\"Broadway\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"e0db52\";s:4:\"name\";s:4:\"Type\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"c2bf70\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"93a9c0\";s:4:\"name\";s:11:\"Muted Green\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"aaaaaa\";s:4:\"name\";s:12:\"Bright Green\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:4:\"Grey\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:37:\"themes/acquia/broadway/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/builderbase/builderbase.info','builderbase','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:6:\"Minima\";s:11:\"description\";s:83:\"Minimal and clean- excellent as-is, or as the starting point for your own creation.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:11:\"builderbase\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:38:\"themes/acquia/builderbase/defaults.css\";s:9:\"style.css\";s:35:\"themes/acquia/builderbase/style.css\";s:11:\"palette.css\";s:37:\"themes/acquia/builderbase/palette.css\";s:10:\"custom.css\";s:36:\"themes/acquia/builderbase/custom.css\";s:12:\"advanced.css\";s:38:\"themes/acquia/builderbase/advanced.css\";s:17:\"font-families.css\";s:43:\"themes/acquia/builderbase/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:34:\"themes/acquia/builderbase/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA183-A2BD-21A5-8C16817D4AC0B9C6\";s:4:\"name\";s:6:\"Minima\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:5:\"Black\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"ff7800\";s:4:\"name\";s:6:\"Orange\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:11:\"Grey Tint 1\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"999999\";s:4:\"name\";s:11:\"Grey Tint 2\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:11:\"Grey Tint 3\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:40:\"themes/acquia/builderbase/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/campaign/campaign.info','campaign','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:8:\"Campaign\";s:11:\"description\";s:32:\"Designed for events, microsites.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:8:\"campaign\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:35:\"themes/acquia/campaign/defaults.css\";s:9:\"style.css\";s:32:\"themes/acquia/campaign/style.css\";s:11:\"palette.css\";s:34:\"themes/acquia/campaign/palette.css\";s:10:\"custom.css\";s:33:\"themes/acquia/campaign/custom.css\";s:12:\"advanced.css\";s:35:\"themes/acquia/campaign/advanced.css\";s:17:\"font-families.css\";s:40:\"themes/acquia/campaign/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:31:\"themes/acquia/campaign/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:9:\"copyright\";s:9:\"Copyright\";s:11:\"page_bottom\";s:10:\"Below page\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:19:\"body-layout-fixed-c\";s:6:\"forum*\";s:19:\"body-layout-fixed-c\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA107-EE01-35ED-3936AFE868E23B7A\";s:4:\"name\";s:8:\"Campaign\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"212121\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"a42470\";s:4:\"name\";s:11:\"Dark Purple\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"444444\";s:4:\"name\";s:6:\"Purple\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"cd1069\";s:4:\"name\";s:12:\"Light Purple\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"e1267c\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"4dabf5\";s:4:\"name\";s:9:\"Dark Gray\";}}s:11:\"selectorMap\";a:4:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:37:\"themes/acquia/campaign/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/impact/impact.info','impact','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:6:\"Impact\";s:11:\"description\";s:32:\"Designed for events, microsites.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"impact\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/impact/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/impact/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/impact/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/impact/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/impact/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/impact/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/impact/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:19:\"body-layout-fixed-c\";s:6:\"forum*\";s:19:\"body-layout-fixed-c\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA135-0AEB-F0C9-F773BC173B064C48\";s:4:\"name\";s:6:\"Impact\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"121212\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"62a734\";s:4:\"name\";s:5:\"Green\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"00a5ff\";s:4:\"name\";s:11:\"Light Green\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"cccccc\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"d3fec1\";s:4:\"name\";s:10:\"Light Blue\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"f5f5f5\";s:4:\"name\";s:4:\"Grey\";}}s:11:\"selectorMap\";a:6:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:26:\"#sidebar-a .block .content\";s:37:\"#sidebar-a .block .content-with-title\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/impact/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/kenwood/kenwood.info','kenwood','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:7:\"Kenwood\";s:11:\"description\";s:62:\"An elegant and traditional design with subtle floral patterns.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:7:\"kenwood\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:34:\"themes/acquia/kenwood/defaults.css\";s:9:\"style.css\";s:31:\"themes/acquia/kenwood/style.css\";s:11:\"palette.css\";s:33:\"themes/acquia/kenwood/palette.css\";s:10:\"custom.css\";s:32:\"themes/acquia/kenwood/custom.css\";s:12:\"advanced.css\";s:34:\"themes/acquia/kenwood/advanced.css\";s:17:\"font-families.css\";s:39:\"themes/acquia/kenwood/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:30:\"themes/acquia/kenwood/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA164-ECCA-0E4E-BE824CA8DF22D011\";s:4:\"name\";s:7:\"Kenwood\";s:6:\"author\";s:6:\"Acquia\";s:1:\"a\";a:1:{s:3:\"hex\";s:6:\"272a0f\";}s:1:\"b\";a:1:{s:3:\"hex\";s:6:\"63591b\";}s:1:\"c\";a:1:{s:3:\"hex\";s:6:\"646a2c\";}s:1:\"d\";a:1:{s:3:\"hex\";s:6:\"bbab56\";}s:1:\"e\";a:1:{s:3:\"hex\";s:6:\"dfdb92\";}s:5:\"black\";a:1:{s:3:\"hex\";s:6:\"2a1911\";}s:5:\"white\";a:1:{s:3:\"hex\";s:6:\"FFFFFF\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:36:\"themes/acquia/kenwood/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/sonoma/sonoma.info','sonoma','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:6:\"Sonoma\";s:11:\"description\";s:51:\"Clean, modern and professional, but still creative.\";s:7:\"version\";s:3:\"1.4\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"sonoma\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sonoma/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sonoma/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sonoma/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sonoma/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sonoma/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sonoma/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sonoma/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA1B2-D33B-10DC-EE9ADC855F128DF1\";s:4:\"name\";s:6:\"Sonoma\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"ffffff\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"23496b\";s:4:\"name\";s:12:\"Primary Blue\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:14:\"Secondary Blue\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"2c70c5\";s:4:\"name\";s:17:\"Heading Dark Blue\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"8bbfff\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"eeeeee\";s:4:\"name\";s:12:\"Lighter Grey\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:40:\"#navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:24:\"#banner-region .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:24:\"#banner-region .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/sonoma/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/acquia/sparks/sparks.info','sparks','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{s:4:\"name\";s:6:\"Sparks\";s:11:\"description\";s:53:\"Kinda relaxed, and yet kinda formal. Definitely cool.\";s:7:\"version\";s:3:\"1.3\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base_theme\";s:6:\"sparks\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:6:{s:12:\"defaults.css\";s:33:\"themes/acquia/sparks/defaults.css\";s:9:\"style.css\";s:30:\"themes/acquia/sparks/style.css\";s:11:\"palette.css\";s:32:\"themes/acquia/sparks/palette.css\";s:10:\"custom.css\";s:31:\"themes/acquia/sparks/custom.css\";s:12:\"advanced.css\";s:33:\"themes/acquia/sparks/advanced.css\";s:17:\"font-families.css\";s:38:\"themes/acquia/sparks/font-families.css\";}}s:7:\"scripts\";a:1:{s:8:\"local.js\";s:29:\"themes/acquia/sparks/local.js\";}s:7:\"regions\";a:23:{s:8:\"page_top\";s:10:\"Above page\";s:15:\"preheader_first\";s:15:\"Preheader first\";s:16:\"preheader_second\";s:16:\"Preheader second\";s:6:\"header\";s:6:\"Header\";s:10:\"navigation\";s:10:\"Navigation\";s:9:\"highlight\";s:19:\"Highlighted content\";s:4:\"help\";s:11:\"System help\";s:6:\"banner\";s:6:\"Banner\";s:16:\"precontent_first\";s:16:\"Precontent first\";s:17:\"precontent_second\";s:17:\"Precontent second\";s:16:\"precontent_third\";s:16:\"Precontent third\";s:7:\"content\";s:12:\"Page content\";s:9:\"sidebar_a\";s:9:\"Sidebar A\";s:9:\"sidebar_b\";s:9:\"Sidebar B\";s:15:\"prefooter_first\";s:15:\"Prefooter first\";s:16:\"prefooter_second\";s:16:\"Prefooter second\";s:15:\"prefooter_third\";s:15:\"Prefooter third\";s:12:\"footer_first\";s:12:\"Footer first\";s:13:\"footer_second\";s:13:\"Footer second\";s:11:\"page_bottom\";s:10:\"Below page\";s:9:\"copyright\";s:9:\"Copyright\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"configurations\";a:1:{s:5:\"fixed\";a:3:{s:5:\"3-col\";a:3:{s:3:\"abc\";s:7:\"default\";s:3:\"acb\";s:7:\"default\";s:3:\"cab\";s:7:\"default\";}s:5:\"2-col\";a:4:{s:2:\"ac\";s:7:\"default\";s:2:\"bc\";s:7:\"default\";s:2:\"ca\";s:7:\"default\";s:2:\"cb\";s:7:\"default\";}s:5:\"1-col\";a:1:{s:1:\"c\";s:7:\"default\";}}}s:6:\"layout\";a:3:{s:8:\"<global>\";s:21:\"body-layout-fixed-acb\";s:5:\"forum\";s:20:\"body-layout-fixed-ac\";s:6:\"forum*\";s:20:\"body-layout-fixed-ac\";}s:7:\"palette\";a:10:{s:2:\"id\";s:35:\"8A0AA1C2-0FBD-DDF0-3F517B0B188D29A7\";s:4:\"name\";s:6:\"Sparks\";s:6:\"author\";s:6:\"Acquia\";s:5:\"white\";a:2:{s:3:\"hex\";s:6:\"FFFFFF\";s:4:\"name\";s:5:\"White\";}s:5:\"black\";a:2:{s:3:\"hex\";s:6:\"000000\";s:4:\"name\";s:8:\"Charcoal\";}s:1:\"a\";a:2:{s:3:\"hex\";s:6:\"1d1d2a\";s:4:\"name\";s:10:\"Slate Blue\";}s:1:\"b\";a:2:{s:3:\"hex\";s:6:\"333333\";s:4:\"name\";s:11:\"Olive Green\";}s:1:\"c\";a:2:{s:3:\"hex\";s:6:\"666666\";s:4:\"name\";s:13:\"Dark Charcoal\";}s:1:\"d\";a:2:{s:3:\"hex\";s:6:\"7b7b8b\";s:4:\"name\";s:10:\"Light Grey\";}s:1:\"e\";a:2:{s:3:\"hex\";s:6:\"707969\";s:4:\"name\";s:5:\"Black\";}}s:11:\"selectorMap\";a:5:{s:15:\".active .active\";s:21:\".tabs .tabs .active a\";s:10:\".tabs li a\";s:16:\".tabs .tabs li a\";s:46:\"#navigation .block .menu .active-trail .active\";s:46:\".stack-navigation .block .menu .active-trail a\";s:43:\"#banner-region .active .rb-background-image\";s:23:\".stack-banner .rb-slide\";s:42:\"#banner-region .block .rb-slides .rb-slide\";s:23:\".stack-banner .rb-slide\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:35:\"themes/acquia/sparks/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/bartik/bartik.info','bartik','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:16:{s:4:\"name\";s:6:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:28:\"themes/bartik/css/layout.css\";s:13:\"css/style.css\";s:27:\"themes/bartik/css/style.css\";s:14:\"css/colors.css\";s:28:\"themes/bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:27:\"themes/bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:17:\"scripts/search.js\";s:31:\"themes/bartik/scripts/search.js\";}s:7:\"regions\";a:19:{s:6:\"header\";s:6:\"Header\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:11:\"highlighted\";s:11:\"Highlighted\";s:8:\"featured\";s:8:\"Featured\";s:7:\"content\";s:7:\"Content\";s:13:\"sidebar_first\";s:13:\"Sidebar first\";s:14:\"sidebar_second\";s:14:\"Sidebar second\";s:14:\"triptych_first\";s:14:\"Triptych first\";s:15:\"triptych_middle\";s:15:\"Triptych middle\";s:13:\"triptych_last\";s:13:\"Triptych last\";s:18:\"footer_firstcolumn\";s:19:\"Footer first column\";s:19:\"footer_secondcolumn\";s:20:\"Footer second column\";s:18:\"footer_thirdcolumn\";s:19:\"Footer third column\";s:19:\"footer_fourthcolumn\";s:20:\"Footer fourth column\";s:6:\"footer\";s:6:\"Footer\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:28:\"themes/bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}');
INSERT INTO `system` VALUES ('themes/garland/garland.info','garland','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:16:{s:4:\"name\";s:7:\"Garland\";s:11:\"description\";s:111:\"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:9:\"style.css\";s:24:\"themes/garland/style.css\";}s:5:\"print\";a:1:{s:9:\"print.css\";s:24:\"themes/garland/print.css\";}}s:8:\"settings\";a:1:{s:13:\"garland_width\";s:5:\"fluid\";}s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:29:\"themes/garland/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}');
INSERT INTO `system` VALUES ('themes/seven/seven.info','seven','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:16:{s:4:\"name\";s:5:\"Seven\";s:11:\"description\";s:65:\"A simple one-column, tableless, fluid width administration theme.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:6:\"screen\";a:2:{s:9:\"reset.css\";s:22:\"themes/seven/reset.css\";s:9:\"style.css\";s:22:\"themes/seven/style.css\";}}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"1\";}s:7:\"regions\";a:7:{s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:14:\"regions_hidden\";a:3:{i:0;s:13:\"sidebar_first\";i:1;s:8:\"page_top\";i:2;s:11:\"page_bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/seven/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}');
INSERT INTO `system` VALUES ('themes/stark/stark.info','stark','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:15:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal\'s default HTML markup and CSS styles. To learn how to build your own theme and override Drupal\'s default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:7:\"7.0-dev\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:7:\"scripts\";a:0:{}}');
INSERT INTO `system` VALUES ('themes/tests/test_theme/test_theme.info','test_theme','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:14:{s:4:\"name\";s:10:\"Test theme\";s:11:\"description\";s:34:\"Theme for testing the theme system\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:38:\"themes/tests/test_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}');
INSERT INTO `system` VALUES ('themes/tests/update_test_basetheme/update_test_basetheme.info','update_test_basetheme','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:14:{s:4:\"name\";s:22:\"Update test base theme\";s:11:\"description\";s:63:\"Test theme which acts as a base theme for other test subthemes.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:49:\"themes/tests/update_test_basetheme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}');
INSERT INTO `system` VALUES ('themes/tests/update_test_subtheme/update_test_subtheme.info','update_test_subtheme','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:15:{s:4:\"name\";s:20:\"Update test subtheme\";s:11:\"description\";s:62:\"Test theme which uses update_test_basetheme as the base theme.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:10:\"base theme\";s:21:\"update_test_basetheme\";s:6:\"hidden\";b:1;s:7:\"regions\";a:11:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:14:\"Dashboard main\";s:17:\"dashboard_sidebar\";s:17:\"Dashboard sidebar\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:48:\"themes/tests/update_test_subtheme/screenshot.png\";s:3:\"php\";s:5:\"5.2.0\";s:15:\"overlay_regions\";a:4:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:7:\"content\";i:3;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}s:11:\"stylesheets\";a:0:{}s:7:\"scripts\";a:0:{}}');
/*!40000 ALTER TABLE `system` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `taxonomy_index`
--
DROP TABLE IF EXISTS `taxonomy_index`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `taxonomy_index` (
`nid` int(10) unsigned NOT NULL default '0' COMMENT 'The node.nid this record tracks.',
`tid` int(10) unsigned NOT NULL default '0' COMMENT 'The term ID.',
`sticky` tinyint(4) default '0' COMMENT 'Boolean indicating whether the node is sticky.',
`created` int(10) unsigned NOT NULL default '0' COMMENT 'The Unix timestamp when the node was created.',
KEY `term_node` (`tid`,`sticky`,`created`),
KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains denormalized information about node/term...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `taxonomy_index`
--
LOCK TABLES `taxonomy_index` WRITE;
/*!40000 ALTER TABLE `taxonomy_index` DISABLE KEYS */;
INSERT INTO `taxonomy_index` VALUES (16,6,0,1282630547);
INSERT INTO `taxonomy_index` VALUES (21,11,0,1282630548);
INSERT INTO `taxonomy_index` VALUES (46,16,0,1282630553);
/*!40000 ALTER TABLE `taxonomy_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `taxonomy_term_data`
--
DROP TABLE IF EXISTS `taxonomy_term_data`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `taxonomy_term_data` (
`tid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique term ID.',
`vid` int(10) unsigned NOT NULL default '0' COMMENT 'The taxonomy_vocabulary.vid of the vocabulary to which the term is assigned.',
`name` varchar(255) NOT NULL default '' COMMENT 'The term name.',
`description` longtext COMMENT 'A description of the term.',
`format` smallint(6) NOT NULL default '0' COMMENT 'The filter_format.format of the description.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of this term in relation to other terms.',
PRIMARY KEY (`tid`),
KEY `taxonomy_tree` (`vid`,`weight`,`name`),
KEY `vid_name` (`vid`,`name`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='Stores term information.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `taxonomy_term_data`
--
LOCK TABLES `taxonomy_term_data` WRITE;
/*!40000 ALTER TABLE `taxonomy_term_data` DISABLE KEYS */;
INSERT INTO `taxonomy_term_data` VALUES (6,6,'General discussion','Post topics about our product here.',0,-2);
INSERT INTO `taxonomy_term_data` VALUES (11,6,'Suggestions','Suggest ideas to enhance our product here.',0,-1);
INSERT INTO `taxonomy_term_data` VALUES (16,11,'Galleries','',1,0);
/*!40000 ALTER TABLE `taxonomy_term_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `taxonomy_term_hierarchy`
--
DROP TABLE IF EXISTS `taxonomy_term_hierarchy`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `taxonomy_term_hierarchy` (
`tid` int(10) unsigned NOT NULL default '0' COMMENT 'Primary Key: The taxonomy_term_data.tid of the term.',
`parent` int(10) unsigned NOT NULL default '0' COMMENT 'Primary Key: The taxonomy_term_data.tid of the term’s parent. 0 indicates no parent.',
PRIMARY KEY (`tid`,`parent`),
KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the hierarchical relationship between terms.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `taxonomy_term_hierarchy`
--
LOCK TABLES `taxonomy_term_hierarchy` WRITE;
/*!40000 ALTER TABLE `taxonomy_term_hierarchy` DISABLE KEYS */;
INSERT INTO `taxonomy_term_hierarchy` VALUES (6,0);
INSERT INTO `taxonomy_term_hierarchy` VALUES (11,0);
INSERT INTO `taxonomy_term_hierarchy` VALUES (16,0);
/*!40000 ALTER TABLE `taxonomy_term_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `taxonomy_vocabulary`
--
DROP TABLE IF EXISTS `taxonomy_vocabulary`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `taxonomy_vocabulary` (
`vid` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary Key: Unique vocabulary ID.',
`name` varchar(255) NOT NULL default '' COMMENT 'Name of the vocabulary.',
`machine_name` varchar(255) NOT NULL default '' COMMENT 'The vocabulary machine name.',
`description` longtext COMMENT 'Description of the vocabulary.',
`hierarchy` tinyint(3) unsigned NOT NULL default '0' COMMENT 'The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)',
`module` varchar(255) NOT NULL default '' COMMENT 'The module which created the vocabulary.',
`weight` int(11) NOT NULL default '0' COMMENT 'The weight of this vocabulary in relation to other vocabularies.',
PRIMARY KEY (`vid`),
UNIQUE KEY `machine_name` (`machine_name`),
KEY `list` (`weight`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Stores vocabulary information.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `taxonomy_vocabulary`
--
LOCK TABLES `taxonomy_vocabulary` WRITE;
/*!40000 ALTER TABLE `taxonomy_vocabulary` DISABLE KEYS */;
INSERT INTO `taxonomy_vocabulary` VALUES (1,'Tags','tags','Use tags to group articles on similar topics into categories.',0,'taxonomy',0);
INSERT INTO `taxonomy_vocabulary` VALUES (6,'Forums','forums','Forum navigation vocabulary',1,'forum',-10);
INSERT INTO `taxonomy_vocabulary` VALUES (11,'Gallery collections','gallery_collections','Groups of rich media galleries',0,'taxonomy',0);
/*!40000 ALTER TABLE `taxonomy_vocabulary` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `url_alias`
--
DROP TABLE IF EXISTS `url_alias`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `url_alias` (
`pid` int(10) unsigned NOT NULL auto_increment COMMENT 'A unique path alias identifier.',
`source` varchar(255) NOT NULL default '' COMMENT 'The Drupal path this alias is for; e.g. node/12.',
`alias` varchar(255) NOT NULL default '' COMMENT 'The alias for this path; e.g. title-of-the-story.',
`language` varchar(12) NOT NULL default '' COMMENT 'The language this alias is for; if blank, the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.',
PRIMARY KEY (`pid`),
KEY `alias_language_pid` (`alias`,`language`,`pid`),
KEY `source_language_pid` (`source`,`language`,`pid`)
) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8 COMMENT='A list of URL aliases for Drupal paths; a user may visit...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `url_alias`
--
LOCK TABLES `url_alias` WRITE;
/*!40000 ALTER TABLE `url_alias` DISABLE KEYS */;
INSERT INTO `url_alias` VALUES (1,'user/6','users/kmedialab','und');
INSERT INTO `url_alias` VALUES (6,'node/1','about-us','und');
INSERT INTO `url_alias` VALUES (11,'node/6','content/another-sample-blog-post','und');
INSERT INTO `url_alias` VALUES (16,'node/11','content/sample-blog-post','und');
INSERT INTO `url_alias` VALUES (26,'forum/6','forums/general-discussion','und');
INSERT INTO `url_alias` VALUES (31,'node/16','content/sample-forum-topic-general-discussion-forum','und');
INSERT INTO `url_alias` VALUES (36,'forum/11','forums/suggestions','und');
INSERT INTO `url_alias` VALUES (41,'node/21','content/sample-forum-topic-suggestions-forum','und');
INSERT INTO `url_alias` VALUES (46,'node/26','content/first-news-item','und');
INSERT INTO `url_alias` VALUES (51,'node/31','content/second-news-item','und');
INSERT INTO `url_alias` VALUES (56,'node/36','content/why-should-i-use-drupal-gardens','und');
INSERT INTO `url_alias` VALUES (61,'node/41','content/how-would-i-create-my-own-question-and-answer','und');
INSERT INTO `url_alias` VALUES (66,'taxonomy/term/16','galleries','und');
INSERT INTO `url_alias` VALUES (71,'node/46','content/sample-gallery','und');
INSERT INTO `url_alias` VALUES (76,'node/51','content/product-description','und');
INSERT INTO `url_alias` VALUES (81,'node/56','content/sample-testimonial-1','und');
INSERT INTO `url_alias` VALUES (86,'node/61','content/sample-testimonial-2','und');
INSERT INTO `url_alias` VALUES (91,'node/66','content/sample-testimonial-3','und');
INSERT INTO `url_alias` VALUES (96,'node/71','content/example-customer-1','und');
INSERT INTO `url_alias` VALUES (101,'node/76','content/example-customer-2','und');
INSERT INTO `url_alias` VALUES (106,'user/1','users/gardens-admin','und');
/*!40000 ALTER TABLE `url_alias` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users` (
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'Primary Key: Unique user ID.',
`name` varchar(60) NOT NULL default '' COMMENT 'Unique user name.',
`pass` varchar(128) NOT NULL default '' COMMENT 'User’s password (hashed).',
`mail` varchar(254) default '' COMMENT 'User’s e-mail address.',
`theme` varchar(255) NOT NULL default '' COMMENT 'User’s default theme.',
`signature` varchar(255) NOT NULL default '' COMMENT 'User’s signature.',
`signature_format` smallint(6) NOT NULL default '0' COMMENT 'The filter_format.format of the signature.',
`created` int(11) NOT NULL default '0' COMMENT 'Timestamp for when user was created.',
`access` int(11) NOT NULL default '0' COMMENT 'Timestamp for previous time user accessed the site.',
`login` int(11) NOT NULL default '0' COMMENT 'Timestamp for user’s last login.',
`status` tinyint(4) NOT NULL default '0' COMMENT 'Whether the user is active(1) or blocked(0).',
`timezone` varchar(32) default NULL COMMENT 'User’s time zone.',
`language` varchar(12) NOT NULL default '' COMMENT 'User’s default language.',
`picture` int(11) NOT NULL default '0' COMMENT 'Foreign key: file_managed.fid of user’s picture.',
`init` varchar(254) default '' COMMENT 'E-mail address used for initial account creation.',
`data` longblob COMMENT 'A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future...',
PRIMARY KEY (`uid`),
UNIQUE KEY `name` (`name`),
KEY `access` (`access`),
KEY `created` (`created`),
KEY `mail` (`mail`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user data.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (0,'','','','','',0,0,0,0,0,NULL,'',0,'',NULL);
INSERT INTO `users` VALUES (1,'Gardens admin','$S$Cz91NocRvNyfB1G75R/y0rrqkgcVuG2nLjbyNNr00cfHQio2Tih4','support@acquia.com','','',0,1282630544,0,1282630544,1,NULL,'',0,'support@acquia.com','a:1:{s:7:\"contact\";i:1;}');
INSERT INTO `users` VALUES (6,'kmedialab','$S$C90rsxPAfUwtOU9HGPpXzbGv6Fci5LvyANIz0.lF7jAYcrYk0btE','kmedialab@gmail.com','acq_kmedialab_session','',0,1282673758,1283192204,1283182574,1,NULL,'',0,'kmedialab@gmail.com','a:2:{s:7:\"contact\";i:1;s:21:\"themebuilder_settings\";a:2:{s:10:\"powerTheme\";b:1;s:15:\"naturalLanguage\";b:0;}}');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users_roles`
--
DROP TABLE IF EXISTS `users_roles`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_roles` (
`uid` int(10) unsigned NOT NULL default '0' COMMENT 'Primary Key: users.uid for user.',
`rid` int(10) unsigned NOT NULL default '0' COMMENT 'Primary Key: role.rid for role.',
PRIMARY KEY (`uid`,`rid`),
KEY `rid` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to roles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `users_roles`
--
LOCK TABLES `users_roles` WRITE;
/*!40000 ALTER TABLE `users_roles` DISABLE KEYS */;
INSERT INTO `users_roles` VALUES (1,11);
INSERT INTO `users_roles` VALUES (6,11);
INSERT INTO `users_roles` VALUES (6,16);
/*!40000 ALTER TABLE `users_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `variable`
--
DROP TABLE IF EXISTS `variable`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `variable` (
`name` varchar(128) NOT NULL default '' COMMENT 'The name of the variable.',
`value` longblob NOT NULL COMMENT 'The value of the variable.',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Named variable/value pairs created by Drupal core or any...';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `variable`
--
LOCK TABLES `variable` WRITE;
/*!40000 ALTER TABLE `variable` DISABLE KEYS */;
INSERT INTO `variable` VALUES ('acquia_gardens_gardener_url','s:28:\"http://www.drupalgardens.com\";');
INSERT INTO `variable` VALUES ('acquia_gardens_site_owner','s:1:\"6\";');
INSERT INTO `variable` VALUES ('addthis_display_in_links','b:1;');
INSERT INTO `variable` VALUES ('addthis_nodetype_customer','i:0;');
INSERT INTO `variable` VALUES ('addthis_nodetype_faq_item','i:0;');
INSERT INTO `variable` VALUES ('addthis_nodetype_page','i:0;');
INSERT INTO `variable` VALUES ('addthis_nodetype_testimonial','i:0;');
INSERT INTO `variable` VALUES ('addthis_options','s:72:\"twitter, facebook, favorites, email, digg, delicious, google, live, more\";');
INSERT INTO `variable` VALUES ('admin_theme','s:5:\"seven\";');
INSERT INTO `variable` VALUES ('blog_block_count','i:5;');
INSERT INTO `variable` VALUES ('cache','i:1;');
INSERT INTO `variable` VALUES ('clean_url','b:1;');
INSERT INTO `variable` VALUES ('comment_anonymous_article','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_blog','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_customer','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_faq_item','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_forum','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_media_gallery','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_page','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_poll','i:2;');
INSERT INTO `variable` VALUES ('comment_anonymous_testimonial','i:2;');
INSERT INTO `variable` VALUES ('comment_customer','i:0;');
INSERT INTO `variable` VALUES ('comment_faq_item','i:0;');
INSERT INTO `variable` VALUES ('comment_media_gallery','i:0;');
INSERT INTO `variable` VALUES ('comment_notify_node_types','a:9:{s:4:\"poll\";s:4:\"poll\";s:7:\"article\";s:7:\"article\";s:4:\"page\";s:4:\"page\";s:4:\"blog\";s:4:\"blog\";s:13:\"media_gallery\";s:13:\"media_gallery\";s:5:\"forum\";s:5:\"forum\";s:8:\"customer\";s:8:\"customer\";s:8:\"faq_item\";s:8:\"faq_item\";s:11:\"testimonial\";s:11:\"testimonial\";}');
INSERT INTO `variable` VALUES ('comment_page','i:0;');
INSERT INTO `variable` VALUES ('comment_poll','i:0;');
INSERT INTO `variable` VALUES ('comment_testimonial','i:0;');
INSERT INTO `variable` VALUES ('cron_key','s:43:\"CSAnENLovry0PLeiLaVpYrUrEc6PZBQ3PXcHJMfHuRw\";');
INSERT INTO `variable` VALUES ('cron_last','i:1283189500;');
INSERT INTO `variable` VALUES ('cron_safe_threshold','s:4:\"3600\";');
INSERT INTO `variable` VALUES ('css_js_query_string','s:6:\"l7z9k7\";');
INSERT INTO `variable` VALUES ('date_default_timezone','s:3:\"UTC\";');
INSERT INTO `variable` VALUES ('default_nodes_main','s:2:\"10\";');
INSERT INTO `variable` VALUES ('drupal_http_request_fails','b:0;');
INSERT INTO `variable` VALUES ('drupal_private_key','s:43:\"cYG2S91BVAkJtxQyuH-4Mb0XxgBevZiWy8L6Z7gbWEU\";');
INSERT INTO `variable` VALUES ('error_level','i:0;');
INSERT INTO `variable` VALUES ('field_bundle_settings','a:2:{s:5:\"media\";a:4:{s:7:\"default\";a:2:{s:10:\"view_modes\";a:5:{s:13:\"media_preview\";a:1:{s:15:\"custom_settings\";i:1;}s:14:\"media_original\";a:1:{s:15:\"custom_settings\";i:1;}s:10:\"media_link\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_small\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_large\";a:1:{s:15:\"custom_settings\";i:1;}}s:12:\"extra_fields\";a:0:{}}s:5:\"image\";a:2:{s:10:\"view_modes\";a:10:{s:13:\"media_preview\";a:1:{s:15:\"custom_settings\";i:1;}s:14:\"media_original\";a:1:{s:15:\"custom_settings\";i:1;}s:10:\"media_link\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_small\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_large\";a:1:{s:15:\"custom_settings\";i:1;}s:23:\"media_gallery_thumbnail\";a:1:{s:15:\"custom_settings\";b:1;}s:22:\"media_gallery_lightbox\";a:1:{s:15:\"custom_settings\";b:1;}s:20:\"media_gallery_detail\";a:1:{s:15:\"custom_settings\";b:1;}s:29:\"media_gallery_block_thumbnail\";a:1:{s:15:\"custom_settings\";b:1;}s:34:\"media_gallery_collection_thumbnail\";a:1:{s:15:\"custom_settings\";b:1;}}s:12:\"extra_fields\";a:0:{}}s:5:\"audio\";a:2:{s:10:\"view_modes\";a:5:{s:13:\"media_preview\";a:1:{s:15:\"custom_settings\";i:1;}s:14:\"media_original\";a:1:{s:15:\"custom_settings\";i:1;}s:10:\"media_link\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_small\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_large\";a:1:{s:15:\"custom_settings\";i:1;}}s:12:\"extra_fields\";a:0:{}}s:5:\"video\";a:2:{s:10:\"view_modes\";a:5:{s:13:\"media_preview\";a:1:{s:15:\"custom_settings\";i:1;}s:14:\"media_original\";a:1:{s:15:\"custom_settings\";i:1;}s:10:\"media_link\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_small\";a:1:{s:15:\"custom_settings\";i:1;}s:11:\"media_large\";a:1:{s:15:\"custom_settings\";i:1;}}s:12:\"extra_fields\";a:0:{}}}s:4:\"node\";a:1:{s:13:\"media_gallery\";a:2:{s:10:\"view_modes\";a:2:{s:19:\"media_gallery_block\";a:1:{s:15:\"custom_settings\";b:1;}s:4:\"full\";a:1:{s:15:\"custom_settings\";b:1;}}s:12:\"extra_fields\";a:1:{s:7:\"display\";a:1:{s:15:\"add_images_link\";a:4:{s:4:\"full\";a:2:{s:6:\"weight\";i:1;s:7:\"visible\";b:1;}s:7:\"default\";a:2:{s:7:\"visible\";b:0;s:6:\"weight\";i:1;}s:6:\"teaser\";a:2:{s:7:\"visible\";b:0;s:6:\"weight\";i:1;}s:19:\"media_gallery_block\";a:2:{s:7:\"visible\";b:0;s:6:\"weight\";i:1;}}}}}}}');
INSERT INTO `variable` VALUES ('field_sql_storage_comment_etid','s:1:\"6\";');
INSERT INTO `variable` VALUES ('field_sql_storage_media_etid','s:2:\"11\";');
INSERT INTO `variable` VALUES ('field_sql_storage_node_etid','s:1:\"1\";');
INSERT INTO `variable` VALUES ('field_sql_storage_taxonomy_term_etid','s:2:\"16\";');
INSERT INTO `variable` VALUES ('file_directory_temp','s:4:\"/tmp\";');
INSERT INTO `variable` VALUES ('filter_fallback_format','s:1:\"1\";');
INSERT INTO `variable` VALUES ('first_login','a:0:{}');
INSERT INTO `variable` VALUES ('forum_containers','a:0:{}');
INSERT INTO `variable` VALUES ('forum_nav_vocabulary','s:1:\"6\";');
INSERT INTO `variable` VALUES ('gardens_client_site_verification_status','a:7:{s:12:\"site_created\";s:10:\"1282673753\";s:14:\"nag_email_sent\";s:10:\"1283105945\";s:8:\"verified\";s:10:\"1283106012\";s:9:\"drop_dead\";s:10:\"1283537753\";s:14:\"drop_dead_date\";s:17:\"September 3, 2010\";s:12:\"last_updated\";i:1283182575;s:13:\"message_muted\";i:1282674536;}');
INSERT INTO `variable` VALUES ('gardens_safe_html_format','s:2:\"16\";');
INSERT INTO `variable` VALUES ('gardens_site_owner_role','s:2:\"16\";');
INSERT INTO `variable` VALUES ('htmlpurifier_version_current','s:5:\"4.1.1\";');
INSERT INTO `variable` VALUES ('htmlpurifier_version_ours','s:5:\"4.1.1\";');
INSERT INTO `variable` VALUES ('include_site_name','i:1;');
INSERT INTO `variable` VALUES ('include_site_slogan','i:0;');
INSERT INTO `variable` VALUES ('install_task','s:4:\"done\";');
INSERT INTO `variable` VALUES ('install_time','i:1282630544;');
INSERT INTO `variable` VALUES ('kmedialab_tb_state','s:21:\"themebuilder-advanced\";');
INSERT INTO `variable` VALUES ('mailing_list_subscription_message','s:63:\"Thank you for you interest, \"%name <%mail> has been subscribed.\";');
INSERT INTO `variable` VALUES ('media_gallery_collection_vid','s:2:\"11\";');
INSERT INTO `variable` VALUES ('media_gallery_default_collection_tid','s:2:\"16\";');
INSERT INTO `variable` VALUES ('media__wysiwyg_icon_title','s:12:\"Insert Image\";');
INSERT INTO `variable` VALUES ('media__wysiwyg_title','s:12:\"Insert Image\";');
INSERT INTO `variable` VALUES ('menu_expanded','a:0:{}');
INSERT INTO `variable` VALUES ('menu_masks','a:37:{i:0;i:501;i:1;i:493;i:2;i:250;i:3;i:247;i:4;i:246;i:5;i:245;i:6;i:126;i:7;i:125;i:8;i:123;i:9;i:122;i:10;i:121;i:11;i:117;i:12;i:63;i:13;i:62;i:14;i:61;i:15;i:60;i:16;i:59;i:17;i:58;i:18;i:44;i:19;i:31;i:20;i:30;i:21;i:29;i:22;i:28;i:23;i:25;i:24;i:24;i:25;i:21;i:26;i:15;i:27;i:14;i:28;i:13;i:29;i:12;i:30;i:11;i:31;i:7;i:32;i:6;i:33;i:5;i:34;i:3;i:35;i:2;i:36;i:1;}');
INSERT INTO `variable` VALUES ('menu_needs_rebuild','b:1;');
INSERT INTO `variable` VALUES ('mollom_servers','a:3:{i:0;s:21:\"http://174.37.205.152\";i:1;s:19:\"http://67.228.84.11\";i:2;s:20:\"http://88.151.243.81\";}');
INSERT INTO `variable` VALUES ('mollom_status','a:2:{s:10:\"keys valid\";b:1;s:4:\"keys\";b:1;}');
INSERT INTO `variable` VALUES ('node_admin_theme','s:1:\"1\";');
INSERT INTO `variable` VALUES ('node_cron_last','s:10:\"1282630544\";');
INSERT INTO `variable` VALUES ('node_options_blog','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_options_customer','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_options_faq_item','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_options_forum','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_options_media_gallery','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_options_page','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_options_testimonial','a:1:{i:0;s:6:\"status\";}');
INSERT INTO `variable` VALUES ('node_submitted_customer','b:0;');
INSERT INTO `variable` VALUES ('node_submitted_faq_item','b:0;');
INSERT INTO `variable` VALUES ('node_submitted_media_gallery','b:0;');
INSERT INTO `variable` VALUES ('node_submitted_page','b:0;');
INSERT INTO `variable` VALUES ('node_submitted_testimonial','b:0;');
INSERT INTO `variable` VALUES ('pathauto_forum_pattern','s:32:\"[vocabulary:name]/[term:catpath]\";');
INSERT INTO `variable` VALUES ('pathauto_ignore_words','s:108:\"a,an,as,at,before,but,by,for,from,is,in,into,like,of,off,on,onto,per,since,than,the,this,that,to,up,via,with\";');
INSERT INTO `variable` VALUES ('pathauto_indexaliases','b:0;');
INSERT INTO `variable` VALUES ('pathauto_indexaliases_bulkupdate','b:0;');
INSERT INTO `variable` VALUES ('pathauto_max_component_length','s:3:\"100\";');
INSERT INTO `variable` VALUES ('pathauto_max_length','s:3:\"100\";');
INSERT INTO `variable` VALUES ('pathauto_modulelist','a:3:{i:0;s:4:\"node\";i:1;s:4:\"user\";i:2;s:8:\"taxonomy\";}');
INSERT INTO `variable` VALUES ('pathauto_node_applytofeeds','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_node_bulkupdate','b:0;');
INSERT INTO `variable` VALUES ('pathauto_node_forum_pattern','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_node_image_pattern','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_node_page_pattern','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_node_pattern','s:20:\"content/[node:title]\";');
INSERT INTO `variable` VALUES ('pathauto_node_story_pattern','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_punctuation_hyphen','i:1;');
INSERT INTO `variable` VALUES ('pathauto_punctuation_quotes','i:0;');
INSERT INTO `variable` VALUES ('pathauto_separator','s:1:\"-\";');
INSERT INTO `variable` VALUES ('pathauto_taxonomy_1_pattern','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_taxonomy_2_pattern','s:0:\"\";');
INSERT INTO `variable` VALUES ('pathauto_taxonomy_applytofeeds','b:0;');
INSERT INTO `variable` VALUES ('pathauto_taxonomy_bulkupdate','b:0;');
INSERT INTO `variable` VALUES ('pathauto_taxonomy_pattern','s:41:\"category/[vocabulary:name]/[term:catpath]\";');
INSERT INTO `variable` VALUES ('pathauto_taxonomy_supportsfeeds','s:6:\"0/feed\";');
INSERT INTO `variable` VALUES ('pathauto_update_action','s:1:\"2\";');
INSERT INTO `variable` VALUES ('pathauto_user_bulkupdate','b:0;');
INSERT INTO `variable` VALUES ('pathauto_user_pattern','s:17:\"users/[user:name]\";');
INSERT INTO `variable` VALUES ('pathauto_user_supportsfeeds','N;');
INSERT INTO `variable` VALUES ('pathauto_verbose','b:0;');
INSERT INTO `variable` VALUES ('path_alias_whitelist','a:4:{s:5:\"forum\";b:1;s:4:\"node\";b:1;s:8:\"taxonomy\";b:1;s:4:\"user\";b:1;}');
INSERT INTO `variable` VALUES ('preprocess_js','i:1;');
INSERT INTO `variable` VALUES ('rotating_banner_default_slide_fid','s:1:\"1\";');
INSERT INTO `variable` VALUES ('site_403','s:0:\"\";');
INSERT INTO `variable` VALUES ('site_404','s:0:\"\";');
INSERT INTO `variable` VALUES ('site_default_country','s:0:\"\";');
INSERT INTO `variable` VALUES ('site_frontpage','s:7:\"node/51\";');
INSERT INTO `variable` VALUES ('site_mail','s:19:\"kmedialab@gmail.com\";');
INSERT INTO `variable` VALUES ('site_name','s:6:\"seo-ri\";');
INSERT INTO `variable` VALUES ('site_slogan','s:77:\"My product slogan - Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\";');
INSERT INTO `variable` VALUES ('site_template_current_template','s:7:\"product\";');
INSERT INTO `variable` VALUES ('syslog_format','s:80:\"!message; !base_url; !timestamp; !type; !ip; !request_uri; !referer; !uid; !link\";');
INSERT INTO `variable` VALUES ('themebuilder_update_level','i:1;');
INSERT INTO `variable` VALUES ('theme_default','s:10:\"acq_seo_ri\";');
INSERT INTO `variable` VALUES ('theme_settings','a:4:{s:24:\"toggle_node_user_picture\";i:0;s:27:\"toggle_comment_user_picture\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:0;}');
INSERT INTO `variable` VALUES ('user_admin_role','s:2:\"11\";');
INSERT INTO `variable` VALUES ('user_email_verification','i:0;');
INSERT INTO `variable` VALUES ('user_pictures','s:1:\"1\";');
INSERT INTO `variable` VALUES ('user_picture_default','s:29:\"public://AnonymousPicture.gif\";');
INSERT INTO `variable` VALUES ('user_picture_dimensions','s:9:\"1024x1024\";');
INSERT INTO `variable` VALUES ('user_picture_file_size','s:3:\"800\";');
INSERT INTO `variable` VALUES ('user_picture_style','s:9:\"thumbnail\";');
INSERT INTO `variable` VALUES ('user_register','i:1;');
INSERT INTO `variable` VALUES ('xmlsitemap_chunk_size','i:1000;');
INSERT INTO `variable` VALUES ('xmlsitemap_engines_engines','a:4:{i:0;s:3:\"ask\";i:1;s:4:\"bing\";i:2;s:6:\"google\";i:3;s:5:\"yahoo\";}');
INSERT INTO `variable` VALUES ('xmlsitemap_engines_submit_last','i:1282836189;');
INSERT INTO `variable` VALUES ('xmlsitemap_generated_last','i:1282673753;');
INSERT INTO `variable` VALUES ('xmlsitemap_max_chunks','i:0;');
INSERT INTO `variable` VALUES ('xmlsitemap_max_filesize','i:0;');
INSERT INTO `variable` VALUES ('xmlsitemap_minimum_lifetime','i:86400;');
INSERT INTO `variable` VALUES ('xmlsitemap_prefetch_aliases','i:0;');
INSERT INTO `variable` VALUES ('xmlsitemap_rebuild_needed','b:0;');
INSERT INTO `variable` VALUES ('xmlsitemap_regenerate_needed','b:0;');
INSERT INTO `variable` VALUES ('xmlsitemap_settings_menu_main-menu','a:2:{s:6:\"status\";s:1:\"1\";s:8:\"priority\";s:3:\"0.5\";}');
/*!40000 ALTER TABLE `variable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `watchdog`
--
DROP TABLE IF EXISTS `watchdog`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `watchdog` (
`wid` int(11) NOT NULL auto_increment COMMENT 'Primary Key: Unique watchdog event ID.',
`uid` int(11) NOT NULL default '0' COMMENT 'The users.uid of the user who triggered the event.',
`type` varchar(64) NOT NULL default '' COMMENT 'Type of log message, for example "user" or "page not found."',
`message` longtext NOT NULL COMMENT 'Text of log message to be passed into the t() function.',
`variables` longblob NOT NULL COMMENT 'Serialized array of variables that match the message string and that is passed into the t() function.',
`severity` tinyint(3) unsigned NOT NULL default '0' COMMENT 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)',
`link` varchar(255) default '' COMMENT 'Link to view the result of the event.',
`location` text NOT NULL COMMENT 'URL of the origin of the event.',
`referer` text COMMENT 'URL of referring page.',
`hostname` varchar(128) NOT NULL default '' COMMENT 'Hostname of the user who triggered the event.',
`timestamp` int(11) NOT NULL default '0' COMMENT 'Unix timestamp of when event occurred.',
PRIMARY KEY (`wid`),
KEY `type` (`type`),
KEY `uid` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=2342 DEFAULT CHARSET=utf8 COMMENT='Table that contains logs of all system events.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `watchdog`
--
LOCK TABLES `watchdog` WRITE;
/*!40000 ALTER TABLE `watchdog` DISABLE KEYS */;
INSERT INTO `watchdog` VALUES (1316,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:46:\"in_array(): Wrong datatype for second argument\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/51/edit?render=overlay','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674699);
INSERT INTO `watchdog` VALUES (1321,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:54:\"array_unshift(): The first argument should be an array\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:808;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/51/edit?render=overlay','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674699);
INSERT INTO `watchdog` VALUES (1326,6,'theme','Theme key \"@key\" not found.','a:1:{s:4:\"@key\";s:15:\"media_type_icon\";}',4,'','http://seo_ri.drupalgardens.com/admin/structure/block/manage/rotating_banner/1/configure?destination=node%2F51&render=overlay','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674730);
INSERT INTO `watchdog` VALUES (1331,6,'theme','Theme key \"@key\" not found.','a:1:{s:4:\"@key\";s:15:\"media_type_icon\";}',4,'','http://seo_ri.drupalgardens.com/admin/structure/block/manage/rotating_banner/1/configure?destination=node%2F51&render=overlay','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674730);
INSERT INTO `watchdog` VALUES (1336,6,'theme','Theme key \"@key\" not found.','a:1:{s:4:\"@key\";s:26:\"rotating_banner_slide_form\";}',4,'','http://seo_ri.drupalgardens.com/admin/structure/rotating_banner/1/slide/add?render=overlay','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674743);
INSERT INTO `watchdog` VALUES (1341,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674795);
INSERT INTO `watchdog` VALUES (1346,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674810);
INSERT INTO `watchdog` VALUES (1351,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674841);
INSERT INTO `watchdog` VALUES (1356,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674885);
INSERT INTO `watchdog` VALUES (1361,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:29:\"Undefined index: selectorMap\";s:9:\"%function\";s:47:\"themebuilder_styleedit_themebuilder_init_data()\";s:5:\"%file\";s:112:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_styleedit/themebuilder_styleedit.module\";s:5:\"%line\";i:676;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-init-data','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674888);
INSERT INTO `watchdog` VALUES (1366,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674897);
INSERT INTO `watchdog` VALUES (1371,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674908);
INSERT INTO `watchdog` VALUES (1376,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282674918);
INSERT INTO `watchdog` VALUES (1381,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282675242);
INSERT INTO `watchdog` VALUES (1386,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/','66.210.117.240',1282675248);
INSERT INTO `watchdog` VALUES (1391,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282676307);
INSERT INTO `watchdog` VALUES (1396,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282676316);
INSERT INTO `watchdog` VALUES (1401,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282676366);
INSERT INTO `watchdog` VALUES (1406,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/contact','http://seo_ri.drupalgardens.com/','66.210.117.240',1282676837);
INSERT INTO `watchdog` VALUES (1411,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/themebuilder-compiler-commit','http://seo_ri.drupalgardens.com/contact','66.210.117.240',1282677383);
INSERT INTO `watchdog` VALUES (1416,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282677705);
INSERT INTO `watchdog` VALUES (1421,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282677713);
INSERT INTO `watchdog` VALUES (1426,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"PDOException\";s:8:\"%message\";s:700:\"SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'temporary://SEO-LAB.png\' for key 2: INSERT INTO {file_managed} (uid, filename, uri, filemime, filesize, status, timestamp) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5, :db_insert_placeholder_6); Array\n(\n [:db_insert_placeholder_0] => 6\n [:db_insert_placeholder_1] => SEO-LAB.png\n [:db_insert_placeholder_2] => temporary://SEO-LAB.png\n [:db_insert_placeholder_3] => image/png\n [:db_insert_placeholder_4] => 42296\n [:db_insert_placeholder_5] => 0\n [:db_insert_placeholder_6] => 1282677777\n)\n\";s:9:\"%function\";s:21:\"drupal_write_record()\";s:5:\"%file\";s:51:\"/mnt/www/html/tangle002/docroot/includes/common.inc\";s:5:\"%line\";i:6040;s:14:\"severity_level\";i:3;}',3,'','http://seo_ri.drupalgardens.com/styleedit-file-upload','http://seo_ri.drupalgardens.com/','66.210.117.240',1282677777);
INSERT INTO `watchdog` VALUES (1431,6,'page not found','sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/ <div id=page> <div id=header> <div id=logo-title> <a href=/ title=Home rel=home id=logo> <img src=http://seo_ri.drupalgardens.com/sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/logo.png alt=Home> </a> <div id=name-and-slogan> <h1 id=site-name> <a href=/ title=Home rel=home><span>seo_ri</span></a> </h1> <div id=site-slogan>My product slogan - Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</div> </div> <!-- /name-and-slogan --> </div> <!-- /logo-title --> </div> <!-- /header --> <div id=container class=clearfix> <div id=main class=column><div id=main-squeeze> <div id=content> <h1 class=title id=page-title>Error</h1> <div id=content-content class=clearfix> The website encountered an unexpected error. Please try again later. </div> <!-- /content-content --> </div> <!-- /content --> </div></div> <!-- /main-squeeze /main --> </div> <!-- /container --> <div id=footer-wrapper> <div id=footer> </div> <!-- /footer --> </div> <!-- /footer-wrapper --> </div> <!-- /page --><div id=themebuilder-wrapper style=display: none; ><div id=themebuilder-status><span class=themebuilder-status-icon></span><span class=themebuilder-status-message></span></div><div id=themebuilder-theme-name><span class=theme-name>seo-ri</span><span class=last-saved></span><div class=update-available-wrapper disabled><img class=update-icon src=/modules/acquia/themebuilder/themebuilder_bar/images/alert_icon.png>New theme update: <span class=update-available>Preview</span></div></div><div id=themebuilder-main class=widget><div id=themebuilder-save> <a href=javascript:void/(0/) class=themebuilder-undo-button>Undo</a> <a href=javascript:void/(0/) class=themebuilder-redo-button>Redo</a> <a href=javascript:void/(0/) class=export>Export</a> <button class=save>Save</button> <button class=save-as>Save as</button> <button class=publish>Publish</button> <button id=themebuilder-mini-button></button> <button id=themebuilder-exit-button></button></div><ul class=tabnav ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header><li class=ui-state-default><div class=left-cap></div><a href=','N;',4,'','http://seo_ri.drupalgardens.com/sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/%20%20%3Cdiv%20id=page%3E%20%20%20%20%3Cdiv%20id=header%3E%20%20%20%20%20%20%3Cdiv%20id=logo-title%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ca%20href=/%20title=Home%20rel=home%20id=logo%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cimg%20src=http://seo_ri.drupalgardens.com/sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/logo.png%20alt=Home%3E%20%20%20%20%20%20%20%20%20%20%3C/a%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=name-and-slogan%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ch1%20id=site-name%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ca%20href=/%20title=Home%20rel=home%3E%3Cspan%3Eseo_ri%3C/span%3E%3C/a%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C/h1%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=site-slogan%3EMy%20product%20slogan%20-%20Lorem%20ipsum%20dolor%20sit%20amet,%20consectetuer%20adipiscing%20elit.%3C/div%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/name-and-slogan%20--%3E%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/logo-title%20--%3E%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/header%20--%3E%20%20%20%20%3Cdiv%20id=container%20class=clearfix%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=main%20class=column%3E%3Cdiv%20id=main-squeeze%3E%20%20%20%20%20%20%20%20%3Cdiv%20id=content%3E%20%20%20%20%20%20%20%20%20%20%3Ch1%20class=title%20id=page-title%3EError%3C/h1%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=content-content%20class=clearfix%3E%20%20%20%20%20%20%20%20%20%20%20%20The%20website%20encountered%20an%20unexpected%20error.%20Please%20try%20again%20later.%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/content-content%20--%3E%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/content%20--%3E%20%20%20%20%20%20%3C/div%3E%3C/div%3E%20%3C!--%20/main-squeeze%20/main%20--%3E%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/container%20--%3E%20%20%20%20%3Cdiv%20id=footer-wrapper%3E%20%20%20%20%20%20%3Cdiv%20id=footer%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/footer%20--%3E%20%20%20%20%3C/div%3E%20%3C!--%20/footer-wrapper%20--%3E%20%20%3C/div%3E%20%3C!--%20/page%20--%3E%3Cdiv%20id=themebuilder-wrapper%20style=display:%20none;%20%3E%3Cdiv%20id=themebuilder-status%3E%3Cspan%20class=themebuilder-status-icon%3E%3C/span%3E%3Cspan%20class=themebuilder-status-message%3E%3C/span%3E%3C/div%3E%3Cdiv%20id=themebuilder-theme-name%3E%3Cspan%20class=theme-name%3Eseo-ri%3C/span%3E%3Cspan%20class=last-saved%3E%3C/span%3E%3Cdiv%20class=update-available-wrapper%20disabled%3E%3Cimg%20class=update-icon%20src=/modules/acquia/themebuilder/themebuilder_bar/images/alert_icon.png%3ENew%20theme%20update:%20%3Cspan%20class=update-available%3EPreview%3C/span%3E%3C/div%3E%3C/div%3E%3Cdiv%20id=themebuilder-main%20class=widget%3E%3Cdiv%20id=themebuilder-save%3E%20%20%3Ca%20href=javascript:void/(0/)%20class=themebuilder-undo-button%3EUndo%3C/a%3E%20%20%3Ca%20href=javascript:void/(0/)%20class=themebuilder-redo-button%3ERedo%3C/a%3E%20%20%3Ca%20href=javascript:void/(0/)%20class=export%3EExport%3C/a%3E%20%20%3Cbutton%20class=save%3ESave%3C/button%3E%20%20%3Cbutton%20class=save-as%3ESave%20as%3C/button%3E%20%20%3Cbutton%20class=publish%3EPublish%3C/button%3E%20%20%3Cbutton%20id=themebuilder-mini-button%3E%3C/button%3E%20%20%3Cbutton%20id=themebuilder-exit-button%3E%3C/button%3E%3C/div%3E%3Cul%20class=tabnav%20ui-tabs-nav%20ui-helper-reset%20ui-helper-clearfix%20ui-widget-header%3E%3Cli%20class=ui-state-default%3E%3Cdiv%20class=left-cap%3E%3C/div%3E%3Ca%20href=','http://seo_ri.drupalgardens.com/','66.210.117.240',1282677778);
INSERT INTO `watchdog` VALUES (1436,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/%20%20%3Cdiv%20id=page%3E%20%20%20%20%3Cdiv%20id=header%3E%20%20%20%20%20%20%3Cdiv%20id=logo-title%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ca%20href=/%20title=Home%20rel=home%20id=logo%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cimg%20src=http://seo_ri.drupalgardens.com/sites/seo_ri.drupalgardens.com/themes/mythemes/acq_kmedialab_session/logo.png%20alt=Home%3E%20%20%20%20%20%20%20%20%20%20%3C/a%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=name-and-slogan%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ch1%20id=site-name%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ca%20href=/%20title=Home%20rel=home%3E%3Cspan%3Eseo_ri%3C/span%3E%3C/a%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C/h1%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=site-slogan%3EMy%20product%20slogan%20-%20Lorem%20ipsum%20dolor%20sit%20amet,%20consectetuer%20adipiscing%20elit.%3C/div%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/name-and-slogan%20--%3E%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/logo-title%20--%3E%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/header%20--%3E%20%20%20%20%3Cdiv%20id=container%20class=clearfix%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=main%20class=column%3E%3Cdiv%20id=main-squeeze%3E%20%20%20%20%20%20%20%20%3Cdiv%20id=content%3E%20%20%20%20%20%20%20%20%20%20%3Ch1%20class=title%20id=page-title%3EError%3C/h1%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20id=content-content%20class=clearfix%3E%20%20%20%20%20%20%20%20%20%20%20%20The%20website%20encountered%20an%20unexpected%20error.%20Please%20try%20again%20later.%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/content-content%20--%3E%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/content%20--%3E%20%20%20%20%20%20%3C/div%3E%3C/div%3E%20%3C!--%20/main-squeeze%20/main%20--%3E%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/container%20--%3E%20%20%20%20%3Cdiv%20id=footer-wrapper%3E%20%20%20%20%20%20%3Cdiv%20id=footer%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C/div%3E%20%3C!--%20/footer%20--%3E%20%20%20%20%3C/div%3E%20%3C!--%20/footer-wrapper%20--%3E%20%20%3C/div%3E%20%3C!--%20/page%20--%3E%3Cdiv%20id=themebuilder-wrapper%20style=display:%20none;%20%3E%3Cdiv%20id=themebuilder-status%3E%3Cspan%20class=themebuilder-status-icon%3E%3C/span%3E%3Cspan%20class=themebuilder-status-message%3E%3C/span%3E%3C/div%3E%3Cdiv%20id=themebuilder-theme-name%3E%3Cspan%20class=theme-name%3Eseo-ri%3C/span%3E%3Cspan%20class=last-saved%3E%3C/span%3E%3Cdiv%20class=update-available-wrapper%20disabled%3E%3Cimg%20class=update-icon%20src=/modules/acquia/themebuilder/themebuilder_bar/images/alert_icon.png%3ENew%20theme%20update:%20%3Cspan%20class=update-available%3EPreview%3C/span%3E%3C/div%3E%3C/div%3E%3Cdiv%20id=themebuilder-main%20class=widget%3E%3Cdiv%20id=themebuilder-save%3E%20%20%3Ca%20href=javascript:void/(0/)%20class=themebuilder-undo-button%3EUndo%3C/a%3E%20%20%3Ca%20href=javascript:void/(0/)%20class=themebuilder-redo-button%3ERedo%3C/a%3E%20%20%3Ca%20href=javascript:void/(0/)%20class=export%3EExport%3C/a%3E%20%20%3Cbutton%20class=save%3ESave%3C/button%3E%20%20%3Cbutton%20class=save-as%3ESave%20as%3C/button%3E%20%20%3Cbutton%20class=publish%3EPublish%3C/button%3E%20%20%3Cbutton%20id=themebuilder-mini-button%3E%3C/button%3E%20%20%3Cbutton%20id=themebuilder-exit-button%3E%3C/button%3E%3C/div%3E%3Cul%20class=tabnav%20ui-tabs-nav%20ui-helper-reset%20ui-helper-clearfix%20ui-widget-header%3E%3Cli%20class=ui-state-default%3E%3Cdiv%20class=left-cap%3E%3C/div%3E%3Ca%20href=','http://seo_ri.drupalgardens.com/','66.210.117.240',1282677778);
INSERT INTO `watchdog` VALUES (1441,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:25:\"Undefined index: #submit\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/node/51/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678399);
INSERT INTO `watchdog` VALUES (1446,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:46:\"in_array(): Wrong datatype for second argument\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/51/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678399);
INSERT INTO `watchdog` VALUES (1451,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:54:\"array_unshift(): The first argument should be an array\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:808;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/51/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678399);
INSERT INTO `watchdog` VALUES (1456,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:25:\"Undefined index: #submit\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/node/1/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678430);
INSERT INTO `watchdog` VALUES (1461,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:46:\"in_array(): Wrong datatype for second argument\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/1/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678430);
INSERT INTO `watchdog` VALUES (1466,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:54:\"array_unshift(): The first argument should be an array\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:808;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/1/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678430);
INSERT INTO `watchdog` VALUES (1471,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:25:\"Undefined index: #submit\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/node/51/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678740);
INSERT INTO `watchdog` VALUES (1476,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:46:\"in_array(): Wrong datatype for second argument\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:807;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/51/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678740);
INSERT INTO `watchdog` VALUES (1481,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:54:\"array_unshift(): The first argument should be an array\";s:9:\"%function\";s:34:\"xmlsitemap_add_form_link_options()\";s:5:\"%file\";s:81:\"/mnt/www/html/tangle002/docroot/sites/all/modules/xmlsitemap/xmlsitemap.admin.inc\";s:5:\"%line\";i:808;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/node/51/edit?destination=admin%2Fcontent&render=overlay','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678740);
INSERT INTO `watchdog` VALUES (1486,6,'user','Session closed for %name.','a:1:{s:5:\"%name\";s:9:\"kmedialab\";}',5,'','http://seo_ri.drupalgardens.com/user/logout','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678753);
INSERT INTO `watchdog` VALUES (1491,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:22:\"Undefined index: port\";s:9:\"%function\";s:35:\"gardens_client_user_logout_custom()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:277;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/user/logout','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282678753);
INSERT INTO `watchdog` VALUES (1496,6,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:9:\"kmedialab\";}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A23%3A09ZZQHR&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=TzCG0e7htcYTElmiUnSwtSv7yiQ%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1501,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1506,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1511,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:16:\"/tmp/SEO-LAB.png\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1516,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1521,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:12:\"/tmp/005.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1526,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1531,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1536,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:12:\"/tmp/004.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1541,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1546,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:12:\"/tmp/002.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1551,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1556,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:12:\"/tmp/003.gif\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1561,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1566,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:20:\"/tmp/background2.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1571,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1576,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:25:\"/tmp/cccccc-25percent.png\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1581,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1586,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:14:\"/tmp/005_0.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1591,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1596,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:21:\"/tmp/background_5.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1601,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1606,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:14:\"/tmp/005_1.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1611,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1616,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:21:\"/tmp/background_6.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1621,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1626,0,'file','The file %path was not deleted, because it does not exist.','a:1:{s:5:\"%path\";s:14:\"/tmp/005_2.jpg\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1631,0,'xmlsitemap','Submitted the sitemap to %url and received response @code.','a:2:{s:4:\"%url\";s:83:\"http://submissions.ask.com/ping?sitemap=http://seo_ri.drupalgardens.com/sitemap.xml\";s:5:\"@code\";s:3:\"200\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1636,0,'xmlsitemap','Submitted the sitemap to %url and received response @code.','a:2:{s:4:\"%url\";s:91:\"http://www.bing.com/webmaster/ping.aspx?siteMap=http://seo_ri.drupalgardens.com/sitemap.xml\";s:5:\"@code\";s:3:\"200\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1641,0,'xmlsitemap','Submitted the sitemap to %url and received response @code.','a:2:{s:4:\"%url\";s:95:\"http://www.google.com/webmasters/tools/ping?sitemap=http://seo_ri.drupalgardens.com/sitemap.xml\";s:5:\"@code\";s:3:\"200\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1646,0,'xmlsitemap','Submitted the sitemap to %url and received response @code.','a:2:{s:4:\"%url\";s:107:\"http://search.yahooapis.com/SiteExplorerService/V1/ping?sitemap=http://seo_ri.drupalgardens.com/sitemap.xml\";s:5:\"@code\";s:3:\"403\";}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1651,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836189);
INSERT INTO `watchdog` VALUES (1656,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836198);
INSERT INTO `watchdog` VALUES (1661,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836199);
INSERT INTO `watchdog` VALUES (1666,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836208);
INSERT INTO `watchdog` VALUES (1671,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836210);
INSERT INTO `watchdog` VALUES (1676,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836217);
INSERT INTO `watchdog` VALUES (1681,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836222);
INSERT INTO `watchdog` VALUES (1686,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836225);
INSERT INTO `watchdog` VALUES (1691,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836232);
INSERT INTO `watchdog` VALUES (1696,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836235);
INSERT INTO `watchdog` VALUES (1701,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1282836277);
INSERT INTO `watchdog` VALUES (1706,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836281);
INSERT INTO `watchdog` VALUES (1711,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836281);
INSERT INTO `watchdog` VALUES (1716,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836281);
INSERT INTO `watchdog` VALUES (1721,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836286);
INSERT INTO `watchdog` VALUES (1726,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836286);
INSERT INTO `watchdog` VALUES (1731,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836286);
INSERT INTO `watchdog` VALUES (1736,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836287);
INSERT INTO `watchdog` VALUES (1741,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836287);
INSERT INTO `watchdog` VALUES (1746,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836287);
INSERT INTO `watchdog` VALUES (1751,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836291);
INSERT INTO `watchdog` VALUES (1756,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836291);
INSERT INTO `watchdog` VALUES (1761,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836291);
INSERT INTO `watchdog` VALUES (1766,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836296);
INSERT INTO `watchdog` VALUES (1771,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836296);
INSERT INTO `watchdog` VALUES (1776,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836296);
INSERT INTO `watchdog` VALUES (1781,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836309);
INSERT INTO `watchdog` VALUES (1786,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836309);
INSERT INTO `watchdog` VALUES (1791,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836309);
INSERT INTO `watchdog` VALUES (1796,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836322);
INSERT INTO `watchdog` VALUES (1801,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836322);
INSERT INTO `watchdog` VALUES (1806,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836322);
INSERT INTO `watchdog` VALUES (1811,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836341);
INSERT INTO `watchdog` VALUES (1816,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836341);
INSERT INTO `watchdog` VALUES (1821,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836341);
INSERT INTO `watchdog` VALUES (1826,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836342);
INSERT INTO `watchdog` VALUES (1831,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836342);
INSERT INTO `watchdog` VALUES (1836,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836342);
INSERT INTO `watchdog` VALUES (1841,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836344);
INSERT INTO `watchdog` VALUES (1846,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836344);
INSERT INTO `watchdog` VALUES (1851,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836344);
INSERT INTO `watchdog` VALUES (1856,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836354);
INSERT INTO `watchdog` VALUES (1861,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836354);
INSERT INTO `watchdog` VALUES (1866,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836354);
INSERT INTO `watchdog` VALUES (1871,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836355);
INSERT INTO `watchdog` VALUES (1876,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836355);
INSERT INTO `watchdog` VALUES (1881,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836355);
INSERT INTO `watchdog` VALUES (1886,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836369);
INSERT INTO `watchdog` VALUES (1891,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836369);
INSERT INTO `watchdog` VALUES (1896,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836369);
INSERT INTO `watchdog` VALUES (1901,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836374);
INSERT INTO `watchdog` VALUES (1906,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836374);
INSERT INTO `watchdog` VALUES (1911,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836374);
INSERT INTO `watchdog` VALUES (1916,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836375);
INSERT INTO `watchdog` VALUES (1921,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836375);
INSERT INTO `watchdog` VALUES (1926,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836375);
INSERT INTO `watchdog` VALUES (1931,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836384);
INSERT INTO `watchdog` VALUES (1936,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836384);
INSERT INTO `watchdog` VALUES (1941,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836384);
INSERT INTO `watchdog` VALUES (1946,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836385);
INSERT INTO `watchdog` VALUES (1951,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836385);
INSERT INTO `watchdog` VALUES (1956,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836385);
INSERT INTO `watchdog` VALUES (1961,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836389);
INSERT INTO `watchdog` VALUES (1966,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836389);
INSERT INTO `watchdog` VALUES (1971,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836389);
INSERT INTO `watchdog` VALUES (1976,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836392);
INSERT INTO `watchdog` VALUES (1981,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836392);
INSERT INTO `watchdog` VALUES (1986,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A24%3A41ZEOQQ&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=NaWLKMcyldupqFJIpMK1Hu2YRZg%3D','66.210.117.240',1282836392);
INSERT INTO `watchdog` VALUES (1991,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836398);
INSERT INTO `watchdog` VALUES (1996,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836398);
INSERT INTO `watchdog` VALUES (2001,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836398);
INSERT INTO `watchdog` VALUES (2006,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836402);
INSERT INTO `watchdog` VALUES (2011,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836402);
INSERT INTO `watchdog` VALUES (2016,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836402);
INSERT INTO `watchdog` VALUES (2021,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836413);
INSERT INTO `watchdog` VALUES (2026,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836413);
INSERT INTO `watchdog` VALUES (2031,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836413);
INSERT INTO `watchdog` VALUES (2036,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836416);
INSERT INTO `watchdog` VALUES (2041,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836416);
INSERT INTO `watchdog` VALUES (2046,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836416);
INSERT INTO `watchdog` VALUES (2051,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836419);
INSERT INTO `watchdog` VALUES (2056,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836419);
INSERT INTO `watchdog` VALUES (2061,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836419);
INSERT INTO `watchdog` VALUES (2066,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836447);
INSERT INTO `watchdog` VALUES (2071,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836447);
INSERT INTO `watchdog` VALUES (2076,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836447);
INSERT INTO `watchdog` VALUES (2081,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836451);
INSERT INTO `watchdog` VALUES (2086,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836451);
INSERT INTO `watchdog` VALUES (2091,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836451);
INSERT INTO `watchdog` VALUES (2096,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836460);
INSERT INTO `watchdog` VALUES (2101,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836460);
INSERT INTO `watchdog` VALUES (2106,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836460);
INSERT INTO `watchdog` VALUES (2111,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836463);
INSERT INTO `watchdog` VALUES (2116,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836463);
INSERT INTO `watchdog` VALUES (2121,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836463);
INSERT INTO `watchdog` VALUES (2126,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836473);
INSERT INTO `watchdog` VALUES (2131,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836473);
INSERT INTO `watchdog` VALUES (2136,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836473);
INSERT INTO `watchdog` VALUES (2141,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836482);
INSERT INTO `watchdog` VALUES (2146,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836482);
INSERT INTO `watchdog` VALUES (2151,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836482);
INSERT INTO `watchdog` VALUES (2156,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836486);
INSERT INTO `watchdog` VALUES (2161,6,'access denied','openid/authenticate','N;',4,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A28%3A07ZECGC&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=dHXe%2BqF305RyzGc%2Fiefl4x6QmM4%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836487);
INSERT INTO `watchdog` VALUES (2166,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836486);
INSERT INTO `watchdog` VALUES (2171,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A28%3A07ZECGC&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=dHXe%2BqF305RyzGc%2Fiefl4x6QmM4%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836487);
INSERT INTO `watchdog` VALUES (2176,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A26%3A38ZDKPW&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=SjFShUgsvC3Eoqjvskt6YgoDQTE%3D','66.210.117.240',1282836486);
INSERT INTO `watchdog` VALUES (2181,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-26T15%3A28%3A07ZECGC&openid.assoc_handle=2010-08-26T15%3A22%3A59ZTPYH&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=dHXe%2BqF305RyzGc%2Fiefl4x6QmM4%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1282836487);
INSERT INTO `watchdog` VALUES (2186,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:31:\"Undefined variable: entity_type\";s:9:\"%function\";s:31:\"file_get_file_reference_count()\";s:5:\"%file\";s:56:\"/mnt/www/html/tangle002/docroot/modules/file/file.module\";s:5:\"%line\";i:981;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/','','66.249.65.42',1283139172);
INSERT INTO `watchdog` VALUES (2191,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/','','66.249.65.42',1283139172);
INSERT INTO `watchdog` VALUES (2196,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/faq','','66.249.65.42',1283147224);
INSERT INTO `watchdog` VALUES (2201,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/faq','','66.249.65.42',1283147224);
INSERT INTO `watchdog` VALUES (2206,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/news','','66.249.65.42',1283147257);
INSERT INTO `watchdog` VALUES (2211,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/blog','','66.249.65.41',1283147262);
INSERT INTO `watchdog` VALUES (2216,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/forum','','66.249.65.41',1283147302);
INSERT INTO `watchdog` VALUES (2221,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/contact','','66.249.65.41',1283147563);
INSERT INTO `watchdog` VALUES (2226,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/galleries','','66.249.65.60',1283149656);
INSERT INTO `watchdog` VALUES (2231,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/content/product-description','','66.249.65.60',1283151981);
INSERT INTO `watchdog` VALUES (2236,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/testimonials','','66.249.65.41',1283156853);
INSERT INTO `watchdog` VALUES (2241,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/testimonials','','66.249.65.41',1283156853);
INSERT INTO `watchdog` VALUES (2246,0,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/faq','','66.249.65.60',1283173917);
INSERT INTO `watchdog` VALUES (2251,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/faq','','66.249.65.60',1283173917);
INSERT INTO `watchdog` VALUES (2256,6,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:9:\"kmedialab\";}',5,'','http://seo_ri.drupalgardens.com/openid/authenticate?destination=node/51&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=id_res&openid.op_endpoint=http%3A%2F%2Fwww.drupalgardens.com%2Fopenid%2Fprovider&openid.identity=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.claimed_id=http%3A%2F%2Fwww.drupalgardens.com%2Fuser%2F88391%2Fidentity&openid.return_to=http%3A%2F%2Fseo_ri.drupalgardens.com%2Fopenid%2Fauthenticate%3Fdestination%3Dnode%2F51&openid.response_nonce=2010-08-30T15%3A36%3A14ZLJWR&openid.assoc_handle=2010-08-30T15%3A36%3A07ZWWEU&openid.sreg.nickname=kmedialab&openid.sreg.email=kmedialab%40gmail.com&destination=node%2F51&openid.signed=op_endpoint%2Creturn_to%2Cresponse_nonce%2Cassoc_handle%2Cidentity%2Cclaimed_id&openid.sig=bCKSkaOxhPfUuhLXu1%2BCWYdAKIc%3D','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1283182574);
INSERT INTO `watchdog` VALUES (2261,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:28:\"Undefined variable: reminder\";s:9:\"%function\";s:32:\"EmailVerifier->getReminderText()\";s:5:\"%file\";s:83:\"/mnt/www/html/tangle002/docroot/modules/acquia/gardens_client/gardens_client.module\";s:5:\"%line\";i:695;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1283182575);
INSERT INTO `watchdog` VALUES (2266,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/content/product-description','http://seo_ri.drupalgardens.com/gardens-login?openid=www.drupalgardens.com%2Fuser%2F88391%2Fidentity','66.210.117.240',1283182575);
INSERT INTO `watchdog` VALUES (2271,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:39:\"Undefined index: acq_kmedialab_session\";s:9:\"%function\";s:39:\"themebuilder_compiler_load_theme_info()\";s:5:\"%file\";s:110:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/themebuilder_compiler.module\";s:5:\"%line\";i:2225;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2276,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:39:\"Undefined index: acq_kmedialab_session\";s:9:\"%function\";s:39:\"themebuilder_compiler_load_theme_info()\";s:5:\"%file\";s:110:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/themebuilder_compiler.module\";s:5:\"%line\";i:2225;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2281,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:39:\"Undefined index: acq_kmedialab_session\";s:9:\"%function\";s:33:\"CustomColorset::createFromTheme()\";s:5:\"%file\";s:104:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/inc/customcolorset.inc\";s:5:\"%line\";i:20;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2286,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:33:\"CustomColorset::createFromTheme()\";s:5:\"%file\";s:104:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/inc/customcolorset.inc\";s:5:\"%line\";i:21;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2291,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:39:\"Undefined index: acq_kmedialab_session\";s:9:\"%function\";s:39:\"themebuilder_compiler_load_theme_info()\";s:5:\"%file\";s:110:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/themebuilder_compiler.module\";s:5:\"%line\";i:2225;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2296,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:82:\"file_get_contents(/template.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:32:\"FunctionAssetNew::loadFromFile()\";s:5:\"%file\";s:102:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/assets/functions.inc\";s:5:\"%line\";i:122;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2301,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:9:\"Exception\";s:8:\"%message\";s:31:\"Info object is not initialized.\";s:9:\"%function\";s:25:\"ThemebuilderInfo->__get()\";s:5:\"%file\";s:97:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_compiler/assets/info.inc\";s:5:\"%line\";i:69;s:14:\"severity_level\";i:3;}',3,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182582);
INSERT INTO `watchdog` VALUES (2306,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182622);
INSERT INTO `watchdog` VALUES (2311,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:39:\"Invalid argument supplied for foreach()\";s:9:\"%function\";s:22:\"block_themes_enabled()\";s:5:\"%file\";s:58:\"/mnt/www/html/tangle002/docroot/modules/block/block.module\";s:5:\"%line\";i:584;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/themebuilder-start','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283182633);
INSERT INTO `watchdog` VALUES (2316,0,'cron','Cron run completed.','a:0:{}',5,'','http://seo_ri.drupalgardens.com/themebuilder-compiler-commit','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283189500);
INSERT INTO `watchdog` VALUES (2321,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:29:\"Undefined index: system_name\";s:9:\"%function\";s:25:\"themebuilder_bar_export()\";s:5:\"%file\";s:100:\"/mnt/www/html/tangle002/docroot/modules/acquia/themebuilder/themebuilder_bar/themebuilder_bar.module\";s:5:\"%line\";i:539;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/themebuilder-export','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283189940);
INSERT INTO `watchdog` VALUES (2326,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/user','http://seo_ri.drupalgardens.com/content/product-description','66.210.117.240',1283191376);
INSERT INTO `watchdog` VALUES (2331,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"%message\";s:36:\"Trying to get property of non-object\";s:9:\"%function\";s:17:\"sqbs_block_view()\";s:5:\"%file\";s:66:\"/mnt/www/html/tangle002/docroot/sites/all/modules/sqbs/sqbs.module\";s:5:\"%line\";i:84;s:14:\"severity_level\";i:5;}',5,'','http://seo_ri.drupalgardens.com/user','http://seo_ri.drupalgardens.com/','66.210.117.240',1283191449);
INSERT INTO `watchdog` VALUES (2336,6,'export','tar -rf /tmp/uknzdwtdfzgf.tar --mode=\'u+rw\' -C \'/mnt/www/html/tangle002\' --transform=\'s:tmp/ickvwhxdnoag/settings.php:docroot/sites/default/settings.php:\' /tmp/ickvwhxdnoag/settings.php','N;',5,'','http://seo_ri.drupalgardens.com/admin/config/system/site-export?return=http%3A//www.drupalgardens.com/mysites','http://seo_ri.drupalgardens.com/admin/config/system/site-export?return=http%3A//www.drupalgardens.com/mysites','66.210.117.240',1283192265);
INSERT INTO `watchdog` VALUES (2341,6,'php','%type: %message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"%message\";s:45:\"rmdir(/tmp/ickvwhxdnoag): Directory not empty\";s:9:\"%function\";s:25:\"site_export_export_both()\";s:5:\"%file\";s:77:\"/mnt/www/html/tangle002/docroot/modules/acquia/site_export/site_export.module\";s:5:\"%line\";i:331;s:14:\"severity_level\";i:4;}',4,'','http://seo_ri.drupalgardens.com/admin/config/system/site-export?return=http%3A//www.drupalgardens.com/mysites','http://seo_ri.drupalgardens.com/admin/config/system/site-export?return=http%3A//www.drupalgardens.com/mysites','66.210.117.240',1283192265);
/*!40000 ALTER TABLE `watchdog` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wysiwyg`
--
DROP TABLE IF EXISTS `wysiwyg`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wysiwyg` (
`format` int(11) NOT NULL default '0',
`editor` varchar(128) NOT NULL default '',
`settings` text,
PRIMARY KEY (`format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores Wysiwyg profiles.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `wysiwyg`
--
LOCK TABLES `wysiwyg` WRITE;
/*!40000 ALTER TABLE `wysiwyg` DISABLE KEYS */;
INSERT INTO `wysiwyg` VALUES (16,'ckeditor','a:21:{s:7:\"default\";i:1;s:11:\"user_choose\";i:0;s:11:\"show_toggle\";i:1;s:5:\"theme\";s:8:\"advanced\";s:8:\"language\";s:2:\"en\";s:15:\"wysiwyg_buttons\";a:2:{s:7:\"default\";a:48:{s:4:\"Bold\";i:1;s:6:\"Italic\";i:1;s:9:\"Underline\";i:1;s:13:\"StrikeThrough\";i:1;s:11:\"JustifyLeft\";i:0;s:13:\"JustifyCenter\";i:0;s:12:\"JustifyRight\";i:0;s:11:\"JustifyFull\";i:0;s:12:\"BulletedList\";i:1;s:12:\"NumberedList\";i:1;s:7:\"Outdent\";i:1;s:6:\"Indent\";i:1;s:4:\"Undo\";i:1;s:4:\"Redo\";i:1;s:4:\"Link\";i:1;s:6:\"Unlink\";i:1;s:6:\"Anchor\";i:0;s:5:\"Image\";i:0;s:9:\"TextColor\";i:0;s:7:\"BGColor\";i:0;s:11:\"Superscript\";i:0;s:9:\"Subscript\";i:0;s:10:\"Blockquote\";i:1;s:6:\"Source\";i:0;s:14:\"HorizontalRule\";i:1;s:3:\"Cut\";i:0;s:4:\"Copy\";i:0;s:5:\"Paste\";i:0;s:9:\"PasteText\";i:0;s:9:\"PasteWord\";i:0;s:10:\"ShowBlocks\";i:0;s:12:\"RemoveFormat\";i:1;s:11:\"SpecialChar\";i:0;s:5:\"About\";i:0;s:6:\"Format\";i:1;s:4:\"Font\";i:0;s:8:\"FontSize\";i:0;s:6:\"Styles\";i:0;s:5:\"Table\";i:1;s:4:\"Find\";i:0;s:7:\"Replace\";i:0;s:9:\"SelectAll\";i:0;s:9:\"CreateDiv\";i:0;s:5:\"Flash\";i:0;s:6:\"Smiley\";i:0;s:9:\"FitWindow\";i:0;s:12:\"SpellChecker\";i:1;s:5:\"Scayt\";i:0;}s:6:\"drupal\";a:3:{s:5:\"break\";i:0;s:14:\"gardens_client\";i:1;s:5:\"media\";i:1;}}s:11:\"toolbar_loc\";s:3:\"top\";s:13:\"toolbar_align\";s:4:\"left\";s:8:\"path_loc\";s:6:\"bottom\";s:8:\"resizing\";i:1;s:11:\"verify_html\";i:1;s:12:\"preformatted\";i:0;s:22:\"convert_fonts_to_spans\";i:1;s:17:\"remove_linebreaks\";i:1;s:23:\"apply_source_formatting\";i:0;s:27:\"paste_auto_cleanup_on_paste\";i:0;s:13:\"block_formats\";s:32:\"p,address,pre,h2,h3,h4,h5,h6,div\";s:11:\"css_setting\";s:4:\"none\";s:8:\"css_path\";s:0:\"\";s:11:\"css_classes\";s:0:\"\";s:7:\"buttons\";a:2:{s:7:\"default\";a:18:{s:4:\"Bold\";i:1;s:6:\"Italic\";i:1;s:9:\"Underline\";i:1;s:13:\"StrikeThrough\";i:1;s:12:\"BulletedList\";i:1;s:12:\"NumberedList\";i:1;s:7:\"Outdent\";i:1;s:6:\"Indent\";i:1;s:4:\"Undo\";i:1;s:4:\"Redo\";i:1;s:4:\"Link\";i:1;s:6:\"Unlink\";i:1;s:10:\"Blockquote\";i:1;s:14:\"HorizontalRule\";i:1;s:12:\"RemoveFormat\";i:1;s:6:\"Format\";i:1;s:5:\"Table\";i:1;s:12:\"SpellChecker\";i:1;}s:6:\"drupal\";a:2:{s:5:\"media\";i:1;s:14:\"gardens_client\";i:1;}}}');
/*!40000 ALTER TABLE `wysiwyg` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `xmlsitemap`
--
DROP TABLE IF EXISTS `xmlsitemap`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `xmlsitemap` (
`id` int(10) unsigned NOT NULL default '0' COMMENT 'Primary key with type; a unique id for the item.',
`type` varchar(32) NOT NULL default '' COMMENT 'Primary key with id; the type of item (e.g. node, user, etc.).',
`subtype` varchar(128) NOT NULL default '' COMMENT 'A sub-type identifier for the link (node type, menu name, term VID, etc.).',
`loc` varchar(255) NOT NULL default '' COMMENT 'The URL to the item relative to the Drupal path.',
`language` varchar(12) NOT NULL default '' COMMENT 'The languages.language of this link or an empty string if it is language-neutral.',
`access` tinyint(4) NOT NULL default '1' COMMENT 'A boolean that represents if the item is viewable by the anonymous user. This field is useful to store the result of node_access() so we can retain changefreq and priority_override information.',
`status` tinyint(4) NOT NULL default '1' COMMENT 'An integer that represents if the item is included in the sitemap.',
`status_override` tinyint(4) NOT NULL default '0' COMMENT 'A boolean that if TRUE means that the status field has been overridden from its default value.',
`lastmod` int(10) unsigned NOT NULL default '0' COMMENT 'The UNIX timestamp of last modification of the item.',
`priority` float default NULL COMMENT 'The priority of this URL relative to other URLs on your site. Valid values range from 0.0 to 1.0.',
`priority_override` tinyint(4) NOT NULL default '0' COMMENT 'A boolean that if TRUE means that the priority field has been overridden from its default value.',
`changefreq` int(10) unsigned NOT NULL default '0' COMMENT 'The average time in seconds between changes of this item.',
`changecount` int(10) unsigned NOT NULL default '0' COMMENT 'The number of times this item has been changed. Used to help calculate the next changefreq value.',
PRIMARY KEY (`id`,`type`),
KEY `loc` (`loc`),
KEY `access_status_loc` (`access`,`status`,`loc`),
KEY `type_subtype` (`type`,`subtype`),
KEY `language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The base table for xmlsitemap links.';
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `xmlsitemap`
--
LOCK TABLES `xmlsitemap` WRITE;
/*!40000 ALTER TABLE `xmlsitemap` DISABLE KEYS */;
INSERT INTO `xmlsitemap` VALUES (0,'frontpage','','','und',1,1,0,0,1,0,86400,0);
INSERT INTO `xmlsitemap` VALUES (1,'node','page','node/1','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (6,'node','blog','node/6','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (6,'taxonomy_term','6','taxonomy/term/6','und',1,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (11,'node','blog','node/11','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (11,'taxonomy_term','6','taxonomy/term/11','und',1,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (16,'node','forum','node/16','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (16,'taxonomy_term','11','taxonomy/term/16','und',1,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (21,'node','forum','node/21','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (26,'node','article','node/26','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (31,'node','article','node/31','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (36,'node','faq_item','node/36','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (41,'node','faq_item','node/41','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (46,'node','media_gallery','node/46','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (51,'node','page','node/51','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (56,'node','testimonial','node/56','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (61,'node','testimonial','node/61','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (66,'node','testimonial','node/66','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (71,'node','customer','node/71','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (76,'node','customer','node/76','und',1,0,0,1282630544,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (941,'menu','management','admin/structure/block/list/impact','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (1266,'menu','management','admin/structure/types/manage/%/comment/display','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (1271,'menu','management','admin/structure/types/manage/%/comment/fields','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2216,'menu','main-menu','forum','und',1,1,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2466,'menu','main-menu','news','und',1,1,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2486,'menu','main-menu','faq','und',1,1,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2491,'menu','main-menu','taxonomy/term/16','und',1,1,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2496,'menu','main-menu','node/51','und',1,1,0,0,1,0,86400,0);
INSERT INTO `xmlsitemap` VALUES (2696,'menu','main-menu','testimonials','und',1,1,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2716,'menu','management','admin/structure/taxonomy/%/display','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2721,'menu','management','admin/config/people/accounts/display','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2726,'menu','management','admin/structure/taxonomy/%/fields','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2731,'menu','management','admin/config/people/accounts/fields','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2736,'menu','management','admin/structure/taxonomy/%/display/default','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2741,'menu','management','admin/config/people/accounts/display/default','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2746,'menu','management','admin/structure/media/manage/%/display','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2751,'menu','management','admin/structure/types/manage/%/display','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2756,'menu','management','admin/structure/media/manage/%/fields','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2761,'menu','management','admin/structure/types/manage/%/fields','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2766,'menu','management','admin/structure/taxonomy/%/display/full','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2771,'menu','management','admin/config/people/accounts/display/full','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2776,'menu','management','admin/structure/taxonomy/%/fields/%','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2781,'menu','management','admin/config/people/accounts/fields/%','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2786,'menu','management','admin/structure/media/manage/%/display/media_gallery_block_thumbnail','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2791,'menu','management','admin/structure/media/manage/%/display/media_gallery_collection_thumbnail','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2796,'menu','management','admin/structure/media/manage/%/display/default','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2801,'menu','management','admin/structure/types/manage/%/display/default','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2806,'menu','management','admin/structure/types/manage/%/display/full','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2811,'menu','management','admin/structure/media/manage/%/display/media_gallery_detail','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2816,'menu','management','admin/structure/media/manage/%/display/media_gallery_lightbox','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2821,'menu','management','admin/structure/media/manage/%/display/media_gallery_thumbnail','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2826,'menu','management','admin/structure/media/manage/%/display/media_large','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2831,'menu','management','admin/structure/media/manage/%/display/media_link','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2836,'menu','management','admin/structure/types/manage/%/display/media_gallery_block','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2841,'menu','management','admin/structure/media/manage/%/display/media_original','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2846,'menu','management','admin/structure/media/manage/%/display/media_preview','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2851,'menu','management','admin/structure/types/manage/%/display/rss','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2856,'menu','management','admin/structure/types/manage/%/display/search_index','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2861,'menu','management','admin/structure/types/manage/%/display/search_result','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2866,'menu','management','admin/structure/media/manage/%/display/media_small','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2871,'menu','management','admin/structure/types/manage/%/display/teaser','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2876,'menu','management','admin/structure/media/manage/%/fields/%','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2881,'menu','management','admin/structure/types/manage/%/fields/%','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2886,'menu','management','admin/structure/taxonomy/%/fields/%/delete','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2891,'menu','management','admin/structure/taxonomy/%/fields/%/edit','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2896,'menu','management','admin/structure/taxonomy/%/fields/%/field-settings','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2901,'menu','management','admin/structure/taxonomy/%/fields/%/widget-type','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2906,'menu','management','admin/config/people/accounts/fields/%/delete','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2911,'menu','management','admin/config/people/accounts/fields/%/edit','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2916,'menu','management','admin/config/people/accounts/fields/%/field-settings','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2921,'menu','management','admin/config/people/accounts/fields/%/widget-type','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2926,'menu','management','admin/structure/types/manage/%/comment/display/default','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2931,'menu','management','admin/structure/types/manage/%/comment/display/full','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2936,'menu','management','admin/structure/media/manage/%/fields/%/delete','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2941,'menu','management','admin/structure/types/manage/%/comment/fields/%','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2946,'menu','management','admin/structure/media/manage/%/fields/%/edit','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2951,'menu','management','admin/structure/media/manage/%/fields/%/field-settings','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2956,'menu','management','admin/structure/media/manage/%/fields/%/widget-type','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2961,'menu','management','admin/structure/types/manage/%/fields/%/delete','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2966,'menu','management','admin/structure/types/manage/%/fields/%/edit','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2971,'menu','management','admin/structure/types/manage/%/fields/%/field-settings','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2976,'menu','management','admin/structure/types/manage/%/fields/%/widget-type','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2981,'menu','management','admin/structure/types/manage/%/comment/fields/%/delete','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2986,'menu','management','admin/structure/types/manage/%/comment/fields/%/edit','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2991,'menu','management','admin/structure/types/manage/%/comment/fields/%/field-settings','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (2996,'menu','management','admin/structure/types/manage/%/comment/fields/%/widget-type','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (3001,'menu','management','admin/structure/block/demo/acq_seo_lab','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (3006,'menu','management','admin/structure/block/list/acq_seo_lab','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (3011,'menu','management','admin/structure/block/demo/acq_seo_ri','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (3016,'menu','management','admin/structure/block/list/acq_seo_ri','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (3021,'menu','management','admin/structure/block/list/acq_seo_lab/add','und',0,0,0,0,0.5,0,0,0);
INSERT INTO `xmlsitemap` VALUES (3026,'menu','management','admin/structure/block/list/impact/add','und',0,0,0,0,0.5,0,0,0);
/*!40000 ALTER TABLE `xmlsitemap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `xmlsitemap_sitemap`
--
DROP TABLE IF EXISTS `xmlsitemap_sitemap`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `xmlsitemap_sitemap` (
`smid` int(10) unsigned NOT NULL auto_increment COMMENT 'Sitemap ID',
`context_hash` varchar(32) NOT NULL default '' COMMENT 'The MD5 hash of the context field.',
`context` text NOT NULL COMMENT 'Serialized array with the sitemaps context',
`updated` int(10) unsigned NOT NULL default '0',
`links` int(10) unsigned NOT NULL default '0',
`chunks` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`smid`),
UNIQUE KEY `context_hash` (`context_hash`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `xmlsitemap_sitemap`
--
LOCK TABLES `xmlsitemap_sitemap` WRITE;
/*!40000 ALTER TABLE `xmlsitemap_sitemap` DISABLE KEYS */;
INSERT INTO `xmlsitemap_sitemap` VALUES (1,'40cd750bba9870f18aada2478b24840a','a:0:{}',1282673753,7,1);
/*!40000 ALTER TABLE `xmlsitemap_sitemap` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2010-08-30 18:19:27
INSERT INTO `variable` VALUES ('menu_rebuild_needed', 'b:1;');
INSERT INTO `variable` VALUES ('preprocess_css', 'i:0;');
INSERT INTO `variable` VALUES ('install_profile', 's:8:"standard";');
INSERT INTO `variable` VALUES ('sqbs_flush_all_caches', 'b:1;');
UPDATE `users` SET `pass` = '$S$CxlW2qdZdiJ01P3p02gro83gj7Qu7cMVJU/oTNPV3nK3GHLBUfs2', `name` = 'user1_4c7bf6', `mail` = 'user1_4c7bf6@example.com' WHERE uid = 1;
UPDATE `users` SET `pass` = '$S$CWyvXpVIvW.LuyVUgktMgIDTQL66RV5Zr0ZfgH1GiWWoCdHYHhSo' WHERE uid = 6;
UPDATE `system` SET `filename` = REPLACE(filename, 'sites/seo_ri.drupalgardens.com', 'sites/default') WHERE filename LIKE 'sites/seo_ri.drupalgardens.com%';